halldyll-parser 0.1.0

HTML/CSS parsing and content extraction for halldyll scraper
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
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
//! Type definitions for halldyll-parser
//!
//! This module contains all public types used throughout the parser:
//! - Error types
//! - Content types (text, headings, lists, tables, etc.)
//! - Metadata types (OpenGraph, Twitter Cards, etc.)
//! - Structured data types (JSON-LD, Microdata, RDFa)

use serde::{Deserialize, Serialize};
use std::collections::HashMap;
use thiserror::Error;

// ============================================================================
// ERROR TYPES
// ============================================================================

/// Errors that can occur during HTML parsing
#[derive(Debug, Error)]
pub enum ParserError {
    /// HTML parsing failed
    #[error("Failed to parse HTML: {0}")]
    ParseError(String),

    /// Invalid selector syntax
    #[error("Invalid CSS selector: {0}")]
    SelectorError(String),

    /// URL parsing/resolution error
    #[error("URL error: {0}")]
    UrlError(#[from] url::ParseError),

    /// IO error (reading files, etc.)
    #[error("IO error: {0}")]
    IoError(#[from] std::io::Error),

    /// Encoding error
    #[error("Encoding error: {0}")]
    EncodingError(String),

    /// Configuration error
    #[error("Configuration error: {0}")]
    ConfigError(String),
}

/// Result type for parser operations
pub type ParserResult<T> = Result<T, ParserError>;

// ============================================================================
// TEXT CONTENT
// ============================================================================

/// Extracted text content with metadata
#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct TextContent {
    /// Raw extracted text
    pub raw_text: String,

    /// Cleaned text (whitespace normalized)
    pub cleaned_text: String,

    /// Word count
    pub word_count: usize,

    /// Character count
    pub char_count: usize,

    /// Detected language (ISO 639-1 code)
    pub language: Option<String>,

    /// Readability score (Flesch-Kincaid or similar)
    pub readability_score: Option<f64>,

    /// Estimated reading time in minutes
    pub reading_time_minutes: Option<f64>,
}

impl TextContent {
    /// Create new text content from raw text
    pub fn from_raw(raw: &str) -> Self {
        let cleaned = normalize_whitespace(raw);
        let word_count = cleaned.split_whitespace().count();
        let char_count = cleaned.chars().count();
        
        // Average reading speed: 200-250 WPM, we use 225
        let reading_time = if word_count > 0 {
            Some(word_count as f64 / 225.0)
        } else {
            None
        };

        Self {
            raw_text: raw.to_string(),
            cleaned_text: cleaned,
            word_count,
            char_count,
            language: None,
            readability_score: None,
            reading_time_minutes: reading_time,
        }
    }

    /// Check if content is empty or minimal
    pub fn is_empty(&self) -> bool {
        self.word_count == 0
    }

    /// Check if content is substantial (more than just a few words)
    pub fn is_substantial(&self) -> bool {
        self.word_count >= 50
    }
}

// ============================================================================
// HEADINGS
// ============================================================================

/// A heading element (h1-h6)
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct Heading {
    /// Heading level (1-6)
    pub level: u8,

    /// Heading text content
    pub text: String,

    /// ID attribute if present
    pub id: Option<String>,

    /// Class names if present
    pub classes: Vec<String>,
}

impl Heading {
    /// Create a new heading
    pub fn new(level: u8, text: impl Into<String>) -> Self {
        Self {
            level: level.clamp(1, 6),
            text: text.into(),
            id: None,
            classes: Vec::new(),
        }
    }

    /// Create heading with ID
    pub fn with_id(mut self, id: impl Into<String>) -> Self {
        self.id = Some(id.into());
        self
    }
}

// ============================================================================
// LINKS
// ============================================================================

/// Relationship types for links
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, Serialize, Deserialize)]
#[serde(rename_all = "snake_case")]
pub enum LinkRel {
    /// Standard follow link
    Follow,
    /// nofollow link
    NoFollow,
    /// ugc (user generated content)
    Ugc,
    /// sponsored link
    Sponsored,
    /// external link
    External,
    /// noopener
    NoOpener,
    /// noreferrer
    NoReferrer,
    /// Other rel value
    Other,
}

/// Type of link (internal vs external)
#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize, Deserialize)]
#[serde(rename_all = "snake_case")]
pub enum LinkType {
    /// Link to same domain
    Internal,
    /// Link to different domain
    External,
    /// Cannot determine (no base URL)
    Unknown,
}

/// An extracted link
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct Link {
    /// Original href value
    pub href: String,

    /// Resolved absolute URL (if possible)
    pub url: Option<String>,

    /// Anchor text
    pub text: String,

    /// Title attribute
    pub title: Option<String>,

    /// Relationship attributes
    pub rel: Vec<LinkRel>,

    /// Link type (internal/external)
    pub link_type: LinkType,

    /// Whether link is nofollow
    pub is_nofollow: bool,

    /// Target attribute (_blank, _self, etc.)
    pub target: Option<String>,

    /// hreflang attribute
    pub hreflang: Option<String>,
}

impl Link {
    /// Create a new link
    pub fn new(href: impl Into<String>, text: impl Into<String>) -> Self {
        Self {
            href: href.into(),
            url: None,
            text: text.into(),
            title: None,
            rel: Vec::new(),
            link_type: LinkType::Unknown,
            is_nofollow: false,
            target: None,
            hreflang: None,
        }
    }

    /// Check if link should be followed by crawlers
    pub fn should_follow(&self) -> bool {
        !self.is_nofollow && !self.rel.contains(&LinkRel::Sponsored) && !self.rel.contains(&LinkRel::Ugc)
    }

    /// Check if link opens in new tab
    pub fn opens_new_tab(&self) -> bool {
        self.target.as_deref() == Some("_blank")
    }
}

// ============================================================================
// IMAGES
// ============================================================================

/// Image loading strategy
#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize, Deserialize)]
#[serde(rename_all = "snake_case")]
#[derive(Default)]
pub enum ImageLoading {
    /// Eager loading (default)
    #[default]
    Eager,
    /// Lazy loading
    Lazy,
}


/// An extracted image
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct Image {
    /// Original src attribute
    pub src: String,

    /// Resolved absolute URL
    pub url: Option<String>,

    /// Alt text
    pub alt: String,

    /// Title attribute
    pub title: Option<String>,

    /// Width if specified
    pub width: Option<u32>,

    /// Height if specified
    pub height: Option<u32>,

    /// srcset for responsive images
    pub srcset: Option<String>,

    /// sizes attribute
    pub sizes: Option<String>,

    /// Loading strategy (lazy/eager)
    pub loading: ImageLoading,

    /// Whether image is decorative (empty alt)
    pub is_decorative: bool,
}

impl Image {
    /// Create a new image
    pub fn new(src: impl Into<String>, alt: impl Into<String>) -> Self {
        let alt_str = alt.into();
        let is_decorative = alt_str.is_empty();
        Self {
            src: src.into(),
            url: None,
            alt: alt_str,
            title: None,
            width: None,
            height: None,
            srcset: None,
            sizes: None,
            loading: ImageLoading::default(),
            is_decorative,
        }
    }

    /// Check if image has responsive srcset
    pub fn is_responsive(&self) -> bool {
        self.srcset.is_some()
    }
}

// ============================================================================
// LISTS
// ============================================================================

/// Type of list
#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize, Deserialize)]
#[serde(rename_all = "snake_case")]
pub enum ListType {
    /// Ordered list (ol)
    Ordered,
    /// Unordered list (ul)
    Unordered,
    /// Definition list (dl)
    Definition,
}

/// A list item (may contain nested content)
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ListItem {
    /// Item text content
    pub text: String,

    /// Nested list if any
    pub nested: Option<Box<ListContent>>,
}

impl ListItem {
    /// Create a simple list item
    pub fn new(text: impl Into<String>) -> Self {
        Self {
            text: text.into(),
            nested: None,
        }
    }

    /// Create item with nested list
    pub fn with_nested(text: impl Into<String>, nested: ListContent) -> Self {
        Self {
            text: text.into(),
            nested: Some(Box::new(nested)),
        }
    }
}

/// An extracted list
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ListContent {
    /// Type of list
    pub list_type: ListType,

    /// List items
    pub items: Vec<ListItem>,

    /// Total item count (including nested)
    pub total_items: usize,
}

impl ListContent {
    /// Create a new list
    pub fn new(list_type: ListType) -> Self {
        Self {
            list_type,
            items: Vec::new(),
            total_items: 0,
        }
    }

    /// Add an item
    pub fn add_item(&mut self, item: ListItem) {
        self.total_items += 1;
        if let Some(ref nested) = item.nested {
            self.total_items += nested.total_items;
        }
        self.items.push(item);
    }

    /// Check if list is empty
    pub fn is_empty(&self) -> bool {
        self.items.is_empty()
    }
}

// ============================================================================
// TABLES
// ============================================================================

/// A table cell
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct TableCell {
    /// Cell content
    pub content: String,

    /// Is header cell (th)
    pub is_header: bool,

    /// Column span
    pub colspan: u32,

    /// Row span
    pub rowspan: u32,
}

impl TableCell {
    /// Create a data cell
    pub fn data(content: impl Into<String>) -> Self {
        Self {
            content: content.into(),
            is_header: false,
            colspan: 1,
            rowspan: 1,
        }
    }

    /// Create a header cell
    pub fn header(content: impl Into<String>) -> Self {
        Self {
            content: content.into(),
            is_header: true,
            colspan: 1,
            rowspan: 1,
        }
    }
}

/// A table row
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct TableRow {
    /// Cells in this row
    pub cells: Vec<TableCell>,

    /// Is this a header row
    pub is_header_row: bool,
}

impl TableRow {
    /// Create a new row
    pub fn new(cells: Vec<TableCell>) -> Self {
        let is_header = cells.iter().all(|c| c.is_header);
        Self {
            cells,
            is_header_row: is_header,
        }
    }
}

/// An extracted table
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct TableContent {
    /// Table caption
    pub caption: Option<String>,

    /// Header rows
    pub headers: Vec<TableRow>,

    /// Body rows
    pub rows: Vec<TableRow>,

    /// Number of columns
    pub column_count: usize,

    /// Table summary (if provided)
    pub summary: Option<String>,
}

impl TableContent {
    /// Create a new empty table
    pub fn new() -> Self {
        Self {
            caption: None,
            headers: Vec::new(),
            rows: Vec::new(),
            column_count: 0,
            summary: None,
        }
    }

    /// Check if table is empty
    pub fn is_empty(&self) -> bool {
        self.headers.is_empty() && self.rows.is_empty()
    }

    /// Get total row count
    pub fn row_count(&self) -> usize {
        self.headers.len() + self.rows.len()
    }
}

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

// ============================================================================
// CODE BLOCKS
// ============================================================================

/// An extracted code block
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct CodeBlock {
    /// The code content
    pub code: String,

    /// Programming language (if detected)
    pub language: Option<String>,

    /// Line count
    pub line_count: usize,

    /// Whether it's inline code
    pub is_inline: bool,

    /// Filename if specified (e.g., in markdown)
    pub filename: Option<String>,
}

impl CodeBlock {
    /// Create a new code block
    pub fn new(code: impl Into<String>) -> Self {
        let code_str = code.into();
        let line_count = code_str.lines().count();
        Self {
            code: code_str,
            language: None,
            line_count,
            is_inline: false,
            filename: None,
        }
    }

    /// Create with language
    pub fn with_language(mut self, lang: impl Into<String>) -> Self {
        self.language = Some(lang.into());
        self
    }

    /// Mark as inline
    pub fn inline(mut self) -> Self {
        self.is_inline = true;
        self
    }
}

// ============================================================================
// QUOTES
// ============================================================================

/// An extracted blockquote
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct Quote {
    /// Quote text content
    pub text: String,

    /// Citation/source
    pub cite: Option<String>,

    /// Citation URL
    pub cite_url: Option<String>,
}

impl Quote {
    /// Create a new quote
    pub fn new(text: impl Into<String>) -> Self {
        Self {
            text: text.into(),
            cite: None,
            cite_url: None,
        }
    }

    /// Add citation
    pub fn with_cite(mut self, cite: impl Into<String>) -> Self {
        self.cite = Some(cite.into());
        self
    }
}

// ============================================================================
// METADATA TYPES
// ============================================================================

/// OpenGraph metadata
#[derive(Debug, Clone, Default, Serialize, Deserialize)]
pub struct OpenGraph {
    /// og:title
    pub title: Option<String>,

    /// og:type
    pub og_type: Option<String>,

    /// og:url
    pub url: Option<String>,

    /// og:image
    pub image: Option<String>,

    /// og:description
    pub description: Option<String>,

    /// og:site_name
    pub site_name: Option<String>,

    /// og:locale
    pub locale: Option<String>,

    /// og:video
    pub video: Option<String>,

    /// og:audio
    pub audio: Option<String>,

    /// Additional properties
    pub extra: HashMap<String, String>,
}

impl OpenGraph {
    /// Check if OG data is present
    pub fn is_present(&self) -> bool {
        self.title.is_some() || self.og_type.is_some() || self.url.is_some()
    }
}

/// Twitter Card metadata
#[derive(Debug, Clone, Default, Serialize, Deserialize)]
pub struct TwitterCard {
    /// twitter:card
    pub card: Option<String>,

    /// twitter:site
    pub site: Option<String>,

    /// twitter:creator
    pub creator: Option<String>,

    /// twitter:title
    pub title: Option<String>,

    /// twitter:description
    pub description: Option<String>,

    /// twitter:image
    pub image: Option<String>,

    /// Additional properties
    pub extra: HashMap<String, String>,
}

impl TwitterCard {
    /// Check if Twitter Card data is present
    pub fn is_present(&self) -> bool {
        self.card.is_some() || self.site.is_some()
    }
}

/// Robots meta directives
#[derive(Debug, Clone, Default, Serialize, Deserialize)]
pub struct RobotsMeta {
    /// Can be indexed
    pub index: bool,

    /// Links can be followed
    pub follow: bool,

    /// Can be archived
    pub archive: bool,

    /// Can be cached
    pub cache: bool,

    /// Can show snippet
    pub snippet: bool,

    /// Max snippet length (-1 = unlimited)
    pub max_snippet: i32,

    /// Max image preview (none, standard, large)
    pub max_image_preview: Option<String>,

    /// Max video preview seconds
    pub max_video_preview: i32,

    /// Raw robots content
    pub raw: Option<String>,
}

impl RobotsMeta {
    /// Create default (all allowed)
    pub fn allowed() -> Self {
        Self {
            index: true,
            follow: true,
            archive: true,
            cache: true,
            snippet: true,
            max_snippet: -1,
            max_image_preview: Some("large".to_string()),
            max_video_preview: -1,
            raw: None,
        }
    }

    /// Create noindex nofollow
    pub fn noindex_nofollow() -> Self {
        Self {
            index: false,
            follow: false,
            ..Self::allowed()
        }
    }
}

/// Alternate language version (hreflang)
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct AlternateLink {
    /// Language code (e.g., "en", "fr", "x-default")
    pub hreflang: String,

    /// URL of alternate version
    pub href: String,
}

/// Complete page metadata
#[derive(Debug, Clone, Default, Serialize, Deserialize)]
pub struct PageMetadata {
    /// Page title
    pub title: Option<String>,

    /// Meta description
    pub description: Option<String>,

    /// Meta keywords
    pub keywords: Vec<String>,

    /// Author
    pub author: Option<String>,

    /// Generator (CMS/framework)
    pub generator: Option<String>,

    /// Canonical URL
    pub canonical: Option<String>,

    /// Base URL from <base> tag
    pub base_url: Option<String>,

    /// Language (html lang attribute)
    pub language: Option<String>,

    /// Character encoding
    pub charset: Option<String>,

    /// Viewport
    pub viewport: Option<String>,

    /// Robots directives
    pub robots: RobotsMeta,

    /// OpenGraph data
    pub opengraph: OpenGraph,

    /// Twitter Card data
    pub twitter: TwitterCard,

    /// Alternate language versions
    pub alternates: Vec<AlternateLink>,

    /// Favicon URL
    pub favicon: Option<String>,

    /// Apple touch icon
    pub apple_touch_icon: Option<String>,

    /// Theme color
    pub theme_color: Option<String>,

    /// Published date
    pub published_date: Option<String>,

    /// Modified date
    pub modified_date: Option<String>,

    /// Schema.org type (if detected)
    pub schema_type: Option<String>,

    /// Custom meta tags (name -> content)
    pub custom: HashMap<String, String>,
}

impl PageMetadata {
    /// Get effective title (OG > Twitter > title tag)
    pub fn effective_title(&self) -> Option<&str> {
        self.opengraph.title.as_deref()
            .or(self.twitter.title.as_deref())
            .or(self.title.as_deref())
    }

    /// Get effective description
    pub fn effective_description(&self) -> Option<&str> {
        self.opengraph.description.as_deref()
            .or(self.twitter.description.as_deref())
            .or(self.description.as_deref())
    }

    /// Get effective image
    pub fn effective_image(&self) -> Option<&str> {
        self.opengraph.image.as_deref()
            .or(self.twitter.image.as_deref())
    }

    /// Check if page should be indexed
    pub fn should_index(&self) -> bool {
        self.robots.index
    }

    /// Check if links should be followed
    pub fn should_follow(&self) -> bool {
        self.robots.follow
    }
}

// ============================================================================
// STRUCTURED DATA
// ============================================================================

/// Type of structured data
#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize, Deserialize)]
#[serde(rename_all = "snake_case")]
pub enum StructuredDataFormat {
    /// JSON-LD (recommended)
    JsonLd,
    /// Microdata
    Microdata,
    /// RDFa
    Rdfa,
}

/// Extracted structured data item
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct StructuredData {
    /// Format (JSON-LD, Microdata, RDFa)
    pub format: StructuredDataFormat,

    /// Schema.org type (e.g., "Article", "Product", "Organization")
    pub schema_type: Option<String>,

    /// Raw JSON content (for JSON-LD)
    pub raw_json: Option<String>,

    /// Parsed properties
    pub properties: HashMap<String, serde_json::Value>,
}

impl StructuredData {
    /// Create JSON-LD data
    pub fn json_ld(raw: impl Into<String>) -> Self {
        Self {
            format: StructuredDataFormat::JsonLd,
            schema_type: None,
            raw_json: Some(raw.into()),
            properties: HashMap::new(),
        }
    }

    /// Create Microdata
    pub fn microdata(schema_type: impl Into<String>) -> Self {
        Self {
            format: StructuredDataFormat::Microdata,
            schema_type: Some(schema_type.into()),
            raw_json: None,
            properties: HashMap::new(),
        }
    }
}

// ============================================================================
// PARSED CONTENT (COMPLETE RESULT)
// ============================================================================

/// Complete parsed content from an HTML document
#[derive(Debug, Clone, Default, Serialize, Deserialize)]
pub struct ParsedContent {
    /// Page metadata
    pub metadata: PageMetadata,

    /// Extracted text content
    pub text: TextContent,

    /// All headings
    pub headings: Vec<Heading>,

    /// All paragraphs
    pub paragraphs: Vec<String>,

    /// All links
    pub links: Vec<Link>,

    /// All images
    pub images: Vec<Image>,

    /// All lists
    pub lists: Vec<ListContent>,

    /// All tables
    pub tables: Vec<TableContent>,

    /// All code blocks
    pub code_blocks: Vec<CodeBlock>,

    /// All quotes
    pub quotes: Vec<Quote>,

    /// Structured data (JSON-LD, Microdata, RDFa)
    pub structured_data: Vec<StructuredData>,

    /// Parsing statistics
    pub stats: ParseStats,
}

impl ParsedContent {
    /// Get internal links only
    pub fn internal_links(&self) -> Vec<&Link> {
        self.links.iter().filter(|l| l.link_type == LinkType::Internal).collect()
    }

    /// Get external links only
    pub fn external_links(&self) -> Vec<&Link> {
        self.links.iter().filter(|l| l.link_type == LinkType::External).collect()
    }

    /// Get followable links only
    pub fn followable_links(&self) -> Vec<&Link> {
        self.links.iter().filter(|l| l.should_follow()).collect()
    }

    /// Get the document outline (headings hierarchy)
    pub fn outline(&self) -> Vec<&Heading> {
        self.headings.iter().collect()
    }

    /// Check if page has structured data
    pub fn has_structured_data(&self) -> bool {
        !self.structured_data.is_empty()
    }
}

/// Parsing statistics
#[derive(Debug, Clone, Default, Serialize, Deserialize)]
pub struct ParseStats {
    /// HTML size in bytes
    pub html_size: usize,

    /// Parse time in microseconds
    pub parse_time_us: u64,

    /// Number of DOM nodes
    pub node_count: usize,

    /// Number of elements
    pub element_count: usize,

    /// Number of text nodes
    pub text_node_count: usize,

    /// Number of comments
    pub comment_count: usize,

    /// Errors encountered during parsing
    pub errors: Vec<String>,

    /// Warnings
    pub warnings: Vec<String>,
}

impl ParseStats {
    /// Check if parsing had errors
    pub fn has_errors(&self) -> bool {
        !self.errors.is_empty()
    }

    /// Check if parsing had warnings
    pub fn has_warnings(&self) -> bool {
        !self.warnings.is_empty()
    }
}

// ============================================================================
// PARSER CONFIGURATION
// ============================================================================

/// Configuration for the HTML parser
#[derive(Debug, Clone)]
pub struct ParserConfig {
    /// Base URL for resolving relative URLs
    pub base_url: Option<url::Url>,

    /// Maximum text length to extract
    pub max_text_length: usize,

    /// Whether to extract images
    pub extract_images: bool,

    /// Whether to extract links
    pub extract_links: bool,

    /// Whether to extract tables
    pub extract_tables: bool,

    /// Whether to extract code blocks
    pub extract_code_blocks: bool,

    /// Whether to extract structured data
    pub extract_structured_data: bool,

    /// Whether to compute readability scores
    pub compute_readability: bool,

    /// Minimum paragraph length to include
    pub min_paragraph_length: usize,

    /// Content selectors (CSS selectors for main content)
    pub content_selectors: Vec<String>,

    /// Selectors for elements to remove (ads, nav, footer, etc.)
    pub remove_selectors: Vec<String>,

    /// Whether to preserve whitespace
    pub preserve_whitespace: bool,
}

impl Default for ParserConfig {
    fn default() -> Self {
        Self {
            base_url: None,
            max_text_length: 1_000_000, // 1MB
            extract_images: true,
            extract_links: true,
            extract_tables: true,
            extract_code_blocks: true,
            extract_structured_data: true,
            compute_readability: false,
            min_paragraph_length: 20,
            content_selectors: vec![
                "article".to_string(),
                "main".to_string(),
                "[role=main]".to_string(),
                ".content".to_string(),
                ".post-content".to_string(),
                ".entry-content".to_string(),
            ],
            remove_selectors: vec![
                "script".to_string(),
                "style".to_string(),
                "noscript".to_string(),
                "nav".to_string(),
                "header".to_string(),
                "footer".to_string(),
                "aside".to_string(),
                ".sidebar".to_string(),
                ".advertisement".to_string(),
                ".ad".to_string(),
                ".ads".to_string(),
                "[role=navigation]".to_string(),
                "[role=banner]".to_string(),
                "[role=contentinfo]".to_string(),
            ],
            preserve_whitespace: false,
        }
    }
}

impl ParserConfig {
    /// Create a new config with base URL
    pub fn with_base_url(url: impl AsRef<str>) -> Result<Self, url::ParseError> {
        Ok(Self {
            base_url: Some(url::Url::parse(url.as_ref())?),
            ..Default::default()
        })
    }

    /// Create minimal config (faster, less extraction)
    pub fn minimal() -> Self {
        Self {
            extract_images: false,
            extract_tables: false,
            extract_code_blocks: false,
            extract_structured_data: false,
            compute_readability: false,
            ..Default::default()
        }
    }

    /// Create config for full extraction
    pub fn full() -> Self {
        Self {
            compute_readability: true,
            ..Default::default()
        }
    }

    /// Set base URL
    pub fn base_url(mut self, url: url::Url) -> Self {
        self.base_url = Some(url);
        self
    }

    /// Add content selector
    pub fn add_content_selector(mut self, selector: impl Into<String>) -> Self {
        self.content_selectors.push(selector.into());
        self
    }

    /// Add remove selector
    pub fn add_remove_selector(mut self, selector: impl Into<String>) -> Self {
        self.remove_selectors.push(selector.into());
        self
    }
}

// ============================================================================
// HELPER FUNCTIONS
// ============================================================================

/// Normalize whitespace in text
pub fn normalize_whitespace(text: &str) -> String {
    // Replace multiple whitespace with single space
    let mut result = String::with_capacity(text.len());
    let mut prev_ws = false;
    
    for c in text.chars() {
        if c.is_whitespace() {
            if !prev_ws {
                result.push(' ');
                prev_ws = true;
            }
        } else {
            result.push(c);
            prev_ws = false;
        }
    }
    
    result.trim().to_string()
}

/// Clean text by removing control characters
pub fn clean_text(text: &str) -> String {
    text.chars()
        .filter(|c| !c.is_control() || c.is_whitespace())
        .collect::<String>()
}

/// Truncate text to max length with ellipsis
pub fn truncate_text(text: &str, max_len: usize) -> String {
    if text.len() <= max_len {
        text.to_string()
    } else {
        let mut truncated = text.chars().take(max_len - 3).collect::<String>();
        truncated.push_str("...");
        truncated
    }
}

// ============================================================================
// TESTS
// ============================================================================

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

    #[test]
    fn test_text_content_creation() {
        let text = TextContent::from_raw("Hello   world,   this is   a test.");
        assert_eq!(text.cleaned_text, "Hello world, this is a test.");
        assert_eq!(text.word_count, 6);
        assert!(!text.is_empty());
    }

    #[test]
    fn test_heading_creation() {
        let h1 = Heading::new(1, "Main Title").with_id("main");
        assert_eq!(h1.level, 1);
        assert_eq!(h1.id, Some("main".to_string()));
    }

    #[test]
    fn test_heading_level_clamping() {
        let h = Heading::new(10, "Test");
        assert_eq!(h.level, 6); // Clamped to max
    }

    #[test]
    fn test_link_creation() {
        let link = Link::new("https://example.com", "Example");
        assert!(!link.is_nofollow);
        assert!(link.should_follow());
    }

    #[test]
    fn test_link_nofollow() {
        let mut link = Link::new("/page", "Page");
        link.is_nofollow = true;
        assert!(!link.should_follow());
    }

    #[test]
    fn test_image_creation() {
        let img = Image::new("/img/photo.jpg", "A photo");
        assert!(!img.is_decorative);
        
        let decorative = Image::new("/img/spacer.gif", "");
        assert!(decorative.is_decorative);
    }

    #[test]
    fn test_list_content() {
        let mut list = ListContent::new(ListType::Unordered);
        list.add_item(ListItem::new("Item 1"));
        list.add_item(ListItem::new("Item 2"));
        assert_eq!(list.total_items, 2);
        assert!(!list.is_empty());
    }

    #[test]
    fn test_table_content() {
        let table = TableContent::new();
        assert!(table.is_empty());
        assert_eq!(table.row_count(), 0);
    }

    #[test]
    fn test_code_block() {
        let code = CodeBlock::new("fn main() {\n    println!(\"Hello\");\n}").with_language("rust");
        assert_eq!(code.language, Some("rust".to_string()));
        assert_eq!(code.line_count, 3);
        assert!(!code.is_inline);
    }

    #[test]
    fn test_opengraph() {
        let og = OpenGraph::default();
        assert!(!og.is_present());
        
        let og2 = OpenGraph {
            title: Some("Test".to_string()),
            ..Default::default()
        };
        assert!(og2.is_present());
    }

    #[test]
    fn test_robots_meta() {
        let allowed = RobotsMeta::allowed();
        assert!(allowed.index);
        assert!(allowed.follow);
        
        let noindex = RobotsMeta::noindex_nofollow();
        assert!(!noindex.index);
        assert!(!noindex.follow);
    }

    #[test]
    fn test_page_metadata_effective() {
        let mut meta = PageMetadata::default();
        meta.title = Some("Page Title".to_string());
        meta.opengraph.title = Some("OG Title".to_string());
        
        // OG takes precedence
        assert_eq!(meta.effective_title(), Some("OG Title"));
    }

    #[test]
    fn test_parser_config() {
        let config = ParserConfig::default();
        assert!(config.extract_images);
        assert!(config.extract_links);
        
        let minimal = ParserConfig::minimal();
        assert!(!minimal.extract_images);
    }

    #[test]
    fn test_normalize_whitespace() {
        assert_eq!(normalize_whitespace("  hello   world  "), "hello world");
        assert_eq!(normalize_whitespace("a\n\n\nb"), "a b");
        assert_eq!(normalize_whitespace("  "), "");
    }

    #[test]
    fn test_clean_text() {
        let text = "Hello\x00World\x01Test";
        let cleaned = clean_text(text);
        assert_eq!(cleaned, "HelloWorldTest");
    }

    #[test]
    fn test_truncate_text() {
        assert_eq!(truncate_text("Hello", 10), "Hello");
        assert_eq!(truncate_text("Hello World", 8), "Hello...");
    }

    #[test]
    fn test_parsed_content_links() {
        let mut content = ParsedContent::default();
        content.links.push(Link {
            link_type: LinkType::Internal,
            ..Link::new("/page", "Page")
        });
        content.links.push(Link {
            link_type: LinkType::External,
            ..Link::new("https://ext.com", "Ext")
        });
        
        assert_eq!(content.internal_links().len(), 1);
        assert_eq!(content.external_links().len(), 1);
    }

    #[test]
    fn test_reading_time() {
        // 225 WPM average
        let text = TextContent::from_raw(&"word ".repeat(450));
        assert!(text.reading_time_minutes.is_some());
        let time = text.reading_time_minutes.unwrap();
        assert!((time - 2.0).abs() < 0.1); // ~2 minutes
    }
}