svgtypes/error.rs
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
/// List of all errors.
#[derive(Debug, PartialEq, Eq)]
pub enum Error {
/// An input data ended earlier than expected.
///
/// Should only appear on invalid input data.
/// Errors in a valid XML should be handled by errors below.
UnexpectedEndOfStream,
/// An input text contains unknown data.
UnexpectedData(usize),
/// A provided string doesn't have a valid data.
///
/// For example, if we try to parse a color form `zzz`
/// string - we will get this error.
/// But if we try to parse a number list like `1.2 zzz`,
/// then we will get `InvalidNumber`, because at least some data is valid.
InvalidValue,
/// An invalid ident.
///
/// CSS idents have certain rules with regard to the characters they may contain.
/// For example, they may not start with a number. If an invalid ident is encountered,
/// this error will be returned.
InvalidIdent,
/// An invalid/unexpected character.
///
/// The first byte is an actual one, others - expected.
///
/// We are using a single value to reduce the struct size.
InvalidChar(Vec<u8>, usize),
/// An unexpected character instead of an XML space.
///
/// The first string is an actual one, others - expected.
///
/// We are using a single value to reduce the struct size.
InvalidString(Vec<String>, usize),
/// An invalid number.
InvalidNumber(usize),
}
impl std::fmt::Display for Error {
fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
match *self {
Error::UnexpectedEndOfStream => {
write!(f, "unexpected end of stream")
}
Error::UnexpectedData(pos) => {
write!(f, "unexpected data at position {}", pos)
}
Error::InvalidValue => {
write!(f, "invalid value")
}
Error::InvalidIdent => {
write!(f, "invalid ident")
}
Error::InvalidChar(ref chars, pos) => {
// Vec<u8> -> Vec<String>
let list: Vec<String> = chars
.iter()
.skip(1)
.map(|c| String::from_utf8(vec![*c]).unwrap())
.collect();
write!(
f,
"expected '{}' not '{}' at position {}",
list.join("', '"),
chars[0] as char,
pos
)
}
Error::InvalidString(ref strings, pos) => {
write!(
f,
"expected '{}' not '{}' at position {}",
strings[1..].join("', '"),
strings[0],
pos
)
}
Error::InvalidNumber(pos) => {
write!(f, "invalid number at position {}", pos)
}
}
}
}
impl std::error::Error for Error {
fn description(&self) -> &str {
"an SVG data parsing error"
}
}