forked from tafia/quick-xml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmap.rs
749 lines (707 loc) · 27 KB
/
map.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
//! Serde `Deserializer` module
use crate::{
de::escape::EscapedDeserializer,
de::seq::{not_in, TagFilter},
de::simple_type::SimpleTypeDeserializer,
de::{str2bool, DeEvent, Deserializer, XmlRead, INNER_VALUE, UNFLATTEN_PREFIX},
errors::serialize::DeError,
events::attributes::IterState,
events::BytesStart,
};
use serde::de::{self, DeserializeSeed, IntoDeserializer, SeqAccess, Visitor};
use serde::serde_if_integer128;
use std::borrow::Cow;
use std::ops::Range;
/// Defines a source that should be used to deserialize a value in the next call
/// to [`next_value_seed()`](de::MapAccess::next_value_seed)
#[derive(Debug, PartialEq)]
enum ValueSource {
/// Source are not specified, because [`next_key_seed()`] not yet called.
/// This is an initial state and state after deserializing value
/// (after call of [`next_value_seed()`]).
///
/// Attempt to call [`next_value_seed()`] while accessor in this state would
/// return a [`DeError::KeyNotRead`] error.
///
/// [`next_key_seed()`]: de::MapAccess::next_key_seed
/// [`next_value_seed()`]: de::MapAccess::next_value_seed
Unknown,
/// Next value should be deserialized from an attribute value; value is located
/// at specified span.
Attribute(Range<usize>),
/// Value should be deserialized from the text content of the XML node, which
/// represented or by an ordinary text node, or by a CDATA node:
///
/// ```xml
/// <any-tag>
/// <key>text content</key>
/// <!-- ^^^^^^^^^^^^ - this will be used to deserialize map value -->
/// </any-tag>
/// ```
/// ```xml
/// <any-tag>
/// <key><![CDATA[cdata content]]></key>
/// <!-- ^^^^^^^^^^^^^ - this will be used to deserialize a map value -->
/// </any-tag>
/// ```
Text,
/// Next value should be deserialized from an element with an any name, except
/// elements with a name matching one of the struct fields. Corresponding tag
/// name will always be associated with a field with name [`INNER_VALUE`].
///
/// That state is set when call to [`peek()`] returns a [`Start`] event, which
/// [`name()`] is not listed in the [list of known fields] (which for a struct
/// is a list of field names, and for a map that is an empty list), _and_
/// struct has a field with a special name [`INNER_VALUE`].
///
/// When in this state, next event, returned by [`next()`], will be a [`Start`],
/// which represents both a key, and a value. Value would be deserialized from
/// the whole element and how is will be done determined by the value deserializer.
/// The [`MapAccess`] do not consume any events in that state.
///
/// Because in that state any encountered `<tag>` is mapped to the [`INNER_VALUE`]
/// field, it is possible to use tag name as an enum discriminator, so `enum`s
/// can be deserialized from that XMLs:
///
/// ```xml
/// <any-tag>
/// <variant1>...</variant1>
/// <!-- ~~~~~~~~ - this data will determine that this is Enum::variant1 -->
/// <!--^^^^^^^^^^^^^^^^^^^^^^^ - this data will be used to deserialize a map value -->
/// </any-tag>
/// ```
/// ```xml
/// <any-tag>
/// <variant2>...</variant2>
/// <!-- ~~~~~~~~ - this data will determine that this is Enum::variant2 -->
/// <!--^^^^^^^^^^^^^^^^^^^^^^^ - this data will be used to deserialize a map value -->
/// </any-tag>
/// ```
///
/// both can be deserialized into
///
/// ```ignore
/// enum Enum {
/// variant1,
/// variant2,
/// }
/// struct AnyName {
/// #[serde(rename = "$value")]
/// field: Enum,
/// }
/// ```
///
/// That is possible, because value deserializer have access to the full content
/// of a `<variant1>...</variant1>` or `<variant2>...</variant2>` node, including
/// the tag name.
///
/// Currently, processing of that enum variant is fully equivalent to the
/// processing of a [`Text`] variant. Split of variants made for clarity.
///
/// [`Start`]: DeEvent::Start
/// [`peek()`]: Deserializer::peek()
/// [`next()`]: Deserializer::next()
/// [`name()`]: BytesStart::name()
/// [`Text`]: Self::Text
/// [list of known fields]: MapAccess::fields
Content,
/// Next value should be deserialized from an element with a dedicated name.
/// If deserialized type is a sequence, then that sequence will collect all
/// elements with the same name until it will be filled. If not all elements
/// would be consumed, the rest will be ignored.
///
/// That state is set when call to [`peek()`] returns a [`Start`] event, which
/// [`name()`] represents a field name. That name will be deserialized as a key.
///
/// When in this state, next event, returned by [`next()`], will be a [`Start`],
/// which represents both a key, and a value. Value would be deserialized from
/// the whole element and how is will be done determined by the value deserializer.
/// The [`MapAccess`] do not consume any events in that state.
///
/// An illustration below shows, what data is used to deserialize key and value:
/// ```xml
/// <any-tag>
/// <key>...</key>
/// <!-- ~~~ - this data will be used to deserialize a map key -->
/// <!--^^^^^^^^^^^^^^ - this data will be used to deserialize a map value -->
/// </any-tag>
/// ```
///
/// Although value deserializer will have access to the full content of a `<key>`
/// node (including the tag name), it will not get much benefits from that,
/// because tag name will always be fixed for a given map field (equal to a
/// field name). So, if the field type is an `enum`, it cannot select its
/// variant based on the tag name. If that is needed, then [`Content`] variant
/// of this enum should be used. Such usage is enabled by annotating a struct
/// field as "content" field, which implemented as given the field a special
/// [`INNER_VALUE`] name.
///
/// [`Start`]: DeEvent::Start
/// [`peek()`]: Deserializer::peek()
/// [`next()`]: Deserializer::next()
/// [`name()`]: BytesStart::name()
/// [`Content`]: Self::Content
Nested,
}
/// A deserializer that extracts map-like structures from an XML. This deserializer
/// represents a one XML tag:
///
/// ```xml
/// <tag>...</tag>
/// ```
///
/// Name of this tag is stored in a [`Self::start`] property.
///
/// # Lifetimes
///
/// - `'de` lifetime represents a buffer, from which deserialized values can
/// borrow their data. Depending on the underlying reader, there can be an
/// internal buffer of deserializer (i.e. deserializer itself) or an input
/// (in that case it is possible to approach zero-copy deserialization).
///
/// - `'a` lifetime represents a parent deserializer, which could own the data
/// buffer.
pub(crate) struct MapAccess<'de, 'a, R>
where
R: XmlRead<'de>,
{
/// Tag -- owner of attributes
start: BytesStart<'de>,
de: &'a mut Deserializer<'de, R>,
/// State of the iterator over attributes. Contains the next position in the
/// inner `start` slice, from which next attribute should be parsed.
iter: IterState,
/// Current state of the accessor that determines what next call to API
/// methods should return.
source: ValueSource,
/// List of field names of the struct. It is empty for maps
fields: &'static [&'static str],
/// If `true`, then the deserialized struct has a field with a special name:
/// [`INNER_VALUE`]. That field should be deserialized from the text content
/// of an XML node:
///
/// ```xml
/// <tag>value for INNER_VALUE field<tag>
/// ```
has_value_field: bool,
/// list of fields yet to unflatten (defined as starting with $unflatten=)
unflatten_fields: Vec<&'static [u8]>,
}
impl<'de, 'a, R> MapAccess<'de, 'a, R>
where
R: XmlRead<'de>,
{
/// Create a new MapAccess
pub fn new(
de: &'a mut Deserializer<'de, R>,
start: BytesStart<'de>,
fields: &'static [&'static str],
) -> Result<Self, DeError> {
Ok(MapAccess {
de,
iter: IterState::new(start.name().as_ref().len(), false),
start,
source: ValueSource::Unknown,
fields,
has_value_field: fields.contains(&INNER_VALUE),
unflatten_fields: fields
.iter()
.filter(|f| f.starts_with(UNFLATTEN_PREFIX))
.map(|f| f.as_bytes())
.collect(),
})
}
}
impl<'de, 'a, R> de::MapAccess<'de> for MapAccess<'de, 'a, R>
where
R: XmlRead<'de>,
{
type Error = DeError;
fn next_key_seed<K: DeserializeSeed<'de>>(
&mut self,
seed: K,
) -> Result<Option<K::Value>, Self::Error> {
debug_assert_eq!(self.source, ValueSource::Unknown);
// FIXME: There error positions counted from the start of tag name - need global position
let slice = &self.start.buf;
let decoder = self.de.reader.decoder();
if let Some(a) = self.iter.next(slice).transpose()? {
// try getting map from attributes (key= "value")
let (key, value) = a.into();
self.source = ValueSource::Attribute(value.unwrap_or_default());
seed.deserialize(EscapedDeserializer::new(
Cow::Borrowed(&slice[key]),
decoder,
false,
))
.map(Some)
} else {
// try getting from events (<key>value</key>)
match self.de.peek()? {
DeEvent::Text(_) | DeEvent::CData(_) => {
self.source = ValueSource::Text;
// Deserialize `key` from special attribute name which means
// that value should be taken from the text content of the
// XML node
seed.deserialize(INNER_VALUE.into_deserializer()).map(Some)
}
// Used to deserialize collections of enums, like:
// <root>
// <A/>
// <B/>
// <C/>
// </root>
//
// into
//
// enum Enum { A, B, С }
// struct Root {
// #[serde(rename = "$value")]
// items: Vec<Enum>,
// }
// TODO: This should be handled by #[serde(flatten)]
// See https://github.com/serde-rs/serde/issues/1905
DeEvent::Start(e) if self.has_value_field && not_in(self.fields, e, decoder)? => {
self.source = ValueSource::Content;
seed.deserialize(INNER_VALUE.into_deserializer()).map(Some)
}
DeEvent::Start(e) => {
self.source = ValueSource::Nested;
let key = if let Some(p) = self
.unflatten_fields
.iter()
.position(|f| e.name().as_ref() == &f[UNFLATTEN_PREFIX.len()..])
{
// Used to deserialize elements, like:
// <root>
// <xxx>test</xxx>
// </root>
//
// into
//
// struct Root {
// #[serde(rename = "$unflatten=xxx")]
// xxx: String,
// }
seed.deserialize(self.unflatten_fields.remove(p).into_deserializer())
} else {
let name = Cow::Borrowed(e.local_name().into_inner());
seed.deserialize(EscapedDeserializer::new(name, decoder, false))
};
key.map(Some)
}
_ => Ok(None),
}
}
}
fn next_value_seed<K: DeserializeSeed<'de>>(
&mut self,
seed: K,
) -> Result<K::Value, Self::Error> {
match std::mem::replace(&mut self.source, ValueSource::Unknown) {
ValueSource::Attribute(value) => seed.deserialize(SimpleTypeDeserializer::from_part(
&self.start.buf,
value,
true,
self.de.reader.decoder(),
)),
// This arm processes the following XML shape:
// <any-tag>
// text value
// </any-tag>
// The whole map represented by an `<any-tag>` element, the map key
// is implicit and equals to the `INNER_VALUE` constant, and the value
// is a `Text` or a `CData` event (the value deserializer will see one
// of that events)
// This case are checked by "xml_schema_lists::element" tests in tests/serde-de.rs
ValueSource::Text => match self.de.next()? {
DeEvent::Text(e) => seed.deserialize(SimpleTypeDeserializer::from_cow(
e.into_inner(),
true,
self.de.reader.decoder(),
)),
DeEvent::CData(e) => seed.deserialize(SimpleTypeDeserializer::from_cow(
e.into_inner(),
false,
self.de.reader.decoder(),
)),
// SAFETY: We set `Text` only when we seen `Text` or `CData`
_ => unreachable!(),
},
// This arm processes the following XML shape:
// <any-tag>
// <any>...</any>
// </any-tag>
// The whole map represented by an `<any-tag>` element, the map key
// is implicit and equals to the `INNER_VALUE` constant, and the value
// is a `Start` event (the value deserializer will see that event)
ValueSource::Content => seed.deserialize(MapValueDeserializer {
map: self,
allow_start: false,
}),
// This arm processes the following XML shape:
// <any-tag>
// <tag>...</tag>
// </any-tag>
// The whole map represented by an `<any-tag>` element, the map key
// is a `tag`, and the value is a `Start` event (the value deserializer
// will see that event)
ValueSource::Nested => seed.deserialize(MapValueDeserializer {
map: self,
allow_start: true,
}),
ValueSource::Unknown => Err(DeError::KeyNotRead),
}
}
}
////////////////////////////////////////////////////////////////////////////////////////////////////
macro_rules! forward {
(
$deserialize:ident
$(
($($name:ident : $type:ty),*)
)?
) => {
#[inline]
fn $deserialize<V: Visitor<'de>>(
self,
$($($name: $type,)*)?
visitor: V
) -> Result<V::Value, Self::Error> {
self.map.de.$deserialize($($($name,)*)? visitor)
}
};
}
/// A deserializer for a value of map or struct. That deserializer slightly
/// differently processes events for a primitive types and sequences than
/// a [`Deserializer`].
struct MapValueDeserializer<'de, 'a, 'm, R>
where
R: XmlRead<'de>,
{
/// Access to the map that created this deserializer. Gives access to the
/// context, such as list of fields, that current map known about.
map: &'m mut MapAccess<'de, 'a, R>,
/// Determines, should [`Deserializer::next_text_impl()`] expand the second
/// level of tags or not.
///
/// If this field is `true`, we process the following XML shape:
///
/// ```xml
/// <any-tag>
/// <tag>...</tag>
/// </any-tag>
/// ```
///
/// The whole map represented by an `<any-tag>` element, the map key is a `tag`,
/// and the value starts with is a `Start("tag")` (the value deserializer will
/// see that event first) and extended to the matching `End("tag")` event.
/// In order to deserialize primitives (such as `usize`) we need to allow to
/// look inside the one levels of tags, so the
///
/// ```xml
/// <tag>42<tag>
/// ```
///
/// could be deserialized into `42usize` without problems, and at the same time
///
/// ```xml
/// <tag>
/// <key1/>
/// <key2/>
/// <!--...-->
/// <tag>
/// ```
/// could be deserialized to a struct.
///
/// If this field is `false`, we processes the one of following XML shapes:
///
/// ```xml
/// <any-tag>
/// text value
/// </any-tag>
/// ```
/// ```xml
/// <any-tag>
/// <![CDATA[cdata value]]>
/// </any-tag>
/// ```
/// ```xml
/// <any-tag>
/// <any>...</any>
/// </any-tag>
/// ```
///
/// The whole map represented by an `<any-tag>` element, the map key is
/// implicit and equals to the [`INNER_VALUE`] constant, and the value is
/// a [`Text`], a [`CData`], or a [`Start`] event (the value deserializer
/// will see one of those events). In the first two cases the value of this
/// field do not matter (because we already see the textual event and there
/// no reasons to look "inside" something), but in the last case the primitives
/// should raise a deserialization error, because that means that you trying
/// to deserialize the following struct:
///
/// ```ignore
/// struct AnyName {
/// #[serde(rename = "$value")]
/// any_name: String,
/// }
/// ```
/// which means that `any_name` should get a content of the `<any-tag>` element.
///
/// Changing this can be valuable for <https://github.com/tafia/quick-xml/issues/383>,
/// but those fields should be explicitly marked that they want to get any
/// possible markup as a `String` and that mark is different from marking them
/// as accepting "text content" which the currently `$value` means.
///
/// [`Text`]: DeEvent::Text
/// [`CData`]: DeEvent::CData
/// [`Start`]: DeEvent::Start
allow_start: bool,
}
impl<'de, 'a, 'm, R> MapValueDeserializer<'de, 'a, 'm, R>
where
R: XmlRead<'de>,
{
/// Returns a text event, used inside [`deserialize_primitives!()`]
#[inline]
fn next_text(&mut self, unescape: bool) -> Result<Cow<'de, str>, DeError> {
self.map.de.next_text_impl(unescape, self.allow_start)
}
}
impl<'de, 'a, 'm, R> de::Deserializer<'de> for MapValueDeserializer<'de, 'a, 'm, R>
where
R: XmlRead<'de>,
{
type Error = DeError;
deserialize_primitives!(mut);
forward!(deserialize_option);
forward!(deserialize_unit);
forward!(deserialize_unit_struct(name: &'static str));
forward!(deserialize_newtype_struct(name: &'static str));
forward!(deserialize_map);
forward!(deserialize_struct(
name: &'static str,
fields: &'static [&'static str]
));
forward!(deserialize_enum(
name: &'static str,
variants: &'static [&'static str]
));
forward!(deserialize_any);
forward!(deserialize_ignored_any);
/// Tuple representation is the same as [sequences](Self::deserialize_seq).
fn deserialize_tuple<V>(self, _len: usize, visitor: V) -> Result<V::Value, DeError>
where
V: Visitor<'de>,
{
self.deserialize_seq(visitor)
}
/// Named tuple representation is the same as [unnamed tuples](Self::deserialize_tuple).
fn deserialize_tuple_struct<V>(
self,
_name: &'static str,
len: usize,
visitor: V,
) -> Result<V::Value, DeError>
where
V: Visitor<'de>,
{
self.deserialize_tuple(len, visitor)
}
fn deserialize_seq<V>(self, visitor: V) -> Result<V::Value, Self::Error>
where
V: Visitor<'de>,
{
let filter = if self.allow_start {
match self.map.de.peek()? {
// Clone is cheap if event borrows from the input
DeEvent::Start(e) => TagFilter::Include(e.clone()),
// SAFETY: we use that deserializer with `allow_start == true`
// only from the `MapAccess::next_value_seed` and only when we
// peeked `Start` event
_ => unreachable!(),
}
} else {
TagFilter::Exclude(self.map.fields)
};
let seq = visitor.visit_seq(MapValueSeqAccess {
map: self.map,
filter,
});
#[cfg(feature = "overlapped-lists")]
self.map.de.start_replay();
seq
}
#[inline]
fn is_human_readable(&self) -> bool {
self.map.de.is_human_readable()
}
}
////////////////////////////////////////////////////////////////////////////////////////////////////
/// An accessor to sequence elements forming a value for struct field.
/// Technically, this sequence is flattened out into structure and sequence
/// elements are overlapped with other fields of a structure
struct MapValueSeqAccess<'de, 'a, 'm, R>
where
R: XmlRead<'de>,
{
/// Accessor to a map that creates this accessor and to a deserializer for
/// a sequence items.
map: &'m mut MapAccess<'de, 'a, R>,
/// Filter that determines whether a tag is a part of this sequence.
///
/// When feature `overlapped-lists` is not activated, iteration will stop
/// when found a tag that does not pass this filter.
///
/// When feature `overlapped-lists` is activated, all tags, that not pass
/// this check, will be skipped.
filter: TagFilter<'de>,
}
impl<'de, 'a, 'm, R> SeqAccess<'de> for MapValueSeqAccess<'de, 'a, 'm, R>
where
R: XmlRead<'de>,
{
type Error = DeError;
fn next_element_seed<T>(&mut self, seed: T) -> Result<Option<T::Value>, DeError>
where
T: DeserializeSeed<'de>,
{
let decoder = self.map.de.reader.decoder();
loop {
break match self.map.de.peek()? {
// If we see a tag that we not interested, skip it
#[cfg(feature = "overlapped-lists")]
DeEvent::Start(e) if !self.filter.is_suitable(&e, decoder)? => {
self.map.de.skip()?;
continue;
}
// Stop iteration when list elements ends
#[cfg(not(feature = "overlapped-lists"))]
DeEvent::Start(e) if !self.filter.is_suitable(&e, decoder)? => Ok(None),
// Stop iteration after reaching a closing tag
DeEvent::End(e) if e.name() == self.map.start.name() => Ok(None),
// This is a unmatched closing tag, so the XML is invalid
DeEvent::End(e) => Err(DeError::UnexpectedEnd(e.name().as_ref().to_owned())),
// We cannot get `Eof` legally, because we always inside of the
// opened tag `self.map.start`
DeEvent::Eof => Err(DeError::UnexpectedEof),
// Start(tag), Text, CData
_ => seed
.deserialize(SeqValueDeserializer { map: self.map })
.map(Some),
};
}
}
}
////////////////////////////////////////////////////////////////////////////////////////////////////
/// A deserializer for a value of sequence.
struct SeqValueDeserializer<'de, 'a, 'm, R>
where
R: XmlRead<'de>,
{
/// Access to the map that created this deserializer. Gives access to the
/// context, such as list of fields, that current map known about.
map: &'m mut MapAccess<'de, 'a, R>,
}
impl<'de, 'a, 'm, R> SeqValueDeserializer<'de, 'a, 'm, R>
where
R: XmlRead<'de>,
{
/// Returns a text event, used inside [`deserialize_primitives!()`]
#[inline]
fn next_text(&mut self, unescape: bool) -> Result<Cow<'de, str>, DeError> {
self.map.de.next_text_impl(unescape, true)
}
}
impl<'de, 'a, 'm, R> de::Deserializer<'de> for SeqValueDeserializer<'de, 'a, 'm, R>
where
R: XmlRead<'de>,
{
type Error = DeError;
deserialize_primitives!(mut);
forward!(deserialize_option);
forward!(deserialize_unit);
forward!(deserialize_unit_struct(name: &'static str));
forward!(deserialize_newtype_struct(name: &'static str));
forward!(deserialize_map);
forward!(deserialize_struct(
name: &'static str,
fields: &'static [&'static str]
));
forward!(deserialize_enum(
name: &'static str,
variants: &'static [&'static str]
));
forward!(deserialize_any);
forward!(deserialize_ignored_any);
/// Representation of tuples the same as [sequences](Self::deserialize_seq).
fn deserialize_tuple<V>(self, _len: usize, visitor: V) -> Result<V::Value, DeError>
where
V: Visitor<'de>,
{
self.deserialize_seq(visitor)
}
/// Representation of named tuples the same as [unnamed tuples](Self::deserialize_tuple).
fn deserialize_tuple_struct<V>(
self,
_name: &'static str,
len: usize,
visitor: V,
) -> Result<V::Value, DeError>
where
V: Visitor<'de>,
{
self.deserialize_tuple(len, visitor)
}
fn deserialize_seq<V>(self, visitor: V) -> Result<V::Value, Self::Error>
where
V: Visitor<'de>,
{
match self.map.de.next()? {
DeEvent::Text(e) => SimpleTypeDeserializer::from_cow(
// Comment to prevent auto-formatting and keep Text and Cdata similar
e.into_inner(),
true,
self.map.de.reader.decoder(),
)
.deserialize_seq(visitor),
DeEvent::CData(e) => SimpleTypeDeserializer::from_cow(
e.into_inner(),
false,
self.map.de.reader.decoder(),
)
.deserialize_seq(visitor),
// This is a sequence element. We cannot treat it as another flatten
// sequence if type will require `deserialize_seq` We instead forward
// it to `xs:simpleType` implementation
DeEvent::Start(e) => {
let value = match self.map.de.next()? {
DeEvent::Text(e) => SimpleTypeDeserializer::from_cow(
e.into_inner(),
true,
self.map.de.reader.decoder(),
)
.deserialize_seq(visitor),
DeEvent::CData(e) => SimpleTypeDeserializer::from_cow(
e.into_inner(),
false,
self.map.de.reader.decoder(),
)
.deserialize_seq(visitor),
e => Err(DeError::Custom(format!("Unsupported event {:?}", e))),
};
// TODO: May be assert that here we expect only matching closing tag?
self.map.de.read_to_end(e.name())?;
value
}
// SAFETY: we use that deserializer only when Start(element), Text,
// or CData event Start(tag), Text, CData was peeked already
_ => unreachable!(),
}
}
#[inline]
fn is_human_readable(&self) -> bool {
self.map.de.is_human_readable()
}
}