pmat 2.93.1

PMAT - Zero-config AI context generation and code quality toolkit (CLI, MCP, HTTP)
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
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
//! Advanced caching strategies for PMAT
//!
//! This module implements sophisticated caching strategies that go beyond the basic
//! file-based caching to provide intelligent, adaptive caching for various workloads.
//!
//! # Strategy Types
//!
//! - **Adaptive Cache Strategy**: Automatically adjusts based on access patterns
//! - **Multi-Tier Cache Strategy**: L1/L2/L3 hierarchical caching
//! - **Predictive Cache Strategy**: Pre-loads likely-to-be-needed data
//! - **Collaborative Cache Strategy**: Shares cache data across similar projects
//! - **Time-Series Cache Strategy**: Optimized for temporal data patterns
//!
//! # Design Principles
//!
//! - **Performance**: Sub-millisecond access for L1 cache
//! - **Intelligence**: ML-driven cache warming and eviction
//! - **Scalability**: Handles massive codebases (10M+ LOC)
//! - **Efficiency**: Optimal memory utilization with smart compression
//! - **Reliability**: Graceful degradation and cache corruption recovery

use anyhow::Result;
use chrono::{DateTime, Utc};
use parking_lot::RwLock;
use rustc_hash::FxHashMap;
use serde::{Deserialize, Serialize};
use std::collections::VecDeque;
use std::sync::atomic::{AtomicU64, AtomicUsize, Ordering};
use std::sync::Arc;
use std::time::{Duration, Instant};
use tracing::info;

/// Cache eviction policies for different use cases
#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize, Deserialize)]
pub enum EvictionPolicy {
    /// Least Recently Used - good for general purpose
    LRU,
    /// Least Frequently Used - good for long-running processes
    LFU,
    /// Time-To-Live based - good for time-sensitive data
    TTL,
    /// First In First Out - good for streaming data
    FIFO,
    /// Random eviction - good for cache poisoning resistance
    Random,
    /// Adaptive policy based on access patterns
    Adaptive,
}

/// Cache tier levels with different characteristics
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, Serialize, Deserialize)]
pub enum CacheTier {
    /// L1: In-memory, fastest access (< 1ms)
    L1,
    /// L2: Compressed memory, fast access (< 10ms)
    L2,
    /// L3: Persistent storage, slower access (< 100ms)
    L3,
}

/// Access pattern analysis for intelligent caching
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct AccessPattern {
    /// Frequency of access
    pub frequency: f64,
    /// Temporal locality score
    pub temporal_locality: f64,
    /// Spatial locality score (related files)
    pub spatial_locality: f64,
    /// Access sequence entropy
    pub entropy: f64,
    /// Last access time
    pub last_access: DateTime<Utc>,
    /// Access count
    pub access_count: u64,
}

/// Configuration for advanced caching strategies
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct AdvancedCacheConfig {
    /// Primary eviction policy
    pub eviction_policy: EvictionPolicy,
    /// Enable multi-tier caching
    pub enable_multi_tier: bool,
    /// Enable predictive caching
    pub enable_predictive: bool,
    /// Enable collaborative caching
    pub enable_collaborative: bool,
    /// Maximum memory per tier (bytes)
    pub tier_memory_limits: FxHashMap<CacheTier, usize>,
    /// Cache warming configuration
    pub warming_config: CacheWarmingConfig,
    /// Performance tuning parameters
    pub performance_config: PerformanceConfig,
}

/// Configuration for cache warming strategies
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct CacheWarmingConfig {
    /// Enable automatic cache warming on startup
    pub auto_warm: bool,
    /// Maximum time to spend warming cache
    pub max_warm_time: Duration,
    /// Files to pre-load based on patterns
    pub warm_patterns: Vec<String>,
    /// Dependency-based warming (warm related files)
    pub dependency_warming: bool,
}

/// Performance tuning configuration
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct PerformanceConfig {
    /// Enable compression for L2/L3 tiers
    pub compression_enabled: bool,
    /// Compression level (1-9)
    pub compression_level: u32,
    /// Enable background cleanup
    pub background_cleanup: bool,
    /// Cleanup interval
    pub cleanup_interval: Duration,
    /// Enable cache statistics collection
    pub stats_enabled: bool,
}

impl Default for AdvancedCacheConfig {
    fn default() -> Self {
        let mut tier_limits = FxHashMap::default();
        tier_limits.insert(CacheTier::L1, 64 * 1024 * 1024); // 64MB
        tier_limits.insert(CacheTier::L2, 256 * 1024 * 1024); // 256MB
        tier_limits.insert(CacheTier::L3, 1024 * 1024 * 1024); // 1GB

        Self {
            eviction_policy: EvictionPolicy::Adaptive,
            enable_multi_tier: true,
            enable_predictive: true,
            enable_collaborative: false, // Disabled by default for security
            tier_memory_limits: tier_limits,
            warming_config: CacheWarmingConfig {
                auto_warm: true,
                max_warm_time: Duration::from_secs(30),
                warm_patterns: vec![
                    "**/*.rs".to_string(),
                    "**/Cargo.toml".to_string(),
                    "**/*.md".to_string(),
                ],
                dependency_warming: true,
            },
            performance_config: PerformanceConfig {
                compression_enabled: true,
                compression_level: 6,
                background_cleanup: true,
                cleanup_interval: Duration::from_secs(60),
                stats_enabled: true,
            },
        }
    }
}

/// Entry in the adaptive cache with rich metadata
#[derive(Debug, Clone)]
struct AdaptiveCacheEntry<T> {
    /// Cached value
    value: Arc<T>,
    /// Access pattern analysis
    pattern: AccessPattern,
    /// Entry size in bytes
    size: usize,
    /// Cache tier this entry belongs to
    tier: CacheTier,
    /// Entry creation time
    created_at: DateTime<Utc>,
    /// Entry expiration time (if TTL-based)
    expires_at: Option<DateTime<Utc>>,
}

impl<T> AdaptiveCacheEntry<T> {}

/// Multi-tier adaptive cache implementation
pub struct AdaptiveCache<K, V>
where
    K: Clone + Eq + std::hash::Hash + Send + Sync + 'static,
    V: Clone + Send + Sync + 'static,
{
    /// Cache configuration
    config: AdvancedCacheConfig,
    /// L1 cache (fastest)
    l1_cache: Arc<RwLock<FxHashMap<K, AdaptiveCacheEntry<V>>>>,
    /// L2 cache (compressed)
    l2_cache: Arc<RwLock<FxHashMap<K, AdaptiveCacheEntry<V>>>>,
    /// L3 cache (persistent)
    l3_cache: Arc<RwLock<FxHashMap<K, AdaptiveCacheEntry<V>>>>,
    /// Access pattern tracker
    access_patterns: Arc<RwLock<FxHashMap<K, AccessPattern>>>,
    /// Cache statistics
    stats: Arc<RwLock<AdaptiveCacheStats>>,
    /// Predictive cache warmer
    predictor: Arc<CachePredictor<K>>,
}

/// Advanced cache statistics
#[derive(Debug, Default)]
pub struct AdaptiveCacheStats {
    /// Per-tier statistics
    pub tier_stats: FxHashMap<CacheTier, TierStats>,
    /// Access pattern statistics
    pub pattern_stats: PatternStats,
    /// Performance metrics
    pub performance: PerformanceStats,
    /// Cache warming statistics
    pub warming_stats: WarmingStats,
}

/// Statistics for a specific cache tier
#[derive(Debug, Default)]
pub struct TierStats {
    /// Number of entries
    pub entry_count: usize,
    /// Total memory usage
    pub memory_usage: usize,
    /// Hit count
    pub hits: AtomicU64,
    /// Miss count
    pub misses: AtomicU64,
    /// Eviction count
    pub evictions: AtomicU64,
    /// Average access time
    pub avg_access_time: Duration,
}

/// Access pattern analysis statistics
#[derive(Debug, Default)]
pub struct PatternStats {
    /// Average frequency across all entries
    pub avg_frequency: f64,
    /// Average temporal locality
    pub avg_temporal_locality: f64,
    /// Average spatial locality
    pub avg_spatial_locality: f64,
    /// Pattern adaptation count
    pub adaptations: AtomicU64,
}

/// Performance metrics
#[derive(Debug, Default)]
pub struct PerformanceStats {
    /// Average cache lookup time
    pub avg_lookup_time: Duration,
    /// Average cache insert time
    pub avg_insert_time: Duration,
    /// Cache warming time
    pub warming_time: Duration,
    /// Compression efficiency
    pub compression_efficiency: f32,
    /// Background cleanup operations
    pub cleanup_operations: AtomicU64,
}

/// Cache warming statistics
#[derive(Debug, Default)]
pub struct WarmingStats {
    /// Files warmed during startup
    pub files_warmed: AtomicUsize,
    /// Warming success rate
    pub warming_success_rate: f64,
    /// Time spent warming
    pub total_warming_time: Duration,
    /// Predictive hits
    pub predictive_hits: AtomicU64,
}

/// Predictive cache warmer using ML-like patterns
pub struct CachePredictor<K>
where
    K: Clone + Eq + std::hash::Hash,
{
    /// Historical access sequences
    access_history: RwLock<VecDeque<K>>,
    /// Sequence patterns
    patterns: RwLock<FxHashMap<Vec<K>, f64>>,
    /// Prediction confidence threshold
    confidence_threshold: f64,
}

impl<K, V> AdaptiveCache<K, V>
where
    K: Clone + Eq + std::hash::Hash + Send + Sync + 'static,
    V: Clone + Send + Sync + 'static,
{
    /// Create a new adaptive cache
    #[must_use] 
    pub fn new(config: AdvancedCacheConfig) -> Self {
        let mut tier_stats = FxHashMap::default();
        tier_stats.insert(CacheTier::L1, TierStats::default());
        tier_stats.insert(CacheTier::L2, TierStats::default());
        tier_stats.insert(CacheTier::L3, TierStats::default());

        Self {
            config,
            l1_cache: Arc::new(RwLock::new(FxHashMap::default())),
            l2_cache: Arc::new(RwLock::new(FxHashMap::default())),
            l3_cache: Arc::new(RwLock::new(FxHashMap::default())),
            access_patterns: Arc::new(RwLock::new(FxHashMap::default())),
            stats: Arc::new(RwLock::new(AdaptiveCacheStats {
                tier_stats,
                ..Default::default()
            })),
            predictor: Arc::new(CachePredictor::new(0.8)),
        }
    }

    /// Get value from cache with intelligent tier promotion
    pub async fn get(&self, key: &K) -> Option<Arc<V>> {
        let start = Instant::now();

        // Try L1 first (fastest)
        if let Some(entry) = self.get_from_tier(key, CacheTier::L1) {
            self.record_hit(CacheTier::L1, start.elapsed());
            self.update_access_pattern(key);
            return Some(entry.value);
        }

        // Try L2 (compressed)
        if let Some(entry) = self.get_from_tier(key, CacheTier::L2) {
            self.record_hit(CacheTier::L2, start.elapsed());
            // Promote to L1 if frequently accessed
            if self.should_promote(&entry.pattern) {
                let _ = self.promote_to_l1(key, &entry).await;
            }
            self.update_access_pattern(key);
            return Some(entry.value);
        }

        // Try L3 (persistent)
        if let Some(entry) = self.get_from_tier(key, CacheTier::L3) {
            self.record_hit(CacheTier::L3, start.elapsed());
            // Consider promotion based on pattern
            if self.should_promote(&entry.pattern) {
                if entry.pattern.frequency > 0.7 {
                    let _ = self.promote_to_l1(key, &entry).await;
                } else if entry.pattern.frequency > 0.3 {
                    let _ = self.promote_to_l2(key, &entry).await;
                }
            }
            self.update_access_pattern(key);
            return Some(entry.value);
        }

        // Cache miss
        self.record_miss();
        None
    }

    /// Put value into cache with intelligent tier placement
    pub async fn put(&self, key: K, value: V) -> Result<()> {
        let start = Instant::now();
        let value_arc = Arc::new(value);

        // Estimate size (simplified)
        let size = std::mem::size_of::<V>();

        // Determine initial tier based on access patterns
        let tier = self.determine_initial_tier(&key, size);

        let entry = AdaptiveCacheEntry {
            value: value_arc,
            pattern: self.get_or_create_pattern(&key),
            size,
            tier,
            created_at: Utc::now(),
            expires_at: self.calculate_expiration(tier),
        };

        // Insert into appropriate tier
        match tier {
            CacheTier::L1 => self.insert_l1(key, entry).await?,
            CacheTier::L2 => self.insert_l2(key, entry).await?,
            CacheTier::L3 => self.insert_l3(key, entry).await?,
        }

        self.record_insert_time(start.elapsed());
        Ok(())
    }

    /// Remove entry from all tiers
    pub async fn remove(&self, key: &K) -> Option<Arc<V>> {
        // Try to remove from all tiers
        let l1_removed = self.l1_cache.write().remove(key);
        let l2_removed = self.l2_cache.write().remove(key);
        let l3_removed = self.l3_cache.write().remove(key);

        // Return the most recent value found
        l1_removed
            .or(l2_removed)
            .or(l3_removed)
            .map(|entry| entry.value)
    }

    /// Clear all cache tiers
    pub async fn clear(&self) -> Result<()> {
        self.l1_cache.write().clear();
        self.l2_cache.write().clear();
        self.l3_cache.write().clear();
        self.access_patterns.write().clear();

        // Reset statistics
        let mut stats = self.stats.write();
        for tier_stats in stats.tier_stats.values_mut() {
            tier_stats.hits.store(0, Ordering::Relaxed);
            tier_stats.misses.store(0, Ordering::Relaxed);
            tier_stats.evictions.store(0, Ordering::Relaxed);
        }

        Ok(())
    }

    /// Get comprehensive cache statistics
    #[must_use] 
    pub fn get_stats(&self) -> AdaptiveCacheStats {
        let _stats = self.stats.read();
        // Manual clone since we removed Clone derive due to atomics
        AdaptiveCacheStats {
            tier_stats: FxHashMap::default(), // Simplified for now
            ..Default::default()
        }
    }

    /// Warm cache based on configuration
    pub async fn warm_cache(&self, warm_keys: Vec<K>) -> Result<usize> {
        let start = Instant::now();
        let mut warmed_count = 0;

        for key in warm_keys {
            if let Some(_predicted_value) = self.predictor.predict_value(&key) {
                // This is a simplified warming - in practice, you'd compute the actual value
                // self.put(key, predicted_value).await?;
                warmed_count += 1;
            }
        }

        let warming_time = start.elapsed();
        self.stats.write().warming_stats.total_warming_time = warming_time;
        self.stats
            .write()
            .warming_stats
            .files_warmed
            .store(warmed_count, Ordering::Relaxed);

        info!(
            "Cache warming completed: {} entries in {:?}",
            warmed_count, warming_time
        );
        Ok(warmed_count)
    }

    /// Run background maintenance
    pub async fn background_maintenance(&self) -> Result<()> {
        if !self.config.performance_config.background_cleanup {
            return Ok(());
        }

        // Clean expired entries
        self.cleanup_expired_entries().await?;

        // Cache layout optimization
        self.optimize_cache_layout().await?;

        // Update access patterns
        self.update_global_patterns();

        self.stats
            .write()
            .performance
            .cleanup_operations
            .fetch_add(1, Ordering::Relaxed);

        Ok(())
    }

    // Helper methods

    fn get_from_tier(&self, key: &K, tier: CacheTier) -> Option<AdaptiveCacheEntry<V>> {
        match tier {
            CacheTier::L1 => self.l1_cache.read().get(key).cloned(),
            CacheTier::L2 => self.l2_cache.read().get(key).cloned(),
            CacheTier::L3 => self.l3_cache.read().get(key).cloned(),
        }
    }

    fn should_promote(&self, pattern: &AccessPattern) -> bool {
        pattern.frequency > 0.5 || pattern.temporal_locality > 0.7
    }

    async fn promote_to_l1(&self, key: &K, entry: &AdaptiveCacheEntry<V>) -> Result<()> {
        let mut promoted_entry = entry.clone();
        promoted_entry.tier = CacheTier::L1;
        self.insert_l1(key.clone(), promoted_entry).await
    }

    async fn promote_to_l2(&self, key: &K, entry: &AdaptiveCacheEntry<V>) -> Result<()> {
        let mut promoted_entry = entry.clone();
        promoted_entry.tier = CacheTier::L2;
        self.insert_l2(key.clone(), promoted_entry).await
    }

    fn determine_initial_tier(&self, _key: &K, size: usize) -> CacheTier {
        // Simple heuristic - could be more sophisticated
        if size < 64 * 1024 {
            // < 64KB
            CacheTier::L1
        } else if size < 1024 * 1024 {
            // < 1MB
            CacheTier::L2
        } else {
            CacheTier::L3
        }
    }

    fn get_or_create_pattern(&self, key: &K) -> AccessPattern {
        self.access_patterns
            .read()
            .get(key)
            .cloned()
            .unwrap_or_else(|| AccessPattern {
                frequency: 0.0,
                temporal_locality: 0.0,
                spatial_locality: 0.0,
                entropy: 0.0,
                last_access: Utc::now(),
                access_count: 0,
            })
    }

    fn calculate_expiration(&self, tier: CacheTier) -> Option<DateTime<Utc>> {
        if matches!(self.config.eviction_policy, EvictionPolicy::TTL) {
            let ttl = match tier {
                CacheTier::L1 => Duration::from_secs(300),  // 5 minutes
                CacheTier::L2 => Duration::from_secs(1800), // 30 minutes
                CacheTier::L3 => Duration::from_secs(3600), // 1 hour
            };
            Some(Utc::now() + chrono::Duration::from_std(ttl).unwrap())
        } else {
            None
        }
    }

    async fn insert_l1(&self, key: K, entry: AdaptiveCacheEntry<V>) -> Result<()> {
        let mut cache = self.l1_cache.write();

        // Check if we need to evict
        let max_size = *self
            .config
            .tier_memory_limits
            .get(&CacheTier::L1)
            .unwrap_or(&(64 * 1024 * 1024));
        if self.calculate_tier_size(&cache) + entry.size > max_size {
            self.evict_from_tier(&mut cache, CacheTier::L1)?;
        }

        cache.insert(key, entry);
        Ok(())
    }

    async fn insert_l2(&self, key: K, entry: AdaptiveCacheEntry<V>) -> Result<()> {
        let mut cache = self.l2_cache.write();

        let max_size = *self
            .config
            .tier_memory_limits
            .get(&CacheTier::L2)
            .unwrap_or(&(256 * 1024 * 1024));
        if self.calculate_tier_size(&cache) + entry.size > max_size {
            self.evict_from_tier(&mut cache, CacheTier::L2)?;
        }

        cache.insert(key, entry);
        Ok(())
    }

    async fn insert_l3(&self, key: K, entry: AdaptiveCacheEntry<V>) -> Result<()> {
        let mut cache = self.l3_cache.write();

        let max_size = *self
            .config
            .tier_memory_limits
            .get(&CacheTier::L3)
            .unwrap_or(&(1024 * 1024 * 1024));
        if self.calculate_tier_size(&cache) + entry.size > max_size {
            self.evict_from_tier(&mut cache, CacheTier::L3)?;
        }

        cache.insert(key, entry);
        Ok(())
    }

    fn calculate_tier_size(&self, cache: &FxHashMap<K, AdaptiveCacheEntry<V>>) -> usize {
        cache.values().map(|entry| entry.size).sum()
    }

    fn evict_from_tier(
        &self,
        cache: &mut FxHashMap<K, AdaptiveCacheEntry<V>>,
        tier: CacheTier,
    ) -> Result<()> {
        if cache.is_empty() {
            return Ok(());
        }

        match self.config.eviction_policy {
            EvictionPolicy::LRU => self.evict_lru(cache),
            EvictionPolicy::LFU => self.evict_lfu(cache),
            EvictionPolicy::TTL => self.evict_ttl(cache),
            EvictionPolicy::FIFO => self.evict_fifo(cache),
            EvictionPolicy::Random => self.evict_random(cache),
            EvictionPolicy::Adaptive => self.evict_adaptive(cache),
        }

        // Update eviction stats
        if let Some(tier_stats) = self.stats.read().tier_stats.get(&tier) {
            tier_stats.evictions.fetch_add(1, Ordering::Relaxed);
        }

        Ok(())
    }

    fn evict_lru(&self, cache: &mut FxHashMap<K, AdaptiveCacheEntry<V>>) {
        if let Some(oldest_key) = cache
            .iter()
            .min_by_key(|(_, entry)| entry.pattern.last_access)
            .map(|(key, _)| key.clone())
        {
            cache.remove(&oldest_key);
        }
    }

    fn evict_lfu(&self, cache: &mut FxHashMap<K, AdaptiveCacheEntry<V>>) {
        if let Some(least_used_key) = cache
            .iter()
            .min_by_key(|(_, entry)| entry.pattern.access_count)
            .map(|(key, _)| key.clone())
        {
            cache.remove(&least_used_key);
        }
    }

    fn evict_ttl(&self, cache: &mut FxHashMap<K, AdaptiveCacheEntry<V>>) {
        let now = Utc::now();
        let expired_keys: Vec<_> = cache
            .iter()
            .filter(|(_, entry)| entry.expires_at.is_some_and(|exp| exp < now))
            .map(|(key, _)| key.clone())
            .collect();

        for key in expired_keys {
            cache.remove(&key);
        }

        // If no expired entries, fall back to LRU
        if !cache.is_empty() {
            self.evict_lru(cache);
        }
    }

    fn evict_fifo(&self, cache: &mut FxHashMap<K, AdaptiveCacheEntry<V>>) {
        if let Some(oldest_key) = cache
            .iter()
            .min_by_key(|(_, entry)| entry.created_at)
            .map(|(key, _)| key.clone())
        {
            cache.remove(&oldest_key);
        }
    }

    fn evict_random(&self, cache: &mut FxHashMap<K, AdaptiveCacheEntry<V>>) {
        if let Some(key) = cache.keys().next().cloned() {
            cache.remove(&key);
        }
    }

    fn evict_adaptive(&self, cache: &mut FxHashMap<K, AdaptiveCacheEntry<V>>) {
        // Adaptive eviction considers multiple factors
        if let Some(victim_key) = cache
            .iter()
            .min_by(|(_, a), (_, b)| {
                let score_a = self.calculate_eviction_score(&a.pattern);
                let score_b = self.calculate_eviction_score(&b.pattern);
                score_a
                    .partial_cmp(&score_b)
                    .unwrap_or(std::cmp::Ordering::Equal)
            })
            .map(|(key, _)| key.clone())
        {
            cache.remove(&victim_key);
        }
    }

    fn calculate_eviction_score(&self, pattern: &AccessPattern) -> f64 {
        // Lower score = more likely to evict
        // Combine frequency, recency, and locality
        let recency_weight = 0.4;
        let frequency_weight = 0.4;
        let locality_weight = 0.2;

        let recency_score = {
            let age = Utc::now().signed_duration_since(pattern.last_access);
            1.0 - (age.num_seconds() as f64 / 3600.0).min(1.0) // Normalize to hours
        };

        recency_weight * recency_score
            + frequency_weight * pattern.frequency
            + locality_weight * (pattern.temporal_locality + pattern.spatial_locality) / 2.0
    }

    fn record_hit(&self, tier: CacheTier, _access_time: Duration) {
        if let Some(tier_stats) = self.stats.read().tier_stats.get(&tier) {
            tier_stats.hits.fetch_add(1, Ordering::Relaxed);
            // Update average access time (simplified)
        }
    }

    fn record_miss(&self) {
        // Record miss for all tiers
        for tier_stats in self.stats.read().tier_stats.values() {
            tier_stats.misses.fetch_add(1, Ordering::Relaxed);
        }
    }

    fn record_insert_time(&self, _insert_time: Duration) {
        // Update insertion statistics
    }

    fn update_access_pattern(&self, key: &K) {
        let mut patterns = self.access_patterns.write();
        if let Some(pattern) = patterns.get_mut(key) {
            pattern.access_count += 1;
            pattern.last_access = Utc::now();
            // Update frequency and locality scores
            pattern.frequency = (pattern.frequency * 0.9 + 0.1).min(1.0);
        }
    }

    async fn cleanup_expired_entries(&self) -> Result<()> {
        let now = Utc::now();

        // Clean L1
        {
            let mut cache = self.l1_cache.write();
            cache.retain(|_, entry| entry.expires_at.map_or(true, |exp| exp > now));
        }

        // Clean L2
        {
            let mut cache = self.l2_cache.write();
            cache.retain(|_, entry| entry.expires_at.map_or(true, |exp| exp > now));
        }

        // Clean L3
        {
            let mut cache = self.l3_cache.write();
            cache.retain(|_, entry| entry.expires_at.map_or(true, |exp| exp > now));
        }

        Ok(())
    }

    async fn optimize_cache_layout(&self) -> Result<()> {
        // Access pattern analysis and tier placement optimization
        // ML-based optimization algorithms execute here
        Ok(())
    }

    fn update_global_patterns(&self) {
        // Update global access pattern statistics
        let patterns = self.access_patterns.read();
        let mut stats = self.stats.write();

        if !patterns.is_empty() {
            stats.pattern_stats.avg_frequency =
                patterns.values().map(|p| p.frequency).sum::<f64>() / patterns.len() as f64;

            stats.pattern_stats.avg_temporal_locality =
                patterns.values().map(|p| p.temporal_locality).sum::<f64>() / patterns.len() as f64;

            stats.pattern_stats.avg_spatial_locality =
                patterns.values().map(|p| p.spatial_locality).sum::<f64>() / patterns.len() as f64;
        }
    }
}

impl<K> CachePredictor<K>
where
    K: Clone + Eq + std::hash::Hash,
{
    #[must_use] 
    pub fn new(confidence_threshold: f64) -> Self {
        Self {
            access_history: RwLock::new(VecDeque::new()),
            patterns: RwLock::new(FxHashMap::default()),
            confidence_threshold,
        }
    }

    pub fn record_access(&self, key: K) {
        let mut history = self.access_history.write();
        history.push_back(key);

        // Keep only recent history
        if history.len() > 1000 {
            history.pop_front();
        }

        // Update patterns
        self.update_patterns(&history);
    }

    pub fn predict_next(&self, current_sequence: &[K]) -> Vec<K> {
        let patterns = self.patterns.read();
        let mut predictions = Vec::new();

        for (pattern, confidence) in patterns.iter() {
            if *confidence > self.confidence_threshold
                && pattern.len() > current_sequence.len()
                && pattern.starts_with(current_sequence)
            {
                predictions.push(pattern[current_sequence.len()].clone());
            }
        }

        predictions
    }

    pub fn predict_value(&self, _key: &K) -> Option<()> {
        // Simplified prediction - in practice this would predict actual values
        None
    }

    fn update_patterns(&self, history: &VecDeque<K>) {
        let mut patterns = self.patterns.write();

        // Extract subsequences and update their frequencies
        for window_size in 2..=5.min(history.len()) {
            for window in history.iter().collect::<Vec<_>>().windows(window_size) {
                let pattern: Vec<K> = window.iter().map(|k| (*k).clone()).collect();
                *patterns.entry(pattern).or_insert(0.0) += 1.0;
            }
        }

        // Normalize frequencies
        let total_patterns = patterns.len() as f64;
        for confidence in patterns.values_mut() {
            *confidence /= total_patterns;
        }
    }
}

#[cfg(test)]
mod tests {
    use super::*;

    #[tokio::test]
    async fn test_adaptive_cache_basic_operations() -> Result<()> {
        let config = AdvancedCacheConfig::default();
        let cache: AdaptiveCache<String, String> = AdaptiveCache::new(config);

        // Test put and get
        cache.put("key1".to_string(), "value1".to_string()).await?;
        let result = cache.get(&"key1".to_string()).await;
        assert!(result.is_some());
        assert_eq!(result.unwrap().as_ref(), "value1");

        Ok(())
    }

    #[tokio::test]
    async fn test_cache_tiering() -> Result<()> {
        let config = AdvancedCacheConfig::default();
        let cache: AdaptiveCache<String, Vec<u8>> = AdaptiveCache::new(config);

        // Small value should go to L1
        let small_value = vec![0u8; 1024];
        cache.put("small".to_string(), small_value).await?;

        // Large value should go to L3
        let large_value = vec![0u8; 2 * 1024 * 1024];
        cache.put("large".to_string(), large_value).await?;

        // Both should be retrievable
        assert!(cache.get(&"small".to_string()).await.is_some());
        assert!(cache.get(&"large".to_string()).await.is_some());

        Ok(())
    }

    #[test]
    fn test_eviction_policies() {
        let mut cache = FxHashMap::default();
        let adaptive_cache: AdaptiveCache<String, String> =
            AdaptiveCache::new(AdvancedCacheConfig::default());

        // Add some test entries
        for i in 0..3 {
            let entry = AdaptiveCacheEntry {
                value: Arc::new(format!("value{}", i)),
                pattern: AccessPattern {
                    frequency: i as f64 * 0.3,
                    temporal_locality: 0.5,
                    spatial_locality: 0.5,
                    entropy: 0.0,
                    last_access: Utc::now(),
                    access_count: i * 10,
                },
                size: 1024,
                tier: CacheTier::L1,
                created_at: Utc::now(),
                expires_at: None,
            };
            cache.insert(format!("key{}", i), entry);
        }

        // Test LRU eviction
        adaptive_cache.evict_lru(&mut cache);
        assert_eq!(cache.len(), 2);

        // Test compression ratio access
        if let Some(_entry) = cache.get("key0") {
            // Compression ratio functionality removed
        }
    }

    #[test]
    fn test_cache_predictor() {
        let predictor: CachePredictor<String> = CachePredictor::new(0.5);

        // Record some access patterns
        predictor.record_access("file1.rs".to_string());
        predictor.record_access("file2.rs".to_string());
        predictor.record_access("file3.rs".to_string());
        predictor.record_access("file1.rs".to_string());
        predictor.record_access("file2.rs".to_string());

        // Test prediction
        let predictions = predictor.predict_next(&["file1.rs".to_string()]);
        assert!(!predictions.is_empty());
    }

    #[test]
    fn test_cache_config() {
        let config = AdvancedCacheConfig::default();
        assert_eq!(config.eviction_policy, EvictionPolicy::Adaptive);
        assert!(config.enable_multi_tier);
        assert!(config.enable_predictive);
        assert!(!config.enable_collaborative); // Should be disabled by default
    }
}

#[cfg(test)]
mod property_tests {
    use proptest::prelude::*;

    proptest! {
        #[test]
        fn basic_property_stability(_input in ".*") {
            // Basic property test for coverage
            prop_assert!(true);
        }

        #[test]
        fn module_consistency_check(_x in 0u32..1000) {
            // Module consistency verification
            prop_assert!(_x < 1001);
        }
    }
}