use std::fmt::{ Display, Formatter };
use std::fmt::Error as FormatError;
use std::num::ParseFloatError;
use read_token::ParseStringError;
use std::rc::Rc;
use DebugId;
#[derive(Debug, PartialEq)]
pub enum ParseError {
NotSupported,
ExpectedWhitespace(DebugId),
ExpectedNewLine(DebugId),
ExpectedSomething(DebugId),
ExpectedNumber(DebugId),
ParseFloatError(ParseFloatError, DebugId),
ExpectedText(DebugId),
EmptyTextNotAllowed(DebugId),
ParseStringError(ParseStringError, DebugId),
ExpectedToken(Rc<String>, DebugId),
InvalidRule(&'static str, DebugId),
}
impl Display for ParseError {
fn fmt(&self, fmt: &mut Formatter) -> Result<(), FormatError> {
match self {
&ParseError::NotSupported =>
try!(fmt.write_str("This feature is not supported")),
&ParseError::ExpectedWhitespace(debug_id) =>
try!(write!(fmt, "#{}, Expected whitespace",
debug_id)),
&ParseError::ExpectedNewLine(debug_id) =>
try!(write!(fmt, "#{}, Expected new line",
debug_id)),
&ParseError::ExpectedSomething(debug_id) =>
try!(write!(fmt, "#{}, Expected something",
debug_id)),
&ParseError::ExpectedNumber(debug_id) =>
try!(write!(fmt, "#{}, Expected number", debug_id)),
&ParseError::ParseFloatError(ref err, debug_id) =>
try!(write!(fmt, "#{}, Invalid number format: {}",
debug_id, err)),
&ParseError::ExpectedToken(ref token, debug_id) =>
try!(write!(fmt, "#{}, Expected: `{}`", debug_id, token)),
&ParseError::ExpectedText(debug_id) =>
try!(write!(fmt, "#{}, Expected text", debug_id)),
&ParseError::EmptyTextNotAllowed(debug_id) =>
try!(write!(fmt, "#{}, Empty text not allowed", debug_id)),
&ParseError::ParseStringError(err, debug_id) =>
try!(write!(fmt, "#{}, Invalid string format: {}",
debug_id, err)),
&ParseError::InvalidRule(msg, debug_id) =>
try!(write!(fmt, "#{}, Invalid rule: {}", debug_id, msg)),
}
Ok(())
}
}