quick_xml/se/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
//! Module to handle custom serde `Serializer`
/// Implements writing primitives to the underlying writer.
/// Implementor must provide `write_str(self, &str) -> Result<(), DeError>` method
macro_rules! write_primitive {
($method:ident ( $ty:ty )) => {
fn $method(mut self, value: $ty) -> Result<Self::Ok, Self::Error> {
self.write_str(&value.to_string())?;
Ok(self.writer)
}
};
() => {
fn serialize_bool(mut self, value: bool) -> Result<Self::Ok, Self::Error> {
self.write_str(if value { "true" } else { "false" })?;
Ok(self.writer)
}
write_primitive!(serialize_i8(i8));
write_primitive!(serialize_i16(i16));
write_primitive!(serialize_i32(i32));
write_primitive!(serialize_i64(i64));
write_primitive!(serialize_u8(u8));
write_primitive!(serialize_u16(u16));
write_primitive!(serialize_u32(u32));
write_primitive!(serialize_u64(u64));
serde_if_integer128! {
write_primitive!(serialize_i128(i128));
write_primitive!(serialize_u128(u128));
}
write_primitive!(serialize_f32(f32));
write_primitive!(serialize_f64(f64));
fn serialize_char(self, value: char) -> Result<Self::Ok, Self::Error> {
self.serialize_str(&value.to_string())
}
fn serialize_bytes(self, _value: &[u8]) -> Result<Self::Ok, Self::Error> {
//TODO: customization point - allow user to decide how to encode bytes
Err(Self::Error::Unsupported(
"`serialize_bytes` not supported yet".into(),
))
}
fn serialize_none(self) -> Result<Self::Ok, Self::Error> {
Ok(self.writer)
}
fn serialize_some<T: ?Sized + Serialize>(self, value: &T) -> Result<Self::Ok, Self::Error> {
value.serialize(self)
}
fn serialize_unit_variant(
self,
_name: &'static str,
_variant_index: u32,
variant: &'static str,
) -> Result<Self::Ok, Self::Error> {
self.serialize_str(variant)
}
fn serialize_newtype_struct<T: ?Sized + Serialize>(
self,
_name: &'static str,
value: &T,
) -> Result<Self::Ok, Self::Error> {
value.serialize(self)
}
};
}
////////////////////////////////////////////////////////////////////////////////////////////////////
mod content;
mod element;
pub(crate) mod key;
pub(crate) mod simple_type;
mod text;
use self::content::ContentSerializer;
use self::element::{ElementSerializer, Map, Struct, Tuple};
use crate::de::TEXT_KEY;
use crate::writer::Indentation;
use serde::ser::{self, Serialize};
use serde::serde_if_integer128;
use std::fmt::Write;
use std::str::from_utf8;
pub use self::simple_type::SimpleTypeSerializer;
pub use crate::errors::serialize::SeError;
/// Serialize struct into a `Write`r.
///
/// Returns the classification of the last written type.
///
/// # Examples
///
/// ```
/// # use quick_xml::se::to_writer;
/// # use serde::Serialize;
/// # use pretty_assertions::assert_eq;
/// #[derive(Serialize)]
/// struct Root<'a> {
/// #[serde(rename = "@attribute")]
/// attribute: &'a str,
/// element: &'a str,
/// #[serde(rename = "$text")]
/// text: &'a str,
/// }
///
/// let data = Root {
/// attribute: "attribute content",
/// element: "element content",
/// text: "text content",
/// };
///
/// let mut buffer = String::new();
/// to_writer(&mut buffer, &data).unwrap();
/// assert_eq!(
/// buffer,
/// // The root tag name is automatically deduced from the struct name
/// // This will not work for other types or struct with #[serde(flatten)] fields
/// "<Root attribute=\"attribute content\">\
/// <element>element content</element>\
/// text content\
/// </Root>"
/// );
/// ```
pub fn to_writer<W, T>(mut writer: W, value: &T) -> Result<WriteResult, SeError>
where
W: Write,
T: ?Sized + Serialize,
{
value.serialize(Serializer::new(&mut writer))
}
/// Serialize struct into a `String`.
///
/// # Examples
///
/// ```
/// # use quick_xml::se::to_string;
/// # use serde::Serialize;
/// # use pretty_assertions::assert_eq;
/// #[derive(Serialize)]
/// struct Root<'a> {
/// #[serde(rename = "@attribute")]
/// attribute: &'a str,
/// element: &'a str,
/// #[serde(rename = "$text")]
/// text: &'a str,
/// }
///
/// let data = Root {
/// attribute: "attribute content",
/// element: "element content",
/// text: "text content",
/// };
///
/// assert_eq!(
/// to_string(&data).unwrap(),
/// // The root tag name is automatically deduced from the struct name
/// // This will not work for other types or struct with #[serde(flatten)] fields
/// "<Root attribute=\"attribute content\">\
/// <element>element content</element>\
/// text content\
/// </Root>"
/// );
/// ```
pub fn to_string<T>(value: &T) -> Result<String, SeError>
where
T: ?Sized + Serialize,
{
let mut buffer = String::new();
to_writer(&mut buffer, value)?;
Ok(buffer)
}
/// Serialize struct into a `Write`r using specified root tag name.
/// `root_tag` should be valid [XML name], otherwise error is returned.
///
/// Returns the classification of the last written type.
///
/// # Examples
///
/// ```
/// # use quick_xml::se::to_writer_with_root;
/// # use serde::Serialize;
/// # use pretty_assertions::assert_eq;
/// #[derive(Serialize)]
/// struct Root<'a> {
/// #[serde(rename = "@attribute")]
/// attribute: &'a str,
/// element: &'a str,
/// #[serde(rename = "$text")]
/// text: &'a str,
/// }
///
/// let data = Root {
/// attribute: "attribute content",
/// element: "element content",
/// text: "text content",
/// };
///
/// let mut buffer = String::new();
/// to_writer_with_root(&mut buffer, "top-level", &data).unwrap();
/// assert_eq!(
/// buffer,
/// "<top-level attribute=\"attribute content\">\
/// <element>element content</element>\
/// text content\
/// </top-level>"
/// );
/// ```
///
/// [XML name]: https://www.w3.org/TR/xml11/#NT-Name
pub fn to_writer_with_root<W, T>(
mut writer: W,
root_tag: &str,
value: &T,
) -> Result<WriteResult, SeError>
where
W: Write,
T: ?Sized + Serialize,
{
value.serialize(Serializer::with_root(&mut writer, Some(root_tag))?)
}
/// Serialize struct into a `String` using specified root tag name.
/// `root_tag` should be valid [XML name], otherwise error is returned.
///
/// # Examples
///
/// ```
/// # use quick_xml::se::to_string_with_root;
/// # use serde::Serialize;
/// # use pretty_assertions::assert_eq;
/// #[derive(Serialize)]
/// struct Root<'a> {
/// #[serde(rename = "@attribute")]
/// attribute: &'a str,
/// element: &'a str,
/// #[serde(rename = "$text")]
/// text: &'a str,
/// }
///
/// let data = Root {
/// attribute: "attribute content",
/// element: "element content",
/// text: "text content",
/// };
///
/// assert_eq!(
/// to_string_with_root("top-level", &data).unwrap(),
/// "<top-level attribute=\"attribute content\">\
/// <element>element content</element>\
/// text content\
/// </top-level>"
/// );
/// ```
///
/// [XML name]: https://www.w3.org/TR/xml11/#NT-Name
pub fn to_string_with_root<T>(root_tag: &str, value: &T) -> Result<String, SeError>
where
T: ?Sized + Serialize,
{
let mut buffer = String::new();
to_writer_with_root(&mut buffer, root_tag, value)?;
Ok(buffer)
}
////////////////////////////////////////////////////////////////////////////////////////////////////
/// Defines which characters would be escaped in [`Text`] events and attribute
/// values.
///
/// [`Text`]: crate::events::Event::Text
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum QuoteLevel {
/// Performs escaping, escape all characters that could have special meaning
/// in the XML. This mode is compatible with SGML specification.
///
/// Characters that will be replaced:
///
/// Original | Replacement
/// ---------|------------
/// `<` | `<`
/// `>` | `>`
/// `&` | `&`
/// `"` | `"`
/// `'` | `'`
Full,
/// Performs escaping that is compatible with SGML specification.
///
/// This level adds escaping of `>` to the `Minimal` level, which is [required]
/// for compatibility with SGML.
///
/// Characters that will be replaced:
///
/// Original | Replacement
/// ---------|------------
/// `<` | `<`
/// `>` | `>`
/// `&` | `&`
///
/// [required]: https://www.w3.org/TR/xml11/#syntax
Partial,
/// Performs the minimal possible escaping, escape only strictly necessary
/// characters.
///
/// Characters that will be replaced:
///
/// Original | Replacement
/// ---------|------------
/// `<` | `<`
/// `&` | `&`
Minimal,
}
/// Classification of the type written by the serializer.
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum WriteResult {
/// Text with insignificant spaces was written, for example a number. Adding indent to the
/// serialized data does not change meaning of the data.
Text,
/// The XML tag was written. Adding indent to the serialized data does not change meaning of the data.
Element,
/// Nothing was written (i. e. serialized type not represented in XML a all). Adding indent to the
/// serialized data does not change meaning of the data. This is returned for units, unit structs
/// and unit variants.
Nothing,
/// Text with significant spaces was written, for example a string. Adding indent to the
/// serialized data may change meaning of the data.
SensitiveText,
/// `None` was serialized and nothing was written. `None` does not represented in XML,
/// but adding indent after it may change meaning of the data.
SensitiveNothing,
}
impl WriteResult {
/// Returns `true` if indent should be written after the object (if configured) and `false` otherwise.
#[inline]
pub fn allow_indent(&self) -> bool {
matches!(self, Self::Element | Self::Nothing)
}
/// Returns `true` if self is `Text` or `SensitiveText`.
#[inline]
pub fn is_text(&self) -> bool {
matches!(self, Self::Text | Self::SensitiveText)
}
}
////////////////////////////////////////////////////////////////////////////////////////////////////
/// Implements serialization method by forwarding it to the serializer created by
/// the helper method [`Serializer::ser`].
macro_rules! forward {
($name:ident($ty:ty)) => {
fn $name(self, value: $ty) -> Result<Self::Ok, Self::Error> {
self.ser(&concat!("`", stringify!($ty), "`"))?.$name(value)
}
};
}
////////////////////////////////////////////////////////////////////////////////////////////////////
/// Almost all characters can form a name. Citation from <https://www.w3.org/TR/xml11/#sec-xml11>:
///
/// > The overall philosophy of names has changed since XML 1.0. Whereas XML 1.0
/// > provided a rigid definition of names, wherein everything that was not permitted
/// > was forbidden, XML 1.1 names are designed so that everything that is not
/// > forbidden (for a specific reason) is permitted. Since Unicode will continue
/// > to grow past version 4.0, further changes to XML can be avoided by allowing
/// > almost any character, including those not yet assigned, in names.
///
/// <https://www.w3.org/TR/xml11/#NT-NameStartChar>
const fn is_xml11_name_start_char(ch: char) -> bool {
match ch {
':'
| 'A'..='Z'
| '_'
| 'a'..='z'
| '\u{00C0}'..='\u{00D6}'
| '\u{00D8}'..='\u{00F6}'
| '\u{00F8}'..='\u{02FF}'
| '\u{0370}'..='\u{037D}'
| '\u{037F}'..='\u{1FFF}'
| '\u{200C}'..='\u{200D}'
| '\u{2070}'..='\u{218F}'
| '\u{2C00}'..='\u{2FEF}'
| '\u{3001}'..='\u{D7FF}'
| '\u{F900}'..='\u{FDCF}'
| '\u{FDF0}'..='\u{FFFD}'
| '\u{10000}'..='\u{EFFFF}' => true,
_ => false,
}
}
/// <https://www.w3.org/TR/xml11/#NT-NameChar>
const fn is_xml11_name_char(ch: char) -> bool {
match ch {
'-' | '.' | '0'..='9' | '\u{00B7}' | '\u{0300}'..='\u{036F}' | '\u{203F}'..='\u{2040}' => {
true
}
_ => is_xml11_name_start_char(ch),
}
}
/// Helper struct to self-defense from errors
#[derive(Clone, Copy, Debug, PartialEq)]
pub(self) struct XmlName<'n>(&'n str);
impl<'n> XmlName<'n> {
/// Checks correctness of the XML name according to [XML 1.1 specification]
///
/// [XML 1.1 specification]: https://www.w3.org/TR/xml11/#NT-Name
pub fn try_from(name: &'n str) -> Result<XmlName<'n>, SeError> {
//TODO: Customization point: allow user to decide if he want to reject or encode the name
match name.chars().next() {
Some(ch) if !is_xml11_name_start_char(ch) => Err(SeError::Unsupported(
format!("character `{ch}` is not allowed at the start of an XML name `{name}`")
.into(),
)),
_ => match name.matches(|ch| !is_xml11_name_char(ch)).next() {
Some(s) => Err(SeError::Unsupported(
format!("character `{s}` is not allowed in an XML name `{name}`").into(),
)),
None => Ok(XmlName(name)),
},
}
}
}
////////////////////////////////////////////////////////////////////////////////////////////////////
pub(crate) enum Indent<'i> {
/// No indent should be written before the element
None,
/// The specified indent should be written. The type owns the buffer with indent
Owned(Indentation),
/// The specified indent should be written. The type borrows buffer with indent
/// from its owner
Borrow(&'i mut Indentation),
}
impl<'i> Indent<'i> {
pub fn borrow(&mut self) -> Indent {
match self {
Self::None => Indent::None,
Self::Owned(ref mut i) => Indent::Borrow(i),
Self::Borrow(i) => Indent::Borrow(i),
}
}
pub fn increase(&mut self) {
match self {
Self::None => {}
Self::Owned(i) => i.grow(),
Self::Borrow(i) => i.grow(),
}
}
pub fn decrease(&mut self) {
match self {
Self::None => {}
Self::Owned(i) => i.shrink(),
Self::Borrow(i) => i.shrink(),
}
}
pub fn write_indent<W: std::fmt::Write>(&mut self, mut writer: W) -> Result<(), SeError> {
match self {
Self::None => {}
Self::Owned(i) => {
writer.write_char('\n')?;
writer.write_str(from_utf8(i.current())?)?;
}
Self::Borrow(i) => {
writer.write_char('\n')?;
writer.write_str(from_utf8(i.current())?)?;
}
}
Ok(())
}
}
////////////////////////////////////////////////////////////////////////////////////////////////////
/// A Serializer.
///
/// Returns the classification of the last written type.
pub struct Serializer<'w, 'r, W: Write> {
ser: ContentSerializer<'w, 'r, W>,
/// Name of the root tag. If not specified, deduced from the structure name
root_tag: Option<XmlName<'r>>,
}
impl<'w, 'r, W: Write> Serializer<'w, 'r, W> {
/// Creates a new `Serializer` that uses struct name as a root tag name.
///
/// Note, that attempt to serialize a non-struct (including unit structs
/// and newtype structs) will end up to an error. Use `with_root` to create
/// serializer with explicitly defined root element name
pub fn new(writer: &'w mut W) -> Self {
Self {
ser: ContentSerializer {
writer,
level: QuoteLevel::Partial,
indent: Indent::None,
write_indent: false,
allow_primitive: true,
expand_empty_elements: false,
},
root_tag: None,
}
}
/// Creates a new `Serializer` that uses specified root tag name. `name` should
/// be valid [XML name], otherwise error is returned.
///
/// # Examples
///
/// When serializing a primitive type, only its representation will be written:
///
/// ```
/// # use pretty_assertions::assert_eq;
/// # use serde::Serialize;
/// # use quick_xml::se::Serializer;
///
/// let mut buffer = String::new();
/// let ser = Serializer::with_root(&mut buffer, Some("root")).unwrap();
///
/// "node".serialize(ser).unwrap();
/// assert_eq!(buffer, "<root>node</root>");
/// ```
///
/// When serializing a struct, newtype struct, unit struct or tuple `root_tag`
/// is used as tag name of root(s) element(s):
///
/// ```
/// # use pretty_assertions::assert_eq;
/// # use serde::Serialize;
/// # use quick_xml::se::Serializer;
///
/// #[derive(Debug, PartialEq, Serialize)]
/// struct Struct {
/// question: String,
/// answer: u32,
/// }
///
/// let mut buffer = String::new();
/// let ser = Serializer::with_root(&mut buffer, Some("root")).unwrap();
///
/// let data = Struct {
/// question: "The Ultimate Question of Life, the Universe, and Everything".into(),
/// answer: 42,
/// };
///
/// data.serialize(ser).unwrap();
/// assert_eq!(
/// buffer,
/// "<root>\
/// <question>The Ultimate Question of Life, the Universe, and Everything</question>\
/// <answer>42</answer>\
/// </root>"
/// );
/// ```
///
/// [XML name]: https://www.w3.org/TR/xml11/#NT-Name
pub fn with_root(writer: &'w mut W, root_tag: Option<&'r str>) -> Result<Self, SeError> {
Ok(Self {
ser: ContentSerializer {
writer,
level: QuoteLevel::Partial,
indent: Indent::None,
write_indent: false,
allow_primitive: true,
expand_empty_elements: false,
},
root_tag: root_tag.map(|tag| XmlName::try_from(tag)).transpose()?,
})
}
/// Enable or disable expansion of empty elements. Defaults to `false`.
///
/// # Examples
///
/// ```
/// # use pretty_assertions::assert_eq;
/// # use serde::Serialize;
/// # use quick_xml::se::Serializer;
///
/// #[derive(Debug, PartialEq, Serialize)]
/// struct Struct {
/// question: Option<String>,
/// }
///
/// let mut buffer = String::new();
/// let mut ser = Serializer::new(&mut buffer);
/// ser.expand_empty_elements(true);
///
/// let data = Struct {
/// question: None,
/// };
///
/// data.serialize(ser).unwrap();
/// assert_eq!(
/// buffer,
/// "<Struct><question></question></Struct>"
/// );
/// ```
pub fn expand_empty_elements(&mut self, expand: bool) -> &mut Self {
self.ser.expand_empty_elements = expand;
self
}
/// Configure indent for a serializer
pub fn indent(&mut self, indent_char: char, indent_size: usize) -> &mut Self {
self.ser.indent = Indent::Owned(Indentation::new(indent_char as u8, indent_size));
self
}
/// Set the level of quoting used when writing texts
///
/// Default: [`QuoteLevel::Minimal`]
pub fn set_quote_level(&mut self, level: QuoteLevel) -> &mut Self {
self.ser.level = level;
self
}
/// Set the indent object for a serializer
pub(crate) fn set_indent(&mut self, indent: Indent<'r>) -> &mut Self {
self.ser.indent = indent;
self
}
/// Creates actual serializer or returns an error if root tag is not defined.
/// In that case `err` contains the name of type that cannot be serialized.
fn ser(self, err: &str) -> Result<ElementSerializer<'w, 'r, W>, SeError> {
if let Some(key) = self.root_tag {
Ok(ElementSerializer { ser: self.ser, key })
} else {
Err(SeError::Unsupported(
format!("cannot serialize {} without defined root tag", err).into(),
))
}
}
/// Creates actual serializer using root tag or a specified `key` if root tag
/// is not defined. Returns an error if root tag is not defined and a `key`
/// does not conform [XML rules](XmlName::try_from) for names.
fn ser_name(self, key: &'static str) -> Result<ElementSerializer<'w, 'r, W>, SeError> {
Ok(ElementSerializer {
ser: self.ser,
key: match self.root_tag {
Some(key) => key,
None => XmlName::try_from(key)?,
},
})
}
}
impl<'w, 'r, W: Write> ser::Serializer for Serializer<'w, 'r, W> {
type Ok = WriteResult;
type Error = SeError;
type SerializeSeq = ElementSerializer<'w, 'r, W>;
type SerializeTuple = ElementSerializer<'w, 'r, W>;
type SerializeTupleStruct = ElementSerializer<'w, 'r, W>;
type SerializeTupleVariant = Tuple<'w, 'r, W>;
type SerializeMap = Map<'w, 'r, W>;
type SerializeStruct = Struct<'w, 'r, W>;
type SerializeStructVariant = Struct<'w, 'r, W>;
forward!(serialize_bool(bool));
forward!(serialize_i8(i8));
forward!(serialize_i16(i16));
forward!(serialize_i32(i32));
forward!(serialize_i64(i64));
forward!(serialize_u8(u8));
forward!(serialize_u16(u16));
forward!(serialize_u32(u32));
forward!(serialize_u64(u64));
serde_if_integer128! {
forward!(serialize_i128(i128));
forward!(serialize_u128(u128));
}
forward!(serialize_f32(f32));
forward!(serialize_f64(f64));
forward!(serialize_char(char));
forward!(serialize_str(&str));
forward!(serialize_bytes(&[u8]));
fn serialize_none(self) -> Result<Self::Ok, Self::Error> {
// Do not write indent after `Option` field with `None` value, because
// this can be `Option<String>`. Unfortunately, we do not known what the
// type the option contains, so have no chance to adapt our behavior to it.
// The safe variant is not to write indent
Ok(WriteResult::SensitiveNothing)
}
fn serialize_some<T: ?Sized + Serialize>(self, value: &T) -> Result<Self::Ok, Self::Error> {
value.serialize(self)
}
fn serialize_unit(self) -> Result<Self::Ok, Self::Error> {
self.ser("`()`")?.serialize_unit()
}
fn serialize_unit_struct(self, name: &'static str) -> Result<Self::Ok, Self::Error> {
self.ser_name(name)?.serialize_unit_struct(name)
}
fn serialize_unit_variant(
self,
name: &'static str,
_variant_index: u32,
variant: &'static str,
) -> Result<Self::Ok, Self::Error> {
if variant == TEXT_KEY {
// We should write some text but we don't known what text to write
Err(SeError::Unsupported(
format!(
"cannot serialize enum unit variant `{}::$text` as text content value",
name
)
.into(),
))
} else {
let name = XmlName::try_from(variant)?;
self.ser.write_empty(name)
}
}
fn serialize_newtype_struct<T: ?Sized + Serialize>(
self,
name: &'static str,
value: &T,
) -> Result<Self::Ok, Self::Error> {
self.ser_name(name)?.serialize_newtype_struct(name, value)
}
fn serialize_newtype_variant<T: ?Sized + Serialize>(
self,
_name: &'static str,
_variant_index: u32,
variant: &'static str,
value: &T,
) -> Result<Self::Ok, Self::Error> {
if variant == TEXT_KEY {
value.serialize(self.ser.into_simple_type_serializer()?)?;
// Do not write indent after `$text` variant because it may be interpreted as
// part of content when deserialize
Ok(WriteResult::SensitiveText)
} else {
let ser = ElementSerializer {
ser: self.ser,
key: XmlName::try_from(variant)?,
};
value.serialize(ser)
}
}
fn serialize_seq(self, len: Option<usize>) -> Result<Self::SerializeSeq, Self::Error> {
self.ser("sequence")?.serialize_seq(len)
}
fn serialize_tuple(self, len: usize) -> Result<Self::SerializeTuple, Self::Error> {
self.ser("unnamed tuple")?.serialize_tuple(len)
}
fn serialize_tuple_struct(
self,
name: &'static str,
len: usize,
) -> Result<Self::SerializeTupleStruct, Self::Error> {
self.ser_name(name)?.serialize_tuple_struct(name, len)
}
fn serialize_tuple_variant(
self,
name: &'static str,
_variant_index: u32,
variant: &'static str,
len: usize,
) -> Result<Self::SerializeTupleVariant, Self::Error> {
if variant == TEXT_KEY {
self.ser
.into_simple_type_serializer()?
.serialize_tuple_struct(name, len)
.map(Tuple::Text)
} else {
let ser = ElementSerializer {
ser: self.ser,
key: XmlName::try_from(variant)?,
};
ser.serialize_tuple_struct(name, len).map(Tuple::Element)
}
}
fn serialize_map(self, len: Option<usize>) -> Result<Self::SerializeMap, Self::Error> {
self.ser("map")?.serialize_map(len)
}
fn serialize_struct(
self,
name: &'static str,
len: usize,
) -> Result<Self::SerializeStruct, Self::Error> {
self.ser_name(name)?.serialize_struct(name, len)
}
fn serialize_struct_variant(
self,
name: &'static str,
_variant_index: u32,
variant: &'static str,
len: usize,
) -> Result<Self::SerializeStructVariant, Self::Error> {
if variant == TEXT_KEY {
Err(SeError::Unsupported(
format!(
"cannot serialize enum struct variant `{}::$text` as text content value",
name
)
.into(),
))
} else {
let ser = ElementSerializer {
ser: self.ser,
key: XmlName::try_from(variant)?,
};
ser.serialize_struct(name, len)
}
}
}
#[cfg(test)]
mod quote_level {
use super::*;
use pretty_assertions::assert_eq;
use serde::Serialize;
#[derive(Debug, PartialEq, Serialize)]
struct Element(&'static str);
#[derive(Debug, PartialEq, Serialize)]
struct Example {
#[serde(rename = "@attribute")]
attribute: &'static str,
element: Element,
}
#[test]
fn default_() {
let example = Example {
attribute: "special chars: &, <, >, \", '",
element: Element("special chars: &, <, >, \", '"),
};
let mut buffer = String::new();
let ser = Serializer::new(&mut buffer);
example.serialize(ser).unwrap();
assert_eq!(
buffer,
"<Example attribute=\"special chars: &, <, >, ", '\">\
<element>special chars: &, <, >, \", '</element>\
</Example>"
);
}
#[test]
fn minimal() {
let example = Example {
attribute: "special chars: &, <, >, \", '",
element: Element("special chars: &, <, >, \", '"),
};
let mut buffer = String::new();
let mut ser = Serializer::new(&mut buffer);
ser.set_quote_level(QuoteLevel::Minimal);
example.serialize(ser).unwrap();
assert_eq!(
buffer,
"<Example attribute=\"special chars: &, <, >, ", '\">\
<element>special chars: &, <, >, \", '</element>\
</Example>"
);
}
#[test]
fn partial() {
let example = Example {
attribute: "special chars: &, <, >, \", '",
element: Element("special chars: &, <, >, \", '"),
};
let mut buffer = String::new();
let mut ser = Serializer::new(&mut buffer);
ser.set_quote_level(QuoteLevel::Partial);
example.serialize(ser).unwrap();
assert_eq!(
buffer,
"<Example attribute=\"special chars: &, <, >, ", '\">\
<element>special chars: &, <, >, \", '</element>\
</Example>"
);
}
#[test]
fn full() {
let example = Example {
attribute: "special chars: &, <, >, \", '",
element: Element("special chars: &, <, >, \", '"),
};
let mut buffer = String::new();
let mut ser = Serializer::new(&mut buffer);
ser.set_quote_level(QuoteLevel::Full);
example.serialize(ser).unwrap();
assert_eq!(
buffer,
"<Example attribute=\"special chars: &, <, >, ", '\">\
<element>special chars: &, <, >, ", '</element>\
</Example>"
);
}
}