1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117
use std::fmt; use tokens::TokenValue; use error::{ Error, ExtensionError, At, Location }; #[derive(Clone, Debug)] pub enum Received { Token(TokenValue), EndOfStream, } #[derive(Clone, Debug)] pub enum TemplateError { UnexpectedEndOfTemplate, ExpectedTokenTypeButReceived((TokenValue, Received)), UnexpectedTokenValue(TokenValue), ExpectedOtherTokenValue((TokenValue, TokenValue)), ExpectedArrayElement, ArrayValueMustBeFollowedByComma, ArrayNotClosed, ExpectedHashElement, HashValueMustBeFollowedByComma, InvalidHashKey { unexpected: TokenValue }, HashKeyMustBeFollowedByColon, HashNotClosed, ExpectedNameOrNumber, ListOfArgumentsMustBeginWithParenthesis, ArgumentsMustBeSeparatedByComma, ListOfArgumentsMustCloseWithParenthesis, Unclosed(String), UnclosedComment, UnclosedBlock(String), Unexpected(String), UnexpectedCharacter(String), ParenthesisNotClosed, MustStartWithTagName, DefaultValueForArgumentMustBeConstant, ParameterNameMustBeAString { given: String }, TemplateNotFound(String), CustomError(Box<ExtensionError>), } impl TemplateError { pub fn at(self, line: usize) -> At<TemplateError> { At::new(self, Location::new(line)) } } impl fmt::Display for TemplateError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { match *self { TemplateError::UnexpectedEndOfTemplate => write!(f, "Unexpected end of template"), TemplateError::ExpectedTokenTypeButReceived((ref token, ref received)) => { let (english_name, _) = token.get_english(); match *received { Received::EndOfStream => write!(f, "Expected token \"{}\" but received the end of stream", english_name), Received::Token(ref other) => { let (other_english_name, value) = other.get_english(); match value { Some(value) => write!(f, "Expected \"{}\" but received \"{}\" with value {:?}", english_name, other_english_name, value), None => write!(f, "Expected \"{}\" but received \"{}\"", english_name, other_english_name), } }, } }, TemplateError::ExpectedOtherTokenValue((ref token, ref other)) => { let unexpected_message = format!("{}", TemplateError::UnexpectedTokenValue(token.clone())); let (other_english_name, other_value) = other.get_english(); match other_value { Some(value) => write!(f, "{} (\"{}\" expected with value {:?})", unexpected_message, other_english_name, value), None => write!(f, "{} (\"{}\" expected)", unexpected_message, other_english_name), } }, TemplateError::ExpectedArrayElement => write!(f, "An array element was expected"), TemplateError::ArrayValueMustBeFollowedByComma => write!(f, "An array element must be followed by a comma"), TemplateError::ArrayNotClosed => write!(f, "An opened array is not properly closed"), TemplateError::ExpectedHashElement => write!(f, "A hash element was expected"), TemplateError::HashValueMustBeFollowedByComma => write!(f, "A hash value must be followed by a comma"), TemplateError::InvalidHashKey { ref unexpected } => { let (english_name, value) = unexpected.get_english(); match value { Some(value) => write!(f, "A hash key must be a quoted string, a number, a name, or an expression enclosed in parentheses: unexpected token \"{}\" of value {:?}", english_name, value), None => write!(f, "A hash key must be a quoted string, a number, a name, or an expression enclosed in parentheses: unexpected token \"{}\"", english_name), } }, TemplateError::HashKeyMustBeFollowedByColon => write!(f, "A hash key must be followed by a colon (:)"), TemplateError::HashNotClosed => write!(f, "An opened hash is not properly closed"), TemplateError::ExpectedNameOrNumber => write!(f, "Expected name or number"), TemplateError::ListOfArgumentsMustBeginWithParenthesis => write!(f, "A list of arguments must begin with an opening parenthesis"), TemplateError::ArgumentsMustBeSeparatedByComma => write!(f, "Arguments must be separated by a comma"), TemplateError::ListOfArgumentsMustCloseWithParenthesis => write!(f, "A list of arguments must be closed by a parenthesis"), TemplateError::UnexpectedTokenValue(ref token) => { let (english_name, value) = token.get_english(); match value { Some(value) => write!(f, "Unexpected token \"{}\" of value {:?}", english_name, value), None => write!(f, "Unexpected token \"{}\"", english_name), } }, TemplateError::Unclosed(ref s) => write!(f, "Unclosed \"{}\"", s), TemplateError::UnclosedComment => write!(f, "Unclosed comment"), TemplateError::UnclosedBlock(ref s) => write!(f, "Unexpected end of file: Unclosed \"{}\" block", s), TemplateError::Unexpected(ref s) => write!(f, "Unexpected \"{}\"", s), TemplateError::UnexpectedCharacter(ref s) => write!(f, "Unexpected character \"{}\"", s), TemplateError::ParenthesisNotClosed => write!(f, "An opened parenthesis is not properly closed"), TemplateError::MustStartWithTagName => write!(f, "A block must start with a tag name"), TemplateError::DefaultValueForArgumentMustBeConstant => write!(f, "A default value for an argument must be a constant (a boolean, a string, a number, or an array)."), TemplateError::ParameterNameMustBeAString { ref given } => write!(f, "A parameter name must be a string, \"{}\" given", given), TemplateError::TemplateNotFound(ref name) => write!(f, "Template \"{}\" was not found", name), TemplateError::CustomError(ref e) => write!(f, "{}", e), } } } impl From<At<TemplateError>> for Error { fn from(inner: At<TemplateError>) -> Error { Error::Template(inner) } }