use super::*; use std::sync::Mutex; #[derive(Debug)] pub struct IntlLangMemoizer { lang: LanguageIdentifier, map: Mutex, } impl IntlLangMemoizer { pub fn new(lang: LanguageIdentifier) -> Self { Self { lang, map: Mutex::new(type_map::concurrent::TypeMap::new()), } } pub fn with_try_get(&self, args: I::Args, cb: U) -> Result where Self: Sized, I: Memoizable + Sync + Send + 'static, I::Args: Send + Sync + 'static, U: FnOnce(&I) -> R, { let mut map = self.map.lock().unwrap(); let cache = map .entry::>() .or_insert_with(HashMap::new); let e = match cache.entry(args.clone()) { Entry::Occupied(entry) => entry.into_mut(), Entry::Vacant(entry) => { let val = I::construct(self.lang.clone(), args)?; entry.insert(val) } }; Ok(cb(&e)) } }