omniparse 0.4.1

A Rust toolkit for detecting and extracting metadata, text, and content from various file formats
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
//! Streaming utilities for large files
//!
//! This module provides utilities for processing large files efficiently without
//! loading them entirely into memory. The main component is `LimitedReader`, which
//! enforces memory limits to prevent out-of-memory errors.
//!
//! # Examples
//!
//! ```no_run
//! use omniparse::utils::streaming::{LimitedReader, read_with_limit};
//! use std::fs::File;
//! use std::io::Read;
//!
//! // Using LimitedReader directly
//! let file = File::open("large_file.txt")?;
//! let mut limited = LimitedReader::new(file, 10 * 1024 * 1024); // 10 MB limit
//!
//! let mut buffer = Vec::new();
//! limited.read_to_end(&mut buffer)?;
//! println!("Read {} bytes", limited.bytes_read());
//!
//! // Using the convenience function
//! let file = File::open("another_file.txt")?;
//! let data = read_with_limit(file, 5 * 1024 * 1024)?; // 5 MB limit
//! # Ok::<(), std::io::Error>(())
//! ```

use std::io::{self, Read, BufReader};

/// Default memory limit for streaming operations (100 MB)
pub const DEFAULT_MEMORY_LIMIT: usize = 100 * 1024 * 1024;

/// Default buffer size for streaming operations (64 KB)
pub const DEFAULT_BUFFER_SIZE: usize = 64 * 1024;

/// A reader that enforces memory limits while reading
///
/// This reader wraps another reader and tracks the number of bytes read.
/// If the read count exceeds the specified limit, further reads will fail
/// with an error. This prevents out-of-memory errors when processing
/// unexpectedly large files.
///
/// # Examples
///
/// ```
/// use omniparse::utils::streaming::LimitedReader;
/// use std::io::{Cursor, Read};
///
/// let data = b"Hello, World!";
/// let cursor = Cursor::new(data);
/// let mut limited = LimitedReader::new(cursor, 100);
///
/// let mut buffer = Vec::new();
/// limited.read_to_end(&mut buffer).unwrap();
///
/// assert_eq!(buffer, data);
/// assert_eq!(limited.bytes_read(), data.len());
/// ```
pub struct LimitedReader<R: Read> {
    inner: R,
    limit: usize,
    read: usize,
}

impl<R: Read> LimitedReader<R> {
    /// Create a new LimitedReader with the specified memory limit
    ///
    /// # Arguments
    ///
    /// * `inner` - The underlying reader
    /// * `limit` - Maximum number of bytes to read
    ///
    /// # Examples
    ///
    /// ```
    /// use omniparse::utils::streaming::LimitedReader;
    /// use std::io::Cursor;
    ///
    /// let data = b"Hello";
    /// let cursor = Cursor::new(data);
    /// let limited = LimitedReader::new(cursor, 1024);
    ///
    /// assert_eq!(limited.limit(), 1024);
    /// ```
    pub fn new(inner: R, limit: usize) -> Self {
        Self {
            inner,
            limit,
            read: 0,
        }
    }

    /// Create a new LimitedReader with the default memory limit
    ///
    /// Uses `DEFAULT_MEMORY_LIMIT` (100 MB) as the limit.
    ///
    /// # Examples
    ///
    /// ```
    /// use omniparse::utils::streaming::{LimitedReader, DEFAULT_MEMORY_LIMIT};
    /// use std::io::Cursor;
    ///
    /// let data = b"Hello";
    /// let cursor = Cursor::new(data);
    /// let limited = LimitedReader::with_default_limit(cursor);
    ///
    /// assert_eq!(limited.limit(), DEFAULT_MEMORY_LIMIT);
    /// ```
    pub fn with_default_limit(inner: R) -> Self {
        Self::new(inner, DEFAULT_MEMORY_LIMIT)
    }

    /// Get the number of bytes read so far
    ///
    /// # Examples
    ///
    /// ```
    /// use omniparse::utils::streaming::LimitedReader;
    /// use std::io::{Cursor, Read};
    ///
    /// let data = b"Hello";
    /// let cursor = Cursor::new(data);
    /// let mut limited = LimitedReader::new(cursor, 100);
    ///
    /// let mut buf = [0u8; 3];
    /// limited.read(&mut buf).unwrap();
    ///
    /// assert_eq!(limited.bytes_read(), 3);
    /// ```
    pub fn bytes_read(&self) -> usize {
        self.read
    }

    /// Get the memory limit
    ///
    /// # Examples
    ///
    /// ```
    /// use omniparse::utils::streaming::LimitedReader;
    /// use std::io::Cursor;
    ///
    /// let cursor = Cursor::new(b"data");
    /// let limited = LimitedReader::new(cursor, 1024);
    ///
    /// assert_eq!(limited.limit(), 1024);
    /// ```
    pub fn limit(&self) -> usize {
        self.limit
    }

    /// Check if the limit has been reached
    ///
    /// # Examples
    ///
    /// ```
    /// use omniparse::utils::streaming::LimitedReader;
    /// use std::io::{Cursor, Read};
    ///
    /// let data = vec![0u8; 200];
    /// let cursor = Cursor::new(data);
    /// let mut limited = LimitedReader::new(cursor, 100);
    ///
    /// let mut buf = Vec::new();
    /// let _ = limited.read_to_end(&mut buf);
    ///
    /// assert!(limited.is_limit_reached());
    /// ```
    pub fn is_limit_reached(&self) -> bool {
        self.read >= self.limit
    }
}

impl<R: Read> Read for LimitedReader<R> {
    fn read(&mut self, buf: &mut [u8]) -> io::Result<usize> {
        // Check if we've already hit the limit
        if self.is_limit_reached() {
            return Err(io::Error::new(
                io::ErrorKind::Other,
                format!("Memory limit of {} bytes exceeded", self.limit),
            ));
        }

        // Calculate how many bytes we can still read
        let remaining = self.limit - self.read;
        let max_read = buf.len().min(remaining);

        // Read up to the limit
        let n = self.inner.read(&mut buf[..max_read])?;
        self.read += n;

        Ok(n)
    }
}

/// Read all bytes from a reader with a memory limit
///
/// This is a convenience function that creates a `LimitedReader` and reads
/// all data into a vector.
///
/// # Arguments
///
/// * `reader` - The reader to read from
/// * `limit` - Maximum number of bytes to read
///
/// # Errors
///
/// Returns an error if the limit is exceeded or if reading fails.
///
/// # Examples
///
/// ```
/// use omniparse::utils::streaming::read_with_limit;
/// use std::io::Cursor;
///
/// let data = b"Hello, World!";
/// let cursor = Cursor::new(data);
///
/// let result = read_with_limit(cursor, 100).unwrap();
/// assert_eq!(result, data);
/// ```
pub fn read_with_limit<R: Read>(reader: R, limit: usize) -> io::Result<Vec<u8>> {
    let mut limited = LimitedReader::new(reader, limit);
    let mut buffer = Vec::new();
    limited.read_to_end(&mut buffer)?;
    Ok(buffer)
}

/// Read all bytes from a reader with the default memory limit
///
/// Uses `DEFAULT_MEMORY_LIMIT` (100 MB) as the limit.
///
/// # Examples
///
/// ```
/// use omniparse::utils::streaming::read_with_default_limit;
/// use std::io::Cursor;
///
/// let data = b"Hello, World!";
/// let cursor = Cursor::new(data);
///
/// let result = read_with_default_limit(cursor).unwrap();
/// assert_eq!(result, data);
/// ```
pub fn read_with_default_limit<R: Read>(reader: R) -> io::Result<Vec<u8>> {
    read_with_limit(reader, DEFAULT_MEMORY_LIMIT)
}

/// Create a buffered reader with the default buffer size
///
/// # Examples
///
/// ```
/// use omniparse::utils::streaming::buffered_reader;
/// use std::io::Cursor;
///
/// let data = b"Hello, World!";
/// let cursor = Cursor::new(data);
/// let buffered = buffered_reader(cursor);
/// ```
pub fn buffered_reader<R: Read>(reader: R) -> BufReader<R> {
    BufReader::with_capacity(DEFAULT_BUFFER_SIZE, reader)
}

/// Read chunks from a reader and process them with a callback
///
/// This function reads data in chunks and calls the provided callback for each chunk.
/// This is useful for processing large files without loading them entirely into memory.
///
/// # Arguments
///
/// * `reader` - The reader to read from
/// * `chunk_size` - Size of each chunk in bytes
/// * `callback` - Function to call for each chunk
///
/// # Examples
///
/// ```
/// use omniparse::utils::streaming::read_chunks;
/// use std::io::Cursor;
///
/// let data = b"Hello, World!";
/// let cursor = Cursor::new(data);
///
/// let mut collected = Vec::new();
/// read_chunks(cursor, 5, |chunk| {
///     collected.extend_from_slice(chunk);
///     Ok(())
/// }).unwrap();
///
/// assert_eq!(collected, data);
/// ```
pub fn read_chunks<R, F>(mut reader: R, chunk_size: usize, mut callback: F) -> io::Result<()>
where
    R: Read,
    F: FnMut(&[u8]) -> io::Result<()>,
{
    let mut buffer = vec![0u8; chunk_size];
    
    loop {
        let n = reader.read(&mut buffer)?;
        if n == 0 {
            break;
        }
        
        callback(&buffer[..n])?;
    }
    
    Ok(())
}

/// Read chunks from a reader with a memory limit
///
/// This combines chunked reading with memory limits for safe processing
/// of large files.
///
/// # Arguments
///
/// * `reader` - The reader to read from
/// * `chunk_size` - Size of each chunk in bytes
/// * `limit` - Maximum total bytes to read
/// * `callback` - Function to call for each chunk
///
/// # Examples
///
/// ```
/// use omniparse::utils::streaming::read_chunks_limited;
/// use std::io::Cursor;
///
/// let data = b"Hello, World!";
/// let cursor = Cursor::new(data);
///
/// let mut collected = Vec::new();
/// read_chunks_limited(cursor, 5, 100, |chunk| {
///     collected.extend_from_slice(chunk);
///     Ok(())
/// }).unwrap();
///
/// assert_eq!(collected, data);
/// ```
pub fn read_chunks_limited<R, F>(
    reader: R,
    chunk_size: usize,
    limit: usize,
    callback: F,
) -> io::Result<()>
where
    R: Read,
    F: FnMut(&[u8]) -> io::Result<()>,
{
    let limited = LimitedReader::new(reader, limit);
    read_chunks(limited, chunk_size, callback)
}

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

    #[test]
    fn test_limited_reader_within_limit() {
        let data = b"Hello, World!";
        let cursor = Cursor::new(data);
        let mut limited = LimitedReader::new(cursor, 100);
        
        let mut buffer = Vec::new();
        limited.read_to_end(&mut buffer).unwrap();
        
        assert_eq!(buffer, data);
        assert_eq!(limited.bytes_read(), data.len());
        assert!(!limited.is_limit_reached());
    }

    #[test]
    fn test_limited_reader_exceeds_limit() {
        let data = vec![0u8; 1000];
        let cursor = Cursor::new(data);
        let mut limited = LimitedReader::new(cursor, 100);
        
        let mut buffer = Vec::new();
        let result = limited.read_to_end(&mut buffer);
        
        assert!(result.is_err());
        assert_eq!(limited.bytes_read(), 100);
        assert!(limited.is_limit_reached());
    }

    #[test]
    fn test_read_with_limit() {
        let data = b"Hello, World!";
        let cursor = Cursor::new(data);
        
        let result = read_with_limit(cursor, 100).unwrap();
        assert_eq!(result, data);
    }

    #[test]
    fn test_read_chunks() {
        let data = b"Hello, World!";
        let cursor = Cursor::new(data);
        
        let mut collected = Vec::new();
        read_chunks(cursor, 5, |chunk| {
            collected.extend_from_slice(chunk);
            Ok(())
        }).unwrap();
        
        assert_eq!(collected, data);
    }
}