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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
use std::str::FromStr;
use xmlparser::{
XmlByteExt,
};
use error::{
Result,
};
use {
Error,
ErrorKind,
LengthUnit,
Stream,
StreamExt,
StrSpan,
};
use streamext::bound;
use colors::rgb_color_from_name;
#[derive(Copy, Clone, PartialEq, Debug)]
pub struct Color {
#[allow(missing_docs)]
pub red: u8,
#[allow(missing_docs)]
pub green: u8,
#[allow(missing_docs)]
pub blue: u8,
}
impl Color {
#[inline]
pub fn new(red: u8, green: u8, blue: u8) -> Color {
Color {
red: red,
green: green,
blue: blue,
}
}
pub fn from_span(span: StrSpan) -> Result<Color> {
let mut s = Stream::from_span(span);
s.skip_spaces();
let start = s.pos();
let mut color = Color::new(0, 0, 0);
if s.curr_byte()? == b'#' {
s.advance(1);
let color_str = s.consume_bytes(|_, c| c.is_xml_hex_digit()).to_str().as_bytes();
match color_str.len() {
6 => {
color.red = hex_pair(color_str[0], color_str[1]);
color.green = hex_pair(color_str[2], color_str[3]);
color.blue = hex_pair(color_str[4], color_str[5]);
}
3 => {
color.red = short_hex(color_str[0]);
color.green = short_hex(color_str[1]);
color.blue = short_hex(color_str[2]);
}
_ => {
return Err(ErrorKind::InvalidColor(s.gen_error_pos_from(start)).into());
}
}
} else if s.starts_with(b"rgb(") {
s.advance(4);
let l = s.parse_list_length()?;
if l.unit == LengthUnit::Percent {
fn from_persent(v: f64) -> u8 {
let d = 255.0 / 100.0;
let n = (v * d).round() as i32;
bound(0, n, 255) as u8
}
color.red = from_persent(l.num);
color.green = from_persent(s.parse_list_length()?.num);
color.blue = from_persent(s.parse_list_length()?.num);
} else {
color.red = bound(0, l.num as i32, 255) as u8;
color.green = bound(0, s.parse_list_integer()?, 255) as u8;
color.blue = bound(0, s.parse_list_integer()?, 255) as u8;
}
s.skip_spaces();
s.consume_byte(b')')?;
} else {
let name = s.consume_name()?;
match rgb_color_from_name(name.to_str()) {
Some(c) => {
color = c;
}
None => {
return Err(ErrorKind::InvalidColor(s.gen_error_pos_from(start)).into());
}
}
}
s.skip_spaces();
if !s.at_end() {
return Err(ErrorKind::InvalidColor(s.gen_error_pos()).into());
}
Ok(color)
}
}
impl FromStr for Color {
type Err = Error;
fn from_str(text: &str) -> Result<Self> {
Color::from_span(StrSpan::from_str(text))
}
}
#[inline]
fn from_hex(c: u8) -> u8 {
match c {
b'0'...b'9' => c - b'0',
b'a'...b'f' => c - b'a' + 10,
b'A'...b'F' => c - b'A' + 10,
_ => b'0',
}
}
#[inline]
fn short_hex(c: u8) -> u8 {
let h = from_hex(c);
(h << 4) | h
}
#[inline]
fn hex_pair(c1: u8, c2: u8) -> u8 {
let h1 = from_hex(c1);
let h2 = from_hex(c2);
(h1 << 4) | h2
}