mismall 2.0.0

Streaming Huffman compression library with AES-256-GCM encryption and archive support
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
//! Error context and suggestion utilities for enhanced error handling
//!
//! This module provides structures to add rich context and helpful suggestions
//! to error messages, making debugging and troubleshooting much easier.

use std::path::PathBuf;
use std::time::SystemTime;

/// Detailed context information about when and where an error occurred
///
/// Provides rich context for error reporting including operation details,
/// file information, and timing information.
#[derive(Debug, Clone)]
pub struct ErrorContext {
    /// The operation being performed when error occurred
    pub operation: String,

    /// Path of the file being processed (if applicable)
    pub file_path: Option<PathBuf>,

    /// Position in the file or stream where error occurred
    pub position: Option<u64>,

    /// Chunk size or memory configuration being used
    pub chunk_size: Option<usize>,

    /// When the error occurred (for debugging and logging)
    pub timestamp: SystemTime,

    /// Additional custom context information
    pub custom_context: Option<String>,
}

impl ErrorContext {
    /// Create new error context for an operation
    ///
    /// # Arguments
    ///
    /// * `operation` - Name of the operation being performed
    ///
    /// # Example
    ///
    /// ```rust
    /// use mismall::error::context::ErrorContext;
    ///
    /// let context = ErrorContext::new("compress_file")
    ///     .with_file_path("data.txt")
    ///     .with_position(1024);
    /// # Ok::<(), Box<dyn std::error::Error>>(())
    /// ```
    pub fn new(operation: &str) -> Self {
        Self {
            operation: operation.to_string(),
            file_path: None,
            position: None,
            chunk_size: None,
            timestamp: SystemTime::now(),
            custom_context: None,
        }
    }

    /// Add file path to the error context
    ///
    /// # Arguments
    ///
    /// * `path` - Path to the file being processed
    ///
    /// # Returns
    ///
    /// Self for method chaining
    ///
    /// # Example
    ///
    /// ```rust
    /// use mismall::error::context::ErrorContext;
    ///
    /// let context = ErrorContext::new("compress_file")
    ///     .with_file_path("/path/to/file.txt");
    /// # Ok::<(), Box<dyn std::error::Error>>(())
    /// ```
    pub fn with_file_path<P: Into<PathBuf>>(mut self, path: P) -> Self {
        self.file_path = Some(path.into());
        self
    }

    /// Add position information to the error context
    ///
    /// # Arguments
    ///
    /// * `position` - Byte position where error occurred
    ///
    /// # Returns
    ///
    /// Self for method chaining
    ///
    /// # Example
    ///
    /// ```rust
    /// use mismall::error::context::ErrorContext;
    ///
    /// let context = ErrorContext::new("decompress_file")
    ///     .with_position(4096);
    /// # Ok::<(), Box<dyn std::error::Error>>(())
    /// ```
    pub fn with_position(mut self, position: u64) -> Self {
        self.position = Some(position);
        self
    }

    /// Add chunk size information to the error context
    ///
    /// # Arguments
    ///
    /// * `chunk_size` - Chunk size being used when error occurred
    ///
    /// # Returns
    ///
    /// Self for method chaining
    ///
    /// # Example
    ///
    /// ```rust
    /// use mismall::error::context::ErrorContext;
    ///
    /// let context = ErrorContext::new("compress_file")
    ///     .with_chunk_size(1024 * 1024);
    /// # Ok::<(), Box<dyn std::error::Error>>(())
    /// ```
    pub fn with_chunk_size(mut self, chunk_size: usize) -> Self {
        self.chunk_size = Some(chunk_size);
        self
    }

    /// Add custom context information to the error context
    ///
    /// # Arguments
    ///
    /// * `context` - Additional context information
    ///
    /// # Returns
    ///
    /// Self for method chaining
    ///
    /// # Example
    ///
    /// ```rust
    /// use mismall::error::context::ErrorContext;
    ///
    /// let context = ErrorContext::new("decrypt_file")
    ///     .with_custom_context("Using AES-256-GCM encryption");
    /// # Ok::<(), Box<dyn std::error::Error>>(())
    /// ```
    pub fn with_custom_context<S: Into<String>>(mut self, context: S) -> Self {
        self.custom_context = Some(context.into());
        self
    }
}

/// Helpful suggestion for resolving an error
///
/// Provides actionable advice to users when errors occur,
/// making troubleshooting much easier.
#[derive(Debug, Clone)]
pub struct Suggestion {
    /// Recommended action to resolve the error
    pub action: String,

    /// Reason why this suggestion might help
    pub reason: String,

    /// Error code reference (if applicable)
    pub code: Option<String>,

    /// Link to relevant documentation
    pub documentation_url: Option<String>,
}

impl Suggestion {
    /// Create a new suggestion
    ///
    /// # Arguments
    ///
    /// * `action` - Recommended action to take
    /// * `reason` - Why this action might help
    ///
    /// # Example
    ///
    /// ```rust
    /// use mismall::error::context::Suggestion;
    ///
    /// let suggestion = Suggestion::new(
    ///     "Try increasing chunk size",
    ///     "Current chunk size may be too small for your file"
    /// );
    /// # Ok::<(), Box<dyn std::error::Error>>(())
    /// ```
    pub fn new(action: &str, reason: &str) -> Self {
        Self {
            action: action.to_string(),
            reason: reason.to_string(),
            code: None,
            documentation_url: None,
        }
    }

    /// Add error code to the suggestion
    ///
    /// # Arguments
    ///
    /// * `code` - Error code reference
    ///
    /// # Returns
    ///
    /// Self for method chaining
    ///
    /// # Example
    ///
    /// ```rust
    /// use mismall::error::context::Suggestion;
    ///
    /// let suggestion = Suggestion::new(
    ///     "Check file permissions",
    ///     "Directory may not be writable"
    /// ).with_code("ERR_PERMISSIONS");
    /// # Ok::<(), Box<dyn std::error::Error>>(())
    /// ```
    pub fn with_code<S: Into<String>>(mut self, code: S) -> Self {
        self.code = Some(code.into());
        self
    }

    /// Add documentation URL to the suggestion
    ///
    /// # Arguments
    ///
    /// * `url` - URL to relevant documentation
    ///
    /// # Returns
    ///
    /// Self for method chaining
    ///
    /// # Example
    ///
    /// ```rust
    /// use mismall::error::context::Suggestion;
    ///
    /// let suggestion = Suggestion::new(
    ///     "Consult encryption guide",
    ///     "For detailed encryption troubleshooting"
    /// ).with_documentation("https://docs.mismall.com/encryption");
    /// # Ok::<(), Box<dyn std::error::Error>>(())
    /// ```
    pub fn with_documentation<S: Into<String>>(mut self, url: S) -> Self {
        self.documentation_url = Some(url.into());
        self
    }
}

/// Extension trait for adding context to existing errors
///
/// This trait allows any error type to be enhanced with rich context
/// and suggestions, making error handling more consistent across the library.
pub trait ErrorExt<T> {
    /// Add context information to the error
    ///
    /// # Arguments
    ///
    /// * `context` - Context information about when/where error occurred
    ///
    /// # Returns
    ///
    /// Enhanced error with context
    ///
    /// # Example
    ///
    /// ```rust
    /// use mismall::error::context::{ErrorContext, ErrorExt};
    ///
    /// let error = std::io::Error::new(std::io::ErrorKind::Other, "test error");
    /// let enhanced_error = error.with_context(ErrorContext::new("read_file"));
    /// # Ok::<(), Box<dyn std::error::Error>>(())
    /// ```
    fn with_context(self, context: ErrorContext) -> EnhancedError<T>;

    /// Add a helpful suggestion to the error
    ///
    /// # Arguments
    ///
    /// * `suggestion` - Suggestion for resolving the error
    ///
    /// # Returns
    ///
    /// Enhanced error with suggestion
    ///
    /// # Example
    ///
    /// ```rust
    /// use mismall::error::context::{ErrorContext, Suggestion, ErrorExt};
    ///
    /// let error = std::io::Error::new(std::io::ErrorKind::Other, "test error");
    /// let suggestion = Suggestion::new("Try again", "Temporary network issue");
    /// let enhanced_error = error.with_suggestion(suggestion);
    /// # Ok::<(), Box<dyn std::error::Error>>(())
    /// ```
    fn with_suggestion(self, suggestion: Suggestion) -> EnhancedError<T>;
}

/// Enhanced error with rich context and suggestions
///
/// This wrapper provides additional debugging information and helpful
/// suggestions for resolving errors.
#[derive(Debug)]
pub struct EnhancedError<T> {
    /// The original error that occurred
    pub original: T,

    /// Context information about when and where the error occurred
    pub context: Option<ErrorContext>,

    /// Helpful suggestion for resolving the error
    pub suggestion: Option<Suggestion>,
}

impl<T> EnhancedError<T> {
    /// Create a new enhanced error
    ///
    /// # Arguments
    ///
    /// * `original` - The original error that occurred
    ///
    /// # Example
    ///
    /// ```rust
    /// use mismall::error::context::EnhancedError;
    ///
    /// let io_error = std::io::Error::new(std::io::ErrorKind::Other, "test error");
    /// let enhanced = EnhancedError::new(io_error);
    /// # Ok::<(), Box<dyn std::error::Error>>(())
    /// ```
    pub fn new(original: T) -> Self {
        Self {
            original,
            context: None,
            suggestion: None,
        }
    }

    /// Create a new enhanced error with context
    ///
    /// # Arguments
    ///
    /// * `original` - The original error that occurred
    /// * `context` - Context information about the error
    ///
    /// # Example
    ///
    /// ```rust
    /// use mismall::error::context::{EnhancedError, ErrorContext};
    ///
    /// let io_error = std::io::Error::new(std::io::ErrorKind::Other, "test error");
    /// let context = ErrorContext::new("compress_file")
    ///     .with_file_path("data.txt");
    /// let enhanced = EnhancedError::new_with_context(io_error, context);
    /// # Ok::<(), Box<dyn std::error::Error>>(())
    /// ```
    pub fn new_with_context(original: T, context: ErrorContext) -> Self {
        Self {
            original,
            context: Some(context),
            suggestion: None,
        }
    }

    /// Create a new enhanced error with suggestion
    ///
    /// # Arguments
    ///
    /// * `original` - The original error that occurred
    /// * `suggestion` - Suggestion for resolving the error
    ///
    /// # Example
    ///
    /// ```rust
    /// use mismall::error::context::{EnhancedError, ErrorContext, Suggestion};
    ///
    /// let io_error = std::io::Error::new(std::io::ErrorKind::Other, "test error");
    /// let suggestion = Suggestion::new("Try again", "Temporary network issue");
    /// let enhanced = EnhancedError::new_with_suggestion(io_error, suggestion);
    /// # Ok::<(), Box<dyn std::error::Error>>(())
    /// ```
    pub fn new_with_suggestion(original: T, suggestion: Suggestion) -> Self {
        Self {
            original,
            context: None,
            suggestion: Some(suggestion),
        }
    }
}

// Implement ErrorExt for std::io::Error
impl ErrorExt<std::io::Error> for std::io::Error {
    fn with_context(self, context: ErrorContext) -> EnhancedError<std::io::Error> {
        EnhancedError::new_with_context(self, context)
    }

    fn with_suggestion(self, suggestion: Suggestion) -> EnhancedError<std::io::Error> {
        EnhancedError::new_with_suggestion(self, suggestion)
    }
}

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

    #[test]
    fn test_error_context_builder() {
        let context = ErrorContext::new("test_operation")
            .with_file_path("/test/file.txt")
            .with_position(1024)
            .with_chunk_size(4096);

        assert_eq!(context.operation, "test_operation");
        assert_eq!(context.file_path, Some(PathBuf::from("/test/file.txt")));
        assert_eq!(context.position, Some(1024));
        assert_eq!(context.chunk_size, Some(4096));
    }

    #[test]
    fn test_suggestion_builder() {
        let suggestion = Suggestion::new("Check permissions", "Directory not writable")
            .with_code("ERR_PERMISSIONS")
            .with_documentation("https://docs.example.com/permissions");

        assert_eq!(suggestion.action, "Check permissions");
        assert_eq!(suggestion.reason, "Directory not writable");
        assert_eq!(suggestion.code, Some("ERR_PERMISSIONS".to_string()));
        assert_eq!(
            suggestion.documentation_url,
            Some("https://docs.example.com/permissions".to_string())
        );
    }

    #[test]
    fn test_enhanced_error() {
        let io_error = std::io::Error::new(std::io::ErrorKind::NotFound, "file not found");
        let context = ErrorContext::new("read_file").with_position(100);
        let enhanced = EnhancedError::new_with_context(io_error, context);

        assert!(enhanced.context.is_some());
        assert_eq!(enhanced.context.unwrap().position, Some(100));
    }
}