zipora 4.0.0

High-performance Rust implementation providing advanced data structures and compression algorithms with memory safety guarantees. Features LRU page cache, sophisticated caching layer, fiber-based concurrency, real-time compression, secure memory pools, SIMD optimizations, and complete C FFI for migration from C++.
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
//! Memory management configuration for Zipora.
//!
//! This module provides comprehensive configuration for memory allocation,
//! caching, and optimization strategies throughout the system.

use super::{Config, ValidationError, parse_env_bool, parse_env_var};
use crate::error::{Result, ZiporaError};
use std::path::Path;

/// Memory allocation strategy for different scenarios.
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
#[derive(Default)]
pub enum AllocationStrategy {
    /// Default system allocator
    System,
    /// Secure memory pool with protection
    #[default]
    SecurePool,
    /// Lock-free allocator for high concurrency
    LockFree,
    /// Thread-local allocator for per-thread optimization
    ThreadLocal,
    /// Fixed-capacity allocator for real-time systems
    FixedCapacity,
    /// Memory-mapped allocator for large datasets
    MemoryMapped,
}

/// Cache optimization level for different performance requirements.
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
#[derive(Default)]
pub enum CacheOptimizationLevel {
    /// No cache optimization
    None,
    /// Basic cache-line alignment
    Basic,
    /// Advanced optimization with prefetching
    #[default]
    Advanced,
    /// Maximum optimization with NUMA awareness
    Maximum,
}

/// NUMA (Non-Uniform Memory Access) configuration.
#[derive(Debug, Clone, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct NumaConfig {
    /// Enable NUMA-aware allocation
    pub enable_numa_awareness: bool,
    /// Preferred NUMA node (-1 for auto)
    pub preferred_node: i32,
    /// Enable local allocation preference
    pub prefer_local_allocation: bool,
    /// Enable NUMA balancing
    pub enable_balancing: bool,
}

impl Default for NumaConfig {
    fn default() -> Self {
        Self {
            enable_numa_awareness: true,
            preferred_node: -1, // Auto-detect
            prefer_local_allocation: true,
            enable_balancing: false,
        }
    }
}

/// Huge page configuration for large memory operations.
#[derive(Debug, Clone, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct HugePageConfig {
    /// Enable huge page allocation
    pub enable_huge_pages: bool,
    /// Huge page size in bytes (0 = auto-detect)
    pub page_size: usize,
    /// Minimum allocation size for huge pages
    pub min_allocation_size: usize,
    /// Enable transparent huge pages
    pub enable_transparent: bool,
}

impl Default for HugePageConfig {
    fn default() -> Self {
        Self {
            enable_huge_pages: false,             // Conservative default
            page_size: 0,                         // Auto-detect (typically 2MB or 1GB)
            min_allocation_size: 2 * 1024 * 1024, // 2MB
            enable_transparent: true,
        }
    }
}

/// Comprehensive memory management configuration.
#[derive(Debug, Clone, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct MemoryConfig {
    /// Primary allocation strategy
    pub allocation_strategy: AllocationStrategy,

    /// Initial memory pool size in bytes
    pub initial_pool_size: usize,

    /// Maximum memory pool size in bytes (0 = unlimited)
    pub max_pool_size: usize,

    /// Memory pool growth factor (1.0-4.0)
    pub growth_factor: f64,

    /// Cache optimization level
    pub cache_optimization: CacheOptimizationLevel,

    /// NUMA configuration
    pub numa_config: NumaConfig,

    /// Huge page configuration
    pub huge_page_config: HugePageConfig,

    /// Enable memory debugging and tracking
    pub enable_debug_tracking: bool,

    /// Enable memory statistics collection
    pub enable_statistics: bool,

    /// Memory allocation alignment in bytes
    pub alignment: usize,

    /// Cache line size in bytes (0 = auto-detect)
    pub cache_line_size: usize,

    /// Number of memory pools for lock-free allocation
    pub num_pools: usize,

    /// Enable memory prefetching hints
    pub enable_prefetching: bool,

    /// Prefetch distance for sequential access
    pub prefetch_distance: usize,

    /// Enable hot/cold data separation
    pub enable_hot_cold_separation: bool,

    /// Hot data access threshold
    pub hot_access_threshold: u32,

    /// Enable memory compaction
    pub enable_compaction: bool,

    /// Compaction trigger threshold (0.0-1.0)
    pub compaction_threshold: f64,

    /// Maximum memory fragmentation ratio (0.0-1.0)
    pub max_fragmentation_ratio: f64,

    /// Enable memory protection features
    pub enable_memory_protection: bool,

    /// Guard page size for buffer overflow protection
    pub guard_page_size: usize,

    /// Enable use-after-free detection
    pub enable_use_after_free_detection: bool,

    /// Enable double-free detection
    pub enable_double_free_detection: bool,
}

impl Default for MemoryConfig {
    fn default() -> Self {
        Self {
            allocation_strategy: AllocationStrategy::default(),
            initial_pool_size: 64 * 1024 * 1024, // 64MB
            max_pool_size: 0,                    // Unlimited
            growth_factor: 1.618,                // Golden ratio
            cache_optimization: CacheOptimizationLevel::default(),
            numa_config: NumaConfig::default(),
            huge_page_config: HugePageConfig::default(),
            enable_debug_tracking: false,
            enable_statistics: true,
            alignment: 64,      // Cache line alignment
            cache_line_size: 0, // Auto-detect
            num_pools: 8,       // Good for most systems
            enable_prefetching: true,
            prefetch_distance: 2, // Cache lines ahead
            enable_hot_cold_separation: true,
            hot_access_threshold: 100,
            enable_compaction: false, // Conservative default
            compaction_threshold: 0.8,
            max_fragmentation_ratio: 0.3,
            enable_memory_protection: true,
            guard_page_size: 4096, // One page
            enable_use_after_free_detection: true,
            enable_double_free_detection: true,
        }
    }
}

impl Config for MemoryConfig {
    fn validate(&self) -> Result<()> {
        let mut errors = Vec::new();

        // Validate pool sizes
        if self.initial_pool_size == 0 {
            errors.push(
                ValidationError::new(
                    "initial_pool_size",
                    &self.initial_pool_size.to_string(),
                    "initial pool size must be greater than 0",
                )
                .with_suggestion("typical values: 16MB-1GB"),
            );
        }

        if self.max_pool_size != 0 && self.max_pool_size < self.initial_pool_size {
            errors.push(ValidationError::new(
                "max_pool_size",
                &self.max_pool_size.to_string(),
                "maximum pool size must be greater than initial pool size",
            ));
        }

        // Validate growth factor
        if self.growth_factor < 1.0 || self.growth_factor > 4.0 {
            errors.push(
                ValidationError::new(
                    "growth_factor",
                    &self.growth_factor.to_string(),
                    "growth factor must be between 1.0 and 4.0",
                )
                .with_suggestion("typical values: 1.5-2.0, golden ratio: 1.618"),
            );
        }

        // Validate alignment
        if self.alignment == 0 || (self.alignment & (self.alignment - 1)) != 0 {
            errors.push(
                ValidationError::new(
                    "alignment",
                    &self.alignment.to_string(),
                    "alignment must be a power of 2",
                )
                .with_suggestion("typical values: 8, 16, 32, 64, 128"),
            );
        }

        // Validate compaction threshold
        if self.compaction_threshold < 0.0 || self.compaction_threshold > 1.0 {
            errors.push(ValidationError::new(
                "compaction_threshold",
                &self.compaction_threshold.to_string(),
                "compaction threshold must be between 0.0 and 1.0",
            ));
        }

        // Validate fragmentation ratio
        if self.max_fragmentation_ratio < 0.0 || self.max_fragmentation_ratio > 1.0 {
            errors.push(ValidationError::new(
                "max_fragmentation_ratio",
                &self.max_fragmentation_ratio.to_string(),
                "fragmentation ratio must be between 0.0 and 1.0",
            ));
        }

        // Validate num_pools
        if self.num_pools == 0 {
            errors.push(
                ValidationError::new(
                    "num_pools",
                    &self.num_pools.to_string(),
                    "number of pools must be at least 1",
                )
                .with_suggestion("typical values: 4-16 based on CPU cores"),
            );
        }

        // Return first error if any
        if !errors.is_empty() {
            return Err(ZiporaError::configuration(format!(
                "Memory configuration validation failed: {}",
                errors
                    .into_iter()
                    .map(|e| e.to_string())
                    .collect::<Vec<_>>()
                    .join("; ")
            )));
        }

        Ok(())
    }

    fn from_env_with_prefix(prefix: &str) -> Result<Self> {
        let mut config = Self::default();

        // Basic memory settings
        config.initial_pool_size = parse_env_var(
            &format!("{}MEMORY_INITIAL_POOL_SIZE", prefix),
            config.initial_pool_size,
        );
        config.max_pool_size = parse_env_var(
            &format!("{}MEMORY_MAX_POOL_SIZE", prefix),
            config.max_pool_size,
        );
        config.growth_factor = parse_env_var(
            &format!("{}MEMORY_GROWTH_FACTOR", prefix),
            config.growth_factor,
        );
        config.alignment = parse_env_var(&format!("{}MEMORY_ALIGNMENT", prefix), config.alignment);
        config.cache_line_size = parse_env_var(
            &format!("{}MEMORY_CACHE_LINE_SIZE", prefix),
            config.cache_line_size,
        );
        config.num_pools = parse_env_var(&format!("{}MEMORY_NUM_POOLS", prefix), config.num_pools);

        // Feature flags
        config.enable_debug_tracking = parse_env_bool(
            &format!("{}MEMORY_DEBUG_TRACKING", prefix),
            config.enable_debug_tracking,
        );
        config.enable_statistics = parse_env_bool(
            &format!("{}MEMORY_STATISTICS", prefix),
            config.enable_statistics,
        );
        config.enable_prefetching = parse_env_bool(
            &format!("{}MEMORY_PREFETCHING", prefix),
            config.enable_prefetching,
        );
        config.enable_hot_cold_separation = parse_env_bool(
            &format!("{}MEMORY_HOT_COLD_SEPARATION", prefix),
            config.enable_hot_cold_separation,
        );
        config.enable_compaction = parse_env_bool(
            &format!("{}MEMORY_COMPACTION", prefix),
            config.enable_compaction,
        );
        config.enable_memory_protection = parse_env_bool(
            &format!("{}MEMORY_PROTECTION", prefix),
            config.enable_memory_protection,
        );

        // Advanced settings
        config.prefetch_distance = parse_env_var(
            &format!("{}MEMORY_PREFETCH_DISTANCE", prefix),
            config.prefetch_distance,
        );
        config.hot_access_threshold = parse_env_var(
            &format!("{}MEMORY_HOT_ACCESS_THRESHOLD", prefix),
            config.hot_access_threshold,
        );
        config.compaction_threshold = parse_env_var(
            &format!("{}MEMORY_COMPACTION_THRESHOLD", prefix),
            config.compaction_threshold,
        );
        config.max_fragmentation_ratio = parse_env_var(
            &format!("{}MEMORY_MAX_FRAGMENTATION_RATIO", prefix),
            config.max_fragmentation_ratio,
        );
        config.guard_page_size = parse_env_var(
            &format!("{}MEMORY_GUARD_PAGE_SIZE", prefix),
            config.guard_page_size,
        );

        // NUMA settings
        config.numa_config.enable_numa_awareness = parse_env_bool(
            &format!("{}MEMORY_NUMA_ENABLE", prefix),
            config.numa_config.enable_numa_awareness,
        );
        config.numa_config.preferred_node = parse_env_var(
            &format!("{}MEMORY_NUMA_PREFERRED_NODE", prefix),
            config.numa_config.preferred_node,
        );
        config.numa_config.prefer_local_allocation = parse_env_bool(
            &format!("{}MEMORY_NUMA_LOCAL_ALLOCATION", prefix),
            config.numa_config.prefer_local_allocation,
        );
        config.numa_config.enable_balancing = parse_env_bool(
            &format!("{}MEMORY_NUMA_BALANCING", prefix),
            config.numa_config.enable_balancing,
        );

        // Huge page settings
        config.huge_page_config.enable_huge_pages = parse_env_bool(
            &format!("{}MEMORY_HUGE_PAGES_ENABLE", prefix),
            config.huge_page_config.enable_huge_pages,
        );
        config.huge_page_config.page_size = parse_env_var(
            &format!("{}MEMORY_HUGE_PAGE_SIZE", prefix),
            config.huge_page_config.page_size,
        );
        config.huge_page_config.min_allocation_size = parse_env_var(
            &format!("{}MEMORY_HUGE_PAGE_MIN_SIZE", prefix),
            config.huge_page_config.min_allocation_size,
        );
        config.huge_page_config.enable_transparent = parse_env_bool(
            &format!("{}MEMORY_HUGE_PAGES_TRANSPARENT", prefix),
            config.huge_page_config.enable_transparent,
        );

        config.validate()?;
        Ok(config)
    }

    fn performance_preset() -> Self {
        Self {
            allocation_strategy: AllocationStrategy::LockFree,
            initial_pool_size: 256 * 1024 * 1024, // 256MB
            growth_factor: 2.0, // Fast growth
            cache_optimization: CacheOptimizationLevel::Maximum,
            alignment: 64, // Cache line aligned
            num_pools: 16, // High concurrency
            enable_prefetching: true,
            prefetch_distance: 4, // Aggressive prefetching
            enable_hot_cold_separation: true,
            hot_access_threshold: 50, // Lower threshold for hot data
            huge_page_config: HugePageConfig {
                enable_huge_pages: true,
                min_allocation_size: 1024 * 1024, // 1MB
                ..Default::default()
            },
            numa_config: NumaConfig {
                enable_numa_awareness: true,
                prefer_local_allocation: true,
                ..Default::default()
            },
            enable_memory_protection: false,
            enable_debug_tracking: false,
            ..Default::default()
        }
    }

    fn memory_preset() -> Self {
        Self {
            allocation_strategy: AllocationStrategy::FixedCapacity,
            initial_pool_size: 16 * 1024 * 1024, // 16MB
            max_pool_size: 128 * 1024 * 1024, // 128MB limit
            growth_factor: 1.2, // Slow growth
            cache_optimization: CacheOptimizationLevel::Basic,
            alignment: 16, // Smaller alignment
            num_pools: 2, // Minimal pools
            enable_prefetching: false, // Save memory
            enable_hot_cold_separation: false,
            enable_compaction: true, // Reduce fragmentation
            compaction_threshold: 0.6, // Aggressive compaction
            max_fragmentation_ratio: 0.2, // Low fragmentation tolerance
            huge_page_config: HugePageConfig {
                enable_huge_pages: false,
                ..Default::default()
            },
            numa_config: NumaConfig {
                enable_numa_awareness: false,
                ..Default::default()
            },
            enable_memory_protection: true,
            enable_debug_tracking: false, // Save memory
            ..Default::default()
        }
    }

    fn realtime_preset() -> Self {
        Self {
            allocation_strategy: AllocationStrategy::FixedCapacity,
            initial_pool_size: 128 * 1024 * 1024, // 128MB pre-allocated
            max_pool_size: 128 * 1024 * 1024, // Fixed size
            growth_factor: 1.0, // No growth after initial
            cache_optimization: CacheOptimizationLevel::Advanced,
            alignment: 64, // Cache line aligned
            num_pools: 4, // Moderate concurrency
            enable_prefetching: true,
            prefetch_distance: 2, // Moderate prefetching
            enable_hot_cold_separation: false, // Avoid dynamic behavior
            enable_compaction: false, // Avoid unpredictable latency
            huge_page_config: HugePageConfig {
                enable_huge_pages: true,
                enable_transparent: false, // Explicit allocation
                ..Default::default()
            },
            numa_config: NumaConfig {
                enable_numa_awareness: true,
                prefer_local_allocation: true,
                enable_balancing: false, // Avoid migration
                ..Default::default()
            },
            enable_memory_protection: true,
            enable_use_after_free_detection: false, // Reduce overhead
            enable_double_free_detection: true, // Keep critical protection
            enable_debug_tracking: false,
            ..Default::default()
        }
    }

    fn save_to_file<P: AsRef<Path>>(&self, _path: P) -> Result<()> {
        #[cfg(feature = "serde")]
        {
            let serialized = serde_json::to_string_pretty(self).map_err(|e| {
                ZiporaError::configuration(format!("Failed to serialize memory config: {}", e))
            })?;

            std::fs::write(_path, serialized).map_err(|e| {
                ZiporaError::configuration(format!("Failed to write memory config file: {}", e))
            })?;

            Ok(())
        }
        #[cfg(not(feature = "serde"))]
        Err(ZiporaError::invalid_operation(
            "Requires serde feature",
        ))
    }

    fn load_from_file<P: AsRef<Path>>(_path: P) -> Result<Self> {
        #[cfg(feature = "serde")]
        {
            let content = std::fs::read_to_string(_path).map_err(|e| {
                ZiporaError::configuration(format!("Failed to read memory config file: {}", e))
            })?;

            let config: Self = serde_json::from_str(&content).map_err(|e| {
                ZiporaError::configuration(format!("Failed to parse memory config file: {}", e))
            })?;

            config.validate()?;
            Ok(config)
        }
        #[cfg(not(feature = "serde"))]
        Err(ZiporaError::invalid_operation(
            "Requires serde feature",
        ))
    }
}

impl MemoryConfig {
    /// Fluent builder — returns Default for chaining.
    pub fn builder() -> Self {
        Self::default()
    }
    /// Set initial pool size.
    pub fn initial_pool_size(mut self, v: usize) -> Self {
        self.initial_pool_size = v;
        self
    }
    /// Set max pool size.
    pub fn max_pool_size(mut self, v: usize) -> Self {
        self.max_pool_size = v;
        self
    }
    /// Enable NUMA.
    pub fn enable_numa(mut self, v: bool) -> Self {
        self.numa_config.enable_numa_awareness = v;
        self
    }
    /// Enable huge pages.
    pub fn enable_huge_pages(mut self, v: bool) -> Self {
        self.huge_page_config.enable_huge_pages = v;
        self
    }
    /// Set alignment.
    pub fn alignment(mut self, v: usize) -> Self {
        self.alignment = v;
        self
    }
    /// Set allocation strategy.
    pub fn allocation_strategy(mut self, v: AllocationStrategy) -> Self {
        self.allocation_strategy = v;
        self
    }
    /// Set cache optimization level.
    pub fn cache_optimization(mut self, v: CacheOptimizationLevel) -> Self {
        self.cache_optimization = v;
        self
    }
    /// Set number of pools.
    pub fn num_pools(mut self, v: usize) -> Self {
        self.num_pools = v;
        self
    }
    /// Enable memory protection.
    pub fn enable_protection(mut self, v: bool) -> Self {
        self.enable_memory_protection = v;
        self
    }
    /// Finalize.
    pub fn build(self) -> Result<Self> {
        self.validate()?;
        Ok(self)
    }

    /// Get the effective cache line size.
    ///
    /// Returns the configured cache line size, or the detected system cache line size if auto-detect is enabled.
    pub fn effective_cache_line_size(&self) -> usize {
        if self.cache_line_size == 0 {
            // Auto-detect cache line size
            #[cfg(target_arch = "x86_64")]
            {
                64 // Typical x86_64 cache line size
            }
            #[cfg(target_arch = "aarch64")]
            {
                128 // Typical ARM64 cache line size
            }
            #[cfg(not(any(target_arch = "x86_64", target_arch = "aarch64")))]
            {
                64 // Conservative default
            }
        } else {
            self.cache_line_size
        }
    }

    /// Get the effective number of memory pools.
    ///
    /// Returns an appropriate number of pools based on the allocation strategy and system capabilities.
    pub fn effective_num_pools(&self) -> usize {
        match self.allocation_strategy {
            AllocationStrategy::System => 1,
            AllocationStrategy::SecurePool => std::cmp::min(self.num_pools, 8),
            AllocationStrategy::LockFree => self.num_pools,
            AllocationStrategy::ThreadLocal => std::thread::available_parallelism()
                .map(|n| n.get())
                .unwrap_or(1),
            AllocationStrategy::FixedCapacity => 1,
            AllocationStrategy::MemoryMapped => 1,
        }
    }
}

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

    #[test]
    fn test_default_config() {
        let config = MemoryConfig::default();
        assert!(config.validate().is_ok());
    }

    #[test]
    fn test_builder_pattern() {
        let config = MemoryConfig::builder()
            .allocation_strategy(AllocationStrategy::LockFree)
            .initial_pool_size(128 * 1024 * 1024)
            .enable_numa(true)
            .build()
            .expect("Failed to build memory config");

        assert_eq!(config.allocation_strategy, AllocationStrategy::LockFree);
        assert_eq!(config.initial_pool_size, 128 * 1024 * 1024);
        assert!(config.numa_config.enable_numa_awareness);
    }

    #[test]
    fn test_presets() {
        let perf_config = MemoryConfig::performance_preset();
        assert!(perf_config.validate().is_ok());
        assert_eq!(
            perf_config.allocation_strategy,
            AllocationStrategy::LockFree
        );

        let mem_config = MemoryConfig::memory_preset();
        assert!(mem_config.validate().is_ok());
        assert_eq!(
            mem_config.allocation_strategy,
            AllocationStrategy::FixedCapacity
        );

        let rt_config = MemoryConfig::realtime_preset();
        assert!(rt_config.validate().is_ok());
        assert_eq!(
            rt_config.allocation_strategy,
            AllocationStrategy::FixedCapacity
        );
        assert!(!rt_config.enable_compaction);
    }

    #[test]
    fn test_validation() {
        // Test invalid pool size
        let config_invalid_size = MemoryConfig {
            initial_pool_size: 0,
            ..MemoryConfig::default()
        };
        assert!(config_invalid_size.validate().is_err());

        // Test invalid growth factor
        let config_invalid_growth1 = MemoryConfig {
            growth_factor: 0.5,
            ..MemoryConfig::default()
        };
        assert!(config_invalid_growth1.validate().is_err());

        let config_invalid_growth2 = MemoryConfig {
            growth_factor: 5.0,
            ..MemoryConfig::default()
        };
        assert!(config_invalid_growth2.validate().is_err());

        // Test invalid alignment
        let config_invalid_alignment = MemoryConfig {
            alignment: 3, // Not a power of 2
            ..MemoryConfig::default()
        };
        assert!(config_invalid_alignment.validate().is_err());
    }

    #[test]
    fn test_effective_values() {
        let config = MemoryConfig::default();

        // Test effective cache line size
        let cache_line_size = config.effective_cache_line_size();
        assert!((32..=128).contains(&cache_line_size));

        // Test effective num pools
        let num_pools = config.effective_num_pools();
        assert!(num_pools >= 1);
    }

    #[test]
    fn test_serialization() {
        let config = MemoryConfig::default();

        // Test JSON serialization
        let json = serde_json::to_string(&config).expect("Failed to serialize");
        let deserialized: MemoryConfig =
            serde_json::from_str(&json).expect("Failed to deserialize");

        assert_eq!(config.allocation_strategy, deserialized.allocation_strategy);
        assert_eq!(config.initial_pool_size, deserialized.initial_pool_size);
        assert_eq!(
            config.numa_config.enable_numa_awareness,
            deserialized.numa_config.enable_numa_awareness
        );
    }
}