A simple DI (Dependency Injection) singleton object store for thread-safe shared object management.
Add simpledi-rs dependency. You also check the package info at https://crates.io/crates/simpledi-rs.
[dependencies]
simpledi-rs = "*"
- create a DI container (
DIContainerTrait
) - create objects, and add them to the container via
create_dep!
macro - initialize the DI container
- inject DI container to DI aware objects which implements
DependencyInjectTrait
viainject_dep!
macro - use the container to get the managed objects
#[macro_use]
extern crate simpledi_rs;
use simpledi_rs::di::{DIContainer, DIContainerTrait, DependencyInjectTrait};
use std::sync::Arc;
#[derive(Debug)]
struct DIAwareStruct(Option<Arc<DIContainer>>);
impl DIAwareStruct {
fn new() -> Self {
Self { 0: None }
}
}
impl DependencyInjectTrait for DIAwareStruct {
fn inject(&mut self, container: Arc<DIContainer>) {
self.0 = Some(container.clone())
}
}
fn main() {
let mut container = DIContainer::new(); // (1)
// add obj to DI
create_dep!(DIAwareStruct::new(), container); // (2)
// inject DI container to aware objects
let container_arc = container.init().unwrap(); // (3)
inject_dep!(DIAwareStruct, container_arc.clone()); // (4)
// get container from aware objects
let injected_obj = container_arc.get::<DIAwareStruct>().unwrap();
}