1use std::fmt;
4
5#[derive(Copy, Clone, PartialEq, Eq)]
7pub struct TextPosition {
8 pub row: u64,
10 pub column: u64,
12}
13
14impl TextPosition {
15 #[inline]
17 #[must_use]
18 pub const fn new() -> Self {
19 Self { row: 0, column: 0 }
20 }
21
22 #[inline]
24 pub fn advance(&mut self, count: u8) {
25 self.column += u64::from(count);
26 }
27
28 #[inline]
30 pub fn advance_to_tab(&mut self, width: u8) {
31 let width = u64::from(width);
32 self.column += width - self.column % width;
33 }
34
35 #[inline]
37 pub fn new_line(&mut self) {
38 self.column = 0;
39 self.row += 1;
40 }
41}
42
43impl fmt::Debug for TextPosition {
44 #[cold]
45 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
46 write!(f, "{}:{}", self.row + 1, self.column + 1)
47 }
48}
49
50impl fmt::Display for TextPosition {
51 #[inline]
52 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
53 write!(f, "{}:{}", self.row + 1, self.column + 1)
54 }
55}
56
57pub trait Position {
61 fn position(&self) -> TextPosition;
63}
64
65impl Position for TextPosition {
66 #[inline]
67 fn position(&self) -> TextPosition {
68 *self
69 }
70}
71
72#[derive(Copy, Clone, PartialEq, Eq, PartialOrd, Ord)]
74pub enum XmlVersion {
75 Version10,
77
78 Version11,
80}
81
82impl fmt::Display for XmlVersion {
83 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
84 match *self {
85 Self::Version10 => "1.0",
86 Self::Version11 => "1.1",
87 }.fmt(f)
88 }
89}
90
91impl fmt::Debug for XmlVersion {
92 #[cold]
93 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
94 fmt::Display::fmt(self, f)
95 }
96}
97
98#[must_use]
103#[inline]
104pub const fn is_whitespace_char(c: char) -> bool {
105 matches!(c, '\x20' | '\x0a' | '\x09' | '\x0d')
106}
107
108pub fn is_whitespace_str(s: &str) -> bool {
112 s.chars().all(is_whitespace_char)
113}
114
115#[must_use]
117pub const fn is_xml10_char(c: char) -> bool {
118 matches!(c, '\u{09}' | '\u{0A}' | '\u{0D}' | '\u{20}'..='\u{D7FF}' | '\u{E000}'..='\u{FFFD}' | '\u{10000}'..)
119}
120
121#[must_use]
123pub const fn is_xml11_char(c: char) -> bool {
124 matches!(c, '\u{01}'..='\u{D7FF}' | '\u{E000}'..='\u{FFFD}' | '\u{10000}'..)
125}
126
127#[must_use]
129pub const fn is_xml11_char_not_restricted(c: char) -> bool {
130 is_xml11_char(c) &&
131 !matches!(c, '\u{01}'..='\u{08}' | '\u{0B}'..='\u{0C}' | '\u{0E}'..='\u{1F}' | '\u{7F}'..='\u{84}' | '\u{86}'..='\u{9F}')
132}
133
134#[must_use]
139pub const fn is_name_start_char(c: char) -> bool {
140 matches!(c,
141 ':' | 'A'..='Z' | '_' | 'a'..='z' |
142 '\u{C0}'..='\u{D6}' | '\u{D8}'..='\u{F6}' | '\u{F8}'..='\u{2FF}' |
143 '\u{370}'..='\u{37D}' | '\u{37F}'..='\u{1FFF}' |
144 '\u{200C}'..='\u{200D}' | '\u{2070}'..='\u{218F}' |
145 '\u{2C00}'..='\u{2FEF}' | '\u{3001}'..='\u{D7FF}' |
146 '\u{F900}'..='\u{FDCF}' | '\u{FDF0}'..='\u{FFFD}' |
147 '\u{10000}'..='\u{EFFFF}'
148 )
149}
150
151#[must_use]
156pub const fn is_name_char(c: char) -> bool {
157 if is_name_start_char(c) {
158 return true;
159 }
160 matches!(c,
161 '-' | '.' | '0'..='9' | '\u{B7}' |
162 '\u{300}'..='\u{36F}' | '\u{203F}'..='\u{2040}'
163 )
164}