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
// Trivet
// Copyright (c) 2023 by Stacy Prowell. All rights reserved.
// https://gitlab.com/binary-tools/trivet
//! Parse strings.
//!
//! This supports many different approaches for parsing strings. Choosing a particular
//! mode re-configures the options of the string parser to handle that specific syntax.
#[cfg(not(feature = "no_ucd"))]
use super::ucd::UCD;
use super::C_ESCAPES;
use super::JSON_ESCAPES;
use super::PYTHON_ESCAPES;
use super::RUST_ESCAPES;
use super::TRIVET_ESCAPES;
use crate::decoder::Decode;
use crate::strings::EscapeType;
use crate::strings::IllegalUnicodeProtocol;
use crate::strings::StringStandard;
use crate::strings::UnknownEscapeProtocol;
use crate::{
errors::{syntax_error, unexpected_character_error, ParseResult},
Loc, ParserCore,
};
use std::collections::BTreeMap;
#[cfg(not(feature = "no_ucd"))]
use std::rc::Rc;
/// Construct the UCD and return it. This is a relatively costly operation and you
/// should only do it *once*. Once you have done this you can keep it around and use
/// it to initialize string parsers that handle named Unicode escapes. It is not needed
/// otherwise.
///
/// Why is this boxed? To prevent passing a huge data structure on the stack.
///
/// Why is this reference counted? So a single copy can be used repeatedly.
#[cfg(not(feature = "no_ucd"))]
pub fn get_ucd() -> Box<Rc<BTreeMap<&'static str, char>>> {
// This is where I would use lazy_static, but that would add an external
// dependency. Unfortunately `from` requires that we pass the massive array
// on the stack, so let's not do that.
let mut map = BTreeMap::new();
for (key, value) in UCD {
map.insert(*key, *value);
}
Box::new(Rc::new(map))
}
/// Implement parsing of strings.
///
/// This is intended to be a very flexible parsing system, and implements
/// some common string formats. Specific features can be enable and disabled
/// by setting the flags and providing a map for escape handling rules.
///
/// # Escape Handling
///
/// Specify escape handling rules by creating a `BTreeMap` mapping characters
/// to escape handling rules. The character is the character following the
/// escape character. Escape handling rules are specified by [`EscapeType`].
///
/// **Note**: You cannot have both a `\0` escape and support octal escapes, or
/// octal escapes with a leading zero will not work.
///
/// As an example, here are the escape handling rules for Python.
///
/// ```rust
/// use std::collections::BTreeMap;
/// use trivet::strings::EscapeType;
///
/// let escapes = BTreeMap::from([
/// ('\n', EscapeType::Discard),
/// ('\\', EscapeType::Char('\\')),
/// ('\'', EscapeType::Char('\'')),
/// ('\"', EscapeType::Char('\"')),
/// ('a', EscapeType::Char('\x07')),
/// ('b', EscapeType::Char('\x08')),
/// ('f', EscapeType::Char('\x0c')),
/// ('n', EscapeType::Char('\n')),
/// ('r', EscapeType::Char('\r')),
/// ('t', EscapeType::Char('\t')),
/// ('v', EscapeType::Char('\x0b')),
/// ('x', EscapeType::NakedByte),
/// ('N', EscapeType::BracketUNamed),
/// ('u', EscapeType::NakedU4),
/// ('U', EscapeType::NakedU8),
/// ]);
/// ```
///
/// # Unicode Database
///
/// Note: The feature `no_ucd` will disable use of the Unicode database.
///
/// The parser is capable of looking up Unicode code points by their name
/// or alias. This is provided by a map that encodes the entire space. This
/// map must be provided to every new parser instance.
///
/// Creating a default instance (with [`Self::default`]) does this for you.
/// If you only use this string parser instance from then on, then you do not
/// need to worry about this.
///
/// If you plan to create many string parser instances, then you should instead
/// get the UCD database yourself via [`get_ucd`], which returns a boxed,
/// reference-counted copy.
///
/// # Example
///
/// ```rust
/// use trivet::strings::StringParser;
/// use trivet::parse_from_string;
/// use trivet::Parser;
///
/// // Make a new string parser.
/// let mut strpar = StringParser::new();
///
/// // Make a parser around a string.
/// let mut parser = parse_from_string(r#""This\nis\na\nstring.""#);
/// match parser.parse_string_match_delimiter() {
/// Ok(value) => println!("{}", value),
/// Err(err) => println!("ERROR: {}", err),
/// }
/// ```
pub struct StringParser {
/// If true, parse escape sequences.
pub enable_escapes: bool,
/// Character used to introduce an escape. Usually `\`.
pub escape_char: char,
/// How to handle unrecognized escape sequences.
pub unknown_escape_protocol: UnknownEscapeProtocol,
/// If true, and if the current result looks like a UTF-16 surrogate pair (it is in
/// the range U+D800 up to U+DBFF) then try to find and parse a second surrogate and
/// generate the corresponding character.
///
/// If false, treat this as an invalid escape. For instance, Rust does not permit
/// surrogate pairs in this way.
pub allow_surrogate_pairs: bool,
/// How to handle invalid Unicode values that arise from parsing hexadecimal escapes.
/// This includes surrogate pairs when those are not allowed.
pub illegal_unicode_protocol: IllegalUnicodeProtocol,
/// Permit octal escapes. These have the form `[escape]` followed by (usually) one to
/// three octal digits (but see [`Self::octal_escapes_are_flexible`]). Parsing of
/// octal escapes is performed *before* handling other escapes to permit `[escape]0` to
/// be handled correctly, if present. Because Python permits flexible octal escapes,
/// this is not a problem.
pub allow_octal_escapes: bool,
/// Allow flexible octal escapes. These consist of one to three octal digits. Python
/// uses this approach, so `"\x12k"` encodes the string `"\nk"`. It this is disabled,
/// then octal escapes must have *exactly* three octal digits.
pub octal_escapes_are_flexible: bool,
/// Provide interpretation for escapes. Each entry maps a specific character to the
/// character's meaning when that character follows the escape character. For example,
/// in C we would have `n` map to `EscapeType::Char('\n')`.
///
/// See [ASCII](https://www.ascii-code.com/) for the meaning of characters in the ASCII
/// range, and consult the Unicode standard for others.
pub escapes: BTreeMap<char, EscapeType>,
/// The Unicode database of names and aliases to code points.
#[cfg(not(feature = "no_ucd"))]
pub ucd: Rc<BTreeMap<&'static str, char>>,
}
impl StringParser {
/// Make and return a new string parser. The initial parsing standard is set to
/// [`StringStandard::Trivet`].
#[cfg(not(feature = "no_ucd"))]
pub fn new() -> Self {
StringParser {
enable_escapes: true,
escape_char: '\\',
allow_octal_escapes: true,
octal_escapes_are_flexible: true,
allow_surrogate_pairs: true,
illegal_unicode_protocol: IllegalUnicodeProtocol::ReplacementCharacter,
unknown_escape_protocol: UnknownEscapeProtocol::LiteralEscape,
escapes: BTreeMap::from(TRIVET_ESCAPES),
ucd: *get_ucd(),
}
}
#[cfg(feature = "no_ucd")]
pub fn new() -> Self {
StringParser {
enable_escapes: true,
escape_char: '\\',
allow_octal_escapes: true,
octal_escapes_are_flexible: true,
allow_surrogate_pairs: true,
illegal_unicode_protocol: IllegalUnicodeProtocol::ReplacementCharacter,
unknown_escape_protocol: UnknownEscapeProtocol::LiteralEscape,
escapes: BTreeMap::from(TRIVET_ESCAPES),
}
}
/// Make and return a new string parser. The initial parsing mode is set to Rust.
#[cfg(not(feature = "no_ucd"))]
pub fn new_from_db(ucd: &Rc<BTreeMap<&'static str, char>>) -> Self {
StringParser {
enable_escapes: true,
escape_char: '\\',
allow_octal_escapes: true,
octal_escapes_are_flexible: true,
allow_surrogate_pairs: true,
illegal_unicode_protocol: IllegalUnicodeProtocol::ReplacementCharacter,
unknown_escape_protocol: UnknownEscapeProtocol::LiteralEscape,
escapes: BTreeMap::from(TRIVET_ESCAPES),
ucd: ucd.clone(),
}
}
/// Configure all settings to conform to a given standard. See
/// [`StringStandard`] for the available standards.
pub fn set(&mut self, std: StringStandard) {
match std {
StringStandard::Trivet => {
self.enable_escapes = true;
self.escape_char = '\\';
self.allow_octal_escapes = true;
self.octal_escapes_are_flexible = true;
self.allow_surrogate_pairs = true;
self.illegal_unicode_protocol = IllegalUnicodeProtocol::ReplacementCharacter;
self.unknown_escape_protocol = UnknownEscapeProtocol::LiteralEscape;
self.escapes = BTreeMap::from(TRIVET_ESCAPES);
}
StringStandard::C => {
self.enable_escapes = true;
self.escape_char = '\\';
self.allow_octal_escapes = true;
self.octal_escapes_are_flexible = true;
self.allow_surrogate_pairs = false;
self.illegal_unicode_protocol = IllegalUnicodeProtocol::Preserve;
self.unknown_escape_protocol = UnknownEscapeProtocol::LiteralEscape;
self.escapes = BTreeMap::from(C_ESCAPES);
}
StringStandard::Rust => {
self.enable_escapes = true;
self.escape_char = '\\';
self.allow_octal_escapes = false;
self.allow_surrogate_pairs = false;
self.illegal_unicode_protocol = IllegalUnicodeProtocol::Error;
self.unknown_escape_protocol = UnknownEscapeProtocol::Error;
self.escapes = BTreeMap::from(RUST_ESCAPES);
}
StringStandard::JSON => {
self.enable_escapes = true;
self.escape_char = '\\';
self.allow_octal_escapes = false;
self.allow_surrogate_pairs = true;
self.illegal_unicode_protocol = IllegalUnicodeProtocol::Preserve;
self.unknown_escape_protocol = UnknownEscapeProtocol::DropEscape;
self.escapes = BTreeMap::from(JSON_ESCAPES);
}
StringStandard::Python => {
self.enable_escapes = true;
self.escape_char = '\\';
self.allow_octal_escapes = true;
self.octal_escapes_are_flexible = true;
self.allow_surrogate_pairs = false;
self.illegal_unicode_protocol = IllegalUnicodeProtocol::Preserve;
self.unknown_escape_protocol = UnknownEscapeProtocol::LiteralEscape;
self.escapes = BTreeMap::from(PYTHON_ESCAPES);
}
}
}
/// Correctly handle an invalid escape.
fn invalid_escape(&self, ch: char, loc: Loc, string: &mut String) -> ParseResult<()> {
match self.unknown_escape_protocol {
UnknownEscapeProtocol::Discard => Ok(()),
UnknownEscapeProtocol::DropEscape => {
string.push(ch);
Ok(())
}
UnknownEscapeProtocol::Error => Err(syntax_error(
loc,
format!("Invalid escape '{}{}'", self.escape_char, ch).as_str(),
)),
UnknownEscapeProtocol::LiteralEscape => {
string.push(self.escape_char);
string.push(ch);
Ok(())
}
UnknownEscapeProtocol::Replace(ch) => {
string.push(ch);
Ok(())
}
UnknownEscapeProtocol::ReplacementCharacter => {
string.push(char::REPLACEMENT_CHARACTER);
Ok(())
}
}
}
/// Correctly handle an invalid Unicode value.
fn handle_illegal_unicode(&self, value: u32, loc: Loc, string: &mut String) -> ParseResult<()> {
match self.illegal_unicode_protocol {
IllegalUnicodeProtocol::Discard => Ok(()),
IllegalUnicodeProtocol::Error => Err(syntax_error(
loc,
format!("Value is not a valid Unicode code point: {:04x}", value).as_str(),
)),
IllegalUnicodeProtocol::Preserve => unsafe {
string.push(char::from_u32_unchecked(value));
Ok(())
},
IllegalUnicodeProtocol::Replace(ch) => {
string.push(ch);
Ok(())
}
IllegalUnicodeProtocol::ReplacementCharacter => {
string.push(char::REPLACEMENT_CHARACTER);
Ok(())
}
}
}
/// Handle something that looks like a surrogate pair. On entry the parser is assumed
/// to be pointing to the escape character of the second element of the pair. On exit
/// the entire second element been consumed. If no second element is found, then treat
/// this as illegal Unicode and handle appropriately.
fn parse_surrogate_pair(
&self,
parser: &mut ParserCore,
first: u32,
loc: Loc,
string: &mut String,
) -> ParseResult<()> {
// At this point we have parsed the first surrogate pair. Now we need to see if
// there is a second element. We should *expect* the next thing in the stream to
// be an escape character. If it isn't, then we don't have a second surrogate
// pair.
if !parser.peek_and_consume(self.escape_char) {
// This is not what we expect, and the whole thing is wrong.
return self.handle_illegal_unicode(first, loc, string);
}
// We need to process the next escape, but it must be a hexadecimal escape of at least 16 bits
// or we can't get a second surrogate pair.
let ch = parser.peek();
parser.consume();
let second = match self.escapes.get(&ch) {
None
| Some(EscapeType::BracketUNamed)
| Some(EscapeType::Char(_))
| Some(EscapeType::Discard)
| Some(EscapeType::DiscardWS)
| Some(EscapeType::NakedASCII)
| Some(EscapeType::NakedByte) => {
// Well this is clearly wrong.
return Err(syntax_error(loc,
"Found what seems to be the first half of a surrogate pair, but no second half was found."
));
}
Some(EscapeType::BracketU18) => {
// Get the hex code.
self.parse_bracketed_hex(parser, 1, 8, true)?
}
Some(EscapeType::BracketU16) => {
// Get the hex code.
self.parse_bracketed_hex(parser, 1, 6, false)?
}
Some(EscapeType::NakedU4) => {
// Get the hex code.
let digits = parser.peek_n(4);
parser.consume_n(4);
// Try to convert to a u32.
(match u16::from_str_radix(&digits, 16) {
Ok(value) => value,
Err(err) => {
return Err(syntax_error(
loc,
format!("Invalid hex value '{}': {}", digits, err).as_str(),
))
}
}) as u32
}
Some(EscapeType::NakedU8) => {
// Get the hex code.
let digits = parser.peek_n(8);
parser.consume_n(8);
// Try to convert to a u32.
match u32::from_str_radix(&digits, 16) {
Ok(value) => value,
Err(err) => {
return Err(syntax_error(
loc,
format!("Invalid hex value '{}': {}", digits, err).as_str(),
))
}
}
}
};
// Do we even allow surrogate pairs?
if !self.allow_surrogate_pairs {
// No.
return Err(syntax_error(loc, "Surrogate pairs are not permitted"));
}
// Okay, check the parts for this surrogate pair.
if !(0xd800..0xdc00).contains(&first) || !(0xdc00..0xe000).contains(&second) {
// This is not a valid surrogate pair.
return Err(syntax_error(
loc,
format!("Invalid surrogate pair {:04x},{:04x}", first, second).as_str(),
));
}
// Compute the actual value. Having checked everything above, this should never
// fail.
let value = (first - 0xD800) * 0x400 + (second - 0xDC00) + 0x10000;
self.u32_to_char(value, loc, string)?;
Ok(())
}
/// Process bracketed hexadecimal values. This returns the u32 that is parsed, if any.
/// It does not transform it into a Unicode character or check that.
///
/// On entry the parser is assumed to be pointing to the opening brace, and this is checked.
/// On exit the closing brace is consumed.
fn parse_bracketed_hex(
&self,
parser: &mut ParserCore,
low: usize,
high: usize,
underscores: bool,
) -> ParseResult<u32> {
let loc = parser.loc();
// Expect an opening brace.
if !parser.peek_and_consume('{') {
// Malformed escape.
return Err(unexpected_character_error(loc, "{", parser.peek()));
}
// Read the hexadecimal characters.
let digits = if underscores {
parser.take_while_unless(|ch| ch.is_ascii_hexdigit(), |ch| ch == '_')
} else {
parser.take_while(|ch| ch.is_ascii_hexdigit())
};
// The next thing must be the closing brace.
if !parser.peek_and_consume('}') {
// Malformed escape.
return Err(unexpected_character_error(parser.loc(), "}", parser.peek()));
}
// Check the number of digits. Because they are in the ASCII range we can use length.
if !(low..=high).contains(&digits.len()) {
if digits.len() < low {
return Err(syntax_error(loc, "Too few digits given in escape"));
}
return Err(syntax_error(loc, "Too many digits given in escape"));
}
Ok(u32::from_str_radix(&digits, 16).unwrap())
}
/// Handle a u32 conversion to a char. This also handles the failure.
fn u32_to_char(&self, value: u32, loc: Loc, string: &mut String) -> ParseResult<()> {
match char::from_u32(value) {
None => {
// Failed.
self.handle_illegal_unicode(value, loc, string)
}
Some(ch) => {
string.push(ch);
Ok(())
}
}
}
/// Parse the next escape sequence. The initial escape character is assumed to have been
/// consumed prior to entry, and thus the parser is pointing to the first character after
/// the escape. On exit the parser is pointing to the first character following the escape
/// sequence.
fn parse_escape(&self, parser: &mut ParserCore, string: &mut String) -> ParseResult<()> {
let loc = parser.loc();
let mut ch = parser.peek();
parser.consume();
// Check for a known escape code.
match self.escapes.get(&ch) {
None => {
// Look for an octal escape if we are allowing them.
if self.allow_octal_escapes && ('0'..='7').contains(&ch) {
// Parse this as an octal escape. We can grab up to two additional digits.
let mut value = (ch as u32) - ('0' as u32);
for _ in 0..2 {
ch = parser.peek();
if ('0'..='7').contains(&ch) {
value *= 8;
value += (ch as u32) - ('0' as u32);
parser.consume();
} else {
if !self.octal_escapes_are_flexible {
return Err(syntax_error(
loc,
"Octal escape must have three digits",
));
}
break;
}
}
self.u32_to_char(value, loc, string)?;
return Ok(());
}
self.invalid_escape(ch, loc, string)?;
Ok(())
}
Some(EscapeType::BracketU18) => {
let value = self.parse_bracketed_hex(parser, 1, 8, true)?;
if (0xd800..0xe000).contains(&value) {
// This is the start of a surrogate pair.
self.parse_surrogate_pair(parser, value, loc, string)?
} else {
self.u32_to_char(value, loc, string)?
};
Ok(())
}
Some(EscapeType::BracketU16) => {
let value = self.parse_bracketed_hex(parser, 1, 6, false)?;
if (0xd800..0xe000).contains(&value) {
// This is the start of a surrogate pair.
self.parse_surrogate_pair(parser, value, loc, string)?
} else {
self.u32_to_char(value, loc, string)?
};
Ok(())
}
Some(EscapeType::BracketUNamed) => {
#[cfg(not(feature = "no_ucd"))]
{
// Expect an opening brace.
if !parser.peek_and_consume('{') {
// Malformed escape.
return Err(unexpected_character_error(loc, "{", parser.peek()));
}
// Get the content of the brackets.
let name = parser.take_while(|ch| ch != '}');
// The next thing must be the closing brace.
if !parser.peek_and_consume('}') {
// Malformed escape.
return Err(unexpected_character_error(loc, "}", parser.peek()));
}
// Try to find the character in the Unicode database.
let name = name.to_uppercase();
match self.ucd.get(name.as_str()) {
Some(ch) => {
string.push(*ch);
Ok(())
}
None => Err(syntax_error(
loc,
format!("Unknown Unicode character name '{}'", name).as_str(),
)),
}
}
#[cfg(feature = "no_ucd")]
{
Err(syntax_error(loc, "Unicode name lookup is not enabled."))
}
}
Some(EscapeType::Char(rp)) => {
string.push(*rp);
Ok(())
}
Some(EscapeType::Discard) => Ok(()),
Some(EscapeType::DiscardWS) => {
parser.consume_ws_only();
Ok(())
}
Some(EscapeType::NakedASCII) => {
let digits = parser.peek_n(2);
parser.consume_n(2);
// Try to convert to a byte.
let value = match u8::from_str_radix(&digits, 16) {
Ok(value) => value,
Err(err) => {
return Err(syntax_error(
loc,
format!("Invalid ASCII hex value '{}': {}", digits, err).as_str(),
))
}
};
if value > 0x7f {
return Err(syntax_error(
loc,
format!("Invalid ASCII value (too high): '{}'", digits).as_str(),
));
}
string.push(unsafe { char::from_u32_unchecked(value as u32) });
Ok(())
}
Some(EscapeType::NakedByte) => {
let digits = parser.peek_n(2);
parser.consume_n(2);
// Try to convert to a byte.
let value = match u8::from_str_radix(&digits, 16) {
Ok(value) => value,
Err(err) => {
return Err(syntax_error(
loc,
format!("Invalid hex value '{}': {}", digits, err).as_str(),
))
}
} as u32;
// None of the code points this can match are invalid, so we don't need to
// check. Note that this will behave differently from C in that the value
// will be treated as a Unicode code point.
string.push(char::from_u32(value).unwrap());
Ok(())
}
Some(EscapeType::NakedU4) => {
let digits = parser.peek_n(4);
parser.consume_n(4);
// Try to convert to a u32.
let value = match u16::from_str_radix(&digits, 16) {
Ok(value) => value,
Err(err) => {
return Err(syntax_error(
loc,
format!("Invalid hex value '{}': {}", digits, err).as_str(),
))
}
} as u32;
if (0xd800..0xe000).contains(&value) {
// This is the start of a surrogate pair.
return self.parse_surrogate_pair(parser, value, loc, string);
}
// Because surrogate pairs are extracted above, we have nothing here that could
// be a problem.
string.push(unsafe { char::from_u32_unchecked(value) });
Ok(())
}
Some(EscapeType::NakedU8) => {
let digits = parser.peek_n(8);
parser.consume_n(8);
// Try to convert to a u32.
let value = match u32::from_str_radix(&digits, 16) {
Ok(value) => value,
Err(err) => {
return Err(syntax_error(
loc,
format!("Invalid hex value '{}': {}", digits, err).as_str(),
))
}
};
if (0xd800..0xe000).contains(&value) {
// This is the start of a surrogate pair.
return self.parse_surrogate_pair(parser, value, loc, string);
}
match char::from_u32(value) {
Some(ch) => {
string.push(ch);
Ok(())
}
None => self.handle_illegal_unicode(value, loc, string),
}
}
}
}
/// Parse a string from the given parser. The `terminal` specifies a terminal character
/// that ends the string. If the terminal is `None`, then *everything* is parsed as part
/// of the string until the end of stream is reached.
pub fn process(&self, parser: &mut ParserCore, terminal: Option<char>) -> ParseResult<String> {
// Decide how to handle delimiters.
if let Some(termch) = terminal {
// Process character by character.
let mut result = String::new();
while !parser.is_at_eof() && !parser.peek_and_consume(termch) {
// Handle the next character.
let ch = parser.peek();
parser.consume();
if self.enable_escapes && ch == self.escape_char {
self.parse_escape(parser, &mut result)?;
} else {
result.push(ch);
}
}
Ok(result)
} else {
// Process the entire string.
if self.enable_escapes {
let mut result = String::new();
while !parser.is_at_eof() {
// Consume as many characters as we can.
let chunk = parser.take_while(|ch| ch != self.escape_char);
result += chunk.as_str();
if parser.peek_and_consume(self.escape_char) {
self.parse_escape(parser, &mut result)?;
}
}
Ok(result)
} else {
Ok(parser.take_while(|_| true))
}
}
}
/// Parse a string from the given value. The entire string is parsed.
pub fn parse_string(&self, value: &str) -> ParseResult<String> {
let decoder = Decode::new(value.bytes().collect());
let mut parser = ParserCore::new("<string>", decoder);
self.process(&mut parser, None)
}
}
impl Default for StringParser {
/// Make and return a new string parser. The initial parsing mode is set to Rust.
fn default() -> Self {
Self::new()
}
}