trash_parallelism 0.1.102

Azzybana Raccoon's comprehensive parallelism 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
/// Statistics and monitoring for memory operations.
///
/// This module provides comprehensive memory statistics tracking,
/// profiling capabilities, event logging, and snapshot functionality
/// for debugging and performance analysis.
///
/// ## Features
///
/// - **Memory Statistics**: Detailed allocation/deallocation metrics
/// - **Memory Profiling**: Performance analysis with allocation tracking
/// - **Event Logging**: Timestamped memory operation events
/// - **Memory Snapshots**: Point-in-time memory state capture
/// - **Serialization**: JSON/base64 export for debugging
///
/// ## Examples
///
/// ### Memory Profiling
/// ```rust
/// use trash_utilities::memory::*;
///
/// let profiler = MemoryProfiler::new();
/// profiler.start();
///
/// // Your memory-intensive operations here
/// {
///     let pool = MemoryPool::new(default_pool_config("test"));
///     let _ptr = pool.allocate(1024).unwrap();
///     profiler.record_allocation("test_allocation", 1024);
/// }
///
/// profiler.stop();
///
/// // Get profiling report
/// let report = profiler.report();
/// for (tag, stats) in report {
///     println!("{}: {} allocations, avg {} bytes", tag, stats.count, stats.avg_size);
/// }
/// ```
///
/// ### Event Logging
/// ```rust
/// use trash_utilities::memory::*;
///
/// let logger = MemoryEventLogger::new(1000); // Max 1000 events
///
/// // Log memory events
/// logger.log_event(MemoryEventType::Allocation, 1024, Some("my_pool"), "Allocated buffer");
/// logger.log_event(MemoryEventType::PoolCreated, 0, Some("my_pool"), "Created new pool");
///
/// // Get recent events
/// let events = logger.recent_events(10);
/// for event in events {
///     println!("{}: {} bytes - {}", event.event_type, event.size, event.details);
/// }
///
/// // Export as JSON
/// let json = logger.export_json().unwrap();
/// ```
///
/// ### Memory Snapshots
/// ```rust
/// use trash_utilities::memory::*;
///
/// let manager = global_memory_manager();
/// let _pool = manager.create_pool(&default_pool_config("snapshot_test"));
///
/// // Create snapshot
/// let snapshot = MemorySnapshot::new(&manager);
///
/// // Export for debugging
/// let base64_data = snapshot.export_base64().unwrap();
/// println!("Snapshot: {}", base64_data);
///
/// // Import later for analysis
/// let imported = MemorySnapshot::import_base64(&base64_data).unwrap();
/// assert!(imported.verify()); // Check integrity
/// ```
// Standard library imports
use std::{hash::Hasher, time::Instant};

// External crate imports
use ahash::{AHashMap, AHasher};
use base64::{Engine as _, engine::general_purpose::STANDARD};
use chrono::{DateTime, Utc};
use parking_lot::Mutex;
use serde::{Deserialize, Serialize};

// Local imports
use super::MemoryManager;

/// Memory allocation statistics
#[derive(Debug, Clone, Default, Serialize, Deserialize)]
pub struct MemoryStats {
    pub allocated_bytes: usize,
    pub peak_allocated_bytes: usize,
    pub total_allocated_bytes: usize,
    pub allocation_count: usize,
    pub deallocation_count: usize,
    pub fragmentation_ratio: f64,
    pub heap_size: usize,
}

/// Allocation statistics
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct AllocationStats {
    pub total_size: usize,
    pub count: usize,
    pub avg_size: usize,
    pub rate: f64, // allocations per second
}

/// Memory profiler for tracking allocations
#[derive(Debug)]
pub struct MemoryProfiler {
    allocations: parking_lot::Mutex<AHashMap<String, Vec<(usize, Instant)>>>,
    active: std::sync::atomic::AtomicBool,
}

impl MemoryProfiler {
    /// Create a new memory profiler
    #[must_use]
    pub fn new() -> Self {
        Self {
            allocations: parking_lot::Mutex::new(AHashMap::new()),
            active: std::sync::atomic::AtomicBool::new(false),
        }
    }

    /// Start profiling
    pub fn start(&self) {
        self.active
            .store(true, std::sync::atomic::Ordering::Relaxed);
    }

    /// Stop profiling
    pub fn stop(&self) {
        self.active
            .store(false, std::sync::atomic::Ordering::Relaxed);
    }

    /// Record an allocation
    pub fn record_allocation(&self, tag: &str, size: usize) {
        if !self.active.load(std::sync::atomic::Ordering::Relaxed) {
            return;
        }

        let mut allocations = self.allocations.lock();
        allocations
            .entry(tag.to_string())
            .or_default()
            .push((size, Instant::now()));
    }

    /// Get profiling report
    #[must_use]
    pub fn report(&self) -> AHashMap<String, AllocationStats> {
        let allocations = self.allocations.lock();
        let mut report = AHashMap::new();

        for (tag, allocs) in allocations.iter() {
            let total_size: usize = allocs.iter().map(|(size, _)| size).sum();
            let count = allocs.len();
            let avg_size = if count > 0 { total_size / count } else { 0 };

            // Calculate allocation rate (allocations per second)
            let now = Instant::now();
            let time_span = allocs
                .iter()
                .map(|(_, time)| now.duration_since(*time))
                .max();
            // Using a built-in function to handle sanity checking.
            #[allow(clippy::cast_precision_loss)]
            let rate = if let Some(span) = time_span {
                if span.as_secs_f64() > 0.0 {
                    count as f64 / span.as_secs_f64()
                } else {
                    0.0
                }
            } else {
                0.0
            };

            report.insert(
                tag.clone(),
                AllocationStats {
                    total_size,
                    count,
                    avg_size,
                    rate,
                },
            );
        }

        report
    }

    /// Clear profiling data
    pub fn clear(&self) {
        self.allocations.lock().clear();
    }

    /// Check if profiling is active
    #[must_use]
    pub fn is_active(&self) -> bool {
        self.active.load(std::sync::atomic::Ordering::Relaxed)
    }
}

impl Default for MemoryProfiler {
    fn default() -> Self {
        Self::new()
    }
}

/// Memory event logger with timestamps
#[derive(Debug)]
pub struct MemoryEventLogger {
    events: Mutex<Vec<MemoryEvent>>,
    max_events: usize,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct MemoryEvent {
    pub timestamp: DateTime<Utc>,
    pub event_type: MemoryEventType,
    pub size: usize,
    pub pool_name: Option<String>,
    pub details: String,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
pub enum MemoryEventType {
    Allocation,
    Deallocation,
    PoolCreated,
    PoolDestroyed,
    Compression,
    Decompression,
    Encryption,
    Decryption,
}

impl MemoryEventLogger {
    /// Create a new event logger
    #[must_use]
    pub fn new(max_events: usize) -> Self {
        Self {
            events: Mutex::new(Vec::new()),
            max_events,
        }
    }

    /// Log a memory event
    pub fn log_event(
        &self,
        event_type: MemoryEventType,
        size: usize,
        pool_name: Option<&str>,
        details: &str,
    ) {
        let event = MemoryEvent {
            timestamp: Utc::now(),
            event_type,
            size,
            pool_name: pool_name.map(std::string::ToString::to_string),
            details: details.to_string(),
        };

        let mut events = self.events.lock();
        events.push(event);

        // Maintain max size
        if events.len() > self.max_events {
            events.remove(0);
        }
    }

    /// Get recent events
    #[must_use]
    pub fn recent_events(&self, count: usize) -> Vec<MemoryEvent> {
        let events = self.events.lock();
        let start = if events.len() > count {
            events.len() - count
        } else {
            0
        };
        events[start..].to_vec()
    }

    /// Export events as JSON
    ///
    /// # Errors
    ///
    /// Returns a `serde_json::Error` if serialization fails.
    pub fn export_json(&self) -> Result<String, serde_json::Error> {
        let events = self.events.lock();
        serde_json::to_string(&*events)
    }

    /// Clear all events
    pub fn clear(&self) {
        self.events.lock().clear();
    }

    /// Get number of events
    #[must_use]
    pub fn len(&self) -> usize {
        self.events.lock().len()
    }

    /// Check if logger is empty
    #[must_use]
    pub fn is_empty(&self) -> bool {
        self.events.lock().is_empty()
    }
}

impl Default for MemoryEventLogger {
    fn default() -> Self {
        Self::new(10000)
    }
}

/// Memory snapshot for debugging
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct MemorySnapshot {
    pub timestamp: DateTime<Utc>,
    pub stats: MemoryStats,
    pub pools: AHashMap<String, MemoryStats>,
    pub checksum: u64,
}

impl MemorySnapshot {
    /// Create a new memory snapshot
    #[must_use]
    pub fn new(manager: &MemoryManager) -> Self {
        let timestamp = Utc::now();
        let stats = manager.global_stats();
        let pools = manager
            .list_pools()
            .into_iter()
            .filter_map(|name| {
                manager
                    .get_pool(&name)
                    .map(|pool| (name, (*pool.stats()).clone()))
            })
            .collect();

        let checksum_data = format!("{stats:?}{pools:?}{timestamp:?}");
        let mut hasher = AHasher::default();
        std::hash::Hasher::write(&mut hasher, checksum_data.as_bytes());
        let checksum = hasher.finish();

        Self {
            timestamp,
            stats: (*stats).clone(),
            pools,
            checksum,
        }
    }

    /// Export snapshot as base64-encoded JSON
    ///
    /// # Errors
    ///
    /// Returns a `serde_json::Error` if serialization fails.
    pub fn export_base64(&self) -> Result<String, serde_json::Error> {
        let json = serde_json::to_string(self)?;
        Ok(STANDARD.encode(json.as_bytes()))
    }

    /// Import snapshot from base64-encoded JSON
    ///
    /// # Errors
    ///
    /// Returns an error if base64 decoding or JSON parsing fails.
    pub fn import_base64(data: &str) -> Result<Self, Box<dyn std::error::Error>> {
        let json = STANDARD.decode(data)?;
        let json_str = String::from_utf8(json)?;
        let snapshot: Self = serde_json::from_str(&json_str)?;
        Ok(snapshot)
    }

    /// Verify snapshot integrity
    #[must_use]
    pub fn verify(&self) -> bool {
        let checksum_data = format!("{:?}{:?}{:?}", self.stats, self.pools, self.timestamp);
        let mut hasher = AHasher::default();
        std::hash::Hasher::write(&mut hasher, checksum_data.as_bytes());
        let computed = hasher.finish();
        computed == self.checksum
    }

    /// Get snapshot timestamp
    #[must_use]
    pub fn timestamp(&self) -> DateTime<Utc> {
        self.timestamp
    }

    /// Get memory statistics
    #[must_use]
    pub fn stats(&self) -> &MemoryStats {
        &self.stats
    }

    /// Get pool statistics
    #[must_use]
    pub fn pools(&self) -> &AHashMap<String, MemoryStats> {
        &self.pools
    }
}