Compile-time dependency injector for Rust inspired by Dagger 2
std::sync::Arc
std::any::Any
references) -
At the moment relying on compiler optimization until min_specialization
is stabilized.min_specialization
,
const_type_id
and const_cmp_type_id
Add chassis
to your crate dependencies
toml
[dependencies]
chassis = "^0.2.0"
Structs will be modules that can provide dependencies with functions
and that itself can have dependencies.
Note: Currently only associated functions are supported!
```rust
pub struct Module;
impl Module {
pub fn provide_something(dep1: Dependency1, dep2: Dependency2) -> Dependency3 {
Dependency3::new(dep1, dep2)
}
// ...
}
Traits will be components. For each trait an implemented component will be created.
The generated implementation will have a `Impl` suffix, for example `ComponentImpl`. Also a
`Component::new` function is created.
rust
pub trait Component { fn resolvemainclass(&self) -> MainClass; } ```
```rust use std::rc::Rc; // define your business logic /// printer trait pub trait Printer { fn print(&self, input: &str); }
/// a printer implementation pub struct StdoutPrinter; impl Printer for StdoutPrinter { fn print(&self, input: &str) { println!("{}", input); } }
/// greeter for messages
pub struct Greeter {
message: String,
printer: Rc
impl Greeter {
/// constructor with dependencies
pub fn new(message: String, printer: Rc
/// module that is parsed to create the dependency injection code
pub struct DemoModule;
// use strong types when in need to distinguish pub struct Message(String);
/// Define how to create your dependencies
impl DemoModule {
pub fn provideprinter() -> Rc
/// Define which dependencies you need.
///
/// A struct DemoComponentImpl
will be created for
/// you which implements DemoComponent
.
pub trait DemoComponent {
/// request the to create injection code for our main class Greeter
fn resolve_greeter(&self) -> Greeter;
}
fn main() {
// use generated component implementation
let injector =
Normally for every needed dependency the provider function on the module is called. This results
in types created multiple times. This is maybe not intended. The solution is to use a
singleton
attribute. The provide method will than only called once at build time of the
component (call to ComponentImpl::new
). The requirement is that the type implements the
Clone
trait. It is recommendable to use a shared reference type like Rc
or Arc
for
singletons so that really only one instance is created.
```rust
impl Module {
#[chassis(singleton)]
pub fn provide_printer() -> Rc
'static
)&MyType
when MyType
is provided by a module)Result
in module)Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.