runmat-snapshot 0.5.6

High-performance snapshot creator for preloading RunMat standard library
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
//! Snapshot presets for common use cases
//!
//! Provides pre-configured snapshot settings optimized for different
//! deployment scenarios and performance requirements.

use crate::{CompressionAlgorithm, SnapshotConfig};
use std::time::Duration;

/// Snapshot preset configurations
#[derive(Debug, Clone)]
pub enum SnapshotPreset {
    /// Fast development iteration
    Development,

    /// Production deployment
    Production,

    /// High-performance computing
    HighPerformance,

    /// Memory-constrained environments
    LowMemory,

    /// Network-optimized (minimal size)
    NetworkOptimized,

    /// Debug-friendly (maximum validation)
    Debug,

    /// Custom configuration
    Custom(SnapshotConfig),
}

impl SnapshotPreset {
    /// Get configuration for preset
    pub fn config(&self) -> SnapshotConfig {
        match self {
            SnapshotPreset::Development => Self::development_config(),
            SnapshotPreset::Production => Self::production_config(),
            SnapshotPreset::HighPerformance => Self::high_performance_config(),
            SnapshotPreset::LowMemory => Self::low_memory_config(),
            SnapshotPreset::NetworkOptimized => Self::network_optimized_config(),
            SnapshotPreset::Debug => Self::debug_config(),
            SnapshotPreset::Custom(config) => config.clone(),
        }
    }

    /// Development preset - fast build, minimal compression
    fn development_config() -> SnapshotConfig {
        SnapshotConfig {
            compression_enabled: true,
            compression_algorithm: CompressionAlgorithm::Lz4,
            compression_level: 1, // Fast compression
            validation_enabled: true,
            memory_mapping_enabled: true,
            parallel_loading: true,
            progress_reporting: true, // Helpful during development
            max_optimization_level: crate::OptimizationLevel::MaxPerformance,
            max_cache_size: 64 * 1024 * 1024, // 64MB
            cache_eviction_policy: crate::CacheEvictionPolicy::LeastRecentlyUsed,
        }
    }

    /// Production preset - balanced performance and size
    fn production_config() -> SnapshotConfig {
        SnapshotConfig {
            compression_enabled: true,
            compression_algorithm: CompressionAlgorithm::Auto,
            compression_level: 6, // Balanced compression
            validation_enabled: true,
            memory_mapping_enabled: true,
            parallel_loading: true,
            progress_reporting: false, // No progress in production
            max_optimization_level: crate::OptimizationLevel::MaxPerformance,
            max_cache_size: 128 * 1024 * 1024, // 128MB
            cache_eviction_policy: crate::CacheEvictionPolicy::Adaptive,
        }
    }

    /// High-performance preset - optimized for speed
    fn high_performance_config() -> SnapshotConfig {
        SnapshotConfig {
            compression_enabled: true,
            compression_algorithm: CompressionAlgorithm::Lz4,
            compression_level: 1,      // Fastest decompression
            validation_enabled: false, // Skip validation for speed
            memory_mapping_enabled: true,
            parallel_loading: true,
            progress_reporting: false,
            max_optimization_level: crate::OptimizationLevel::MaxPerformance,
            max_cache_size: 256 * 1024 * 1024, // 256MB - more cache
            cache_eviction_policy: crate::CacheEvictionPolicy::LeastRecentlyUsed,
        }
    }

    /// Low-memory preset - minimal memory usage
    fn low_memory_config() -> SnapshotConfig {
        SnapshotConfig {
            compression_enabled: true,
            compression_algorithm: CompressionAlgorithm::Zstd,
            compression_level: 9, // Maximum compression
            validation_enabled: true,
            memory_mapping_enabled: false, // Avoid memory mapping
            parallel_loading: false,       // Reduce memory overhead
            progress_reporting: false,
            max_optimization_level: crate::OptimizationLevel::MaxPerformance,
            max_cache_size: 16 * 1024 * 1024, // 16MB - minimal cache
            cache_eviction_policy: crate::CacheEvictionPolicy::TimeToLive(Duration::from_secs(60)),
        }
    }

    /// Network-optimized preset - smallest possible size
    fn network_optimized_config() -> SnapshotConfig {
        SnapshotConfig {
            compression_enabled: true,
            compression_algorithm: CompressionAlgorithm::Zstd,
            compression_level: 9, // Maximum compression
            validation_enabled: true,
            memory_mapping_enabled: true,
            parallel_loading: true,
            progress_reporting: false,
            max_optimization_level: crate::OptimizationLevel::MaxPerformance,
            max_cache_size: 32 * 1024 * 1024, // 32MB
            cache_eviction_policy: crate::CacheEvictionPolicy::LeastFrequentlyUsed,
        }
    }

    /// Debug preset - maximum validation and reporting
    fn debug_config() -> SnapshotConfig {
        SnapshotConfig {
            compression_enabled: false, // No compression for easier debugging
            compression_algorithm: CompressionAlgorithm::None,
            compression_level: 0,
            validation_enabled: true,
            memory_mapping_enabled: false, // Easier to debug without mmap
            parallel_loading: false,       // Sequential for easier debugging
            progress_reporting: true,      // Detailed progress
            max_optimization_level: crate::OptimizationLevel::MaxPerformance,
            max_cache_size: 128 * 1024 * 1024, // 128MB
            cache_eviction_policy: crate::CacheEvictionPolicy::LeastRecentlyUsed,
        }
    }

    /// Get all available presets
    pub fn all_presets() -> Vec<SnapshotPreset> {
        vec![
            SnapshotPreset::Development,
            SnapshotPreset::Production,
            SnapshotPreset::HighPerformance,
            SnapshotPreset::LowMemory,
            SnapshotPreset::NetworkOptimized,
            SnapshotPreset::Debug,
        ]
    }

    /// Get preset by name
    pub fn from_name(name: &str) -> Option<SnapshotPreset> {
        match name.to_lowercase().as_str() {
            "development" | "dev" => Some(SnapshotPreset::Development),
            "production" | "prod" => Some(SnapshotPreset::Production),
            "high-performance" | "highperf" | "performance" => {
                Some(SnapshotPreset::HighPerformance)
            }
            "low-memory" | "lowmem" | "minimal" => Some(SnapshotPreset::LowMemory),
            "network-optimized" | "network" | "small" => Some(SnapshotPreset::NetworkOptimized),
            "debug" => Some(SnapshotPreset::Debug),
            _ => None,
        }
    }

    /// Get preset name
    pub fn name(&self) -> &'static str {
        match self {
            SnapshotPreset::Development => "Development",
            SnapshotPreset::Production => "Production",
            SnapshotPreset::HighPerformance => "High-Performance",
            SnapshotPreset::LowMemory => "Low-Memory",
            SnapshotPreset::NetworkOptimized => "Network-Optimized",
            SnapshotPreset::Debug => "Debug",
            SnapshotPreset::Custom(_) => "Custom",
        }
    }

    /// Get preset description
    pub fn description(&self) -> &'static str {
        match self {
            SnapshotPreset::Development => {
                "Fast build times with minimal compression, ideal for development iteration"
            }
            SnapshotPreset::Production => {
                "Balanced performance and size, recommended for production deployments"
            }
            SnapshotPreset::HighPerformance => {
                "Optimized for fastest loading times, minimal validation overhead"
            }
            SnapshotPreset::LowMemory => {
                "Minimal memory usage with maximum compression for constrained environments"
            }
            SnapshotPreset::NetworkOptimized => {
                "Smallest possible file size for network distribution"
            }
            SnapshotPreset::Debug => "Maximum validation and debugging information, no compression",
            SnapshotPreset::Custom(_) => "Custom configuration with user-specified settings",
        }
    }

    /// Get expected characteristics
    pub fn characteristics(&self) -> PresetCharacteristics {
        match self {
            SnapshotPreset::Development => PresetCharacteristics {
                build_time: BuildTime::Fast,
                load_time: LoadTime::Fast,
                file_size: FileSize::Medium,
                memory_usage: MemoryUsage::Medium,
                validation_level: ValidationLevel::Standard,
                debugging_friendly: true,
            },
            SnapshotPreset::Production => PresetCharacteristics {
                build_time: BuildTime::Medium,
                load_time: LoadTime::Fast,
                file_size: FileSize::Small,
                memory_usage: MemoryUsage::Medium,
                validation_level: ValidationLevel::Standard,
                debugging_friendly: false,
            },
            SnapshotPreset::HighPerformance => PresetCharacteristics {
                build_time: BuildTime::Fast,
                load_time: LoadTime::VeryFast,
                file_size: FileSize::Medium,
                memory_usage: MemoryUsage::High,
                validation_level: ValidationLevel::Minimal,
                debugging_friendly: false,
            },
            SnapshotPreset::LowMemory => PresetCharacteristics {
                build_time: BuildTime::Slow,
                load_time: LoadTime::Medium,
                file_size: FileSize::VerySmall,
                memory_usage: MemoryUsage::VeryLow,
                validation_level: ValidationLevel::Standard,
                debugging_friendly: false,
            },
            SnapshotPreset::NetworkOptimized => PresetCharacteristics {
                build_time: BuildTime::Slow,
                load_time: LoadTime::Medium,
                file_size: FileSize::VerySmall,
                memory_usage: MemoryUsage::Low,
                validation_level: ValidationLevel::Standard,
                debugging_friendly: false,
            },
            SnapshotPreset::Debug => PresetCharacteristics {
                build_time: BuildTime::Medium,
                load_time: LoadTime::Medium,
                file_size: FileSize::Large,
                memory_usage: MemoryUsage::Medium,
                validation_level: ValidationLevel::Comprehensive,
                debugging_friendly: true,
            },
            SnapshotPreset::Custom(_) => PresetCharacteristics {
                build_time: BuildTime::Medium,
                load_time: LoadTime::Medium,
                file_size: FileSize::Medium,
                memory_usage: MemoryUsage::Medium,
                validation_level: ValidationLevel::Standard,
                debugging_friendly: false,
            },
        }
    }
}

/// Preset characteristics for comparison
#[derive(Debug, Clone)]
pub struct PresetCharacteristics {
    pub build_time: BuildTime,
    pub load_time: LoadTime,
    pub file_size: FileSize,
    pub memory_usage: MemoryUsage,
    pub validation_level: ValidationLevel,
    pub debugging_friendly: bool,
}

/// Build time characteristics
#[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Ord)]
pub enum BuildTime {
    VeryFast,
    Fast,
    Medium,
    Slow,
    VerySlow,
}

/// Load time characteristics
#[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Ord)]
pub enum LoadTime {
    VeryFast,
    Fast,
    Medium,
    Slow,
    VerySlow,
}

/// File size characteristics
#[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Ord)]
pub enum FileSize {
    VerySmall,
    Small,
    Medium,
    Large,
    VeryLarge,
}

/// Memory usage characteristics
#[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Ord)]
pub enum MemoryUsage {
    VeryLow,
    Low,
    Medium,
    High,
    VeryHigh,
}

/// Validation level
#[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Ord)]
pub enum ValidationLevel {
    None,
    Minimal,
    Standard,
    Comprehensive,
    Exhaustive,
}

impl std::fmt::Display for BuildTime {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        match self {
            BuildTime::VeryFast => write!(f, "Very Fast"),
            BuildTime::Fast => write!(f, "Fast"),
            BuildTime::Medium => write!(f, "Medium"),
            BuildTime::Slow => write!(f, "Slow"),
            BuildTime::VerySlow => write!(f, "Very Slow"),
        }
    }
}

impl std::fmt::Display for LoadTime {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        match self {
            LoadTime::VeryFast => write!(f, "Very Fast"),
            LoadTime::Fast => write!(f, "Fast"),
            LoadTime::Medium => write!(f, "Medium"),
            LoadTime::Slow => write!(f, "Slow"),
            LoadTime::VerySlow => write!(f, "Very Slow"),
        }
    }
}

impl std::fmt::Display for FileSize {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        match self {
            FileSize::VerySmall => write!(f, "Very Small"),
            FileSize::Small => write!(f, "Small"),
            FileSize::Medium => write!(f, "Medium"),
            FileSize::Large => write!(f, "Large"),
            FileSize::VeryLarge => write!(f, "Very Large"),
        }
    }
}

impl std::fmt::Display for MemoryUsage {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        match self {
            MemoryUsage::VeryLow => write!(f, "Very Low"),
            MemoryUsage::Low => write!(f, "Low"),
            MemoryUsage::Medium => write!(f, "Medium"),
            MemoryUsage::High => write!(f, "High"),
            MemoryUsage::VeryHigh => write!(f, "Very High"),
        }
    }
}

impl std::fmt::Display for ValidationLevel {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        match self {
            ValidationLevel::None => write!(f, "None"),
            ValidationLevel::Minimal => write!(f, "Minimal"),
            ValidationLevel::Standard => write!(f, "Standard"),
            ValidationLevel::Comprehensive => write!(f, "Comprehensive"),
            ValidationLevel::Exhaustive => write!(f, "Exhaustive"),
        }
    }
}

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

    #[test]
    fn test_preset_from_name() {
        assert!(matches!(
            SnapshotPreset::from_name("development"),
            Some(SnapshotPreset::Development)
        ));
        assert!(matches!(
            SnapshotPreset::from_name("prod"),
            Some(SnapshotPreset::Production)
        ));
        assert!(matches!(
            SnapshotPreset::from_name("highperf"),
            Some(SnapshotPreset::HighPerformance)
        ));
        assert!(SnapshotPreset::from_name("invalid").is_none());
    }

    #[test]
    fn test_preset_names() {
        assert_eq!(SnapshotPreset::Development.name(), "Development");
        assert_eq!(SnapshotPreset::Production.name(), "Production");
        assert_eq!(SnapshotPreset::Debug.name(), "Debug");
    }

    #[test]
    fn test_preset_configs() {
        let dev_config = SnapshotPreset::Development.config();
        assert!(dev_config.progress_reporting);
        assert_eq!(dev_config.compression_level, 1);

        let prod_config = SnapshotPreset::Production.config();
        assert!(!prod_config.progress_reporting);
        assert_eq!(prod_config.compression_level, 6);

        let debug_config = SnapshotPreset::Debug.config();
        assert!(!debug_config.compression_enabled);
        assert!(debug_config.validation_enabled);
    }

    #[test]
    fn test_preset_characteristics() {
        let high_perf = SnapshotPreset::HighPerformance;
        let chars = high_perf.characteristics();

        assert_eq!(chars.load_time, LoadTime::VeryFast);
        assert_eq!(chars.memory_usage, MemoryUsage::High);
        assert_eq!(chars.validation_level, ValidationLevel::Minimal);

        let low_mem = SnapshotPreset::LowMemory;
        let chars = low_mem.characteristics();

        assert_eq!(chars.memory_usage, MemoryUsage::VeryLow);
        assert_eq!(chars.file_size, FileSize::VerySmall);
    }

    #[test]
    fn test_all_presets() {
        let presets = SnapshotPreset::all_presets();
        assert_eq!(presets.len(), 6);

        // Ensure all presets have unique names
        let names: std::collections::HashSet<_> = presets.iter().map(|p| p.name()).collect();
        assert_eq!(names.len(), 6);
    }

    #[test]
    fn test_characteristic_ordering() {
        assert!(BuildTime::VeryFast < BuildTime::Fast);
        assert!(LoadTime::Fast < LoadTime::Medium);
        assert!(FileSize::Small < FileSize::Large);
        assert!(MemoryUsage::Low < MemoryUsage::High);
        assert!(ValidationLevel::Minimal < ValidationLevel::Standard);
    }
}