1//! A module for wrappers that encode / decode data.
2
3use std::borrow::Cow;
4
5#[cfg(feature = "encoding")]
6use encoding_rs::{Encoding, UTF_16BE, UTF_16LE, UTF_8};
7
8#[cfg(feature = "encoding")]
9use crate::Error;
10use crate::Result;
11
12/// Unicode "byte order mark" (\u{FEFF}) encoded as UTF-8.
13/// See <https://unicode.org/faq/utf_bom.html#bom1>
14pub(crate) const UTF8_BOM: &[u8] = &[0xEF, 0xBB, 0xBF];
15/// Unicode "byte order mark" (\u{FEFF}) encoded as UTF-16 with little-endian byte order.
16/// See <https://unicode.org/faq/utf_bom.html#bom1>
17#[cfg(feature = "encoding")]
18pub(crate) const UTF16_LE_BOM: &[u8] = &[0xFF, 0xFE];
19/// Unicode "byte order mark" (\u{FEFF}) encoded as UTF-16 with big-endian byte order.
20/// See <https://unicode.org/faq/utf_bom.html#bom1>
21#[cfg(feature = "encoding")]
22pub(crate) const UTF16_BE_BOM: &[u8] = &[0xFE, 0xFF];
23
24/// Decoder of byte slices into strings.
25///
26/// If feature [`encoding`] is enabled, this encoding taken from the `"encoding"`
27/// XML declaration or assumes UTF-8, if XML has no <?xml ?> declaration, encoding
28/// key is not defined or contains unknown encoding.
29///
30/// The library supports any UTF-8 compatible encodings that crate `encoding_rs`
31/// is supported. [*UTF-16 and ISO-2022-JP are not supported at the present*][utf16].
32///
33/// If feature [`encoding`] is disabled, the decoder is always UTF-8 decoder:
34/// any XML declarations are ignored.
35///
36/// [utf16]: https://github.com/tafia/quick-xml/issues/158
37/// [`encoding`]: ../index.html#encoding
38#[derive(Clone, Copy, Debug, Eq, PartialEq)]
39pub struct Decoder {
40 #[cfg(feature = "encoding")]
41 pub(crate) encoding: &'static Encoding,
42}
43
44impl Decoder {
45 pub(crate) fn utf8() -> Self {
46 Decoder {
47 #[cfg(feature = "encoding")]
48 encoding: UTF_8,
49 }
50 }
51
52 #[cfg(all(test, feature = "encoding", feature = "serialize"))]
53 pub(crate) fn utf16() -> Self {
54 Decoder { encoding: UTF_16LE }
55 }
56}
57
58impl Decoder {
59 /// Returns the `Reader`s encoding.
60 ///
61 /// This encoding will be used by [`decode`].
62 ///
63 /// [`decode`]: Self::decode
64 #[cfg(feature = "encoding")]
65 pub fn encoding(&self) -> &'static Encoding {
66 self.encoding
67 }
68
69 /// ## Without `encoding` feature
70 ///
71 /// Decodes an UTF-8 slice regardless of XML declaration and ignoring BOM
72 /// if it is present in the `bytes`.
73 ///
74 /// ## With `encoding` feature
75 ///
76 /// Decodes specified bytes using encoding, declared in the XML, if it was
77 /// declared there, or UTF-8 otherwise, and ignoring BOM if it is present
78 /// in the `bytes`.
79 ///
80 /// ----
81 /// Returns an error in case of malformed sequences in the `bytes`.
82 pub fn decode<'b>(&self, bytes: &'b [u8]) -> Result<Cow<'b, str>> {
83 #[cfg(not(feature = "encoding"))]
84 let decoded = Ok(Cow::Borrowed(std::str::from_utf8(bytes)?));
85
86 #[cfg(feature = "encoding")]
87 let decoded = decode(bytes, self.encoding);
88
89 decoded
90 }
91}
92
93/// Decodes the provided bytes using the specified encoding.
94///
95/// Returns an error in case of malformed or non-representable sequences in the `bytes`.
96#[cfg(feature = "encoding")]
97pub fn decode<'b>(bytes: &'b [u8], encoding: &'static Encoding) -> Result<Cow<'b, str>> {
98 encoding
99 .decode_without_bom_handling_and_without_replacement(bytes)
100 .ok_or(Error::NonDecodable(None))
101}
102
103/// Automatic encoding detection of XML files based using the
104/// [recommended algorithm](https://www.w3.org/TR/xml11/#sec-guessing).
105///
106/// If encoding is detected, `Some` is returned with an encoding and size of BOM
107/// in bytes, if detection was performed using BOM, or zero, if detection was
108/// performed without BOM.
109///
110/// IF encoding was not recognized, `None` is returned.
111///
112/// Because the [`encoding_rs`] crate supports only subset of those encodings, only
113/// the supported subset are detected, which is UTF-8, UTF-16 BE and UTF-16 LE.
114///
115/// The algorithm suggests examine up to the first 4 bytes to determine encoding
116/// according to the following table:
117///
118/// | Bytes |Detected encoding
119/// |-------------|------------------------------------------
120/// | **BOM**
121/// |`FE_FF_##_##`|UTF-16, big-endian
122/// |`FF FE ## ##`|UTF-16, little-endian
123/// |`EF BB BF` |UTF-8
124/// | **No BOM**
125/// |`00 3C 00 3F`|UTF-16 BE or ISO-10646-UCS-2 BE or similar 16-bit BE (use declared encoding to find the exact one)
126/// |`3C 00 3F 00`|UTF-16 LE or ISO-10646-UCS-2 LE or similar 16-bit LE (use declared encoding to find the exact one)
127/// |`3C 3F 78 6D`|UTF-8, ISO 646, ASCII, some part of ISO 8859, Shift-JIS, EUC, or any other 7-bit, 8-bit, or mixed-width encoding which ensures that the characters of ASCII have their normal positions, width, and values; the actual encoding declaration must be read to detect which of these applies, but since all of these encodings use the same bit patterns for the relevant ASCII characters, the encoding declaration itself may be read reliably
128#[cfg(feature = "encoding")]
129pub fn detect_encoding(bytes: &[u8]) -> Option<(&'static Encoding, usize)> {
130 match bytes {
131 // with BOM
132 _ if bytes.starts_with(UTF16_BE_BOM) => Some((UTF_16BE, 2)),
133 _ if bytes.starts_with(UTF16_LE_BOM) => Some((UTF_16LE, 2)),
134 _ if bytes.starts_with(UTF8_BOM) => Some((UTF_8, 3)),
135
136 // without BOM
137 _ if bytes.starts_with(&[0x00, b'<', 0x00, b'?']) => Some((UTF_16BE, 0)), // Some BE encoding, for example, UTF-16 or ISO-10646-UCS-2
138 _ if bytes.starts_with(&[b'<', 0x00, b'?', 0x00]) => Some((UTF_16LE, 0)), // Some LE encoding, for example, UTF-16 or ISO-10646-UCS-2
139 _ if bytes.starts_with(&[b'<', b'?', b'x', b'm']) => Some((UTF_8, 0)), // Some ASCII compatible
140
141 _ => None,
142 }
143}
144