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
//! Memory-efficient streaming parsers for large chat exports.
//!
//! This module provides streaming alternatives to standard parsers, designed
//! for files that are too large to fit in memory (>500MB).
//!
//! # When to Use Streaming
//!
//! | File Size | Recommendation |
//! |-----------|----------------|
//! | < 100MB | Standard parser (faster) |
//! | 100-500MB | Either works |
//! | > 500MB | Streaming parser (required) |
//!
//! # Memory Comparison
//!
//! | Approach | 1GB File | 10GB File |
//! |----------|----------|-----------|
//! | Standard parser | ~3GB RAM | ~30GB RAM |
//! | Streaming parser | ~50MB RAM | ~50MB RAM |
//!
//! # Core Types
//!
//! | Type | Description |
//! |------|-------------|
//! | [`StreamingParser`] | Trait for parsers that produce message iterators |
//! | [`MessageIterator`] | Iterator over messages with progress tracking |
//! | [`StreamingConfig`] | Configuration for buffer sizes and behavior |
//!
//! # Examples
//!
//! ## Basic Usage
//!
//! ```no_run
//! # #[cfg(feature = "telegram")]
//! # fn main() -> chatpack::Result<()> {
//! use chatpack::streaming::{StreamingParser, TelegramStreamingParser};
//!
//! let parser = TelegramStreamingParser::new();
//!
//! for result in parser.stream("large_export.json")? {
//! let msg = result?;
//! println!("{}: {}", msg.sender, msg.content);
//! }
//! # Ok(())
//! # }
//! # #[cfg(not(feature = "telegram"))]
//! # fn main() {}
//! ```
//!
//! ## With Progress Tracking
//!
//! ```no_run
//! # #[cfg(feature = "telegram")]
//! # fn main() -> chatpack::Result<()> {
//! use chatpack::streaming::{StreamingParser, TelegramStreamingParser};
//!
//! let parser = TelegramStreamingParser::new();
//! let mut iter = parser.stream("large_export.json")?;
//! let mut count = 0;
//!
//! while let Some(result) = iter.next() {
//! let _msg = result?;
//! count += 1;
//!
//! if count % 100_000 == 0 {
//! if let Some(progress) = iter.progress() {
//! println!("{:.1}% complete", progress);
//! }
//! }
//! }
//! # Ok(())
//! # }
//! # #[cfg(not(feature = "telegram"))]
//! # fn main() {}
//! ```
//!
//! # Available Parsers
//!
//! | Parser | Feature | Format |
//! |--------|---------|--------|
//! | [`TelegramStreamingParser`] | `telegram` | JSON |
//! | [`WhatsAppStreamingParser`] | `whatsapp` | TXT |
//! | [`InstagramStreamingParser`] | `instagram` | JSON |
//! | [`DiscordStreamingParser`] | `discord` | JSON/JSONL/CSV |
pub use DiscordStreamingParser;
pub use ;
pub use InstagramStreamingParser;
pub use TelegramStreamingParser;
pub use ;
pub use WhatsAppStreamingParser;
use cratePlatform;
/// Creates a streaming parser for the specified platform.
///
/// All platforms with the corresponding feature enabled support streaming parsing.
///
/// # Example
///
/// ```rust,no_run
/// # #[cfg(feature = "telegram")]
/// # fn main() -> Result<(), Box<dyn std::error::Error>> {
/// use chatpack::streaming::create_streaming_parser;
/// use chatpack::parser::Platform;
///
/// let parser = create_streaming_parser(Platform::Telegram);
/// for msg in parser.stream("large_file.json")? {
/// // Process each message
/// }
/// # Ok(())
/// # }
/// # #[cfg(not(feature = "telegram"))]
/// # fn main() {}
/// ```
///
/// # Panics
///
/// Panics if the corresponding parser feature is not enabled.