-
Notifications
You must be signed in to change notification settings - Fork 242
/
Copy pathmod.rs
2001 lines (1815 loc) · 79.2 KB
/
mod.rs
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
//! Contains high-level interface for a pull-based XML parser.
#[cfg(feature = "encoding")]
use encoding_rs::Encoding;
use std::ops::Range;
use crate::encoding::Decoder;
use crate::errors::{Error, Result};
use crate::events::Event;
use crate::reader::parser::Parser;
use memchr;
macro_rules! configure_methods {
($($holder:ident)?) => {
/// Changes whether empty elements should be split into an `Open` and a `Close` event.
///
/// When set to `true`, all [`Empty`] events produced by a self-closing tag like `<tag/>` are
/// expanded into a [`Start`] event followed by an [`End`] event. When set to `false` (the
/// default), those tags are represented by an [`Empty`] event instead.
///
/// Note, that setting this to `true` will lead to additional allocates that
/// needed to store tag name for an [`End`] event. However if [`check_end_names`]
/// is also set, only one additional allocation will be performed that support
/// both these options.
///
/// (`false` by default)
///
/// [`Empty`]: Event::Empty
/// [`Start`]: Event::Start
/// [`End`]: Event::End
/// [`check_end_names`]: Self::check_end_names
pub fn expand_empty_elements(&mut self, val: bool) -> &mut Self {
self $(.$holder)? .parser.expand_empty_elements = val;
self
}
/// Changes whether whitespace before and after character data should be removed.
///
/// When set to `true`, all [`Text`] events are trimmed.
/// If after that the event is empty it will not be pushed.
///
/// Changing this option automatically changes the [`trim_text_end`] option.
///
/// (`false` by default).
///
/// <div style="background:rgba(80, 240, 100, 0.20);padding:0.75em;">
///
/// WARNING: With this option every text events will be trimmed which is
/// incorrect behavior when text events delimited by comments, processing
/// instructions or CDATA sections. To correctly trim data manually apply
/// [`BytesText::inplace_trim_start`] and [`BytesText::inplace_trim_end`]
/// only to necessary events.
/// </div>
///
/// [`Text`]: Event::Text
/// [`trim_text_end`]: Self::trim_text_end
/// [`BytesText::inplace_trim_start`]: crate::events::BytesText::inplace_trim_start
/// [`BytesText::inplace_trim_end`]: crate::events::BytesText::inplace_trim_end
pub fn trim_text(&mut self, val: bool) -> &mut Self {
self $(.$holder)? .parser.trim_text_start = val;
self $(.$holder)? .parser.trim_text_end = val;
self
}
/// Changes whether whitespace after character data should be removed.
///
/// When set to `true`, trailing whitespace is trimmed in [`Text`] events.
/// If after that the event is empty it will not be pushed.
///
/// (`false` by default).
///
/// <div style="background:rgba(80, 240, 100, 0.20);padding:0.75em;">
///
/// WARNING: With this option every text events will be trimmed which is
/// incorrect behavior when text events delimited by comments, processing
/// instructions or CDATA sections. To correctly trim data manually apply
/// [`BytesText::inplace_trim_start`] and [`BytesText::inplace_trim_end`]
/// only to necessary events.
/// </div>
///
/// [`Text`]: Event::Text
/// [`BytesText::inplace_trim_start`]: crate::events::BytesText::inplace_trim_start
/// [`BytesText::inplace_trim_end`]: crate::events::BytesText::inplace_trim_end
pub fn trim_text_end(&mut self, val: bool) -> &mut Self {
self $(.$holder)? .parser.trim_text_end = val;
self
}
/// Changes whether trailing whitespaces after the markup name are trimmed in closing tags
/// `</a >`.
///
/// If true the emitted [`End`] event is stripped of trailing whitespace after the markup name.
///
/// Note that if set to `false` and `check_end_names` is true the comparison of markup names is
/// going to fail erroneously if a closing tag contains trailing whitespaces.
///
/// (`true` by default)
///
/// [`End`]: Event::End
pub fn trim_markup_names_in_closing_tags(&mut self, val: bool) -> &mut Self {
self $(.$holder)? .parser.trim_markup_names_in_closing_tags = val;
self
}
/// Changes whether mismatched closing tag names should be detected.
///
/// Note, that start and end tags [should match literally][spec], they cannot
/// have different prefixes even if both prefixes resolve to the same namespace.
/// The XML
///
/// ```xml
/// <outer xmlns="namespace" xmlns:p="namespace">
/// </p:outer>
/// ```
///
/// is not valid, even though semantically the start tag is the same as the
/// end tag. The reason is that namespaces are an extension of the original
/// XML specification (without namespaces) and it should be backward-compatible.
///
/// When set to `false`, it won't check if a closing tag matches the corresponding opening tag.
/// For example, `<mytag></different_tag>` will be permitted.
///
/// If the XML is known to be sane (already processed, etc.) this saves extra time.
///
/// Note that the emitted [`End`] event will not be modified if this is disabled, ie. it will
/// contain the data of the mismatched end tag.
///
/// Note, that setting this to `true` will lead to additional allocates that
/// needed to store tag name for an [`End`] event. However if [`expand_empty_elements`]
/// is also set, only one additional allocation will be performed that support
/// both these options.
///
/// (`true` by default)
///
/// [spec]: https://www.w3.org/TR/xml11/#dt-etag
/// [`End`]: Event::End
/// [`expand_empty_elements`]: Self::expand_empty_elements
pub fn check_end_names(&mut self, val: bool) -> &mut Self {
self $(.$holder)? .parser.check_end_names = val;
self
}
/// Changes whether comments should be validated.
///
/// When set to `true`, every [`Comment`] event will be checked for not containing `--`, which
/// is not allowed in XML comments. Most of the time we don't want comments at all so we don't
/// really care about comment correctness, thus the default value is `false` to improve
/// performance.
///
/// (`false` by default)
///
/// [`Comment`]: Event::Comment
pub fn check_comments(&mut self, val: bool) -> &mut Self {
self $(.$holder)? .parser.check_comments = val;
self
}
};
}
macro_rules! read_event_impl {
(
$self:ident, $buf:ident,
$reader:expr,
$read_until_open:ident,
$read_until_close:ident
$(, $await:ident)?
) => {{
let event = loop {
match $self.parser.state {
ParseState::Init => { // Go to OpenedTag state
// If encoding set explicitly, we not need to detect it. For example,
// explicit UTF-8 set automatically if Reader was created using `from_str`.
// But we still need to remove BOM for consistency with no encoding
// feature enabled path
#[cfg(feature = "encoding")]
if let Some(encoding) = $reader.detect_encoding() $(.$await)? ? {
if $self.parser.encoding.can_be_refined() {
$self.parser.encoding = crate::reader::EncodingRef::BomDetected(encoding);
}
}
// Removes UTF-8 BOM if it is present
#[cfg(not(feature = "encoding"))]
$reader.remove_utf8_bom() $(.$await)? ?;
// Go to OpenedTag state
match $self.$read_until_open($buf) $(.$await)? {
Ok(Ok(ev)) => break Ok(ev),
Ok(Err(b)) => $buf = b,
Err(err) => break Err(err),
}
},
ParseState::ClosedTag => { // Go to OpenedTag state
match $self.$read_until_open($buf) $(.$await)? {
Ok(Ok(ev)) => break Ok(ev),
Ok(Err(b)) => $buf = b,
Err(err) => break Err(err),
}
},
// Go to ClosedTag state in next two arms
ParseState::OpenedTag => break $self.$read_until_close($buf) $(.$await)?,
ParseState::Empty => break $self.parser.close_expanded_empty(),
ParseState::Exit => break Ok(Event::Eof),
};
};
match event {
Err(_) | Ok(Event::Eof) => $self.parser.state = ParseState::Exit,
_ => {}
}
event
}};
}
/// Read bytes up to `<` and skip it. If current byte (after skipping all space
/// characters if [`Parser::trim_text_start`] is `true`) is already `<`, then
/// returns the next event, otherwise stay at position just after the `<` symbol.
///
/// Moves parser to the `OpenedTag` state.
///
/// This code is executed in two cases:
/// - after start of parsing just after skipping BOM if it is present
/// - after parsing `</tag>` or `<tag>`
macro_rules! read_until_open {
(
$self:ident, $buf:ident,
$reader:expr,
$read_event:ident
$(, $await:ident)?
) => {{
$self.parser.state = ParseState::OpenedTag;
if $self.parser.trim_text_start {
$reader.skip_whitespace(&mut $self.parser.offset) $(.$await)? ?;
}
// If we already at the `<` symbol, do not try to return an empty Text event
if $reader.skip_one(b'<', &mut $self.parser.offset) $(.$await)? ? {
// Pass $buf to the next next iteration of parsing loop
return Ok(Err($buf));
}
match $reader
.read_bytes_until(b'<', $buf, &mut $self.parser.offset)
$(.$await)?
{
// Return Text event with `bytes` content
Ok(Some(bytes)) => $self.parser.emit_text(bytes).map(Ok),
Ok(None) => Ok(Ok(Event::Eof)),
Err(e) => Err(e),
}
}};
}
/// Read bytes up to the `>` and skip it. This method is expected to be called
/// after seeing the `<` symbol and skipping it. Inspects the next (current)
/// symbol and returns an appropriate [`Event`]:
///
/// |Symbol |Event
/// |-------|-------------------------------------
/// |`!` |[`Comment`], [`CData`] or [`DocType`]
/// |`/` |[`End`]
/// |`?` |[`PI`]
/// |_other_|[`Start`] or [`Empty`]
///
/// Moves parser to the `ClosedTag` state.
///
/// [`Comment`]: Event::Comment
/// [`CData`]: Event::CData
/// [`DocType`]: Event::DocType
/// [`End`]: Event::End
/// [`PI`]: Event::PI
/// [`Start`]: Event::Start
/// [`Empty`]: Event::Empty
macro_rules! read_until_close {
(
$self:ident, $buf:ident,
$reader:expr
$(, $await:ident)?
) => {{
$self.parser.state = ParseState::ClosedTag;
match $reader.peek_one() $(.$await)? {
// `<!` - comment, CDATA or DOCTYPE declaration
Ok(Some(b'!')) => match $reader
.read_bang_element($buf, &mut $self.parser.offset)
$(.$await)?
{
Ok(None) => Ok(Event::Eof),
Ok(Some((bang_type, bytes))) => $self.parser.emit_bang(bang_type, bytes),
Err(e) => Err(e),
},
// `</` - closing tag
Ok(Some(b'/')) => match $reader
.read_bytes_until(b'>', $buf, &mut $self.parser.offset)
$(.$await)?
{
Ok(None) => Ok(Event::Eof),
Ok(Some(bytes)) => $self.parser.emit_end(bytes),
Err(e) => Err(e),
},
// `<?` - processing instruction
Ok(Some(b'?')) => match $reader
.read_bytes_until(b'>', $buf, &mut $self.parser.offset)
$(.$await)?
{
Ok(None) => Ok(Event::Eof),
Ok(Some(bytes)) => $self.parser.emit_question_mark(bytes),
Err(e) => Err(e),
},
// `<...` - opening or self-closed tag
Ok(Some(_)) => match $reader
.read_element($buf, &mut $self.parser.offset)
$(.$await)?
{
Ok(None) => Ok(Event::Eof),
Ok(Some(bytes)) => $self.parser.emit_start(bytes),
Err(e) => Err(e),
},
Ok(None) => Ok(Event::Eof),
Err(e) => Err(e),
}
}};
}
/// Generalization of `read_to_end` method for buffered and borrowed readers
macro_rules! read_to_end {
(
$self:expr, $end:expr, $buf:expr,
$read_event:ident,
// Code block that performs clearing of internal buffer after read of each event
$clear:block
$(, $await:ident)?
) => {{
let start = $self.buffer_position();
let mut depth = 0;
loop {
$clear
let end = $self.buffer_position();
match $self.$read_event($buf) $(.$await)? {
Err(e) => return Err(e),
Ok(Event::Start(e)) if e.name() == $end => depth += 1,
Ok(Event::End(e)) if e.name() == $end => {
if depth == 0 {
break start..end;
}
depth -= 1;
}
Ok(Event::Eof) => {
let name = $self.decoder().decode($end.as_ref());
return Err(Error::UnexpectedEof(format!("</{:?}>", name)));
}
_ => (),
}
}
}};
}
#[cfg(feature = "async-tokio")]
mod async_tokio;
mod buffered_reader;
mod ns_reader;
mod parser;
mod slice_reader;
pub use ns_reader::NsReader;
/// Range of input in bytes, that corresponds to some piece of XML
pub type Span = Range<usize>;
////////////////////////////////////////////////////////////////////////////////////////////////////
/// Possible reader states. The state transition diagram (`true` and `false` shows
/// value of [`Reader::expand_empty_elements()`] option):
///
/// ```mermaid
/// flowchart LR
/// subgraph _
/// direction LR
///
/// Init -- "(no event)"\n --> OpenedTag
/// OpenedTag -- Decl, DocType, PI\nComment, CData\nStart, Empty, End --> ClosedTag
/// ClosedTag -- "#lt;false#gt;\n(no event)"\nText --> OpenedTag
/// end
/// ClosedTag -- "#lt;true#gt;"\nStart --> Empty
/// Empty -- End --> ClosedTag
/// _ -. Eof .-> Exit
/// ```
#[derive(Clone)]
enum ParseState {
/// Initial state in which reader stay after creation. Transition from that
/// state could produce a `Text`, `Decl`, `Comment` or `Start` event. The next
/// state is always `OpenedTag`. The reader will never return to this state. The
/// event emitted during transition to `OpenedTag` is a `StartEvent` if the
/// first symbol not `<`, otherwise no event are emitted.
Init,
/// State after seeing the `<` symbol. Depending on the next symbol all other
/// events could be generated.
///
/// After generating one event the reader moves to the `ClosedTag` state.
OpenedTag,
/// State in which reader searches the `<` symbol of a markup. All bytes before
/// that symbol will be returned in the [`Event::Text`] event. After that
/// the reader moves to the `OpenedTag` state.
ClosedTag,
/// This state is used only if option [`expand_empty_elements`] is set to `true`.
/// Reader enters to this state when it is in a `ClosedTag` state and emits an
/// [`Event::Start`] event. The next event emitted will be an [`Event::End`],
/// after which reader returned to the `ClosedTag` state.
///
/// [`expand_empty_elements`]: Parser::expand_empty_elements
Empty,
/// Reader enters this state when `Eof` event generated or an error occurred.
/// This is the last state, the reader stay in it forever.
Exit,
}
/// A reference to an encoding together with information about how it was retrieved.
///
/// The state transition diagram:
///
/// ```mermaid
/// flowchart LR
/// Implicit -- from_str --> Explicit
/// Implicit -- BOM --> BomDetected
/// Implicit -- "encoding=..." --> XmlDetected
/// BomDetected -- "encoding=..." --> XmlDetected
/// ```
#[cfg(feature = "encoding")]
#[derive(Clone, Copy)]
enum EncodingRef {
/// Encoding was implicitly assumed to have a specified value. It can be refined
/// using BOM or by the XML declaration event (`<?xml encoding=... ?>`)
Implicit(&'static Encoding),
/// Encoding was explicitly set to the desired value. It cannot be changed
/// nor by BOM, nor by parsing XML declaration (`<?xml encoding=... ?>`)
Explicit(&'static Encoding),
/// Encoding was detected from a byte order mark (BOM) or by the first bytes
/// of the content. It can be refined by the XML declaration event (`<?xml encoding=... ?>`)
BomDetected(&'static Encoding),
/// Encoding was detected using XML declaration event (`<?xml encoding=... ?>`).
/// It can no longer change
XmlDetected(&'static Encoding),
}
#[cfg(feature = "encoding")]
impl EncodingRef {
#[inline]
fn encoding(&self) -> &'static Encoding {
match self {
Self::Implicit(e) => e,
Self::Explicit(e) => e,
Self::BomDetected(e) => e,
Self::XmlDetected(e) => e,
}
}
#[inline]
fn can_be_refined(&self) -> bool {
match self {
Self::Implicit(_) | Self::BomDetected(_) => true,
Self::Explicit(_) | Self::XmlDetected(_) => false,
}
}
}
////////////////////////////////////////////////////////////////////////////////////////////////////
/// A low level encoding-agnostic XML event reader.
///
/// Consumes bytes and streams XML [`Event`]s.
///
/// This reader does not manage namespace declarations and not able to resolve
/// prefixes. If you want these features, use the [`NsReader`].
///
/// # Examples
///
/// ```
/// use quick_xml::events::Event;
/// use quick_xml::reader::Reader;
///
/// let xml = r#"<tag1 att1 = "test">
/// <tag2><!--Test comment-->Test</tag2>
/// <tag2>Test 2</tag2>
/// </tag1>"#;
/// let mut reader = Reader::from_str(xml);
/// reader.trim_text(true);
///
/// let mut count = 0;
/// let mut txt = Vec::new();
/// let mut buf = Vec::new();
///
/// // The `Reader` does not implement `Iterator` because it outputs borrowed data (`Cow`s)
/// loop {
/// // NOTE: this is the generic case when we don't know about the input BufRead.
/// // when the input is a &str or a &[u8], we don't actually need to use another
/// // buffer, we could directly call `reader.read_event()`
/// match reader.read_event_into(&mut buf) {
/// Err(e) => panic!("Error at position {}: {:?}", reader.buffer_position(), e),
/// // exits the loop when reaching end of file
/// Ok(Event::Eof) => break,
///
/// Ok(Event::Start(e)) => {
/// match e.name().as_ref() {
/// b"tag1" => println!("attributes values: {:?}",
/// e.attributes().map(|a| a.unwrap().value)
/// .collect::<Vec<_>>()),
/// b"tag2" => count += 1,
/// _ => (),
/// }
/// }
/// Ok(Event::Text(e)) => txt.push(e.unescape().unwrap().into_owned()),
///
/// // There are several other `Event`s we do not consider here
/// _ => (),
/// }
/// // if we don't keep a borrow elsewhere, we can clear the buffer to keep memory usage low
/// buf.clear();
/// }
/// ```
///
/// [`NsReader`]: crate::reader::NsReader
#[derive(Clone)]
pub struct Reader<R> {
/// Source of data for parse
reader: R,
/// Configuration and current parse state
parser: Parser,
}
/// Builder methods
impl<R> Reader<R> {
/// Creates a `Reader` that reads from a given reader.
pub fn from_reader(reader: R) -> Self {
Self {
reader,
parser: Parser::default(),
}
}
configure_methods!();
}
/// Getters
impl<R> Reader<R> {
/// Consumes `Reader` returning the underlying reader
///
/// Can be used to compute line and column of a parsing error position
///
/// # Examples
///
/// ```
/// # use pretty_assertions::assert_eq;
/// use std::{str, io::Cursor};
/// use quick_xml::events::Event;
/// use quick_xml::reader::Reader;
///
/// let xml = r#"<tag1 att1 = "test">
/// <tag2><!--Test comment-->Test</tag2>
/// <tag3>Test 2</tag3>
/// </tag1>"#;
/// let mut reader = Reader::from_reader(Cursor::new(xml.as_bytes()));
/// let mut buf = Vec::new();
///
/// fn into_line_and_column(reader: Reader<Cursor<&[u8]>>) -> (usize, usize) {
/// let end_pos = reader.buffer_position();
/// let mut cursor = reader.into_inner();
/// let s = String::from_utf8(cursor.into_inner()[0..end_pos].to_owned())
/// .expect("can't make a string");
/// let mut line = 1;
/// let mut column = 0;
/// for c in s.chars() {
/// if c == '\n' {
/// line += 1;
/// column = 0;
/// } else {
/// column += 1;
/// }
/// }
/// (line, column)
/// }
///
/// loop {
/// match reader.read_event_into(&mut buf) {
/// Ok(Event::Start(ref e)) => match e.name().as_ref() {
/// b"tag1" | b"tag2" => (),
/// tag => {
/// assert_eq!(b"tag3", tag);
/// assert_eq!((3, 22), into_line_and_column(reader));
/// break;
/// }
/// },
/// Ok(Event::Eof) => unreachable!(),
/// _ => (),
/// }
/// buf.clear();
/// }
/// ```
pub fn into_inner(self) -> R {
self.reader
}
/// Gets a reference to the underlying reader.
pub fn get_ref(&self) -> &R {
&self.reader
}
/// Gets a mutable reference to the underlying reader.
pub fn get_mut(&mut self) -> &mut R {
&mut self.reader
}
/// Gets the current byte position in the input data.
///
/// Useful when debugging errors.
pub fn buffer_position(&self) -> usize {
// when internal state is OpenedTag, we have actually read until '<',
// which we don't want to show
if let ParseState::OpenedTag = self.parser.state {
self.parser.offset - 1
} else {
self.parser.offset
}
}
/// Get the decoder, used to decode bytes, read by this reader, to the strings.
///
/// If `encoding` feature is enabled, the used encoding may change after
/// parsing the XML declaration, otherwise encoding is fixed to UTF-8.
///
/// If `encoding` feature is enabled and no encoding is specified in declaration,
/// defaults to UTF-8.
#[inline]
pub fn decoder(&self) -> Decoder {
self.parser.decoder()
}
}
/// Private sync reading methods
impl<R> Reader<R> {
/// Read text into the given buffer, and return an event that borrows from
/// either that buffer or from the input itself, based on the type of the
/// reader.
fn read_event_impl<'i, B>(&mut self, mut buf: B) -> Result<Event<'i>>
where
R: XmlSource<'i, B>,
{
read_event_impl!(self, buf, self.reader, read_until_open, read_until_close)
}
/// Read until '<' is found, moves reader to an `OpenedTag` state and returns a `Text` event.
///
/// Returns inner `Ok` if the loop should be broken and an event returned.
/// Returns inner `Err` with the same `buf` because Rust borrowck stumbles upon this case in particular.
fn read_until_open<'i, B>(&mut self, buf: B) -> Result<std::result::Result<Event<'i>, B>>
where
R: XmlSource<'i, B>,
{
read_until_open!(self, buf, self.reader, read_event_impl)
}
/// Private function to read until `>` is found. This function expects that
/// it was called just after encounter a `<` symbol.
fn read_until_close<'i, B>(&mut self, buf: B) -> Result<Event<'i>>
where
R: XmlSource<'i, B>,
{
read_until_close!(self, buf, self.reader)
}
}
////////////////////////////////////////////////////////////////////////////////////////////////////
/// Represents an input for a reader that can return borrowed data.
///
/// There are two implementors of this trait: generic one that read data from
/// `Self`, copies some part of it into a provided buffer of type `B` and then
/// returns data that borrow from that buffer.
///
/// The other implementor is for `&[u8]` and instead of copying data returns
/// borrowed data from `Self` instead. This implementation allows zero-copy
/// deserialization.
///
/// # Parameters
/// - `'r`: lifetime of a buffer from which events will borrow
/// - `B`: a type of a buffer that can be used to store data read from `Self` and
/// from which events can borrow
trait XmlSource<'r, B> {
/// Removes UTF-8 BOM if it is present
#[cfg(not(feature = "encoding"))]
fn remove_utf8_bom(&mut self) -> Result<()>;
/// Determines encoding from the start of input and removes BOM if it is present
#[cfg(feature = "encoding")]
fn detect_encoding(&mut self) -> Result<Option<&'static Encoding>>;
/// Read input until `byte` is found or end of input is reached.
///
/// Returns a slice of data read up to `byte`, which does not include into result.
/// If input (`Self`) is exhausted, returns `None`.
///
/// # Example
///
/// ```ignore
/// let mut position = 0;
/// let mut input = b"abc*def".as_ref();
/// // ^= 4
///
/// assert_eq!(
/// input.read_bytes_until(b'*', (), &mut position).unwrap(),
/// Some(b"abc".as_ref())
/// );
/// assert_eq!(position, 4); // position after the symbol matched
/// ```
///
/// # Parameters
/// - `byte`: Byte for search
/// - `buf`: Buffer that could be filled from an input (`Self`) and
/// from which [events] could borrow their data
/// - `position`: Will be increased by amount of bytes consumed
///
/// [events]: crate::events::Event
fn read_bytes_until(
&mut self,
byte: u8,
buf: B,
position: &mut usize,
) -> Result<Option<&'r [u8]>>;
/// Read input until comment, CDATA or processing instruction is finished.
///
/// This method expect that `<` already was read.
///
/// Returns a slice of data read up to end of comment, CDATA or processing
/// instruction (`>`), which does not include into result.
///
/// If input (`Self`) is exhausted and nothing was read, returns `None`.
///
/// # Parameters
/// - `buf`: Buffer that could be filled from an input (`Self`) and
/// from which [events] could borrow their data
/// - `position`: Will be increased by amount of bytes consumed
///
/// [events]: crate::events::Event
fn read_bang_element(
&mut self,
buf: B,
position: &mut usize,
) -> Result<Option<(BangType, &'r [u8])>>;
/// Read input until XML element is closed by approaching a `>` symbol.
/// Returns `Some(buffer)` that contains a data between `<` and `>` or
/// `None` if end-of-input was reached and nothing was read.
///
/// Derived from `read_until`, but modified to handle XML attributes
/// using a minimal state machine.
///
/// Attribute values are [defined] as follows:
/// ```plain
/// AttValue := '"' (([^<&"]) | Reference)* '"'
/// | "'" (([^<&']) | Reference)* "'"
/// ```
/// (`Reference` is something like `"`, but we don't care about
/// escaped characters at this level)
///
/// # Parameters
/// - `buf`: Buffer that could be filled from an input (`Self`) and
/// from which [events] could borrow their data
/// - `position`: Will be increased by amount of bytes consumed
///
/// [defined]: https://www.w3.org/TR/xml11/#NT-AttValue
/// [events]: crate::events::Event
fn read_element(&mut self, buf: B, position: &mut usize) -> Result<Option<&'r [u8]>>;
/// Consume and discard all the whitespace until the next non-whitespace
/// character or EOF.
///
/// # Parameters
/// - `position`: Will be increased by amount of bytes consumed
fn skip_whitespace(&mut self, position: &mut usize) -> Result<()>;
/// Consume and discard one character if it matches the given byte. Return
/// `true` if it matched.
///
/// # Parameters
/// - `position`: Will be increased by 1 if byte is matched
fn skip_one(&mut self, byte: u8, position: &mut usize) -> Result<bool>;
/// Return one character without consuming it, so that future `read_*` calls
/// will still include it. On EOF, return `None`.
fn peek_one(&mut self) -> Result<Option<u8>>;
}
/// Possible elements started with `<!`
#[derive(Debug, PartialEq)]
enum BangType {
/// <![CDATA[...]]>
CData,
/// <!--...-->
Comment,
/// <!DOCTYPE...>
DocType,
}
impl BangType {
#[inline(always)]
fn new(byte: Option<u8>) -> Result<Self> {
Ok(match byte {
Some(b'[') => Self::CData,
Some(b'-') => Self::Comment,
Some(b'D') | Some(b'd') => Self::DocType,
Some(b) => return Err(Error::UnexpectedBang(b)),
None => return Err(Error::UnexpectedEof("Bang".to_string())),
})
}
/// If element is finished, returns its content up to `>` symbol and
/// an index of this symbol, otherwise returns `None`
///
/// # Parameters
/// - `buf`: buffer with data consumed on previous iterations
/// - `chunk`: data read on current iteration and not yet consumed from reader
#[inline(always)]
fn parse<'b>(&self, buf: &[u8], chunk: &'b [u8]) -> Option<(&'b [u8], usize)> {
for i in memchr::memchr_iter(b'>', chunk) {
match self {
// Need to read at least 6 symbols (`!---->`) for properly finished comment
// <!----> - XML comment
// 012345 - i
Self::Comment if buf.len() + i > 4 => {
if chunk[..i].ends_with(b"--") {
// We cannot strip last `--` from the buffer because we need it in case of
// check_comments enabled option. XML standard requires that comment
// will not end with `--->` sequence because this is a special case of
// `--` in the comment (https://www.w3.org/TR/xml11/#sec-comments)
return Some((&chunk[..i], i + 1)); // +1 for `>`
}
// End sequence `-|->` was splitted at |
// buf --/ \-- chunk
if i == 1 && buf.ends_with(b"-") && chunk[0] == b'-' {
return Some((&chunk[..i], i + 1)); // +1 for `>`
}
// End sequence `--|>` was splitted at |
// buf --/ \-- chunk
if i == 0 && buf.ends_with(b"--") {
return Some((&[], i + 1)); // +1 for `>`
}
}
Self::Comment => {}
Self::CData => {
if chunk[..i].ends_with(b"]]") {
return Some((&chunk[..i], i + 1)); // +1 for `>`
}
// End sequence `]|]>` was splitted at |
// buf --/ \-- chunk
if i == 1 && buf.ends_with(b"]") && chunk[0] == b']' {
return Some((&chunk[..i], i + 1)); // +1 for `>`
}
// End sequence `]]|>` was splitted at |
// buf --/ \-- chunk
if i == 0 && buf.ends_with(b"]]") {
return Some((&[], i + 1)); // +1 for `>`
}
}
Self::DocType => {
let content = &chunk[..i];
let balance = memchr::memchr2_iter(b'<', b'>', content)
.map(|p| if content[p] == b'<' { 1i32 } else { -1 })
.sum::<i32>();
if balance == 0 {
return Some((content, i + 1)); // +1 for `>`
}
}
}
}
None
}
#[inline]
fn to_err(&self) -> Error {
let bang_str = match self {
Self::CData => "CData",
Self::Comment => "Comment",
Self::DocType => "DOCTYPE",
};
Error::UnexpectedEof(bang_str.to_string())
}
}
/// State machine for the [`XmlSource::read_element`]
#[derive(Clone, Copy)]
enum ReadElementState {
/// The initial state (inside element, but outside of attribute value)
Elem,
/// Inside a single-quoted attribute value
SingleQ,
/// Inside a double-quoted attribute value
DoubleQ,
}
impl ReadElementState {
/// Changes state by analyzing part of input.
/// Returns a tuple with part of chunk up to element closing symbol `>`
/// and a position after that symbol or `None` if such symbol was not found
#[inline(always)]
fn change<'b>(&mut self, chunk: &'b [u8]) -> Option<(&'b [u8], usize)> {
for i in memchr::memchr3_iter(b'>', b'\'', b'"', chunk) {
*self = match (*self, chunk[i]) {
// only allowed to match `>` while we are in state `Elem`
(Self::Elem, b'>') => return Some((&chunk[..i], i + 1)),
(Self::Elem, b'\'') => Self::SingleQ,
(Self::Elem, b'\"') => Self::DoubleQ,
// the only end_byte that gets us out if the same character
(Self::SingleQ, b'\'') | (Self::DoubleQ, b'"') => Self::Elem,
// all other bytes: no state change
_ => *self,
};
}
None
}
}
/// A function to check whether the byte is a whitespace (blank, new line, carriage return or tab)
#[inline]
pub(crate) const fn is_whitespace(b: u8) -> bool {
matches!(b, b' ' | b'\r' | b'\n' | b'\t')
}
////////////////////////////////////////////////////////////////////////////////////////////////////
#[cfg(test)]
mod test {
/// Checks the internal implementation of the various reader methods
macro_rules! check {
(
#[$test:meta]
$read_event:ident,
$read_until_close:ident,
// constructor of the XML source on which internal functions will be called
$source:path,
// constructor of the buffer to which read data will stored
$buf:expr
$(, $async:ident, $await:ident)?
) => {
mod read_bytes_until {
use super::*;
// Use Bytes for printing bytes as strings for ASCII range
use crate::utils::Bytes;
use pretty_assertions::assert_eq;
/// Checks that search in the empty buffer returns `None`
#[$test]
$($async)? fn empty() {
let buf = $buf;
let mut position = 0;
let mut input = b"".as_ref();
// ^= 0
assert_eq!(
$source(&mut input)
.read_bytes_until(b'*', buf, &mut position)
$(.$await)?
.unwrap()
.map(Bytes),
None
);
assert_eq!(position, 0);
}
/// Checks that search in the buffer non-existent value returns entire buffer
/// as a result and set `position` to `len()`
#[$test]
$($async)? fn non_existent() {
let buf = $buf;
let mut position = 0;
let mut input = b"abcdef".as_ref();
// ^= 6
assert_eq!(
$source(&mut input)
.read_bytes_until(b'*', buf, &mut position)
$(.$await)?
.unwrap()
.map(Bytes),
Some(Bytes(b"abcdef"))
);
assert_eq!(position, 6);
}
/// Checks that search in the buffer an element that is located in the front of
/// buffer returns empty slice as a result and set `position` to one symbol
/// after match (`1`)
#[$test]
$($async)? fn at_the_start() {
let buf = $buf;
let mut position = 0;
let mut input = b"*abcdef".as_ref();
// ^= 1
assert_eq!(
$source(&mut input)
.read_bytes_until(b'*', buf, &mut position)