use std::fmt::{ Display, Formatter };
use std::fmt::Error as FormatError;
use std::num::ParseFloatError;
use read_token::ParseStringError;
use std::rc::Rc;
use {
Type,
DebugId
};
#[derive(Debug, PartialEq)]
pub enum ParseError {
NotSupported,
ExpectedWhitespace(DebugId),
ExpectedSomething(DebugId),
ExpectedNumber(DebugId),
ParseFloatError(ParseFloatError, DebugId),
ExpectedText(DebugId),
EmptyTextNotAllowed(DebugId),
ParseStringError(ParseStringError, DebugId),
ExpectedToken(Rc<String>, DebugId),
InvalidRule(&'static str, DebugId),
ExpectedNode(Vec<String>),
ExpectedPropertyType(Type),
ExpectedMoreProperties(Vec<String>),
}
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::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!(fmt.write_fmt(format_args!(
"#{}, 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::ExpectedNode(ref nodes) => {
try!(fmt.write_str("Expected nodes: "));
let mut tail = false;
for node in nodes {
if tail {
try!(fmt.write_str(", "));
} else {
tail = true;
}
try!(fmt.write_str(&node));
}
}
&ParseError::ExpectedPropertyType(ref ty) =>
try!(fmt.write_fmt(format_args!(
"Expected property type: {}", ty
))),
&ParseError::ExpectedMoreProperties(ref props) => {
try!(fmt.write_str("Expected more properties: "));
let mut tail = false;
for prop in props {
if tail {
try!(fmt.write_str(", "));
} else {
tail = true;
}
try!(fmt.write_str(prop));
}
}
&ParseError::InvalidRule(msg, debug_id) =>
try!(fmt.write_fmt(format_args!(
"#{}, Invalid rule: {}", debug_id, msg
))),
}
Ok(())
}
}