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
use cssparser::{BasicParseErrorKind, ParseError, ParseErrorKind};
use std::{
borrow::Cow,
error::Error,
fmt,
fmt::{Display, Formatter},
io,
};
#[derive(Debug)]
pub enum InlineError {
MissingStyleSheet {
path: String,
},
IO(io::Error),
Network(attohttpc::Error),
ParseError(Cow<'static, str>),
}
impl From<io::Error> for InlineError {
fn from(error: io::Error) -> Self {
Self::IO(error)
}
}
impl From<attohttpc::Error> for InlineError {
fn from(error: attohttpc::Error) -> Self {
Self::Network(error)
}
}
impl Error for InlineError {}
impl Display for InlineError {
fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
match self {
Self::IO(error) => error.fmt(f),
Self::Network(error) => error.fmt(f),
Self::ParseError(error) => f.write_str(error),
Self::MissingStyleSheet { path } => {
f.write_fmt(format_args!("Missing stylesheet file: {}", path))
}
}
}
}
impl From<(ParseError<'_, ()>, &str)> for InlineError {
fn from(error: (ParseError<'_, ()>, &str)) -> Self {
return match error.0.kind {
ParseErrorKind::Basic(kind) => match kind {
BasicParseErrorKind::UnexpectedToken(token) => {
Self::ParseError(Cow::Owned(format!("Unexpected token: {:?}", token)))
}
BasicParseErrorKind::EndOfInput => Self::ParseError(Cow::Borrowed("End of input")),
BasicParseErrorKind::AtRuleInvalid(value) => {
Self::ParseError(Cow::Owned(format!("Invalid @ rule: {}", value)))
}
BasicParseErrorKind::AtRuleBodyInvalid => {
Self::ParseError(Cow::Borrowed("Invalid @ rule body"))
}
BasicParseErrorKind::QualifiedRuleInvalid => {
Self::ParseError(Cow::Borrowed("Invalid qualified rule"))
}
},
ParseErrorKind::Custom(_) => Self::ParseError(Cow::Borrowed("Unknown error")),
};
}
}