-
Notifications
You must be signed in to change notification settings - Fork 0
/
lib.rs
358 lines (319 loc) · 10.9 KB
/
lib.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
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
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
#[cfg(feature = "regex")]
use regex::Regex;
#[cfg(feature = "serde")]
use serde::{Deserialize, Serialize};
#[cfg(feature = "regex")]
use thiserror::Error;
use std::fmt::Display;
#[cfg(feature = "regex")]
#[derive(Error, Debug)]
pub enum CuteStringError {
#[error("regex parse error: {0}")]
RegexError(#[from] regex::Error),
}
#[derive(PartialEq, Eq, Clone, Copy)]
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
pub enum AsciiColor {
Red,
Green,
Yellow,
Blue,
Purple,
Cyan,
White,
Orange,
Pink,
Teal,
Black,
End,
}
impl Display for AsciiColor {
fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
match self {
Self::Black => write!(f, "\x1b[30m"),
Self::Red => write!(f, "\x1b[31m"),
Self::Green => write!(f, "\x1b[32m"),
Self::Yellow => write!(f, "\x1b[33m"),
Self::Blue => write!(f, "\x1b[34m"),
Self::Purple => write!(f, "\x1b[35m"),
Self::Cyan => write!(f, "\x1b[36m"),
Self::White => write!(f, "\x1b[37m"),
Self::Orange => write!(f, "\x1b[38;5;208m"),
Self::Pink => write!(f, "\x1b[38;5;205m"),
Self::Teal => write!(f, "\x1b[38;5;51m"),
Self::End => write!(f, "\x1b[0m"),
}
}
}
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
struct ColoredRange {
start: usize,
end: usize,
color: AsciiColor,
}
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
struct Underline {
start: usize,
end: usize,
color: AsciiColor,
character: char,
}
#[derive(Default)]
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
pub struct CuteString {
string: Option<String>,
default_color: Option<AsciiColor>,
colored_ranges: Vec<ColoredRange>,
underlines: Vec<Underline>,
}
impl CuteString {
/// Create a new instance of CuteString
pub const fn new() -> Self {
Self {
string: None,
default_color: None,
colored_ranges: Vec::new(),
underlines: Vec::new(),
}
}
/// Return the string to be colored
pub fn get_string(&self) -> Option<String> {
self.string.clone()
}
/// Set the `string` to be saved for coloring
pub fn set_string(&mut self, string: String) -> &mut Self {
self.string = Some(string);
self
}
/// Set `color` as the default for the string. If no color is set, the default color is white.
pub fn set_default_color(&mut self, color: AsciiColor) -> &mut Self {
self.default_color = Some(color);
self
}
/// Color all characters in the range [`start`, `end`) with the specified `color`.
pub fn color_range(&mut self, start: usize, end: usize, color: AsciiColor) -> &mut Self {
self.colored_ranges.push(ColoredRange { start, end, color });
self
}
/// Color all groups that matches the `pattern` passed with the given `color`.
#[cfg(feature = "regex")]
pub fn color_regex(
&mut self,
pattern: &str,
color: AsciiColor,
) -> Result<&mut Self, CuteStringError> {
let re = Regex::new(pattern);
if let Err(e) = re {
return Err(CuteStringError::RegexError(e));
}
let re = re.unwrap();
if let Some(error) = &self.string {
let error_str: &str = error;
for m in re.find_iter(error_str) {
self.colored_ranges.push(ColoredRange {
start: m.start(),
end: m.end(),
color,
});
}
}
Ok(self)
}
/// Color all occurrences of the character `ch` passed with the given `color`.
pub fn color_char(&mut self, ch: char, color: AsciiColor) -> &mut Self {
if let Some(error) = &self.string {
let error_str: &str = error;
for (i, c) in error_str.char_indices() {
if c == ch {
self.colored_ranges.push(ColoredRange {
start: i,
end: i + c.len_utf8(),
color,
});
}
}
}
self
}
/// Colors the specified `line` with the specified `color`.
pub fn color_line(&mut self, line: usize, color: AsciiColor) -> &mut Self {
if let Some(error) = &self.string {
let error_str: &str = error;
let lines: Vec<&str> = error_str.lines().collect();
if line > 0 && line <= lines.len() {
let start = lines.iter().take(line - 1).map(|l| l.len() + 1).sum();
let end = start + lines[line - 1].len();
self.colored_ranges.push(ColoredRange { start, end, color });
}
}
self
}
/// Deletes all ranges already set.
pub fn reset_colors(&mut self) -> &mut Self {
self.colored_ranges.clear();
self.default_color = None;
self
}
/// Colors all digits in the string with a different color (same digit is always of the same color).
pub fn color_digits(&mut self) -> &mut Self {
if let Some(error) = &self.string {
let error_str: &str = error;
let digit_colors = [
AsciiColor::White,
AsciiColor::Red,
AsciiColor::Yellow,
AsciiColor::Green,
AsciiColor::Blue,
AsciiColor::Purple,
AsciiColor::Cyan,
AsciiColor::Orange,
AsciiColor::Pink,
AsciiColor::Teal,
];
for (i, c) in error_str.char_indices() {
if let Some(digit) = c.to_digit(10) {
self.colored_ranges.push(ColoredRange {
start: i,
end: i + 1,
color: digit_colors[digit as usize],
});
}
}
}
self
}
/// Underlines the specified range [`start`, `end`) with the specified `character` colored with `color`.
pub fn underline_with(
&mut self,
start: usize,
end: usize,
color: AsciiColor,
character: char,
) -> &mut Self {
self.underlines.push(Underline {
start,
end,
color,
character,
});
self
}
/// Underlines all the groups that match the given `pattern` with the specified `character` colored with `color`.
#[cfg(feature = "regex")]
pub fn underline_regex(
&mut self,
pattern: &str,
color: AsciiColor,
character: char,
) -> Result<&mut Self, CuteStringError> {
let re = Regex::new(pattern);
if let Err(e) = re {
return Err(CuteStringError::RegexError(e));
}
let re = re.unwrap();
if let Some(error) = &self.string {
let error_str: &str = error;
for m in re.find_iter(error_str) {
self.underlines.push(Underline {
start: m.start(),
end: m.end(),
color,
character,
});
}
}
Ok(self)
}
}
impl Display for CuteString {
fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
if let Some(error) = &self.string {
let error_str: &str = error;
let lines: Vec<&str> = error_str.lines().collect();
let mut line_start = 0;
for &line in lines.iter() {
let line_end = line_start + line.len();
let colored_chars: Vec<(char, Option<&AsciiColor>)> = line
.char_indices()
.map(|(i, c)| {
let color = self
.colored_ranges
.iter()
.find(|range| {
i + line_start >= range.start && i + line_start < range.end
})
.map(|range| &range.color);
(c, color)
})
.collect();
if let Some(default_color) = &self.default_color {
write!(f, "{}", default_color)?;
}
let mut current_color: Option<&AsciiColor> = None;
for (char, color) in colored_chars.iter() {
if current_color != *color {
if let Some(new_color) = color {
write!(f, "{}", new_color)?;
} else if self.default_color.is_some() {
write!(f, "{}", self.default_color.as_ref().unwrap())?;
} else {
write!(f, "{}", AsciiColor::End)?;
}
current_color = *color;
}
write!(f, "{}", char)?;
}
writeln!(f, "{}", AsciiColor::End)?;
// Underlines for this line
let mut underline = String::new();
let mut last_color: Option<&AsciiColor> = None;
for i in line_start..line_end {
let underline_char = self
.underlines
.iter()
.find(|u| i >= u.start && i < u.end)
.map_or(' ', |u| u.character);
let underline_color = self
.underlines
.iter()
.find(|u| i >= u.start && i < u.end)
.map(|u| &u.color);
if underline_color != last_color {
if let Some(color) = underline_color {
underline.push_str(&format!("{}", color));
} else {
underline.push_str(&format!("{}", AsciiColor::End));
}
last_color = underline_color;
}
underline.push(underline_char);
}
if !underline.trim().is_empty() {
writeln!(f, "{}{}", underline, AsciiColor::End)?;
}
line_start = line_end + 1;
}
}
Ok(())
}
}
impl From<String> for CuteString {
fn from(s: String) -> Self {
CuteString {
string: Some(s),
colored_ranges: Vec::new(),
underlines: Vec::new(),
default_color: None,
}
}
}
impl From<&str> for CuteString {
fn from(s: &str) -> Self {
CuteString {
string: Some(s.to_owned()),
colored_ranges: Vec::new(),
underlines: Vec::new(),
default_color: None,
}
}
}