reinhardt-di 0.2.2

Dependency injection system for Reinhardt, inspired by FastAPI
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
//! Advanced caching strategies for dependency injection
//!
//! This module provides sophisticated caching mechanisms beyond the basic request/singleton
//! scopes, including LRU caching, TTL-based expiration, and size-limited caches.
//!
//! ## Example
//!
//! ```rust
//! use reinhardt_di::advanced_cache::{LruCache, TtlCache};
//! use std::time::Duration;
//!
//! // LRU cache with maximum capacity
//! let mut lru = LruCache::new(100);
//! lru.insert("key".to_string(), "value".to_string());
//!
//! // TTL cache with expiration
//! let mut ttl = TtlCache::new(Duration::from_secs(60));
//! ttl.insert("key".to_string(), "value".to_string());
//! ```

#[cfg(feature = "dev-tools")]
use indexmap::IndexMap;
#[cfg(feature = "dev-tools")]
use std::collections::HashMap;
#[cfg(feature = "dev-tools")]
use std::hash::Hash;
#[cfg(feature = "dev-tools")]
use std::time::{Duration, Instant};

/// LRU (Least Recently Used) cache implementation
///
/// Evicts the least recently used items when capacity is exceeded.
/// Uses IndexMap for O(1) access, insertion, and removal operations.
#[cfg(feature = "dev-tools")]
#[derive(Debug)]
pub struct LruCache<K, V>
where
	K: Eq + Hash + Clone,
{
	capacity: usize,
	map: IndexMap<K, V>,
}

#[cfg(feature = "dev-tools")]
impl<K, V> LruCache<K, V>
where
	K: Eq + Hash + Clone,
{
	/// Create a new LRU cache with the given capacity
	///
	/// # Panics
	///
	/// Panics if `capacity` is 0, since a zero-capacity cache cannot store any items.
	///
	/// # Example
	///
	/// ```rust
	/// use reinhardt_di::advanced_cache::LruCache;
	///
	/// let cache: LruCache<String, i32> = LruCache::new(100);
	/// ```
	pub fn new(capacity: usize) -> Self {
		assert!(capacity > 0, "LruCache capacity must be greater than 0");
		Self {
			capacity,
			map: IndexMap::new(),
		}
	}

	/// Insert a key-value pair into the cache
	///
	/// If the cache is at capacity, the least recently used item is evicted.
	/// Uses IndexMap for O(1) operations instead of O(n) with VecDeque::retain.
	///
	/// # Example
	///
	/// ```rust
	/// use reinhardt_di::advanced_cache::LruCache;
	///
	/// let mut cache = LruCache::new(2);
	/// cache.insert("a".to_string(), 1);
	/// cache.insert("b".to_string(), 2);
	/// cache.insert("c".to_string(), 3);
	///
	/// assert!(cache.get(&"a".to_string()).is_none());
	/// assert_eq!(cache.get(&"b".to_string()), Some(&2));
	/// assert_eq!(cache.get(&"c".to_string()), Some(&3));
	/// ```
	pub fn insert(&mut self, key: K, value: V) {
		if self.map.contains_key(&key) {
			// Move to end (most recently used): O(1)
			self.map.shift_remove(&key);
		} else if self.map.len() >= self.capacity {
			// Remove least recently used (first entry): O(1)
			self.map.shift_remove_index(0);
		}

		// Insert at end (most recently used): O(1)
		self.map.insert(key, value);
	}

	/// Get a value from the cache
	///
	/// Updates the item's position to mark it as recently used.
	/// Uses IndexMap for O(1) operations instead of O(n) with VecDeque::retain.
	///
	/// # Example
	///
	/// ```rust
	/// use reinhardt_di::advanced_cache::LruCache;
	///
	/// let mut cache = LruCache::new(10);
	/// cache.insert("key".to_string(), 42);
	///
	/// assert_eq!(cache.get(&"key".to_string()), Some(&42));
	/// assert_eq!(cache.get(&"missing".to_string()), None);
	/// ```
	pub fn get(&mut self, key: &K) -> Option<&V> {
		if self.map.contains_key(key) {
			// Move to end (most recently used): O(1)
			let value = self.map.shift_remove(key)?;
			self.map.insert(key.clone(), value);
			self.map.get(key)
		} else {
			None
		}
	}

	/// Remove a value from the cache
	///
	/// # Example
	///
	/// ```rust
	/// use reinhardt_di::advanced_cache::LruCache;
	///
	/// let mut cache = LruCache::new(10);
	/// cache.insert("key".to_string(), 42);
	/// cache.remove(&"key".to_string());
	///
	/// assert!(cache.get(&"key".to_string()).is_none());
	/// ```
	pub fn remove(&mut self, key: &K) -> Option<V> {
		self.map.shift_remove(key)
	}

	/// Clear all items from the cache
	///
	/// # Example
	///
	/// ```rust
	/// use reinhardt_di::advanced_cache::LruCache;
	///
	/// let mut cache = LruCache::new(10);
	/// cache.insert("a".to_string(), 1);
	/// cache.insert("b".to_string(), 2);
	/// cache.clear();
	///
	/// assert_eq!(cache.len(), 0);
	/// ```
	pub fn clear(&mut self) {
		self.map.clear();
	}

	/// Get the number of items in the cache
	///
	/// # Example
	///
	/// ```rust
	/// use reinhardt_di::advanced_cache::LruCache;
	///
	/// let mut cache = LruCache::new(10);
	/// cache.insert("a".to_string(), 1);
	/// cache.insert("b".to_string(), 2);
	///
	/// assert_eq!(cache.len(), 2);
	/// ```
	pub fn len(&self) -> usize {
		self.map.len()
	}

	/// Check if the cache is empty
	///
	/// # Example
	///
	/// ```rust
	/// use reinhardt_di::advanced_cache::LruCache;
	///
	/// let cache: LruCache<String, i32> = LruCache::new(10);
	/// assert!(cache.is_empty());
	/// ```
	pub fn is_empty(&self) -> bool {
		self.map.is_empty()
	}
}

/// Entry in a TTL cache with expiration time
#[cfg(feature = "dev-tools")]
#[derive(Debug, Clone)]
struct TtlEntry<V> {
	value: V,
	expires_at: Instant,
}

/// TTL (Time To Live) cache implementation
///
/// Automatically expires entries after a specified duration.
#[cfg(feature = "dev-tools")]
#[derive(Debug)]
pub struct TtlCache<K, V>
where
	K: Eq + Hash + Clone,
{
	ttl: Duration,
	map: HashMap<K, TtlEntry<V>>,
}

#[cfg(feature = "dev-tools")]
impl<K, V> TtlCache<K, V>
where
	K: Eq + Hash + Clone,
{
	/// Create a new TTL cache with the given time-to-live
	///
	/// # Example
	///
	/// ```rust
	/// use reinhardt_di::advanced_cache::TtlCache;
	/// use std::time::Duration;
	///
	/// let cache: TtlCache<String, i32> = TtlCache::new(Duration::from_secs(60));
	/// ```
	pub fn new(ttl: Duration) -> Self {
		Self {
			ttl,
			map: HashMap::new(),
		}
	}

	/// Insert a key-value pair with TTL expiration
	///
	/// # Example
	///
	/// ```rust
	/// use reinhardt_di::advanced_cache::TtlCache;
	/// use std::time::Duration;
	///
	/// let mut cache = TtlCache::new(Duration::from_secs(60));
	/// cache.insert("key".to_string(), 42);
	/// ```
	pub fn insert(&mut self, key: K, value: V) {
		let entry = TtlEntry {
			value,
			expires_at: Instant::now() + self.ttl,
		};
		self.map.insert(key, entry);
	}

	/// Get a value from the cache if not expired
	///
	/// # Example
	///
	/// ```rust
	/// use reinhardt_di::advanced_cache::TtlCache;
	/// use std::time::Duration;
	///
	/// let mut cache = TtlCache::new(Duration::from_secs(60));
	/// cache.insert("key".to_string(), 42);
	///
	/// assert_eq!(cache.get(&"key".to_string()), Some(&42));
	/// ```
	pub fn get(&mut self, key: &K) -> Option<&V> {
		self.cleanup_expired();
		self.map.get(key).map(|entry| &entry.value)
	}

	/// Remove a value from the cache
	///
	/// # Example
	///
	/// ```rust
	/// use reinhardt_di::advanced_cache::TtlCache;
	/// use std::time::Duration;
	///
	/// let mut cache = TtlCache::new(Duration::from_secs(60));
	/// cache.insert("key".to_string(), 42);
	/// cache.remove(&"key".to_string());
	///
	/// assert!(cache.get(&"key".to_string()).is_none());
	/// ```
	pub fn remove(&mut self, key: &K) -> Option<V> {
		self.map.remove(key).map(|entry| entry.value)
	}

	/// Remove all expired entries
	///
	/// # Example
	///
	/// ```rust
	/// use reinhardt_di::advanced_cache::TtlCache;
	/// use std::time::Duration;
	///
	/// let mut cache = TtlCache::new(Duration::from_millis(1));
	/// cache.insert("key".to_string(), 42);
	///
	/// std::thread::sleep(Duration::from_millis(10));
	/// cache.cleanup_expired();
	///
	/// assert!(cache.get(&"key".to_string()).is_none());
	/// ```
	pub fn cleanup_expired(&mut self) {
		let now = Instant::now();
		self.map.retain(|_, entry| entry.expires_at > now);
	}

	/// Clear all items from the cache
	///
	/// # Example
	///
	/// ```rust
	/// use reinhardt_di::advanced_cache::TtlCache;
	/// use std::time::Duration;
	///
	/// let mut cache = TtlCache::new(Duration::from_secs(60));
	/// cache.insert("key".to_string(), 42);
	/// cache.clear();
	///
	/// assert_eq!(cache.len(), 0);
	/// ```
	pub fn clear(&mut self) {
		self.map.clear();
	}

	/// Get the number of items in the cache (including expired)
	///
	/// # Example
	///
	/// ```rust
	/// use reinhardt_di::advanced_cache::TtlCache;
	/// use std::time::Duration;
	///
	/// let mut cache = TtlCache::new(Duration::from_secs(60));
	/// cache.insert("a".to_string(), 1);
	/// cache.insert("b".to_string(), 2);
	///
	/// assert_eq!(cache.len(), 2);
	/// ```
	pub fn len(&self) -> usize {
		self.map.len()
	}

	/// Check if the cache is empty
	///
	/// # Example
	///
	/// ```rust
	/// use reinhardt_di::advanced_cache::TtlCache;
	/// use std::time::Duration;
	///
	/// let cache: TtlCache<String, i32> = TtlCache::new(Duration::from_secs(60));
	/// assert!(cache.is_empty());
	/// ```
	pub fn is_empty(&self) -> bool {
		self.map.is_empty()
	}
}

/// Cache statistics for monitoring
#[cfg(feature = "dev-tools")]
#[derive(Debug, Clone, Default)]
pub struct CacheStats {
	/// Total number of cache hits
	pub hits: u64,
	/// Total number of cache misses
	pub misses: u64,
	/// Total number of evictions
	pub evictions: u64,
	/// Total number of insertions
	pub insertions: u64,
}

#[cfg(feature = "dev-tools")]
impl CacheStats {
	/// Create new cache statistics
	///
	/// # Example
	///
	/// ```rust
	/// use reinhardt_di::advanced_cache::CacheStats;
	///
	/// let stats = CacheStats::new();
	/// assert_eq!(stats.hits, 0);
	/// assert_eq!(stats.misses, 0);
	/// ```
	pub fn new() -> Self {
		Self::default()
	}

	/// Calculate the cache hit rate
	///
	/// # Example
	///
	/// ```rust
	/// use reinhardt_di::advanced_cache::CacheStats;
	///
	/// let mut stats = CacheStats::new();
	/// stats.hits = 80;
	/// stats.misses = 20;
	///
	/// assert_eq!(stats.hit_rate(), 0.8);
	/// ```
	pub fn hit_rate(&self) -> f64 {
		let total = self.hits + self.misses;
		if total == 0 {
			0.0
		} else {
			self.hits as f64 / total as f64
		}
	}

	/// Record a cache hit
	///
	/// # Example
	///
	/// ```rust
	/// use reinhardt_di::advanced_cache::CacheStats;
	///
	/// let mut stats = CacheStats::new();
	/// stats.record_hit();
	/// assert_eq!(stats.hits, 1);
	/// ```
	pub fn record_hit(&mut self) {
		self.hits += 1;
	}

	/// Record a cache miss
	///
	/// # Example
	///
	/// ```rust
	/// use reinhardt_di::advanced_cache::CacheStats;
	///
	/// let mut stats = CacheStats::new();
	/// stats.record_miss();
	/// assert_eq!(stats.misses, 1);
	/// ```
	pub fn record_miss(&mut self) {
		self.misses += 1;
	}

	/// Record a cache eviction
	///
	/// # Example
	///
	/// ```rust
	/// use reinhardt_di::advanced_cache::CacheStats;
	///
	/// let mut stats = CacheStats::new();
	/// stats.record_eviction();
	/// assert_eq!(stats.evictions, 1);
	/// ```
	pub fn record_eviction(&mut self) {
		self.evictions += 1;
	}

	/// Record a cache insertion
	///
	/// # Example
	///
	/// ```rust
	/// use reinhardt_di::advanced_cache::CacheStats;
	///
	/// let mut stats = CacheStats::new();
	/// stats.record_insertion();
	/// assert_eq!(stats.insertions, 1);
	/// ```
	pub fn record_insertion(&mut self) {
		self.insertions += 1;
	}
}