auth-framework 0.4.2

A comprehensive, production-ready authentication and authorization framework for Rust applications
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
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
//! Architecture enhancements for scalability and maintainability
//!
//! This module provides advanced architectural patterns including:
//! - Tiered storage with hot/cold data separation
//! - Event sourcing for comprehensive audit trails
//! - Configuration hot-reload for zero-downtime updates
//! - Advanced caching strategies
//! - Microservice-ready components

use crate::{
    errors::{AuthError, Result},
    storage::AuthStorage,
};
use serde::{Deserialize, Serialize};
use std::{
    collections::HashMap,
    path::Path,
    sync::{
        Arc,
        atomic::{AtomicU64, Ordering},
    },
    time::{Duration, SystemTime},
};
use tokio::{
    fs,
    sync::{RwLock, broadcast},
    time::interval,
};

#[cfg(feature = "notify")]
use notify::{Config, RecommendedWatcher, RecursiveMode, Watcher};

/// Tiered storage manager with hot/cold data separation
pub struct TieredStorageManager {
    /// Hot tier for frequently accessed data (in-memory)
    hot_tier: Arc<dyn AuthStorage + Send + Sync>,

    /// Warm tier for moderately accessed data (Redis/fast disk)
    warm_tier: Arc<dyn AuthStorage + Send + Sync>,

    /// Cold tier for archival data (disk/object storage)
    cold_tier: Arc<dyn AuthStorage + Send + Sync>,

    /// Access frequency tracking
    access_tracker: Arc<RwLock<HashMap<String, AccessMetadata>>>,

    /// Configuration
    config: TieredStorageConfig,

    /// Statistics
    stats: Arc<TieredStorageStats>,
}

/// Access metadata for intelligent tiering
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct AccessMetadata {
    pub access_count: u64,
    pub last_access: SystemTime,
    pub creation_time: SystemTime,
    pub current_tier: StorageTier,
    pub data_size: usize,
    pub access_frequency: f64, // accesses per hour
}

/// Storage tier levels
#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize, Deserialize)]
pub enum StorageTier {
    Hot,  // In-memory, ultra-fast access
    Warm, // Redis/SSD, fast access
    Cold, // Disk/object storage, slower access
}

/// Tiered storage configuration
#[derive(Debug, Clone)]
pub struct TieredStorageConfig {
    pub hot_tier_max_size: usize,
    pub warm_tier_max_size: usize,
    pub hot_tier_ttl: Duration,
    pub warm_tier_ttl: Duration,
    pub promotion_threshold: f64, // access frequency to promote
    pub demotion_threshold: f64,  // access frequency to demote
    pub cleanup_interval: Duration,
}

impl Default for TieredStorageConfig {
    fn default() -> Self {
        Self {
            hot_tier_max_size: 100_000,                 // 100k entries
            warm_tier_max_size: 1_000_000,              // 1M entries
            hot_tier_ttl: Duration::from_secs(3600),    // 1 hour
            warm_tier_ttl: Duration::from_secs(86400),  // 24 hours
            promotion_threshold: 10.0,                  // 10 accesses/hour
            demotion_threshold: 1.0,                    // 1 access/hour
            cleanup_interval: Duration::from_secs(300), // 5 minutes
        }
    }
}

/// Tiered storage statistics
#[derive(Debug, Default)]
pub struct TieredStorageStats {
    pub hot_tier_hits: AtomicU64,
    pub warm_tier_hits: AtomicU64,
    pub cold_tier_hits: AtomicU64,
    pub promotions: AtomicU64,
    pub demotions: AtomicU64,
    pub total_requests: AtomicU64,
}

impl TieredStorageManager {
    pub fn new(
        hot_tier: Arc<dyn AuthStorage + Send + Sync>,
        warm_tier: Arc<dyn AuthStorage + Send + Sync>,
        cold_tier: Arc<dyn AuthStorage + Send + Sync>,
    ) -> Self {
        Self::with_config(
            hot_tier,
            warm_tier,
            cold_tier,
            TieredStorageConfig::default(),
        )
    }

    pub fn with_config(
        hot_tier: Arc<dyn AuthStorage + Send + Sync>,
        warm_tier: Arc<dyn AuthStorage + Send + Sync>,
        cold_tier: Arc<dyn AuthStorage + Send + Sync>,
        config: TieredStorageConfig,
    ) -> Self {
        let manager = Self {
            hot_tier,
            warm_tier,
            cold_tier,
            access_tracker: Arc::new(RwLock::new(HashMap::new())),
            config,
            stats: Arc::new(TieredStorageStats::default()),
        };

        manager.start_background_tasks();
        manager
    }

    fn start_background_tasks(&self) {
        self.start_tier_management();
        self.start_cleanup_task();
    }

    fn start_tier_management(&self) {
        let access_tracker = Arc::clone(&self.access_tracker);
        let hot_tier = Arc::clone(&self.hot_tier);
        let warm_tier = Arc::clone(&self.warm_tier);
        let cold_tier = Arc::clone(&self.cold_tier);
        let stats = Arc::clone(&self.stats);
        let config = self.config.clone();

        tokio::spawn(async move {
            let mut interval = interval(config.cleanup_interval);

            loop {
                interval.tick().await;

                let mut tracker = access_tracker.write().await;
                let now = SystemTime::now();

                for (key, metadata) in tracker.iter_mut() {
                    // Calculate access frequency (per hour)
                    let hours_since_creation = now
                        .duration_since(metadata.creation_time)
                        .unwrap_or_default()
                        .as_secs_f64()
                        / 3600.0;

                    if hours_since_creation > 0.0 {
                        metadata.access_frequency =
                            metadata.access_count as f64 / hours_since_creation;
                    }

                    // Determine if tier change is needed
                    let should_promote = metadata.current_tier != StorageTier::Hot
                        && metadata.access_frequency > config.promotion_threshold;

                    let should_demote = metadata.current_tier == StorageTier::Hot
                        && metadata.access_frequency < config.demotion_threshold;

                    if should_promote {
                        // Promote to higher tier
                        Self::promote_data(
                            key, metadata, &hot_tier, &warm_tier, &cold_tier, &stats,
                        )
                        .await;
                    } else if should_demote {
                        // Demote to lower tier
                        Self::demote_data(key, metadata, &hot_tier, &warm_tier, &cold_tier, &stats)
                            .await;
                    }
                }
            }
        });
    }

    fn start_cleanup_task(&self) {
        let access_tracker = Arc::clone(&self.access_tracker);
        let _config = self.config.clone();

        tokio::spawn(async move {
            let mut interval = interval(Duration::from_secs(3600)); // Hourly cleanup

            loop {
                interval.tick().await;

                let mut tracker = access_tracker.write().await;
                let now = SystemTime::now();

                // Remove metadata for very old, inactive entries
                tracker.retain(|_, metadata| {
                    now.duration_since(metadata.last_access).unwrap_or_default()
                        < Duration::from_secs(86400 * 7) // Keep metadata for 7 days
                });
            }
        });
    }

    async fn promote_data(
        _key: &str,
        metadata: &mut AccessMetadata,
        _hot_tier: &Arc<dyn AuthStorage + Send + Sync>,
        _warm_tier: &Arc<dyn AuthStorage + Send + Sync>,
        _cold_tier: &Arc<dyn AuthStorage + Send + Sync>,
        stats: &Arc<TieredStorageStats>,
    ) {
        let _source_tier = match metadata.current_tier {
            StorageTier::Cold => _cold_tier,
            StorageTier::Warm => _warm_tier,
            StorageTier::Hot => return, // Already at highest tier
        };

        let _target_tier = match metadata.current_tier {
            StorageTier::Cold => _warm_tier,
            StorageTier::Warm => _hot_tier,
            StorageTier::Hot => return,
        };

        // Move data between tiers (simplified - would need actual implementation)
        // This is a placeholder for the actual data movement logic
        stats.promotions.fetch_add(1, Ordering::Relaxed);

        metadata.current_tier = match metadata.current_tier {
            StorageTier::Cold => StorageTier::Warm,
            StorageTier::Warm => StorageTier::Hot,
            StorageTier::Hot => StorageTier::Hot,
        };
    }

    async fn demote_data(
        _key: &str,
        metadata: &mut AccessMetadata,
        _hot_tier: &Arc<dyn AuthStorage + Send + Sync>,
        _warm_tier: &Arc<dyn AuthStorage + Send + Sync>,
        _cold_tier: &Arc<dyn AuthStorage + Send + Sync>,
        stats: &Arc<TieredStorageStats>,
    ) {
        if metadata.current_tier == StorageTier::Cold {
            return; // Already at lowest tier
        }

        stats.demotions.fetch_add(1, Ordering::Relaxed);

        metadata.current_tier = match metadata.current_tier {
            StorageTier::Hot => StorageTier::Warm,
            StorageTier::Warm => StorageTier::Cold,
            StorageTier::Cold => StorageTier::Cold,
        };
    }

    async fn track_access(&self, key: &str, tier: StorageTier) {
        let mut tracker = self.access_tracker.write().await;
        let now = SystemTime::now();

        match tracker.get_mut(key) {
            Some(metadata) => {
                metadata.access_count += 1;
                metadata.last_access = now;
            }
            None => {
                tracker.insert(
                    key.to_string(),
                    AccessMetadata {
                        access_count: 1,
                        last_access: now,
                        creation_time: now,
                        current_tier: tier,
                        data_size: 0, // Would be set from actual data
                        access_frequency: 0.0,
                    },
                );
            }
        }

        // Update statistics
        match tier {
            StorageTier::Hot => self.stats.hot_tier_hits.fetch_add(1, Ordering::Relaxed),
            StorageTier::Warm => self.stats.warm_tier_hits.fetch_add(1, Ordering::Relaxed),
            StorageTier::Cold => self.stats.cold_tier_hits.fetch_add(1, Ordering::Relaxed),
        };

        self.stats.total_requests.fetch_add(1, Ordering::Relaxed);
    }

    pub fn get_stats(&self) -> TieredStorageStatsSummary {
        let hot_hits = self.stats.hot_tier_hits.load(Ordering::Relaxed);
        let warm_hits = self.stats.warm_tier_hits.load(Ordering::Relaxed);
        let cold_hits = self.stats.cold_tier_hits.load(Ordering::Relaxed);
        let total = self.stats.total_requests.load(Ordering::Relaxed);

        TieredStorageStatsSummary {
            hot_tier_hit_rate: if total > 0 {
                (hot_hits as f64 / total as f64) * 100.0
            } else {
                0.0
            },
            warm_tier_hit_rate: if total > 0 {
                (warm_hits as f64 / total as f64) * 100.0
            } else {
                0.0
            },
            cold_tier_hit_rate: if total > 0 {
                (cold_hits as f64 / total as f64) * 100.0
            } else {
                0.0
            },
            total_requests: total,
            promotions: self.stats.promotions.load(Ordering::Relaxed),
            demotions: self.stats.demotions.load(Ordering::Relaxed),
        }
    }
}

#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct TieredStorageStatsSummary {
    pub hot_tier_hit_rate: f64,
    pub warm_tier_hit_rate: f64,
    pub cold_tier_hit_rate: f64,
    pub total_requests: u64,
    pub promotions: u64,
    pub demotions: u64,
}

/// Event sourcing implementation for audit trails
pub struct EventSourcingManager {
    /// Event store
    event_store: Arc<RwLock<Vec<DomainEvent>>>,

    /// Event stream broadcasters
    event_broadcasters: HashMap<String, broadcast::Sender<DomainEvent>>,

    /// Snapshots for performance
    snapshots: Arc<RwLock<HashMap<String, EventSnapshot>>>,

    /// Configuration
    config: EventSourcingConfig,
}

/// Domain event for event sourcing
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct DomainEvent {
    pub event_id: String,
    pub aggregate_id: String,
    pub event_type: String,
    pub event_version: u64,
    pub timestamp: SystemTime,
    pub data: serde_json::Value,
    pub metadata: HashMap<String, String>,
}

/// Event snapshot for performance optimization
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct EventSnapshot {
    pub aggregate_id: String,
    pub version: u64,
    pub timestamp: SystemTime,
    pub data: serde_json::Value,
}

/// Event sourcing configuration
#[derive(Debug, Clone)]
pub struct EventSourcingConfig {
    pub snapshot_interval: u64,
    pub max_events_in_memory: usize,
    pub event_retention_days: u64,
}

impl Default for EventSourcingConfig {
    fn default() -> Self {
        Self {
            snapshot_interval: 100,
            max_events_in_memory: 10_000,
            event_retention_days: 365,
        }
    }
}

impl EventSourcingManager {
    pub fn new() -> Self {
        Self::with_config(EventSourcingConfig::default())
    }

    pub fn with_config(config: EventSourcingConfig) -> Self {
        Self {
            event_store: Arc::new(RwLock::new(Vec::new())),
            event_broadcasters: HashMap::new(),
            snapshots: Arc::new(RwLock::new(HashMap::new())),
            config,
        }
    }

    /// Append event to the event store
    pub async fn append_event(&self, event: DomainEvent) -> Result<()> {
        let mut store = self.event_store.write().await;
        store.push(event.clone());

        // Broadcast event to subscribers
        if let Some(broadcaster) = self.event_broadcasters.get(&event.aggregate_id) {
            let _ = broadcaster.send(event.clone());
        }

        // Check if snapshot is needed
        if event.event_version % self.config.snapshot_interval == 0 {
            self.create_snapshot(&event.aggregate_id).await?;
        }

        Ok(())
    }

    /// Get events for an aggregate
    pub async fn get_events(
        &self,
        aggregate_id: &str,
        from_version: Option<u64>,
    ) -> Vec<DomainEvent> {
        let store = self.event_store.read().await;
        let from_version = from_version.unwrap_or(0);

        store
            .iter()
            .filter(|event| {
                event.aggregate_id == aggregate_id && event.event_version >= from_version
            })
            .cloned()
            .collect()
    }

    /// Create snapshot for performance
    async fn create_snapshot(&self, aggregate_id: &str) -> Result<()> {
        let events = self.get_events(aggregate_id, None).await;

        if let Some(latest_event) = events.last() {
            // Create aggregated snapshot (simplified)
            let snapshot = EventSnapshot {
                aggregate_id: aggregate_id.to_string(),
                version: latest_event.event_version,
                timestamp: SystemTime::now(),
                data: serde_json::json!({}), // Would contain aggregated state
            };

            let mut snapshots = self.snapshots.write().await;
            snapshots.insert(aggregate_id.to_string(), snapshot);
        }

        Ok(())
    }

    /// Subscribe to events for an aggregate
    pub fn subscribe_to_events(&mut self, aggregate_id: &str) -> broadcast::Receiver<DomainEvent> {
        let (tx, rx) = broadcast::channel(1000);
        self.event_broadcasters.insert(aggregate_id.to_string(), tx);
        rx
    }
}

/// Configuration hot-reload manager
pub struct ConfigHotReloadManager {
    /// Configuration file path
    config_path: String,

    /// Current configuration
    current_config: Arc<RwLock<serde_json::Value>>,

    /// Configuration change broadcaster
    config_broadcaster: broadcast::Sender<ConfigChangeEvent>,

    /// File watcher
    #[cfg(feature = "notify")]
    _watcher: Option<RecommendedWatcher>,
}

/// Configuration change event
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ConfigChangeEvent {
    pub timestamp: SystemTime,
    pub path: String,
    pub change_type: ConfigChangeType,
    pub old_value: Option<serde_json::Value>,
    pub new_value: Option<serde_json::Value>,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
pub enum ConfigChangeType {
    Added,
    Modified,
    Removed,
    Reloaded,
}

impl ConfigHotReloadManager {
    pub async fn new<P: AsRef<Path>>(config_path: P) -> Result<Self> {
        let config_path = config_path.as_ref().to_string_lossy().to_string();
        let (config_broadcaster, _) = broadcast::channel(100);

        // Load initial configuration
        let initial_config = Self::load_config(&config_path).await?;
        let current_config = Arc::new(RwLock::new(initial_config));

        let mut manager = Self {
            config_path: config_path.clone(),
            current_config,
            config_broadcaster,
            #[cfg(feature = "notify")]
            _watcher: None,
        };

        // Setup file watcher
        #[cfg(feature = "notify")]
        {
            manager.setup_file_watcher().await?;
        }

        Ok(manager)
    }

    async fn load_config(path: &str) -> Result<serde_json::Value> {
        let content = fs::read_to_string(path)
            .await
            .map_err(|e| AuthError::Configuration {
                message: format!("Failed to read config file: {}", e),
                source: Some(Box::new(e)),
                help: Some("Check that the config file exists and is readable".to_string()),
                docs_url: Some(
                    "https://docs.rs/auth-framework/latest/auth_framework/config/".to_string(),
                ),
                suggested_fix: Some("Verify file path and permissions".to_string()),
            })?;

        serde_json::from_str(&content).map_err(|e| AuthError::Configuration {
            message: format!("Failed to parse config: {}", e),
            source: Some(Box::new(e)),
            help: Some("Check that the config file contains valid JSON".to_string()),
            docs_url: Some(
                "https://docs.rs/auth-framework/latest/auth_framework/config/".to_string(),
            ),
            suggested_fix: Some("Validate JSON syntax using a JSON validator".to_string()),
        })
    }

    #[cfg(feature = "notify")]
    async fn setup_file_watcher(&mut self) -> Result<()> {
        use notify::Event;

        let config_path = self.config_path.clone();
        let current_config = Arc::clone(&self.current_config);
        let broadcaster = self.config_broadcaster.clone();

        let mut watcher = RecommendedWatcher::new(
            move |res: notify::Result<Event>| {
                if let Ok(event) = res {
                    let config_path = config_path.clone();
                    let current_config = Arc::clone(&current_config);
                    let broadcaster = broadcaster.clone();

                    tokio::spawn(async move {
                        if let Err(e) = Self::handle_file_change(
                            event,
                            &config_path,
                            &current_config,
                            &broadcaster,
                        )
                        .await
                        {
                            eprintln!("Error handling config file change: {}", e);
                        }
                    });
                }
            },
            Config::default(),
        )
        .map_err(|e| AuthError::Configuration {
            message: format!("Failed to create file watcher: {}", e),
            source: Some(Box::new(e)),
            help: Some("Check that the file system supports file watching".to_string()),
            docs_url: Some(
                "https://docs.rs/auth-framework/latest/auth_framework/config/".to_string(),
            ),
            suggested_fix: Some("Ensure the system has file watching capabilities".to_string()),
        })?;

        watcher
            .watch(Path::new(&self.config_path), RecursiveMode::NonRecursive)
            .map_err(|e| AuthError::Configuration {
                message: format!("Failed to watch config file: {}", e),
                source: Some(Box::new(e)),
                help: Some("Check that the config file path exists and is accessible".to_string()),
                docs_url: Some(
                    "https://docs.rs/auth-framework/latest/auth_framework/config/".to_string(),
                ),
                suggested_fix: Some("Verify the config file path is correct".to_string()),
            })?;

        self._watcher = Some(watcher);
        Ok(())
    }

    #[cfg(feature = "notify")]
    async fn handle_file_change(
        event: notify::Event,
        config_path: &str,
        current_config: &Arc<RwLock<serde_json::Value>>,
        broadcaster: &broadcast::Sender<ConfigChangeEvent>,
    ) -> Result<()> {
        use notify::EventKind;

        match event.kind {
            EventKind::Modify(_) | EventKind::Create(_) => {
                // Reload configuration
                match Self::load_config(config_path).await {
                    Ok(new_config) => {
                        let old_config = {
                            let mut config = current_config.write().await;
                            let old = config.clone();
                            *config = new_config.clone();
                            old
                        };

                        let change_event = ConfigChangeEvent {
                            timestamp: SystemTime::now(),
                            path: config_path.to_string(),
                            change_type: ConfigChangeType::Reloaded,
                            old_value: Some(old_config),
                            new_value: Some(new_config),
                        };

                        let _ = broadcaster.send(change_event);
                    }
                    Err(e) => {
                        eprintln!("Failed to reload config: {}", e);
                    }
                }
            }
            _ => {}
        }

        Ok(())
    }

    /// Get current configuration
    pub async fn get_config(&self) -> serde_json::Value {
        self.current_config.read().await.clone()
    }

    /// Subscribe to configuration changes
    pub fn subscribe_to_changes(&self) -> broadcast::Receiver<ConfigChangeEvent> {
        self.config_broadcaster.subscribe()
    }

    /// Manually reload configuration
    pub async fn reload(&self) -> Result<()> {
        let new_config = Self::load_config(&self.config_path).await?;
        let old_config = {
            let mut config = self.current_config.write().await;
            let old = config.clone();
            *config = new_config.clone();
            old
        };

        let change_event = ConfigChangeEvent {
            timestamp: SystemTime::now(),
            path: self.config_path.clone(),
            change_type: ConfigChangeType::Reloaded,
            old_value: Some(old_config),
            new_value: Some(new_config),
        };

        let _ = self.config_broadcaster.send(change_event);
        Ok(())
    }
}

impl Default for ConfigHotReloadManager {
    fn default() -> Self {
        futures::executor::block_on(async {
            Self::new("config.json")
                .await
                .expect("Failed to create config manager")
        })
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use crate::storage::memory::InMemoryStorage;
    use uuid::Uuid;

    #[tokio::test]
    async fn test_tiered_storage_stats() {
        let hot_tier = Arc::new(InMemoryStorage::new()) as Arc<dyn AuthStorage + Send + Sync>;
        let warm_tier = Arc::new(InMemoryStorage::new()) as Arc<dyn AuthStorage + Send + Sync>;
        let cold_tier = Arc::new(InMemoryStorage::new()) as Arc<dyn AuthStorage + Send + Sync>;

        let manager = TieredStorageManager::new(hot_tier, warm_tier, cold_tier);

        // Simulate some access patterns
        manager.track_access("key1", StorageTier::Hot).await;
        manager.track_access("key2", StorageTier::Warm).await;
        manager.track_access("key3", StorageTier::Cold).await;

        let stats = manager.get_stats();
        assert_eq!(stats.total_requests, 3);
        assert!(stats.hot_tier_hit_rate > 0.0);
    }

    #[tokio::test]
    async fn test_event_sourcing() {
        let manager = EventSourcingManager::new();

        let event = DomainEvent {
            event_id: Uuid::new_v4().to_string(),
            aggregate_id: "user-123".to_string(),
            event_type: "UserCreated".to_string(),
            event_version: 1,
            timestamp: SystemTime::now(),
            data: serde_json::json!({"name": "John Doe"}),
            metadata: HashMap::new(),
        };

        manager.append_event(event.clone()).await.unwrap();

        let events = manager.get_events("user-123", None).await;
        assert_eq!(events.len(), 1);
        assert_eq!(events[0].event_type, "UserCreated");
    }
}