fast-html-parser 0.1.1

SIMD-optimized HTML parser for web scraping — fast tokenization, CSS selectors, XPath, encoding detection
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
469
470
471
472
473
474
475
476
477
#![cfg_attr(docsrs, feature(doc_cfg))]
//! # fast-html-parser — SIMD-Optimized HTML Parser
//!
//! A high-performance HTML parser designed for web scraping workloads.
//! Uses SIMD instructions (SSE4.2, AVX2, NEON) for tokenization and builds
//! a cache-line aligned arena-based DOM tree for fast traversal.
//!
//! ## Quick Start
//!
//! ```
//! use fast_html_parser::HtmlParser;
//!
//! let doc = HtmlParser::parse("<div><p>Hello</p></div>").unwrap();
//! assert_eq!(doc.root().text_content(), "Hello");
//! ```
//!
//! ## Builder Pattern
//!
//! ```
//! use fast_html_parser::HtmlParser;
//!
//! let doc = HtmlParser::builder()
//!     .max_input_size(64 * 1024 * 1024) // 64 MiB
//!     .build()
//!     .parse_str("<div>Hello</div>")
//!     .unwrap();
//! ```
//!
//! ## CSS Selectors
//!
//! ```
//! use fast_html_parser::prelude::*;
//!
//! let doc = HtmlParser::parse("<ul><li>one</li><li>two</li></ul>").unwrap();
//! let items = doc.select("li").unwrap();
//! assert_eq!(items.len(), 2);
//! ```
//!
//! ## Streaming
//!
//! ```
//! use fast_html_parser::streaming::parse_stream;
//!
//! let html = b"<div><p>Hello</p></div>";
//! let doc = parse_stream(html.chunks(8)).unwrap();
//! assert_eq!(doc.root().text_content(), "Hello");
//! ```
//!
//! ## Feature Flags
//!
//! | Feature | Default | Description |
//! |---|---|---|
//! | `css-selector` | Yes | CSS selector engine |
//! | `entity-decode` | Yes | HTML entity decoding |
//! | `xpath` | No | XPath expression support |
//! | `encoding` | No | Auto-detect encoding from raw bytes |
//! | `async-tokio` | No | Async parsing via Tokio |

// ---------------------------------------------------------------------------
// Re-exports: core types
// ---------------------------------------------------------------------------

/// Core types: interned tags, entity table, error definitions.
pub use fhp_core as core_types;

/// Interned HTML tag enum.
pub use fhp_core::tag::Tag;

/// Tokenizer (low-level).
pub use fhp_tokenizer as tokenizer;

/// DOM tree types.
pub use fhp_tree as tree;

/// Parsed document and node reference.
pub use fhp_tree::{Document, HtmlError, NodeRef};

/// Node identity type.
pub use fhp_tree::node::NodeId;

/// Streaming and incremental parsing.
pub mod streaming {
    pub use fhp_tree::streaming::{EarlyStopParser, ParseStatus, StreamParser, parse_stream};
}

// ---------------------------------------------------------------------------
// Conditional re-exports
// ---------------------------------------------------------------------------

/// CSS selector and XPath engine.
#[cfg(any(feature = "css-selector", feature = "xpath"))]
#[cfg_attr(docsrs, doc(cfg(any(feature = "css-selector", feature = "xpath"))))]
pub use fhp_selector::{CompiledSelector, DocumentIndex, Selectable, Selection};

/// XPath types (re-exported from selector crate).
#[cfg(feature = "xpath")]
#[cfg_attr(docsrs, doc(cfg(feature = "xpath")))]
pub mod xpath {
    pub use fhp_selector::xpath::ast::XPathResult;
}

/// Encoding detection and conversion.
#[cfg(feature = "encoding")]
#[cfg_attr(docsrs, doc(cfg(feature = "encoding")))]
pub mod encoding {
    pub use fhp_encoding::{Encoding, decode, decode_or_detect, detect};
}

/// Async parser (requires `async-tokio` feature).
#[cfg(feature = "async-tokio")]
#[cfg_attr(docsrs, doc(cfg(feature = "async-tokio")))]
pub mod async_parser {
    pub use fhp_tree::async_parser::{AsyncParser, parse_async};
}

// ---------------------------------------------------------------------------
// Prelude
// ---------------------------------------------------------------------------

/// Convenience prelude that imports the most commonly used types.
///
/// ```
/// use fast_html_parser::prelude::*;
/// ```
pub mod prelude {
    pub use fhp_tree::node::NodeId;
    pub use fhp_tree::{Document, HtmlError, NodeRef};

    #[cfg(any(feature = "css-selector", feature = "xpath"))]
    #[cfg_attr(docsrs, doc(cfg(any(feature = "css-selector", feature = "xpath"))))]
    pub use fhp_selector::{CompiledSelector, Selectable, Selection};

    pub use crate::HtmlParser;
}

// ---------------------------------------------------------------------------
// Builder + HtmlParser
// ---------------------------------------------------------------------------

/// Default maximum input size (256 MiB).
const DEFAULT_MAX_INPUT_SIZE: usize = 256 * 1024 * 1024;

/// Configuration builder for the HTML parser.
///
/// # Example
///
/// ```
/// use fast_html_parser::HtmlParser;
///
/// let parser = HtmlParser::builder()
///     .max_input_size(128 * 1024 * 1024)
///     .fragment_mode(true)
///     .build();
///
/// let doc = parser.parse_str("<p>fragment</p>").unwrap();
/// assert_eq!(doc.root().text_content(), "fragment");
/// ```
pub struct ParserBuilder {
    max_input_size: usize,
    fragment_mode: bool,
}

impl Default for ParserBuilder {
    fn default() -> Self {
        Self {
            max_input_size: DEFAULT_MAX_INPUT_SIZE,
            fragment_mode: false,
        }
    }
}

impl ParserBuilder {
    /// Set the maximum input size in bytes.
    ///
    /// Inputs exceeding this limit will return [`HtmlError::InputTooLarge`].
    /// Default: 256 MiB.
    pub fn max_input_size(mut self, size: usize) -> Self {
        self.max_input_size = size;
        self
    }

    /// Enable fragment mode.
    ///
    /// In fragment mode the parser treats input as an HTML fragment rather
    /// than a full document. Currently this behaves identically to normal
    /// mode (the parser already handles fragments gracefully).
    pub fn fragment_mode(mut self, enabled: bool) -> Self {
        self.fragment_mode = enabled;
        self
    }

    /// Consume the builder and create a configured [`HtmlParser`].
    pub fn build(self) -> HtmlParser {
        HtmlParser {
            max_input_size: self.max_input_size,
            _fragment_mode: self.fragment_mode,
        }
    }
}

/// A configured HTML parser instance.
///
/// Create via [`HtmlParser::builder()`] for custom configuration, or use the
/// convenience methods [`HtmlParser::parse()`] and [`HtmlParser::parse_bytes()`]
/// for defaults.
///
/// # Example
///
/// ```
/// use fast_html_parser::HtmlParser;
///
/// // One-shot convenience
/// let doc = HtmlParser::parse("<p>Hello</p>").unwrap();
///
/// // Builder pattern
/// let parser = HtmlParser::builder()
///     .max_input_size(1024 * 1024)
///     .build();
/// let doc = parser.parse_str("<p>World</p>").unwrap();
/// ```
pub struct HtmlParser {
    max_input_size: usize,
    _fragment_mode: bool,
}

impl HtmlParser {
    /// Create a new [`ParserBuilder`].
    pub fn builder() -> ParserBuilder {
        ParserBuilder::default()
    }

    /// Parse an HTML string with default settings.
    ///
    /// This is a convenience wrapper around `fhp_tree::parse()`.
    ///
    /// # Errors
    ///
    /// Returns [`HtmlError::InputTooLarge`] if the input exceeds 256 MiB.
    ///
    /// # Example
    ///
    /// ```
    /// use fast_html_parser::HtmlParser;
    ///
    /// let doc = HtmlParser::parse("<div><p>Hello</p></div>").unwrap();
    /// assert_eq!(doc.root().text_content(), "Hello");
    /// ```
    pub fn parse(input: &str) -> Result<Document, HtmlError> {
        fhp_tree::parse(input)
    }

    /// Parse an owned `String` with default settings, transferring the allocation.
    ///
    /// Avoids a memcpy of the source bytes when the caller already owns the
    /// input (e.g., from an HTTP response body).
    ///
    /// # Errors
    ///
    /// Returns [`HtmlError::InputTooLarge`] if the input exceeds 256 MiB.
    ///
    /// # Example
    ///
    /// ```
    /// use fast_html_parser::HtmlParser;
    ///
    /// let html = String::from("<div><p>Hello</p></div>");
    /// let doc = HtmlParser::parse_owned(html).unwrap();
    /// assert_eq!(doc.root().text_content(), "Hello");
    /// ```
    pub fn parse_owned(input: String) -> Result<Document, HtmlError> {
        fhp_tree::parse_owned(input)
    }

    /// Parse raw bytes with default settings, auto-detecting encoding.
    ///
    /// # Errors
    ///
    /// Returns [`HtmlError::InputTooLarge`] or [`HtmlError::Encoding`] on
    /// failure.
    ///
    /// # Example
    ///
    /// ```
    /// use fast_html_parser::HtmlParser;
    ///
    /// let doc = HtmlParser::parse_bytes(b"<p>Hello</p>").unwrap();
    /// assert_eq!(doc.root().text_content(), "Hello");
    /// ```
    pub fn parse_bytes(input: &[u8]) -> Result<Document, HtmlError> {
        fhp_tree::parse_bytes(input)
    }

    /// Parse an HTML string with the current configuration.
    ///
    /// # Errors
    ///
    /// Returns [`HtmlError::InputTooLarge`] if the input exceeds the
    /// configured limit.
    pub fn parse_str(&self, input: &str) -> Result<Document, HtmlError> {
        if input.len() > self.max_input_size {
            return Err(HtmlError::InputTooLarge {
                size: input.len(),
                max: self.max_input_size,
            });
        }
        fhp_tree::parse(input)
    }

    /// Parse an owned `String` with the current configuration.
    ///
    /// Avoids a memcpy of the source bytes when the caller already owns the
    /// input (e.g., from an HTTP response body).
    ///
    /// # Errors
    ///
    /// Returns [`HtmlError::InputTooLarge`] if the input exceeds the
    /// configured limit.
    pub fn parse_str_owned(&self, input: String) -> Result<Document, HtmlError> {
        if input.len() > self.max_input_size {
            return Err(HtmlError::InputTooLarge {
                size: input.len(),
                max: self.max_input_size,
            });
        }
        fhp_tree::parse_owned(input)
    }

    /// Parse raw bytes with the current configuration, auto-detecting encoding.
    ///
    /// # Errors
    ///
    /// Returns [`HtmlError::InputTooLarge`] or [`HtmlError::Encoding`] on
    /// failure.
    pub fn parse_raw(&self, input: &[u8]) -> Result<Document, HtmlError> {
        if input.len() > self.max_input_size {
            return Err(HtmlError::InputTooLarge {
                size: input.len(),
                max: self.max_input_size,
            });
        }
        fhp_tree::parse_bytes(input)
    }
}

/// Parse an HTML string with default settings (convenience alias).
///
/// # Example
///
/// ```
/// let doc = fast_html_parser::parse("<p>Quick</p>").unwrap();
/// assert_eq!(doc.root().text_content(), "Quick");
/// ```
pub fn parse(input: &str) -> Result<Document, HtmlError> {
    HtmlParser::parse(input)
}

/// Parse an owned `String` with default settings, transferring the allocation.
///
/// # Example
///
/// ```
/// let doc = fast_html_parser::parse_owned(String::from("<p>Quick</p>")).unwrap();
/// assert_eq!(doc.root().text_content(), "Quick");
/// ```
pub fn parse_owned(input: String) -> Result<Document, HtmlError> {
    HtmlParser::parse_owned(input)
}

/// Parse raw bytes with default settings, auto-detecting encoding.
///
/// # Example
///
/// ```
/// let doc = fast_html_parser::parse_bytes(b"<p>Quick</p>").unwrap();
/// assert_eq!(doc.root().text_content(), "Quick");
/// ```
pub fn parse_bytes(input: &[u8]) -> Result<Document, HtmlError> {
    HtmlParser::parse_bytes(input)
}

// ---------------------------------------------------------------------------
// Tests
// ---------------------------------------------------------------------------

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

    #[test]
    fn parse_convenience() {
        let doc = parse("<div><p>Hello</p></div>").unwrap();
        assert_eq!(doc.root().text_content(), "Hello");
    }

    #[test]
    fn parse_bytes_convenience() {
        let doc = parse_bytes(b"<div><p>Hello</p></div>").unwrap();
        assert_eq!(doc.root().text_content(), "Hello");
    }

    #[test]
    fn builder_default() {
        let parser = HtmlParser::builder().build();
        let doc = parser.parse_str("<p>ok</p>").unwrap();
        assert_eq!(doc.root().text_content(), "ok");
    }

    #[test]
    fn builder_max_input_size() {
        let parser = HtmlParser::builder().max_input_size(10).build();
        let result = parser.parse_str("<p>this is too long</p>");
        assert!(result.is_err());
    }

    #[test]
    fn builder_fragment_mode() {
        let parser = HtmlParser::builder().fragment_mode(true).build();
        let doc = parser.parse_str("<li>item</li>").unwrap();
        assert_eq!(doc.root().text_content(), "item");
    }

    #[test]
    fn builder_parse_raw() {
        let parser = HtmlParser::builder().build();
        let doc = parser.parse_raw(b"<p>bytes</p>").unwrap();
        assert_eq!(doc.root().text_content(), "bytes");
    }

    #[test]
    fn builder_parse_raw_too_large() {
        let parser = HtmlParser::builder().max_input_size(5).build();
        let result = parser.parse_raw(b"<p>too large</p>");
        assert!(result.is_err());
    }

    #[test]
    fn static_parse_method() {
        let doc = HtmlParser::parse("<b>bold</b>").unwrap();
        assert_eq!(doc.root().text_content(), "bold");
    }

    #[test]
    fn static_parse_bytes_method() {
        let doc = HtmlParser::parse_bytes(b"<i>italic</i>").unwrap();
        assert_eq!(doc.root().text_content(), "italic");
    }

    #[cfg(feature = "css-selector")]
    #[test]
    fn selector_reexport() {
        let doc = HtmlParser::parse("<div><p>Hello</p></div>").unwrap();
        let sel = doc.select("p").unwrap();
        assert_eq!(sel.len(), 1);
    }

    #[test]
    fn streaming_reexport() {
        let doc = streaming::parse_stream(b"<p>stream</p>".chunks(4)).unwrap();
        assert_eq!(doc.root().text_content(), "stream");
    }

    #[test]
    fn node_ref_access() {
        let doc = parse("<a href=\"url\">link</a>").unwrap();
        let root = doc.root();
        let a = root.first_child().unwrap();
        assert_eq!(a.tag(), Tag::A);
        assert_eq!(a.attr("href"), Some("url"));
    }

    #[test]
    fn prelude_works() {
        use crate::prelude::*;
        let doc = HtmlParser::parse("<p>prelude</p>").unwrap();
        let _root: NodeRef<'_> = doc.root();
    }
}