rhai/src/parser.rs

1516 lines
51 KiB
Rust
Raw Normal View History

2019-09-18 12:21:07 +02:00
use std::char;
2016-02-29 22:43:45 +01:00
use std::error::Error;
use std::fmt;
use std::iter::Peekable;
use std::str::Chars;
#[derive(Debug, Eq, PartialEq, Hash, Clone, Copy)]
2016-03-02 15:16:36 +01:00
pub enum LexError {
UnexpectedChar(char),
UnterminatedString,
2016-03-02 15:16:36 +01:00
MalformedEscapeSequence,
2016-04-14 03:40:06 +02:00
MalformedNumber,
MalformedChar,
2019-09-18 12:21:07 +02:00
Nothing,
2016-03-02 15:16:36 +01:00
}
type LERR = LexError;
2016-03-02 15:16:36 +01:00
impl Error for LexError {
fn description(&self) -> &str {
match *self {
LERR::UnexpectedChar(_) => "Unexpected character",
LERR::UnterminatedString => "Open string is not terminated",
LERR::MalformedEscapeSequence => "Unexpected values in escape sequence",
LERR::MalformedNumber => "Unexpected characters in number",
LERR::MalformedChar => "Char constant not a single character",
LERR::Nothing => "This error is for internal use only",
2016-03-02 15:16:36 +01:00
}
}
}
impl fmt::Display for LexError {
2019-09-18 12:21:07 +02:00
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
match self {
LERR::UnexpectedChar(c) => write!(f, "Unexpected '{}'", c),
_ => write!(f, "{}", self.description()),
}
2016-03-02 15:16:36 +01:00
}
}
#[derive(Debug, PartialEq, Clone)]
pub enum ParseErrorType {
BadInput(String),
2016-02-29 22:43:45 +01:00
InputPastEndOfFile,
UnknownOperator,
MissingRightParen,
MissingLeftBrace,
MissingRightBrace,
MissingRightBracket,
2016-02-29 22:43:45 +01:00
MalformedCallExpr,
2016-03-26 18:46:28 +01:00
MalformedIndexExpr,
VarExpectsIdentifier(Token),
FnMissingName(Token),
FnMissingParams,
2016-02-29 22:43:45 +01:00
}
2020-03-01 06:30:22 +01:00
type PERR = ParseErrorType;
2020-02-29 13:12:10 +01:00
#[derive(Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Clone, Copy)]
pub struct Position {
line: usize,
pos: usize,
}
impl Position {
fn advance(&mut self) {
self.pos += 1;
}
fn rewind(&mut self) {
// Beware, should not rewind at zero position
self.pos -= 1;
}
2020-02-29 13:12:10 +01:00
fn new_line(&mut self) {
self.line += 1;
self.pos = 0;
}
fn eof() -> Self {
Self { line: 0, pos: 0 }
}
}
#[derive(Debug, PartialEq, Clone)]
2020-03-01 06:30:22 +01:00
pub struct ParseError(PERR, Position);
impl ParseError {
2020-03-01 06:30:22 +01:00
pub fn error_type(&self) -> &PERR {
&self.0
}
pub fn line(&self) -> usize {
2020-02-29 13:12:10 +01:00
self.1.line
}
pub fn position(&self) -> usize {
2020-02-29 13:12:10 +01:00
self.1.pos
}
}
2016-02-29 22:43:45 +01:00
impl Error for ParseError {
fn description(&self) -> &str {
match self.0 {
PERR::BadInput(ref p) => p,
PERR::InputPastEndOfFile => "Script is incomplete",
PERR::UnknownOperator => "Unknown operator",
PERR::MissingRightParen => "Expecting ')'",
PERR::MissingLeftBrace => "Expecting '{'",
PERR::MissingRightBrace => "Expecting '}'",
PERR::MissingRightBracket => "Expecting ']'",
PERR::MalformedCallExpr => "Invalid expression in function call arguments",
PERR::MalformedIndexExpr => "Invalid index in indexing expression",
PERR::VarExpectsIdentifier(_) => "Expecting name of a variable",
PERR::FnMissingName(_) => "Expecting name in function declaration",
PERR::FnMissingParams => "Expecting parameters in function declaration",
2016-02-29 22:43:45 +01:00
}
}
2019-09-18 12:21:07 +02:00
fn cause(&self) -> Option<&dyn Error> {
None
}
2016-02-29 22:43:45 +01:00
}
impl fmt::Display for ParseError {
2019-09-18 12:21:07 +02:00
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
match self.0 {
PERR::BadInput(ref s) => {
write!(f, "{}", s)?;
}
PERR::VarExpectsIdentifier(ref token) | PERR::FnMissingName(ref token) => match token {
Token::None => write!(f, "{}", self.description())?,
_ => write!(
f,
"{} (but gets {:?} token instead)",
self.description(),
token
)?,
},
_ => write!(f, "{}", self.description())?,
}
if self.line() > 0 {
write!(f, " at line {}, position {}", self.line(), self.position())
} else {
write!(f, " at the end of the script but there is no more input")
}
2016-02-29 22:43:45 +01:00
}
}
pub struct AST(pub(crate) Vec<Stmt>, pub(crate) Vec<FnDef>);
#[derive(Debug, PartialEq, Clone)]
pub struct FnDef {
pub name: String,
pub params: Vec<String>,
pub body: Box<Stmt>,
}
#[derive(Debug, PartialEq, Clone)]
pub enum Stmt {
If(Box<Expr>, Box<Stmt>),
IfElse(Box<Expr>, Box<Stmt>, Box<Stmt>),
While(Box<Expr>, Box<Stmt>),
2017-10-30 16:08:44 +01:00
Loop(Box<Stmt>),
For(String, Box<Expr>, Box<Stmt>),
Let(String, Option<Box<Expr>>),
2017-10-02 23:44:45 +02:00
Block(Vec<Stmt>),
Expr(Box<Expr>),
Break,
Return,
ReturnWithVal(Box<Expr>),
}
2016-02-29 22:43:45 +01:00
#[derive(Debug, PartialEq, Clone)]
pub enum Expr {
IntegerConstant(i64),
FloatConstant(f64),
Identifier(String),
CharConstant(char),
StringConstant(String),
FunctionCall(String, Vec<Expr>),
Assignment(Box<Expr>, Box<Expr>),
Dot(Box<Expr>, Box<Expr>),
Index(String, Box<Expr>),
2017-10-02 23:44:45 +02:00
Array(Vec<Expr>),
2020-03-02 05:08:03 +01:00
And(Box<Expr>, Box<Expr>),
Or(Box<Expr>, Box<Expr>),
True,
False,
2018-05-23 01:44:41 +02:00
Unit,
}
2016-02-29 22:43:45 +01:00
#[derive(Debug, PartialEq, Clone)]
pub enum Token {
None,
IntegerConstant(i64),
FloatConstant(f64),
Identifier(String),
CharConstant(char),
StringConst(String),
LeftBrace,
RightBrace,
LeftParen,
RightParen,
LeftBracket,
RightBracket,
Plus,
2017-10-30 16:08:44 +01:00
UnaryPlus,
Minus,
2017-10-30 16:08:44 +01:00
UnaryMinus,
Multiply,
Divide,
SemiColon,
Colon,
Comma,
Period,
Equals,
True,
False,
Let,
If,
Else,
While,
2017-10-30 16:08:44 +01:00
Loop,
LessThan,
GreaterThan,
Bang,
LessThanEqualsTo,
GreaterThanEqualsTo,
EqualsTo,
NotEqualsTo,
Pipe,
Or,
Ampersand,
And,
Fn,
Break,
Return,
PlusAssign,
MinusAssign,
MultiplyAssign,
DivideAssign,
LeftShiftAssign,
RightShiftAssign,
AndAssign,
OrAssign,
XOrAssign,
LeftShift,
RightShift,
XOr,
Modulo,
ModuloAssign,
2017-11-24 08:56:22 +01:00
PowerOf,
PowerOfAssign,
For,
In,
LexErr(LexError),
}
2016-02-29 22:43:45 +01:00
2017-10-30 16:08:44 +01:00
impl Token {
// if another operator is after these, it's probably an unary operator
// not sure about fn's name
pub fn is_next_unary(&self) -> bool {
use self::Token::*;
match *self {
LeftBrace | // (+expr) - is unary
// RightBrace | {expr} - expr not unary & is closing
LeftParen | // {-expr} - is unary
// RightParen | (expr) - expr not unary & is closing
LeftBracket | // [-expr] - is unary
// RightBracket | [expr] - expr not unary & is closing
2017-10-30 16:08:44 +01:00
Plus |
UnaryPlus |
Minus |
UnaryMinus |
Multiply |
Divide |
Colon |
Comma |
Period |
Equals |
LessThan |
GreaterThan |
Bang |
LessThanEqualsTo |
GreaterThanEqualsTo |
EqualsTo |
NotEqualsTo |
2017-10-30 16:08:44 +01:00
Pipe |
Or |
Ampersand |
And |
If |
While |
PlusAssign |
MinusAssign |
MultiplyAssign |
DivideAssign |
LeftShiftAssign |
RightShiftAssign |
AndAssign |
OrAssign |
XOrAssign |
LeftShift |
RightShift |
XOr |
Modulo |
ModuloAssign |
2017-11-24 08:56:22 +01:00
Return |
PowerOf |
In |
PowerOfAssign => true,
2017-10-30 16:08:44 +01:00
_ => false,
}
}
#[allow(dead_code)]
pub fn is_bin_op(&self) -> bool {
use self::Token::*;
match *self {
RightBrace |
RightParen |
RightBracket |
2017-10-30 16:08:44 +01:00
Plus |
Minus |
Multiply |
Divide |
Comma |
// Period | <- does period count?
Equals |
LessThan |
GreaterThan |
LessThanEqualsTo |
GreaterThanEqualsTo |
EqualsTo |
NotEqualsTo |
2017-10-30 16:08:44 +01:00
Pipe |
Or |
Ampersand |
2017-11-24 08:56:22 +01:00
And |
PowerOf => true,
2017-10-30 16:08:44 +01:00
_ => false,
}
}
#[allow(dead_code)]
pub fn is_un_op(&self) -> bool {
use self::Token::*;
match *self {
2019-09-18 12:21:07 +02:00
UnaryPlus | UnaryMinus | Equals | Bang | Return => true,
2017-10-30 16:08:44 +01:00
_ => false,
}
}
}
2016-02-29 22:43:45 +01:00
pub struct TokenIterator<'a> {
2017-10-30 16:08:44 +01:00
last: Token,
2020-02-29 13:12:10 +01:00
pos: Position,
char_stream: Peekable<Chars<'a>>,
}
impl<'a> TokenIterator<'a> {
fn advance(&mut self) {
2020-02-29 13:12:10 +01:00
self.pos.advance();
}
fn rewind(&mut self) {
self.pos.rewind();
}
2020-02-29 13:12:10 +01:00
fn new_line(&mut self) {
self.pos.new_line();
}
pub fn parse_string_const(
&mut self,
enclosing_char: char,
2020-02-29 13:12:10 +01:00
) -> Result<String, (LexError, Position)> {
let mut result = Vec::new();
let mut escape = false;
loop {
let next_char = self.char_stream.next();
if next_char.is_none() {
return Err((LERR::UnterminatedString, Position::eof()));
}
self.advance();
match next_char.unwrap() {
'\\' if !escape => escape = true,
'\\' if escape => {
escape = false;
result.push('\\');
}
't' if escape => {
escape = false;
result.push('\t');
}
'n' if escape => {
escape = false;
result.push('\n');
}
'r' if escape => {
escape = false;
result.push('\r');
}
'x' if escape => {
escape = false;
let mut out_val: u32 = 0;
for _ in 0..2 {
if let Some(c) = self.char_stream.next() {
if let Some(d1) = c.to_digit(16) {
out_val *= 16;
out_val += d1;
} else {
2020-02-29 13:12:10 +01:00
return Err((LERR::MalformedEscapeSequence, self.pos));
}
} else {
2020-02-29 13:12:10 +01:00
return Err((LERR::MalformedEscapeSequence, self.pos));
}
self.advance();
}
if let Some(r) = char::from_u32(out_val) {
result.push(r);
} else {
2020-02-29 13:12:10 +01:00
return Err((LERR::MalformedEscapeSequence, self.pos));
}
}
'u' if escape => {
escape = false;
let mut out_val: u32 = 0;
for _ in 0..4 {
if let Some(c) = self.char_stream.next() {
if let Some(d1) = c.to_digit(16) {
out_val *= 16;
out_val += d1;
} else {
2020-02-29 13:12:10 +01:00
return Err((LERR::MalformedEscapeSequence, self.pos));
}
} else {
2020-02-29 13:12:10 +01:00
return Err((LERR::MalformedEscapeSequence, self.pos));
}
self.advance();
}
if let Some(r) = char::from_u32(out_val) {
result.push(r);
} else {
2020-02-29 13:12:10 +01:00
return Err((LERR::MalformedEscapeSequence, self.pos));
}
}
'U' if escape => {
escape = false;
let mut out_val: u32 = 0;
for _ in 0..8 {
if let Some(c) = self.char_stream.next() {
if let Some(d1) = c.to_digit(16) {
out_val *= 16;
out_val += d1;
} else {
2020-02-29 13:12:10 +01:00
return Err((LERR::MalformedEscapeSequence, self.pos));
}
} else {
2020-02-29 13:12:10 +01:00
return Err((LERR::MalformedEscapeSequence, self.pos));
}
self.advance();
}
if let Some(r) = char::from_u32(out_val) {
result.push(r);
} else {
2020-02-29 13:12:10 +01:00
return Err((LERR::MalformedEscapeSequence, self.pos));
}
}
x if enclosing_char == x && escape => result.push(x),
x if enclosing_char == x && !escape => break,
2020-02-29 13:12:10 +01:00
_ if escape => return Err((LERR::MalformedEscapeSequence, self.pos)),
'\n' => {
self.rewind();
return Err((LERR::UnterminatedString, self.pos));
}
x => {
escape = false;
result.push(x);
}
}
}
let out: String = result.iter().cloned().collect();
Ok(out)
}
2016-02-29 22:43:45 +01:00
2020-02-29 13:12:10 +01:00
fn inner_next(&mut self) -> Option<(Token, Position)> {
2016-02-29 22:43:45 +01:00
while let Some(c) = self.char_stream.next() {
self.advance();
let pos = self.pos;
2016-02-29 22:43:45 +01:00
match c {
2020-02-29 13:12:10 +01:00
'\n' => self.new_line(),
2019-09-18 12:21:07 +02:00
'0'..='9' => {
2016-02-29 22:43:45 +01:00
let mut result = Vec::new();
2017-11-01 06:10:46 +01:00
let mut radix_base: Option<u32> = None;
2016-02-29 22:43:45 +01:00
result.push(c);
while let Some(&nxt) = self.char_stream.peek() {
match nxt {
2019-09-18 12:21:07 +02:00
'0'..='9' => {
result.push(nxt);
self.char_stream.next();
self.advance();
}
'.' => {
result.push(nxt);
self.char_stream.next();
self.advance();
while let Some(&nxt_float) = self.char_stream.peek() {
match nxt_float {
2019-09-18 12:21:07 +02:00
'0'..='9' => {
result.push(nxt_float);
self.char_stream.next();
self.advance();
}
_ => break,
}
}
}
2017-11-01 06:02:36 +01:00
'x' | 'X' => {
result.push(nxt);
self.char_stream.next();
self.advance();
2017-11-01 06:02:36 +01:00
while let Some(&nxt_hex) = self.char_stream.peek() {
match nxt_hex {
2019-09-18 12:21:07 +02:00
'0'..='9' | 'a'..='f' | 'A'..='F' => {
2017-11-01 06:02:36 +01:00
result.push(nxt_hex);
self.char_stream.next();
self.advance();
2017-11-01 06:02:36 +01:00
}
_ => break,
}
}
2017-11-01 06:10:46 +01:00
radix_base = Some(16);
2017-11-01 06:02:36 +01:00
}
'o' | 'O' => {
result.push(nxt);
self.char_stream.next();
self.advance();
2017-11-01 06:02:36 +01:00
while let Some(&nxt_oct) = self.char_stream.peek() {
match nxt_oct {
2019-09-18 12:21:07 +02:00
'0'..='8' => {
2017-11-01 06:02:36 +01:00
result.push(nxt_oct);
self.char_stream.next();
self.advance();
2017-11-01 06:02:36 +01:00
}
_ => break,
}
}
2017-11-01 06:10:46 +01:00
radix_base = Some(8);
2017-11-01 06:02:36 +01:00
}
'b' | 'B' => {
result.push(nxt);
self.char_stream.next();
self.advance();
2017-11-01 06:02:36 +01:00
while let Some(&nxt_bin) = self.char_stream.peek() {
match nxt_bin {
'0' | '1' | '_' => {
result.push(nxt_bin);
self.char_stream.next();
self.advance();
2017-11-01 06:02:36 +01:00
}
_ => break,
}
}
2017-11-01 06:10:46 +01:00
radix_base = Some(2);
2017-11-01 06:02:36 +01:00
}
_ => break,
2016-02-29 22:43:45 +01:00
}
}
2017-11-01 06:10:46 +01:00
if let Some(radix) = radix_base {
2019-09-18 12:21:07 +02:00
let out: String = result
.iter()
.cloned()
.skip(2)
.filter(|c| c != &'_')
.collect();
2017-11-01 06:10:46 +01:00
if let Ok(val) = i64::from_str_radix(&out, radix) {
2020-02-29 13:12:10 +01:00
return Some((Token::IntegerConstant(val), pos));
2017-11-01 06:10:46 +01:00
}
}
let out: String = result.iter().cloned().collect();
2016-02-29 22:43:45 +01:00
return Some((
if let Ok(val) = out.parse::<i64>() {
Token::IntegerConstant(val)
} else if let Ok(val) = out.parse::<f64>() {
Token::FloatConstant(val)
} else {
Token::LexErr(LERR::MalformedNumber)
},
pos,
));
}
2019-09-18 12:21:07 +02:00
'A'..='Z' | 'a'..='z' | '_' => {
2016-02-29 22:43:45 +01:00
let mut result = Vec::new();
result.push(c);
while let Some(&nxt) = self.char_stream.peek() {
match nxt {
2017-10-14 19:46:22 +02:00
x if x.is_alphanumeric() || x == '_' => {
result.push(x);
self.char_stream.next();
self.advance();
}
_ => break,
2016-02-29 22:43:45 +01:00
}
}
let out: String = result.iter().cloned().collect();
return Some((
2020-03-02 05:08:03 +01:00
match out.as_str() {
"true" => Token::True,
"false" => Token::False,
"let" => Token::Let,
"if" => Token::If,
"else" => Token::Else,
"while" => Token::While,
"loop" => Token::Loop,
"break" => Token::Break,
"return" => Token::Return,
"fn" => Token::Fn,
"for" => Token::For,
"in" => Token::In,
2020-02-29 13:12:10 +01:00
x => Token::Identifier(x.into()),
},
pos,
));
}
'"' => {
return match self.parse_string_const('"') {
2020-02-29 13:12:10 +01:00
Ok(out) => Some((Token::StringConst(out), pos)),
Err(e) => Some((Token::LexErr(e.0), e.1)),
2016-02-29 22:43:45 +01:00
}
}
2019-09-18 12:21:07 +02:00
'\'' => match self.parse_string_const('\'') {
Ok(result) => {
let mut chars = result.chars();
return Some((
if let Some(out) = chars.next() {
if chars.count() != 0 {
Token::LexErr(LERR::MalformedChar)
} else {
Token::CharConstant(out)
}
} else {
Token::LexErr(LERR::MalformedChar)
},
pos,
));
2016-04-14 03:40:06 +02:00
}
2020-02-29 13:12:10 +01:00
Err(e) => return Some((Token::LexErr(e.0), e.1)),
2019-09-18 12:21:07 +02:00
},
2020-02-29 13:12:10 +01:00
'{' => return Some((Token::LeftBrace, pos)),
'}' => return Some((Token::RightBrace, pos)),
'(' => return Some((Token::LeftParen, pos)),
')' => return Some((Token::RightParen, pos)),
'[' => return Some((Token::LeftBracket, pos)),
']' => return Some((Token::RightBracket, pos)),
2017-10-30 16:08:44 +01:00
'+' => {
return Some((
match self.char_stream.peek() {
Some(&'=') => {
self.char_stream.next();
self.advance();
Token::PlusAssign
}
_ if self.last.is_next_unary() => Token::UnaryPlus,
_ => Token::Plus,
},
pos,
))
2019-09-18 12:21:07 +02:00
}
2017-10-30 16:08:44 +01:00
'-' => {
return Some((
match self.char_stream.peek() {
Some(&'=') => {
self.char_stream.next();
self.advance();
Token::MinusAssign
}
_ if self.last.is_next_unary() => Token::UnaryMinus,
_ => Token::Minus,
},
pos,
))
2019-09-18 12:21:07 +02:00
}
'*' => {
return Some((
match self.char_stream.peek() {
Some(&'=') => {
self.char_stream.next();
self.advance();
Token::MultiplyAssign
}
_ => Token::Multiply,
},
pos,
))
2019-09-18 12:21:07 +02:00
}
'/' => match self.char_stream.peek() {
Some(&'/') => {
self.char_stream.next();
self.advance();
2019-09-18 12:21:07 +02:00
while let Some(c) = self.char_stream.next() {
if c == '\n' {
2020-02-29 13:12:10 +01:00
self.new_line();
2019-09-18 12:21:07 +02:00
break;
} else {
self.advance();
2017-10-30 16:08:44 +01:00
}
}
2019-09-18 12:21:07 +02:00
}
Some(&'*') => {
let mut level = 1;
self.char_stream.next();
self.advance();
2019-09-18 12:21:07 +02:00
while let Some(c) = self.char_stream.next() {
self.advance();
2019-09-18 12:21:07 +02:00
match c {
'/' => {
if let Some('*') = self.char_stream.next() {
level += 1;
2017-10-30 16:08:44 +01:00
}
self.advance();
2019-09-18 12:21:07 +02:00
}
'*' => {
if let Some('/') = self.char_stream.next() {
level -= 1;
2017-10-30 16:08:44 +01:00
}
self.advance();
2017-10-30 16:08:44 +01:00
}
2020-02-29 13:12:10 +01:00
'\n' => self.new_line(),
2019-09-18 12:21:07 +02:00
_ => (),
}
2017-10-30 16:08:44 +01:00
2019-09-18 12:21:07 +02:00
if level == 0 {
break;
2017-10-30 16:08:44 +01:00
}
}
}
2019-09-18 12:21:07 +02:00
Some(&'=') => {
self.char_stream.next();
self.advance();
2020-02-29 13:12:10 +01:00
return Some((Token::DivideAssign, pos));
2019-09-18 12:21:07 +02:00
}
2020-02-29 13:12:10 +01:00
_ => return Some((Token::Divide, pos)),
2019-09-18 12:21:07 +02:00
},
2020-02-29 13:12:10 +01:00
';' => return Some((Token::SemiColon, pos)),
':' => return Some((Token::Colon, pos)),
',' => return Some((Token::Comma, pos)),
'.' => return Some((Token::Period, pos)),
2019-09-18 12:21:07 +02:00
'=' => match self.char_stream.peek() {
Some(&'=') => {
self.char_stream.next();
self.advance();
2020-02-29 13:12:10 +01:00
return Some((Token::EqualsTo, pos));
2016-03-01 15:40:48 +01:00
}
2020-02-29 13:12:10 +01:00
_ => return Some((Token::Equals, pos)),
2019-09-18 12:21:07 +02:00
},
'<' => match self.char_stream.peek() {
Some(&'=') => {
self.char_stream.next();
self.advance();
2020-02-29 13:12:10 +01:00
return Some((Token::LessThanEqualsTo, pos));
2019-09-18 12:21:07 +02:00
}
Some(&'<') => {
self.char_stream.next();
self.advance();
2019-09-18 12:21:07 +02:00
return match self.char_stream.peek() {
Some(&'=') => {
self.char_stream.next();
self.advance();
2020-02-29 13:12:10 +01:00
Some((Token::LeftShiftAssign, pos))
}
2019-09-18 12:21:07 +02:00
_ => {
self.char_stream.next();
self.advance();
2020-02-29 13:12:10 +01:00
Some((Token::LeftShift, pos))
2019-09-18 12:21:07 +02:00
}
};
2016-03-01 15:40:48 +01:00
}
2020-02-29 13:12:10 +01:00
_ => return Some((Token::LessThan, pos)),
2019-09-18 12:21:07 +02:00
},
'>' => {
return Some((
match self.char_stream.peek() {
2019-09-18 12:21:07 +02:00
Some(&'=') => {
self.char_stream.next();
self.advance();
Token::GreaterThanEqualsTo
}
Some(&'>') => {
2019-09-18 12:21:07 +02:00
self.char_stream.next();
self.advance();
match self.char_stream.peek() {
Some(&'=') => {
self.char_stream.next();
self.advance();
Token::RightShiftAssign
}
_ => {
self.char_stream.next();
self.advance();
Token::RightShift
}
}
2019-09-18 12:21:07 +02:00
}
_ => Token::GreaterThan,
},
pos,
))
}
'!' => {
return Some((
match self.char_stream.peek() {
Some(&'=') => {
self.char_stream.next();
self.advance();
Token::NotEqualsTo
}
_ => Token::Bang,
},
pos,
))
}
'|' => {
return Some((
match self.char_stream.peek() {
Some(&'|') => {
self.char_stream.next();
self.advance();
Token::Or
}
Some(&'=') => {
self.char_stream.next();
self.advance();
Token::OrAssign
}
_ => Token::Pipe,
},
pos,
))
}
'&' => {
return Some((
match self.char_stream.peek() {
Some(&'&') => {
self.char_stream.next();
self.advance();
Token::And
}
Some(&'=') => {
self.char_stream.next();
self.advance();
Token::AndAssign
}
_ => Token::Ampersand,
},
pos,
))
}
'^' => {
return Some((
match self.char_stream.peek() {
Some(&'=') => {
self.char_stream.next();
self.advance();
Token::XOrAssign
}
_ => Token::XOr,
},
pos,
))
}
'%' => {
return Some((
match self.char_stream.peek() {
Some(&'=') => {
self.char_stream.next();
self.advance();
Token::ModuloAssign
}
_ => Token::Modulo,
},
pos,
))
}
'~' => {
return Some((
match self.char_stream.peek() {
Some(&'=') => {
self.char_stream.next();
self.advance();
Token::PowerOfAssign
}
_ => Token::PowerOf,
},
pos,
))
}
x if x.is_whitespace() => (),
2020-02-29 13:12:10 +01:00
x => return Some((Token::LexErr(LERR::UnexpectedChar(x)), pos)),
2016-02-29 22:43:45 +01:00
}
}
None
}
}
2017-10-30 16:08:44 +01:00
impl<'a> Iterator for TokenIterator<'a> {
2020-02-29 13:12:10 +01:00
type Item = (Token, Position);
2017-10-30 16:08:44 +01:00
// TODO - perhaps this could be optimized?
fn next(&mut self) -> Option<Self::Item> {
self.inner_next().map(|x| {
self.last = x.0.clone();
x
})
2017-10-30 16:08:44 +01:00
}
}
2019-09-18 12:21:07 +02:00
pub fn lex(input: &str) -> TokenIterator<'_> {
TokenIterator {
last: Token::LexErr(LERR::Nothing),
2020-02-29 13:12:10 +01:00
pos: Position { line: 1, pos: 0 },
2019-09-18 12:21:07 +02:00
char_stream: input.chars().peekable(),
}
2016-02-29 22:43:45 +01:00
}
2020-02-29 14:18:48 +01:00
fn get_precedence(token: &Token) -> i8 {
2016-02-29 22:43:45 +01:00
match *token {
2017-10-30 16:08:44 +01:00
Token::Equals
| Token::PlusAssign
| Token::MinusAssign
| Token::MultiplyAssign
| Token::DivideAssign
| Token::LeftShiftAssign
| Token::RightShiftAssign
| Token::AndAssign
| Token::OrAssign
| Token::XOrAssign
| Token::ModuloAssign
| Token::PowerOfAssign => 10,
2019-09-18 12:21:07 +02:00
Token::Or | Token::XOr | Token::Pipe => 11,
Token::And | Token::Ampersand => 12,
2017-10-02 23:44:45 +02:00
Token::LessThan
| Token::LessThanEqualsTo
2017-10-02 23:44:45 +02:00
| Token::GreaterThan
| Token::GreaterThanEqualsTo
| Token::EqualsTo
| Token::NotEqualsTo => 15,
2019-09-18 12:21:07 +02:00
Token::Plus | Token::Minus => 20,
Token::Divide | Token::Multiply | Token::PowerOf => 40,
Token::LeftShift | Token::RightShift => 50,
Token::Modulo => 60,
Token::Period => 100,
_ => -1,
2016-02-29 22:43:45 +01:00
}
}
fn parse_paren_expr<'a>(input: &mut Peekable<TokenIterator<'a>>) -> Result<Expr, ParseError> {
match input.peek() {
2020-02-29 13:12:10 +01:00
Some((Token::RightParen, _)) => {
input.next();
return Ok(Expr::Unit);
}
_ => (),
}
2019-09-18 12:21:07 +02:00
let expr = parse_expr(input)?;
2016-02-29 22:43:45 +01:00
match input.next() {
2020-02-29 13:12:10 +01:00
Some((Token::RightParen, _)) => Ok(expr),
_ => Err(ParseError(PERR::MissingRightParen, Position::eof())),
2016-02-29 22:43:45 +01:00
}
}
2019-09-18 12:21:07 +02:00
fn parse_call_expr<'a>(
id: String,
input: &mut Peekable<TokenIterator<'a>>,
) -> Result<Expr, ParseError> {
2016-02-29 22:43:45 +01:00
let mut args = Vec::new();
2017-10-28 05:30:12 +02:00
2020-02-29 13:12:10 +01:00
if let Some(&(Token::RightParen, _)) = input.peek() {
2017-10-02 23:44:45 +02:00
input.next();
return Ok(Expr::FunctionCall(id, args));
2016-02-29 22:43:45 +01:00
}
loop {
args.push(parse_expr(input)?);
2016-02-29 22:43:45 +01:00
match input.peek() {
2020-02-29 13:12:10 +01:00
Some(&(Token::RightParen, _)) => {
input.next();
return Ok(Expr::FunctionCall(id, args));
}
2020-02-29 13:12:10 +01:00
Some(&(Token::Comma, _)) => (),
Some(&(_, pos)) => return Err(ParseError(PERR::MalformedCallExpr, pos)),
None => return Err(ParseError(PERR::MalformedCallExpr, Position::eof())),
2016-02-29 22:43:45 +01:00
}
input.next();
}
}
2019-09-18 12:21:07 +02:00
fn parse_index_expr<'a>(
id: String,
input: &mut Peekable<TokenIterator<'a>>,
) -> Result<Expr, ParseError> {
match parse_expr(input) {
Ok(idx) => match input.peek() {
2020-02-29 13:12:10 +01:00
Some(&(Token::RightBracket, _)) => {
2016-03-26 18:46:28 +01:00
input.next();
return Ok(Expr::Index(id, Box::new(idx)));
}
2020-02-29 13:12:10 +01:00
Some(&(_, pos)) => return Err(ParseError(PERR::MalformedIndexExpr, pos)),
None => return Err(ParseError(PERR::MalformedIndexExpr, Position::eof())),
},
Err(mut err) => {
err.0 = PERR::MalformedIndexExpr;
return Err(err);
2016-03-26 18:46:28 +01:00
}
}
}
2019-09-18 12:21:07 +02:00
fn parse_ident_expr<'a>(
id: String,
input: &mut Peekable<TokenIterator<'a>>,
) -> Result<Expr, ParseError> {
2016-03-26 18:46:28 +01:00
match input.peek() {
2020-02-29 13:12:10 +01:00
Some(&(Token::LeftParen, _)) => {
input.next();
parse_call_expr(id, input)
}
2020-02-29 13:12:10 +01:00
Some(&(Token::LeftBracket, _)) => {
input.next();
parse_index_expr(id, input)
}
2017-10-02 23:44:45 +02:00
_ => Ok(Expr::Identifier(id)),
2016-03-26 18:46:28 +01:00
}
}
fn parse_array_expr<'a>(input: &mut Peekable<TokenIterator<'a>>) -> Result<Expr, ParseError> {
let mut arr = Vec::new();
let skip_contents = match input.peek() {
2020-02-29 13:12:10 +01:00
Some(&(Token::RightBracket, _)) => true,
_ => false,
2016-03-26 18:46:28 +01:00
};
if !skip_contents {
while let Some(_) = input.peek() {
2019-09-18 12:21:07 +02:00
arr.push(parse_expr(input)?);
2020-02-29 13:12:10 +01:00
if let Some(&(Token::Comma, _)) = input.peek() {
2017-10-02 23:44:45 +02:00
input.next();
2016-03-26 18:46:28 +01:00
}
2020-02-29 13:12:10 +01:00
if let Some(&(Token::RightBracket, _)) = input.peek() {
2019-09-18 12:21:07 +02:00
break;
}
}
2016-03-26 18:46:28 +01:00
}
match input.peek() {
2020-02-29 13:12:10 +01:00
Some(&(Token::RightBracket, _)) => {
input.next();
2017-10-02 23:44:45 +02:00
Ok(Expr::Array(arr))
}
2020-02-29 13:12:10 +01:00
Some(&(_, pos)) => Err(ParseError(PERR::MissingRightBracket, pos)),
None => Err(ParseError(PERR::MissingRightBracket, Position::eof())),
2016-03-26 18:46:28 +01:00
}
}
2016-02-29 22:43:45 +01:00
fn parse_primary<'a>(input: &mut Peekable<TokenIterator<'a>>) -> Result<Expr, ParseError> {
match input.next() {
2020-02-29 13:12:10 +01:00
Some((token, pos)) => match token {
Token::IntegerConstant(x) => Ok(Expr::IntegerConstant(x)),
Token::FloatConstant(x) => Ok(Expr::FloatConstant(x)),
Token::StringConst(s) => Ok(Expr::StringConstant(s)),
Token::CharConstant(c) => Ok(Expr::CharConstant(c)),
Token::Identifier(s) => parse_ident_expr(s, input),
Token::LeftParen => parse_paren_expr(input),
Token::LeftBracket => parse_array_expr(input),
Token::True => Ok(Expr::True),
Token::False => Ok(Expr::False),
2020-02-29 13:12:10 +01:00
Token::LexErr(le) => Err(ParseError(PERR::BadInput(le.to_string()), pos)),
_ => Err(ParseError(
PERR::BadInput(format!("Unexpected {:?} token", token)),
pos,
)),
},
2020-02-29 13:12:10 +01:00
None => Err(ParseError(PERR::InputPastEndOfFile, Position::eof())),
2016-02-29 22:43:45 +01:00
}
}
2017-10-30 16:08:44 +01:00
fn parse_unary<'a>(input: &mut Peekable<TokenIterator<'a>>) -> Result<Expr, ParseError> {
let token = match input.peek() {
2020-02-29 13:12:10 +01:00
Some((tok, _)) => tok.clone(),
None => return Err(ParseError(PERR::InputPastEndOfFile, Position::eof())),
2017-10-30 16:08:44 +01:00
};
match token {
2019-09-18 12:21:07 +02:00
Token::UnaryMinus => {
input.next();
2020-02-29 13:12:10 +01:00
Ok(Expr::FunctionCall("-".into(), vec![parse_primary(input)?]))
2019-09-18 12:21:07 +02:00
}
Token::UnaryPlus => {
input.next();
parse_primary(input)
}
Token::Bang => {
input.next();
2020-02-29 13:12:10 +01:00
Ok(Expr::FunctionCall("!".into(), vec![parse_primary(input)?]))
2019-09-18 12:21:07 +02:00
}
_ => parse_primary(input),
2017-10-30 16:08:44 +01:00
}
}
2019-09-18 12:21:07 +02:00
fn parse_binop<'a>(
input: &mut Peekable<TokenIterator<'a>>,
2020-02-29 14:18:48 +01:00
prec: i8,
2019-09-18 12:21:07 +02:00
lhs: Expr,
) -> Result<Expr, ParseError> {
2016-02-29 22:43:45 +01:00
let mut lhs_curr = lhs;
loop {
let mut curr_prec = -1;
2020-02-29 13:12:10 +01:00
if let Some(&(ref curr_op, _)) = input.peek() {
2016-02-29 22:43:45 +01:00
curr_prec = get_precedence(curr_op);
}
if curr_prec < prec {
return Ok(lhs_curr);
}
2020-02-29 13:12:10 +01:00
if let Some((op_token, pos)) = input.next() {
2019-09-18 12:21:07 +02:00
let mut rhs = parse_unary(input)?;
2016-02-29 22:43:45 +01:00
let mut next_prec = -1;
2020-02-29 13:12:10 +01:00
if let Some(&(ref next_op, _)) = input.peek() {
2016-02-29 22:43:45 +01:00
next_prec = get_precedence(next_op);
}
if curr_prec < next_prec {
2019-09-18 12:21:07 +02:00
rhs = parse_binop(input, curr_prec + 1, rhs)?;
} else if curr_prec >= 100 {
// Always bind right to left for precedence over 100
2019-09-18 12:21:07 +02:00
rhs = parse_binop(input, curr_prec, rhs)?;
}
2016-02-29 22:43:45 +01:00
lhs_curr = match op_token {
2020-02-29 13:12:10 +01:00
Token::Plus => Expr::FunctionCall("+".into(), vec![lhs_curr, rhs]),
Token::Minus => Expr::FunctionCall("-".into(), vec![lhs_curr, rhs]),
Token::Multiply => Expr::FunctionCall("*".into(), vec![lhs_curr, rhs]),
Token::Divide => Expr::FunctionCall("/".into(), vec![lhs_curr, rhs]),
2016-02-29 22:43:45 +01:00
Token::Equals => Expr::Assignment(Box::new(lhs_curr), Box::new(rhs)),
2019-09-18 12:21:07 +02:00
Token::PlusAssign => {
2017-10-30 16:08:44 +01:00
let lhs_copy = lhs_curr.clone();
Expr::Assignment(
Box::new(lhs_curr),
2020-02-29 13:12:10 +01:00
Box::new(Expr::FunctionCall("+".into(), vec![lhs_copy, rhs])),
2017-10-30 16:08:44 +01:00
)
2019-09-18 12:21:07 +02:00
}
Token::MinusAssign => {
2017-10-30 16:08:44 +01:00
let lhs_copy = lhs_curr.clone();
Expr::Assignment(
Box::new(lhs_curr),
2020-02-29 13:12:10 +01:00
Box::new(Expr::FunctionCall("-".into(), vec![lhs_copy, rhs])),
2017-10-30 16:08:44 +01:00
)
2019-09-18 12:21:07 +02:00
}
Token::Period => Expr::Dot(Box::new(lhs_curr), Box::new(rhs)),
2020-02-29 13:12:10 +01:00
Token::EqualsTo => Expr::FunctionCall("==".into(), vec![lhs_curr, rhs]),
Token::NotEqualsTo => Expr::FunctionCall("!=".into(), vec![lhs_curr, rhs]),
Token::LessThan => Expr::FunctionCall("<".into(), vec![lhs_curr, rhs]),
Token::LessThanEqualsTo => Expr::FunctionCall("<=".into(), vec![lhs_curr, rhs]),
Token::GreaterThan => Expr::FunctionCall(">".into(), vec![lhs_curr, rhs]),
Token::GreaterThanEqualsTo => Expr::FunctionCall(">=".into(), vec![lhs_curr, rhs]),
2020-03-02 05:08:03 +01:00
Token::Or => Expr::Or(Box::new(lhs_curr), Box::new(rhs)),
Token::And => Expr::And(Box::new(lhs_curr), Box::new(rhs)),
2020-02-29 13:12:10 +01:00
Token::XOr => Expr::FunctionCall("^".into(), vec![lhs_curr, rhs]),
Token::OrAssign => {
let lhs_copy = lhs_curr.clone();
Expr::Assignment(
Box::new(lhs_curr),
2020-02-29 13:12:10 +01:00
Box::new(Expr::FunctionCall("|".into(), vec![lhs_copy, rhs])),
)
2019-09-18 12:21:07 +02:00
}
Token::AndAssign => {
let lhs_copy = lhs_curr.clone();
Expr::Assignment(
Box::new(lhs_curr),
2020-02-29 13:12:10 +01:00
Box::new(Expr::FunctionCall("&".into(), vec![lhs_copy, rhs])),
)
2019-09-18 12:21:07 +02:00
}
Token::XOrAssign => {
let lhs_copy = lhs_curr.clone();
Expr::Assignment(
Box::new(lhs_curr),
2020-02-29 13:12:10 +01:00
Box::new(Expr::FunctionCall("^".into(), vec![lhs_copy, rhs])),
)
2019-09-18 12:21:07 +02:00
}
Token::MultiplyAssign => {
let lhs_copy = lhs_curr.clone();
Expr::Assignment(
Box::new(lhs_curr),
2020-02-29 13:12:10 +01:00
Box::new(Expr::FunctionCall("*".into(), vec![lhs_copy, rhs])),
)
2019-09-18 12:21:07 +02:00
}
Token::DivideAssign => {
let lhs_copy = lhs_curr.clone();
Expr::Assignment(
Box::new(lhs_curr),
2020-02-29 13:12:10 +01:00
Box::new(Expr::FunctionCall("/".into(), vec![lhs_copy, rhs])),
)
2019-09-18 12:21:07 +02:00
}
2020-02-29 13:12:10 +01:00
Token::Pipe => Expr::FunctionCall("|".into(), vec![lhs_curr, rhs]),
Token::LeftShift => Expr::FunctionCall("<<".into(), vec![lhs_curr, rhs]),
Token::RightShift => Expr::FunctionCall(">>".into(), vec![lhs_curr, rhs]),
Token::LeftShiftAssign => {
let lhs_copy = lhs_curr.clone();
Expr::Assignment(
Box::new(lhs_curr),
2020-02-29 13:12:10 +01:00
Box::new(Expr::FunctionCall("<<".into(), vec![lhs_copy, rhs])),
)
2019-09-18 12:21:07 +02:00
}
Token::RightShiftAssign => {
let lhs_copy = lhs_curr.clone();
Expr::Assignment(
Box::new(lhs_curr),
2020-02-29 13:12:10 +01:00
Box::new(Expr::FunctionCall(">>".into(), vec![lhs_copy, rhs])),
)
2019-09-18 12:21:07 +02:00
}
2020-02-29 13:12:10 +01:00
Token::Ampersand => Expr::FunctionCall("&".into(), vec![lhs_curr, rhs]),
Token::Modulo => Expr::FunctionCall("%".into(), vec![lhs_curr, rhs]),
Token::ModuloAssign => {
let lhs_copy = lhs_curr.clone();
Expr::Assignment(
Box::new(lhs_curr),
2020-02-29 13:12:10 +01:00
Box::new(Expr::FunctionCall("%".into(), vec![lhs_copy, rhs])),
)
2019-09-18 12:21:07 +02:00
}
2020-02-29 13:12:10 +01:00
Token::PowerOf => Expr::FunctionCall("~".into(), vec![lhs_curr, rhs]),
Token::PowerOfAssign => {
2017-11-24 08:56:22 +01:00
let lhs_copy = lhs_curr.clone();
Expr::Assignment(
Box::new(lhs_curr),
2020-02-29 13:12:10 +01:00
Box::new(Expr::FunctionCall("~".into(), vec![lhs_copy, rhs])),
2017-11-24 08:56:22 +01:00
)
2019-09-18 12:21:07 +02:00
}
2020-02-29 13:12:10 +01:00
_ => return Err(ParseError(PERR::UnknownOperator, pos)),
2016-02-29 22:43:45 +01:00
};
}
}
}
fn parse_expr<'a>(input: &mut Peekable<TokenIterator<'a>>) -> Result<Expr, ParseError> {
let lhs = parse_unary(input)?;
parse_binop(input, 0, lhs)
2016-02-29 22:43:45 +01:00
}
fn parse_if<'a>(input: &mut Peekable<TokenIterator<'a>>) -> Result<Stmt, ParseError> {
input.next();
2019-09-18 12:21:07 +02:00
let guard = parse_expr(input)?;
let body = parse_block(input)?;
2016-02-29 22:43:45 +01:00
2016-03-03 14:20:55 +01:00
match input.peek() {
2020-02-29 13:12:10 +01:00
Some(&(Token::Else, _)) => {
2016-03-03 14:20:55 +01:00
input.next();
2019-09-18 12:21:07 +02:00
let else_body = parse_block(input)?;
Ok(Stmt::IfElse(
Box::new(guard),
Box::new(body),
Box::new(else_body),
))
2016-03-03 14:20:55 +01:00
}
_ => Ok(Stmt::If(Box::new(guard), Box::new(body))),
2016-03-03 14:20:55 +01:00
}
2016-02-29 22:43:45 +01:00
}
fn parse_while<'a>(input: &mut Peekable<TokenIterator<'a>>) -> Result<Stmt, ParseError> {
input.next();
2019-09-18 12:21:07 +02:00
let guard = parse_expr(input)?;
let body = parse_block(input)?;
2016-02-29 22:43:45 +01:00
Ok(Stmt::While(Box::new(guard), Box::new(body)))
}
2017-10-30 16:08:44 +01:00
fn parse_loop<'a>(input: &mut Peekable<TokenIterator<'a>>) -> Result<Stmt, ParseError> {
input.next();
2019-09-18 12:21:07 +02:00
let body = parse_block(input)?;
2017-10-30 16:08:44 +01:00
Ok(Stmt::Loop(Box::new(body)))
}
fn parse_for<'a>(input: &mut Peekable<TokenIterator<'a>>) -> Result<Stmt, ParseError> {
input.next();
let name = match input.next() {
2020-02-29 13:12:10 +01:00
Some((Token::Identifier(s), _)) => s,
Some((token, pos)) => return Err(ParseError(PERR::VarExpectsIdentifier(token), pos)),
None => {
return Err(ParseError(
PERR::VarExpectsIdentifier(Token::None),
Position::eof(),
))
}
};
match input.next() {
2020-02-29 13:12:10 +01:00
Some((Token::In, _)) => {}
Some((token, pos)) => return Err(ParseError(PERR::VarExpectsIdentifier(token), pos)),
None => {
return Err(ParseError(
PERR::VarExpectsIdentifier(Token::None),
Position::eof(),
))
}
}
let expr = parse_expr(input)?;
let body = parse_block(input)?;
Ok(Stmt::For(name, Box::new(expr), Box::new(body)))
}
2016-02-29 22:43:45 +01:00
fn parse_var<'a>(input: &mut Peekable<TokenIterator<'a>>) -> Result<Stmt, ParseError> {
input.next();
let name = match input.next() {
2020-02-29 13:12:10 +01:00
Some((Token::Identifier(s), _)) => s,
Some((token, pos)) => return Err(ParseError(PERR::VarExpectsIdentifier(token), pos)),
None => {
return Err(ParseError(
PERR::VarExpectsIdentifier(Token::None),
Position::eof(),
))
}
2016-02-29 22:43:45 +01:00
};
match input.peek() {
2020-02-29 13:12:10 +01:00
Some(&(Token::Equals, _)) => {
2016-02-29 22:43:45 +01:00
input.next();
2019-09-18 12:21:07 +02:00
let initializer = parse_expr(input)?;
Ok(Stmt::Let(name, Some(Box::new(initializer))))
2016-02-29 22:43:45 +01:00
}
_ => Ok(Stmt::Let(name, None)),
2016-02-29 22:43:45 +01:00
}
}
fn parse_block<'a>(input: &mut Peekable<TokenIterator<'a>>) -> Result<Stmt, ParseError> {
match input.peek() {
2020-02-29 13:12:10 +01:00
Some(&(Token::LeftBrace, _)) => (),
Some(&(_, pos)) => return Err(ParseError(PERR::MissingLeftBrace, pos)),
None => return Err(ParseError(PERR::MissingLeftBrace, Position::eof())),
2016-02-29 22:43:45 +01:00
}
input.next();
let mut stmts = Vec::new();
let skip_body = match input.peek() {
2020-02-29 13:12:10 +01:00
Some(&(Token::RightBrace, _)) => true,
_ => false,
};
if !skip_body {
while let Some(_) = input.peek() {
2019-09-18 12:21:07 +02:00
stmts.push(parse_stmt(input)?);
2020-02-29 13:12:10 +01:00
if let Some(&(Token::SemiColon, _)) = input.peek() {
2017-10-02 23:44:45 +02:00
input.next();
}
2017-10-02 23:44:45 +02:00
2020-02-29 13:12:10 +01:00
if let Some(&(Token::RightBrace, _)) = input.peek() {
2019-09-18 12:21:07 +02:00
break;
}
}
}
2016-02-29 22:43:45 +01:00
match input.peek() {
2020-02-29 13:12:10 +01:00
Some(&(Token::RightBrace, _)) => {
input.next();
2017-10-02 23:44:45 +02:00
Ok(Stmt::Block(stmts))
}
2020-02-29 13:12:10 +01:00
Some(&(_, pos)) => Err(ParseError(PERR::MissingRightBrace, pos)),
None => Err(ParseError(PERR::MissingRightBrace, Position::eof())),
2016-02-29 22:43:45 +01:00
}
}
fn parse_expr_stmt<'a>(input: &mut Peekable<TokenIterator<'a>>) -> Result<Stmt, ParseError> {
Ok(Stmt::Expr(Box::new(parse_expr(input)?)))
2016-02-29 22:43:45 +01:00
}
fn parse_stmt<'a>(input: &mut Peekable<TokenIterator<'a>>) -> Result<Stmt, ParseError> {
match input.peek() {
2020-02-29 13:12:10 +01:00
Some(&(Token::If, _)) => parse_if(input),
Some(&(Token::While, _)) => parse_while(input),
Some(&(Token::Loop, _)) => parse_loop(input),
Some(&(Token::For, _)) => parse_for(input),
Some(&(Token::Break, _)) => {
input.next();
Ok(Stmt::Break)
}
2020-02-29 13:12:10 +01:00
Some(&(Token::Return, _)) => {
input.next();
match input.peek() {
2020-02-29 13:12:10 +01:00
Some(&(Token::SemiColon, _)) => Ok(Stmt::Return),
_ => {
2019-09-18 12:21:07 +02:00
let ret = parse_expr(input)?;
Ok(Stmt::ReturnWithVal(Box::new(ret)))
}
}
}
2020-02-29 13:12:10 +01:00
Some(&(Token::LeftBrace, _)) => parse_block(input),
Some(&(Token::Let, _)) => parse_var(input),
_ => parse_expr_stmt(input),
2016-02-29 22:43:45 +01:00
}
}
fn parse_fn<'a>(input: &mut Peekable<TokenIterator<'a>>) -> Result<FnDef, ParseError> {
input.next();
2016-02-29 22:43:45 +01:00
let name = match input.next() {
2020-02-29 13:12:10 +01:00
Some((Token::Identifier(s), _)) => s,
Some((token, pos)) => return Err(ParseError(PERR::FnMissingName(token), pos)),
None => {
return Err(ParseError(
PERR::FnMissingName(Token::None),
Position::eof(),
))
}
};
match input.peek() {
2020-02-29 13:12:10 +01:00
Some(&(Token::LeftParen, _)) => {
input.next();
}
2020-02-29 13:12:10 +01:00
Some(&(_, pos)) => return Err(ParseError(PERR::FnMissingParams, pos)),
None => return Err(ParseError(PERR::FnMissingParams, Position::eof())),
}
let mut params = Vec::new();
let skip_params = match input.peek() {
2020-02-29 13:12:10 +01:00
Some(&(Token::RightParen, _)) => {
input.next();
true
}
_ => false,
};
if !skip_params {
loop {
match input.next() {
2020-02-29 13:12:10 +01:00
Some((Token::RightParen, _)) => break,
Some((Token::Comma, _)) => (),
Some((Token::Identifier(s), _)) => {
params.push(s);
}
2020-02-29 13:12:10 +01:00
Some((_, pos)) => return Err(ParseError(PERR::MalformedCallExpr, pos)),
None => return Err(ParseError(PERR::MalformedCallExpr, Position::eof())),
}
}
2016-02-29 22:43:45 +01:00
}
2017-12-21 12:28:59 +01:00
let body = parse_block(input)?;
Ok(FnDef {
name: name,
params: params,
body: Box::new(body),
})
}
fn parse_top_level<'a>(input: &mut Peekable<TokenIterator<'a>>) -> Result<AST, ParseError> {
let mut stmts = Vec::new();
let mut fndefs = Vec::new();
2016-02-29 22:43:45 +01:00
while let Some(_) = input.peek() {
match input.peek() {
2020-02-29 13:12:10 +01:00
Some(&(Token::Fn, _)) => fndefs.push(parse_fn(input)?),
2019-09-18 12:21:07 +02:00
_ => stmts.push(parse_stmt(input)?),
2016-02-29 22:43:45 +01:00
}
2020-02-29 13:12:10 +01:00
if let Some(&(Token::SemiColon, _)) = input.peek() {
2017-10-02 23:44:45 +02:00
input.next();
2016-02-29 22:43:45 +01:00
}
}
Ok(AST(stmts, fndefs))
2016-02-29 22:43:45 +01:00
}
pub fn parse<'a>(input: &mut Peekable<TokenIterator<'a>>) -> Result<AST, ParseError> {
parse_top_level(input)
2016-02-29 22:43:45 +01:00
}