Rust dependency injection project, inspired by Spring IOC
.
toml
[dependencies]
autowired="0.1"
Just derive your struct with the marco Component
, you can use the singleton component everywhere.
```rust
struct Bar { name: String, age: u32, }
fn main() { // central registration in the beginning of the program setupsubmittedbeans();
// create `bar` via Default::default
let bar: Autowired<Bar> = Autowired::new();
assert_eq!(String::default(), bar.name);
assert_eq!(u32::default(), bar.age);
} ```
Define custom component initialization logic
```rust
struct Goo { pub list: Vec
fn buildgoo() -> Goo { Goo { list: vec!["hello".tostring()] } }
fn main() { // central registration in the beginning of the program setupsubmittedbeans();
let goo = Autowired::<Goo>::new();
assert_eq!("hello", goo.list[0])
} ```
By default, components are registered with setup_submitted_beans
.
If you need to register components lazily, you can refer to this example:
```rust use std::sync::Arc; use autowired::{ LazyComponent, setupsubmittedbeans, bean, Autowired};
struct Bar {
name: Arc
struct Goo { pub list: Vec
fn buildgoo() -> Goo { Goo { list: vec!["hello".tostring()] } }
fn lazy() { setupsubmittedbeans();
assert!(!autowired::exist_component::<Bar>());
assert!(!autowired::exist_component::<Goo>());
let bar = Autowired::<Bar>::new();
assert!( bar.name.is_empty());
let goo = Autowired::<Goo>::new();
assert_eq!("hello", goo.list[0]);
assert!(autowired::exist_component::<Bar>());
assert!(autowired::exist_component::<Goo>());
} ```
Functional bean constructor can return Option
with attribute #[bean(option)]
.
if return value is None
, this bean will not be submitted.
if you like, this feature can work with lazy components, #[bean(option, lazy)]
.
```rust
struct Bar { name: String, }
/// return None
, this bean will not be submitted
fn buildbarnone() -> Option
struct Goo {
pub list: Vec
fn buildgoosome() -> Option
fn option() { setupsubmittedbeans();
assert!(!autowired::exist_component::<Bar>());
assert!(autowired::exist_component::<Goo>());
let goo = Autowired::<Goo>::new();
assert_eq!("hello", goo.list[0]);
}
```