1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- use std::{
- any::{Any, TypeId},
- collections::HashMap,
- };
- #[derive(Default, Debug)]
- pub struct ModuleDataMap {
- map: HashMap<TypeId, Box<dyn Any + Sync + Send>>,
- }
- impl ModuleDataMap {
- #[inline]
- pub fn new() -> ModuleDataMap {
- ModuleDataMap {
- map: HashMap::default(),
- }
- }
- pub fn insert<T>(&mut self, val: T) -> Option<T>
- where
- T: 'static + Send + Sync,
- {
- self.map
- .insert(TypeId::of::<T>(), Box::new(val))
- .and_then(downcast_owned)
- }
- pub fn remove<T>(&mut self) -> Option<T>
- where
- T: 'static + Send + Sync,
- {
- self.map.remove(&TypeId::of::<T>()).and_then(downcast_owned)
- }
- pub fn get<T>(&self) -> Option<&T>
- where
- T: 'static + Send + Sync,
- {
- self.map.get(&TypeId::of::<T>()).and_then(|boxed| boxed.downcast_ref())
- }
- pub fn get_mut<T>(&mut self) -> Option<&mut T>
- where
- T: 'static + Send + Sync,
- {
- self.map
- .get_mut(&TypeId::of::<T>())
- .and_then(|boxed| boxed.downcast_mut())
- }
- pub fn contains<T>(&self) -> bool
- where
- T: 'static + Send + Sync,
- {
- self.map.contains_key(&TypeId::of::<T>())
- }
- pub fn extend(&mut self, other: ModuleDataMap) {
- self.map.extend(other.map);
- }
- }
- fn downcast_owned<T: 'static + Send + Sync>(boxed: Box<dyn Any + Send + Sync>) -> Option<T> {
- boxed.downcast().ok().map(|boxed| *boxed)
- }
|