rhai/src/error_parsing.rs

326 lines
13 KiB
Rust
Raw Normal View History

2020-03-08 12:54:02 +01:00
//! Module containing error definitions for the parsing process.
2020-11-20 09:52:28 +01:00
use crate::{EvalAltResult, Position};
2021-04-17 09:15:54 +02:00
#[cfg(feature = "no_std")]
use core_error::Error;
#[cfg(not(feature = "no_std"))]
use std::error::Error;
use std::fmt;
#[cfg(feature = "no_std")]
use std::prelude::v1::*;
2020-03-04 15:00:01 +01:00
2021-07-25 16:56:05 +02:00
/// _(internals)_ Error encountered when tokenizing the script text.
/// Exported under the `internals` feature only.
///
2021-01-16 07:46:03 +01:00
/// # Volatile Data Structure
///
/// This type is volatile and may change.
#[derive(Debug, Eq, PartialEq, Clone, Hash)]
2020-06-25 05:07:46 +02:00
#[non_exhaustive]
2020-03-04 15:00:01 +01:00
pub enum LexError {
2020-07-05 09:23:51 +02:00
/// An unexpected symbol is encountered when tokenizing the script text.
UnexpectedInput(String),
2020-03-04 15:00:01 +01:00
/// A string literal is not terminated before a new-line or EOF.
UnterminatedString,
2020-06-14 08:25:47 +02:00
/// An identifier is in an invalid format.
StringTooLong(usize),
2020-03-04 15:00:01 +01:00
/// An string/character/numeric escape sequence is in an invalid format.
MalformedEscapeSequence(String),
/// An numeric literal is in an invalid format.
MalformedNumber(String),
/// An character literal is in an invalid format.
MalformedChar(String),
2020-03-16 05:38:01 +01:00
/// An identifier is in an invalid format.
MalformedIdentifier(String),
2020-06-14 10:56:36 +02:00
/// Bad symbol encountered when tokenizing the script text.
ImproperSymbol(String, String),
2020-03-04 15:00:01 +01:00
}
2020-03-14 16:39:45 +01:00
impl Error for LexError {}
2020-03-04 15:00:01 +01:00
impl fmt::Display for LexError {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
match self {
2020-07-05 09:23:51 +02:00
Self::UnexpectedInput(s) => write!(f, "Unexpected '{}'", s),
2021-06-28 11:24:05 +02:00
Self::MalformedEscapeSequence(s) => write!(f, "Invalid escape sequence: '{}'", s),
Self::MalformedNumber(s) => write!(f, "Invalid number: '{}'", s),
Self::MalformedChar(s) => write!(f, "Invalid character: '{}'", s),
Self::MalformedIdentifier(s) => write!(f, "Variable name is not proper: '{}'", s),
Self::UnterminatedString => f.write_str("Open string is not terminated"),
Self::StringTooLong(max) => write!(
f,
"Length of string literal exceeds the maximum limit ({})",
max
),
Self::ImproperSymbol(s, d) if d.is_empty() => {
write!(f, "Invalid symbol encountered: '{}'", s)
}
Self::ImproperSymbol(_, d) => f.write_str(d),
2020-03-04 15:00:01 +01:00
}
}
}
2020-06-14 10:56:36 +02:00
impl LexError {
2020-11-25 02:36:06 +01:00
/// Convert a [`LexError`] into a [`ParseError`].
2020-10-08 16:25:50 +02:00
#[inline(always)]
2021-06-12 16:47:43 +02:00
#[must_use]
2020-11-25 02:36:06 +01:00
pub fn into_err(self, pos: Position) -> ParseError {
ParseError(Box::new(self.into()), pos)
2020-06-14 10:56:36 +02:00
}
}
2020-03-04 15:00:01 +01:00
/// Type of error encountered when parsing a script.
2020-04-10 06:16:39 +02:00
///
/// Some errors never appear when certain features are turned on.
/// They still exist so that the application can turn features on and off without going through
/// massive code changes to remove/add back enum variants in match statements.
#[derive(Debug, Eq, PartialEq, Clone, Hash)]
2020-06-25 05:07:46 +02:00
#[non_exhaustive]
2020-03-04 15:00:01 +01:00
pub enum ParseErrorType {
/// The script ends prematurely.
UnexpectedEOF,
2020-11-02 05:50:27 +01:00
/// Error in the script text. Wrapped value is the lex error.
BadInput(LexError),
2020-03-04 15:00:01 +01:00
/// An unknown operator is encountered. Wrapped value is the operator.
UnknownOperator(String),
2020-04-03 13:42:01 +02:00
/// Expecting a particular token but not finding one. Wrapped values are the token and description.
MissingToken(String, String),
2021-06-10 04:16:39 +02:00
/// Expecting a particular symbol but not finding one. Wrapped value is the description.
MissingSymbol(String),
2020-12-26 06:05:57 +01:00
/// An expression in function call arguments `()` has syntax error. Wrapped value is the error
/// description (if any).
2020-03-09 03:41:17 +01:00
MalformedCallExpr(String),
2020-12-26 06:05:57 +01:00
/// An expression in indexing brackets `[]` has syntax error. Wrapped value is the error
/// description (if any).
2020-04-03 13:42:01 +02:00
///
2020-04-10 06:16:39 +02:00
/// Never appears under the `no_index` feature.
2020-03-09 03:41:17 +01:00
MalformedIndexExpr(String),
2020-12-26 06:05:57 +01:00
/// An expression in an `in` expression has syntax error. Wrapped value is the error description
/// (if any).
2020-04-10 06:16:39 +02:00
///
/// Never appears under the `no_object` and `no_index` features combination.
2020-04-06 11:47:34 +02:00
MalformedInExpr(String),
2020-07-30 12:18:28 +02:00
/// A capturing has syntax error. Wrapped value is the error description (if any).
///
2020-08-03 06:10:20 +02:00
/// Never appears under the `no_closure` feature.
2020-07-30 12:18:28 +02:00
MalformedCapture(String),
2020-04-03 13:42:01 +02:00
/// A map definition has duplicated property names. Wrapped value is the property name.
///
2020-04-10 06:16:39 +02:00
/// Never appears under the `no_object` feature.
2020-03-29 17:53:35 +02:00
DuplicatedProperty(String),
2021-04-16 03:41:02 +02:00
/// A `switch` case is duplicated.
2020-11-13 11:32:18 +01:00
DuplicatedSwitchCase,
2021-06-07 05:01:16 +02:00
/// A variable name is duplicated. Wrapped value is the variable name.
DuplicatedVariable(String),
2021-04-16 03:41:02 +02:00
/// The default case of a `switch` statement is not the last.
WrongSwitchDefaultCase,
2021-04-16 07:28:36 +02:00
/// The case condition of a `switch` statement is not appropriate.
WrongSwitchCaseCondition,
/// Missing a property name for custom types and maps.
2020-04-10 06:16:39 +02:00
///
/// Never appears under the `no_object` feature.
2020-03-29 17:53:35 +02:00
PropertyExpected,
2020-10-20 17:16:03 +02:00
/// Missing a variable name after the `let`, `const`, `for` or `catch` keywords.
2020-03-16 05:38:01 +01:00
VariableExpected,
/// An identifier is a reserved keyword.
Reserved(String),
2021-07-03 18:15:27 +02:00
/// An expression is of the wrong type.
2021-07-04 11:09:26 +02:00
/// Wrapped values are the type requested and type of the actual result.
2021-07-03 18:15:27 +02:00
MismatchedType(String, String),
2020-04-03 13:42:01 +02:00
/// Missing an expression. Wrapped value is the expression type.
ExprExpected(String),
2020-12-12 13:09:29 +01:00
/// Defining a doc-comment in an appropriate place (e.g. not at global level).
///
/// Never appears under the `no_function` feature.
WrongDocComment,
2020-03-04 15:00:01 +01:00
/// Defining a function `fn` in an appropriate place (e.g. inside another function).
2020-04-03 13:42:01 +02:00
///
2020-04-10 06:16:39 +02:00
/// Never appears under the `no_function` feature.
WrongFnDefinition,
/// Defining a function with a name that conflicts with an existing function.
/// Wrapped values are the function name and number of parameters.
///
/// Never appears under the `no_object` feature.
FnDuplicatedDefinition(String, usize),
2020-03-04 15:00:01 +01:00
/// Missing a function name after the `fn` keyword.
2020-04-03 13:42:01 +02:00
///
2020-04-10 06:16:39 +02:00
/// Never appears under the `no_function` feature.
2020-03-04 15:00:01 +01:00
FnMissingName,
/// A function definition is missing the parameters list. Wrapped value is the function name.
2020-04-03 13:42:01 +02:00
///
2020-04-10 06:16:39 +02:00
/// Never appears under the `no_function` feature.
2020-03-04 15:00:01 +01:00
FnMissingParams(String),
2020-12-26 06:05:57 +01:00
/// A function definition has duplicated parameters. Wrapped values are the function name and
/// parameter name.
2020-04-03 13:42:01 +02:00
///
2020-04-10 06:16:39 +02:00
/// Never appears under the `no_function` feature.
FnDuplicatedParam(String, String),
2020-03-17 10:33:37 +01:00
/// A function definition is missing the body. Wrapped value is the function name.
2020-04-03 13:42:01 +02:00
///
2020-04-10 06:16:39 +02:00
/// Never appears under the `no_function` feature.
2020-03-17 10:33:37 +01:00
FnMissingBody(String),
2020-05-08 10:49:24 +02:00
/// Export statement not at global level.
///
/// Never appears under the `no_module` feature.
WrongExport,
2020-06-14 08:25:47 +02:00
/// Assignment to an a constant variable. Wrapped value is the constant variable name.
2020-03-13 11:12:41 +01:00
AssignmentToConstant(String),
/// Assignment to an inappropriate LHS (left-hand-side) expression.
/// Wrapped value is the error message (if any).
AssignmentToInvalidLHS(String),
/// Expression exceeding the maximum levels of complexity.
///
/// Never appears under the `unchecked` feature.
ExprTooDeep,
2020-06-14 08:25:47 +02:00
/// Literal exceeding the maximum size. Wrapped values are the data type name and the maximum size.
///
/// Never appears under the `unchecked` feature.
LiteralTooLarge(String, usize),
2020-03-17 10:33:37 +01:00
/// Break statement not inside a loop.
LoopBreak,
2020-03-04 15:00:01 +01:00
}
2020-03-24 09:46:47 +01:00
impl ParseErrorType {
2020-11-20 09:52:28 +01:00
/// Make a [`ParseError`] using the current type and position.
2020-10-08 16:25:50 +02:00
#[inline(always)]
2021-06-12 16:47:43 +02:00
#[must_use]
pub(crate) fn into_err(self, pos: Position) -> ParseError {
2021-06-29 12:25:20 +02:00
ParseError(self.into(), pos)
2020-03-24 09:46:47 +01:00
}
2020-03-04 15:00:01 +01:00
}
impl fmt::Display for ParseErrorType {
2020-06-13 11:03:49 +02:00
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
match self {
2020-11-02 05:50:27 +01:00
Self::BadInput(err) => write!(f, "{}", err),
2021-06-24 08:55:53 +02:00
Self::UnknownOperator(s) => write!(f, "Unknown operator: '{}'", s),
2020-03-16 05:38:01 +01:00
2021-07-02 05:50:24 +02:00
Self::MalformedCallExpr(s) => match s.as_str() {
"" => f.write_str("Invalid expression in function call arguments"),
s => f.write_str(s)
},
Self::MalformedIndexExpr(s) => match s.as_str() {
"" => f.write_str("Invalid index in indexing expression"),
s => f.write_str(s)
},
Self::MalformedInExpr(s) => match s.as_str() {
"" => f.write_str("Invalid 'in' expression"),
s => f.write_str(s)
},
Self::MalformedCapture(s) => match s.as_str() {
"" => f.write_str("Invalid capturing"),
s => f.write_str(s)
},
2020-04-06 11:47:34 +02:00
Self::FnDuplicatedDefinition(s, n) => {
write!(f, "Function '{}' with ", s)?;
match n {
0 => f.write_str("no parameters already exists"),
1 => f.write_str("1 parameter already exists"),
_ => write!(f, "{} parameters already exists", n),
}
}
2021-07-02 05:50:24 +02:00
Self::FnMissingBody(s) => match s.as_str() {
"" => f.write_str("Expecting body statement block for anonymous function"),
s => write!(f, "Expecting body statement block for function '{}'", s)
},
Self::FnMissingParams(s) => write!(f, "Expecting parameters for function '{}'", s),
2021-06-24 08:55:53 +02:00
Self::FnDuplicatedParam(s, arg) => write!(f, "Duplicated parameter '{}' for function '{}'", arg, s),
2021-07-04 11:09:26 +02:00
2021-06-24 08:55:53 +02:00
Self::DuplicatedProperty(s) => write!(f, "Duplicated property '{}' for object map literal", s),
Self::DuplicatedSwitchCase => f.write_str("Duplicated switch case"),
Self::DuplicatedVariable(s) => write!(f, "Duplicated variable name '{}'", s),
2020-03-16 05:38:01 +01:00
2021-07-03 18:15:27 +02:00
Self::MismatchedType(r, a) => write!(f, "Expecting {}, not {}", r, a),
2021-06-24 08:55:53 +02:00
Self::ExprExpected(s) => write!(f, "Expecting {} expression", s),
Self::MissingToken(token, s) => write!(f, "Expecting '{}' {}", token, s),
2021-07-10 09:50:31 +02:00
Self::MissingSymbol(s) if s.is_empty() => f.write_str("Expecting a symbol"),
2021-06-10 04:16:39 +02:00
Self::MissingSymbol(s) => f.write_str(s),
2020-03-16 16:51:32 +01:00
2021-07-02 05:50:24 +02:00
Self::AssignmentToConstant(s) => match s.as_str() {
"" => f.write_str("Cannot assign to a constant value"),
s => write!(f, "Cannot assign to constant '{}'", s)
},
Self::AssignmentToInvalidLHS(s) => match s.as_str() {
"" => f.write_str("Expression cannot be assigned to"),
s => f.write_str(s)
},
2021-06-24 08:55:53 +02:00
Self::LiteralTooLarge(typ, max) => write!(f, "{} exceeds the maximum limit ({})", typ, max),
Self::Reserved(s) => write!(f, "'{}' is a reserved keyword", s),
2021-06-24 08:55:53 +02:00
Self::UnexpectedEOF => f.write_str("Script is incomplete"),
Self::WrongSwitchDefaultCase => f.write_str("Default switch case is not the last"),
Self::WrongSwitchCaseCondition => f.write_str("Default switch case cannot have condition"),
Self::PropertyExpected => f.write_str("Expecting name of a property"),
Self::VariableExpected => f.write_str("Expecting name of a variable"),
Self::WrongFnDefinition => f.write_str("Function definitions must be at global level and cannot be inside a block or another function"),
Self::FnMissingName => f.write_str("Expecting function name in function declaration"),
Self::WrongDocComment => f.write_str("Doc-comment must be followed immediately by a function definition"),
Self::WrongExport => f.write_str("Export statement can only appear at global level"),
Self::ExprTooDeep => f.write_str("Expression exceeds maximum complexity"),
Self::LoopBreak => f.write_str("Break statement should only be used inside a loop"),
2020-03-04 15:00:01 +01:00
}
}
}
2020-11-02 05:50:27 +01:00
impl From<LexError> for ParseErrorType {
2020-10-08 16:25:50 +02:00
#[inline(always)]
2020-11-02 05:50:27 +01:00
fn from(err: LexError) -> Self {
2020-06-14 10:56:36 +02:00
match err {
LexError::StringTooLong(max) => {
2020-11-02 05:50:27 +01:00
Self::LiteralTooLarge("Length of string literal".to_string(), max)
2020-06-14 10:56:36 +02:00
}
2020-11-02 05:50:27 +01:00
_ => Self::BadInput(err),
2020-06-14 10:56:36 +02:00
}
}
}
/// Error when parsing a script.
#[derive(Debug, Eq, PartialEq, Clone, Hash)]
pub struct ParseError(pub Box<ParseErrorType>, pub Position);
2020-03-04 15:00:01 +01:00
impl Error for ParseError {}
impl fmt::Display for ParseError {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
fmt::Display::fmt(&self.0, f)?;
// Do not write any position if None
if !self.1.is_none() {
write!(f, " ({})", self.1)?;
2020-03-04 15:00:01 +01:00
}
Ok(())
}
}
impl From<ParseErrorType> for Box<EvalAltResult> {
2020-10-08 16:25:50 +02:00
#[inline(always)]
fn from(err: ParseErrorType) -> Self {
2021-10-11 09:49:51 +02:00
err.into()
2020-12-29 15:04:31 +01:00
}
}
impl From<ParseErrorType> for EvalAltResult {
#[inline(always)]
fn from(err: ParseErrorType) -> Self {
EvalAltResult::ErrorParsing(err, Position::NONE)
}
}
impl From<ParseError> for Box<EvalAltResult> {
2020-10-08 16:25:50 +02:00
#[inline(always)]
fn from(err: ParseError) -> Self {
2021-10-11 09:49:51 +02:00
err.into()
2020-12-29 15:04:31 +01:00
}
}
impl From<ParseError> for EvalAltResult {
#[inline(always)]
fn from(err: ParseError) -> Self {
EvalAltResult::ErrorParsing(*err.0, err.1)
2020-03-04 15:00:01 +01:00
}
}