]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_lexer/src/unescape.rs
revert change to test source
[rust.git] / compiler / rustc_lexer / src / unescape.rs
1 //! Utilities for validating string and char literals and turning them into
2 //! values they represent.
3
4 use std::ops::Range;
5 use std::str::Chars;
6
7 #[cfg(test)]
8 mod tests;
9
10 /// Errors and warnings that can occur during string unescaping.
11 #[derive(Debug, PartialEq, Eq)]
12 pub enum EscapeError {
13     /// Expected 1 char, but 0 were found.
14     ZeroChars,
15     /// Expected 1 char, but more than 1 were found.
16     MoreThanOneChar,
17
18     /// Escaped '\' character without continuation.
19     LoneSlash,
20     /// Invalid escape character (e.g. '\z').
21     InvalidEscape,
22     /// Raw '\r' encountered.
23     BareCarriageReturn,
24     /// Raw '\r' encountered in raw string.
25     BareCarriageReturnInRawString,
26     /// Unescaped character that was expected to be escaped (e.g. raw '\t').
27     EscapeOnlyChar,
28
29     /// Numeric character escape is too short (e.g. '\x1').
30     TooShortHexEscape,
31     /// Invalid character in numeric escape (e.g. '\xz')
32     InvalidCharInHexEscape,
33     /// Character code in numeric escape is non-ascii (e.g. '\xFF').
34     OutOfRangeHexEscape,
35
36     /// '\u' not followed by '{'.
37     NoBraceInUnicodeEscape,
38     /// Non-hexadecimal value in '\u{..}'.
39     InvalidCharInUnicodeEscape,
40     /// '\u{}'
41     EmptyUnicodeEscape,
42     /// No closing brace in '\u{..}', e.g. '\u{12'.
43     UnclosedUnicodeEscape,
44     /// '\u{_12}'
45     LeadingUnderscoreUnicodeEscape,
46     /// More than 6 characters in '\u{..}', e.g. '\u{10FFFF_FF}'
47     OverlongUnicodeEscape,
48     /// Invalid in-bound unicode character code, e.g. '\u{DFFF}'.
49     LoneSurrogateUnicodeEscape,
50     /// Out of bounds unicode character code, e.g. '\u{FFFFFF}'.
51     OutOfRangeUnicodeEscape,
52
53     /// Unicode escape code in byte literal.
54     UnicodeEscapeInByte,
55     /// Non-ascii character in byte literal, byte string literal, or raw byte string literal.
56     NonAsciiCharInByte,
57
58     /// After a line ending with '\', the next line contains whitespace
59     /// characters that are not skipped.
60     UnskippedWhitespaceWarning,
61
62     /// After a line ending with '\', multiple lines are skipped.
63     MultipleSkippedLinesWarning,
64 }
65
66 impl EscapeError {
67     /// Returns true for actual errors, as opposed to warnings.
68     pub fn is_fatal(&self) -> bool {
69         !matches!(
70             self,
71             EscapeError::UnskippedWhitespaceWarning | EscapeError::MultipleSkippedLinesWarning
72         )
73     }
74 }
75
76 /// Takes a contents of a literal (without quotes) and produces a
77 /// sequence of escaped characters or errors.
78 /// Values are returned through invoking of the provided callback.
79 pub fn unescape_literal<F>(src: &str, mode: Mode, callback: &mut F)
80 where
81     F: FnMut(Range<usize>, Result<char, EscapeError>),
82 {
83     match mode {
84         Mode::Char | Mode::Byte => {
85             let mut chars = src.chars();
86             let res = unescape_char_or_byte(&mut chars, mode == Mode::Byte);
87             callback(0..(src.len() - chars.as_str().len()), res);
88         }
89         Mode::Str | Mode::ByteStr => unescape_str_or_byte_str(src, mode == Mode::ByteStr, callback),
90         Mode::RawStr | Mode::RawByteStr => {
91             unescape_raw_str_or_raw_byte_str(src, mode == Mode::RawByteStr, callback)
92         }
93     }
94 }
95
96 /// Takes a contents of a char literal (without quotes), and returns an
97 /// unescaped char or an error.
98 pub fn unescape_char(src: &str) -> Result<char, EscapeError> {
99     unescape_char_or_byte(&mut src.chars(), false)
100 }
101
102 /// Takes a contents of a byte literal (without quotes), and returns an
103 /// unescaped byte or an error.
104 pub fn unescape_byte(src: &str) -> Result<u8, EscapeError> {
105     unescape_char_or_byte(&mut src.chars(), true).map(byte_from_char)
106 }
107
108 /// What kind of literal do we parse.
109 #[derive(Debug, Clone, Copy, PartialEq)]
110 pub enum Mode {
111     Char,
112     Str,
113     Byte,
114     ByteStr,
115     RawStr,
116     RawByteStr,
117 }
118
119 impl Mode {
120     pub fn in_double_quotes(self) -> bool {
121         match self {
122             Mode::Str | Mode::ByteStr | Mode::RawStr | Mode::RawByteStr => true,
123             Mode::Char | Mode::Byte => false,
124         }
125     }
126
127     pub fn is_byte(self) -> bool {
128         match self {
129             Mode::Byte | Mode::ByteStr | Mode::RawByteStr => true,
130             Mode::Char | Mode::Str | Mode::RawStr => false,
131         }
132     }
133 }
134
135 fn scan_escape(chars: &mut Chars<'_>, is_byte: bool) -> Result<char, EscapeError> {
136     // Previous character was '\\', unescape what follows.
137     let res = match chars.next().ok_or(EscapeError::LoneSlash)? {
138         '"' => '"',
139         'n' => '\n',
140         'r' => '\r',
141         't' => '\t',
142         '\\' => '\\',
143         '\'' => '\'',
144         '0' => '\0',
145
146         'x' => {
147             // Parse hexadecimal character code.
148
149             let hi = chars.next().ok_or(EscapeError::TooShortHexEscape)?;
150             let hi = hi.to_digit(16).ok_or(EscapeError::InvalidCharInHexEscape)?;
151
152             let lo = chars.next().ok_or(EscapeError::TooShortHexEscape)?;
153             let lo = lo.to_digit(16).ok_or(EscapeError::InvalidCharInHexEscape)?;
154
155             let value = hi * 16 + lo;
156
157             // For a non-byte literal verify that it is within ASCII range.
158             if !is_byte && !is_ascii(value) {
159                 return Err(EscapeError::OutOfRangeHexEscape);
160             }
161             let value = value as u8;
162
163             value as char
164         }
165
166         'u' => {
167             // We've parsed '\u', now we have to parse '{..}'.
168
169             if chars.next() != Some('{') {
170                 return Err(EscapeError::NoBraceInUnicodeEscape);
171             }
172
173             // First character must be a hexadecimal digit.
174             let mut n_digits = 1;
175             let mut value: u32 = match chars.next().ok_or(EscapeError::UnclosedUnicodeEscape)? {
176                 '_' => return Err(EscapeError::LeadingUnderscoreUnicodeEscape),
177                 '}' => return Err(EscapeError::EmptyUnicodeEscape),
178                 c => c.to_digit(16).ok_or(EscapeError::InvalidCharInUnicodeEscape)?,
179             };
180
181             // First character is valid, now parse the rest of the number
182             // and closing brace.
183             loop {
184                 match chars.next() {
185                     None => return Err(EscapeError::UnclosedUnicodeEscape),
186                     Some('_') => continue,
187                     Some('}') => {
188                         if n_digits > 6 {
189                             return Err(EscapeError::OverlongUnicodeEscape);
190                         }
191
192                         // Incorrect syntax has higher priority for error reporting
193                         // than unallowed value for a literal.
194                         if is_byte {
195                             return Err(EscapeError::UnicodeEscapeInByte);
196                         }
197
198                         break std::char::from_u32(value).ok_or_else(|| {
199                             if value > 0x10FFFF {
200                                 EscapeError::OutOfRangeUnicodeEscape
201                             } else {
202                                 EscapeError::LoneSurrogateUnicodeEscape
203                             }
204                         })?;
205                     }
206                     Some(c) => {
207                         let digit: u32 =
208                             c.to_digit(16).ok_or(EscapeError::InvalidCharInUnicodeEscape)?;
209                         n_digits += 1;
210                         if n_digits > 6 {
211                             // Stop updating value since we're sure that it's incorrect already.
212                             continue;
213                         }
214                         value = value * 16 + digit;
215                     }
216                 };
217             }
218         }
219         _ => return Err(EscapeError::InvalidEscape),
220     };
221     Ok(res)
222 }
223
224 #[inline]
225 fn ascii_check(c: char, is_byte: bool) -> Result<char, EscapeError> {
226     if is_byte && !c.is_ascii() {
227         // Byte literal can't be a non-ascii character.
228         Err(EscapeError::NonAsciiCharInByte)
229     } else {
230         Ok(c)
231     }
232 }
233
234 fn unescape_char_or_byte(chars: &mut Chars<'_>, is_byte: bool) -> Result<char, EscapeError> {
235     let c = chars.next().ok_or(EscapeError::ZeroChars)?;
236     let res = match c {
237         '\\' => scan_escape(chars, is_byte),
238         '\n' | '\t' | '\'' => Err(EscapeError::EscapeOnlyChar),
239         '\r' => Err(EscapeError::BareCarriageReturn),
240         _ => ascii_check(c, is_byte),
241     }?;
242     if chars.next().is_some() {
243         return Err(EscapeError::MoreThanOneChar);
244     }
245     Ok(res)
246 }
247
248 /// Takes a contents of a string literal (without quotes) and produces a
249 /// sequence of escaped characters or errors.
250 fn unescape_str_or_byte_str<F>(src: &str, is_byte: bool, callback: &mut F)
251 where
252     F: FnMut(Range<usize>, Result<char, EscapeError>),
253 {
254     let mut chars = src.chars();
255
256     // The `start` and `end` computation here is complicated because
257     // `skip_ascii_whitespace` makes us to skip over chars without counting
258     // them in the range computation.
259     while let Some(c) = chars.next() {
260         let start = src.len() - chars.as_str().len() - c.len_utf8();
261         let res = match c {
262             '\\' => {
263                 match chars.clone().next() {
264                     Some('\n') => {
265                         // Rust language specification requires us to skip whitespaces
266                         // if unescaped '\' character is followed by '\n'.
267                         // For details see [Rust language reference]
268                         // (https://doc.rust-lang.org/reference/tokens.html#string-literals).
269                         skip_ascii_whitespace(&mut chars, start, callback);
270                         continue;
271                     }
272                     _ => scan_escape(&mut chars, is_byte),
273                 }
274             }
275             '\n' => Ok('\n'),
276             '\t' => Ok('\t'),
277             '"' => Err(EscapeError::EscapeOnlyChar),
278             '\r' => Err(EscapeError::BareCarriageReturn),
279             _ => ascii_check(c, is_byte),
280         };
281         let end = src.len() - chars.as_str().len();
282         callback(start..end, res);
283     }
284
285     fn skip_ascii_whitespace<F>(chars: &mut Chars<'_>, start: usize, callback: &mut F)
286     where
287         F: FnMut(Range<usize>, Result<char, EscapeError>),
288     {
289         let tail = chars.as_str();
290         let first_non_space = tail
291             .bytes()
292             .position(|b| b != b' ' && b != b'\t' && b != b'\n' && b != b'\r')
293             .unwrap_or(tail.len());
294         if tail[1..first_non_space].contains('\n') {
295             // The +1 accounts for the escaping slash.
296             let end = start + first_non_space + 1;
297             callback(start..end, Err(EscapeError::MultipleSkippedLinesWarning));
298         }
299         let tail = &tail[first_non_space..];
300         if let Some(c) = tail.chars().nth(0) {
301             // For error reporting, we would like the span to contain the character that was not
302             // skipped. The +1 is necessary to account for the leading \ that started the escape.
303             let end = start + first_non_space + c.len_utf8() + 1;
304             if c.is_whitespace() {
305                 callback(start..end, Err(EscapeError::UnskippedWhitespaceWarning));
306             }
307         }
308         *chars = tail.chars();
309     }
310 }
311
312 /// Takes a contents of a string literal (without quotes) and produces a
313 /// sequence of characters or errors.
314 /// NOTE: Raw strings do not perform any explicit character escaping, here we
315 /// only produce errors on bare CR.
316 fn unescape_raw_str_or_raw_byte_str<F>(src: &str, is_byte: bool, callback: &mut F)
317 where
318     F: FnMut(Range<usize>, Result<char, EscapeError>),
319 {
320     let mut chars = src.chars();
321
322     // The `start` and `end` computation here matches the one in
323     // `unescape_str_or_byte_str` for consistency, even though this function
324     // doesn't have to worry about skipping any chars.
325     while let Some(c) = chars.next() {
326         let start = src.len() - chars.as_str().len() - c.len_utf8();
327         let res = match c {
328             '\r' => Err(EscapeError::BareCarriageReturnInRawString),
329             _ => ascii_check(c, is_byte),
330         };
331         let end = src.len() - chars.as_str().len();
332         callback(start..end, res);
333     }
334 }
335
336 #[inline]
337 pub fn byte_from_char(c: char) -> u8 {
338     let res = c as u32;
339     debug_assert!(res <= u8::MAX as u32, "guaranteed because of Mode::ByteStr");
340     res as u8
341 }
342
343 fn is_ascii(x: u32) -> bool {
344     x <= 0x7F
345 }