forked from rust-scraper/scraper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutils.rs
91 lines (83 loc) · 2.8 KB
/
utils.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
use cssparser::Token;
pub(crate) fn render_token(token: &Token<'_>) -> String {
// THIS TOOK FOREVER TO IMPLEMENT
match token {
// TODO: Give these guys some better names
Token::Ident(ident) => format!("{}", ident.clone()),
Token::AtKeyword(value) => format!("@{}", value.clone()),
Token::Hash(name) | Token::IDHash(name) => format!("#{}", name.clone()),
Token::QuotedString(value) => format!("\"{}\"", value.clone()),
Token::Number {
has_sign: signed,
value: num,
int_value: _,
}
| Token::Percentage {
has_sign: signed,
unit_value: num,
int_value: _,
} => render_number(*signed, *num, token),
Token::Dimension {
has_sign: signed,
value: num,
int_value: _,
unit,
} => format!("{}{}", render_int(*signed, *num), unit),
Token::WhiteSpace(_) => String::from(" "),
Token::Comment(comment) => format!("/* {} */", comment),
Token::Function(name) => format!("{}()", name.clone()),
Token::BadString(string) => format!("<Bad String {:?}>", string.clone()),
Token::BadUrl(url) => format!("<Bad URL {:?}>", url.clone()),
// Single-character token
sc_token => render_single_char_token(sc_token),
}
}
fn render_single_char_token(token: &Token) -> String {
String::from(match token {
Token::Colon => ":",
Token::Semicolon => ";",
Token::Comma => ",",
Token::IncludeMatch => "~=",
Token::DashMatch => "|=",
Token::PrefixMatch => "^=",
Token::SuffixMatch => "$=",
Token::SubstringMatch => "*=",
Token::CDO => "<!--",
Token::CDC => "-->",
Token::ParenthesisBlock => "<(",
Token::SquareBracketBlock => "<[",
Token::CurlyBracketBlock => "<{",
Token::CloseParenthesis => "<)",
Token::CloseSquareBracket => "<]",
Token::CloseCurlyBracket => "<}",
other => panic!(
"Token {:?} is not supposed to match as a single-character token!",
other
),
})
}
fn render_number(signed: bool, num: f32, token: &Token) -> String {
let num = render_int(signed, num);
match token {
Token::Number { .. } => num,
Token::Percentage { .. } => format!("{}%", num),
_ => panic!("render_number is not supposed to be called on a non-numerical token"),
}
}
fn render_int(signed: bool, num: f32) -> String {
if signed {
render_int_signed(num)
} else {
render_int_unsigned(num)
}
}
fn render_int_signed(num: f32) -> String {
if num > 0.0 {
format!("+{}", num)
} else {
format!("-{}", num)
}
}
fn render_int_unsigned(num: f32) -> String {
format!("{}", num)
}