diff options
author | Alex Tokarev <aleksator@gmail.com> | 2020-10-11 20:30:55 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-11 12:30:55 -0500 |
commit | c74293f7a87cea3ce60a4df1c905501d4b749067 (patch) | |
tree | 60b020ad5cd7ce36bcd90e6660b8ba2a6a3b0d45 /src | |
parent | 940fcf9e183ab4f29204ef4f3ea92c01de8cc08a (diff) | |
download | milf-rs-c74293f7a87cea3ce60a4df1c905501d4b749067.tar.gz milf-rs-c74293f7a87cea3ce60a4df1c905501d4b749067.zip |
Improve error message when parsing unquoted string (#385)
* Improve error message when parsing unquoted string
* Remove conversion to lowercase in parse_keylike()
Converting keys to lowercase goes against
TOML specification for floats.
* Change error message for unquoted string
Diffstat (limited to 'src')
-rw-r--r-- | src/de.rs | 25 |
1 files changed, 22 insertions, 3 deletions
@@ -191,6 +191,9 @@ enum ErrorKind { available: &'static [&'static str], }, + /// Unquoted string was found when quoted one was expected + UnquotedString, + #[doc(hidden)] __Nonexhaustive, } @@ -1428,7 +1431,7 @@ impl<'a> Deserializer<'a> { start, end, }, - Some((span, Token::Keylike(key))) => self.number_or_date(span, key)?, + Some((span, Token::Keylike(key))) => self.parse_keylike(at, span, key)?, Some((span, Token::Plus)) => self.number_leading_plus(span)?, Some((Span { start, .. }, Token::LeftBrace)) => { self.inline_table().map(|(Span { end, .. }, table)| Value { @@ -1451,13 +1454,25 @@ impl<'a> Deserializer<'a> { expected: "a value", found: token.1.describe(), }, - )) + )); } None => return Err(self.eof()), }; Ok(value) } + fn parse_keylike(&mut self, at: usize, span: Span, key: &'a str) -> Result<Value<'a>, Error> { + if key == "inf" || key == "nan" { + return self.number_or_date(span, key); + } + + let first_char = key.chars().next().expect("key should not be empty here"); + match first_char { + '-' | '0'..='9' => self.number_or_date(span, key), + _ => Err(self.error(at, ErrorKind::UnquotedString)), + } + } + fn number_or_date(&mut self, span: Span, s: &'a str) -> Result<Value<'a>, Error> { if s.contains('T') || s.contains('t') @@ -2076,7 +2091,7 @@ impl std::convert::From<Error> for std::io::Error { impl fmt::Display for Error { fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - match self.inner.kind { + match &self.inner.kind { ErrorKind::UnexpectedEof => "unexpected eof encountered".fmt(f)?, ErrorKind::InvalidCharInString(c) => write!( f, @@ -2131,6 +2146,10 @@ impl fmt::Display for Error { "unexpected keys in table: `{:?}`, available keys: `{:?}`", keys, available )?, + ErrorKind::UnquotedString => write!( + f, + "invalid TOML value, did you mean to use a quoted string?" + )?, ErrorKind::__Nonexhaustive => panic!(), } |