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
use crate::config::CompletionType;
use memchr::memchr;
use std::borrow::Cow::{self, Borrowed, Owned};
use std::cell::Cell;
pub trait Highlighter {
fn highlight<'l>(&self, line: &'l str, pos: usize) -> Cow<'l, str> {
let _ = pos;
Borrowed(line)
}
fn highlight_prompt<'b, 's: 'b, 'p: 'b>(
&'s self,
prompt: &'p str,
default: bool,
) -> Cow<'b, str> {
let _ = default;
Borrowed(prompt)
}
fn highlight_hint<'h>(&self, hint: &'h str) -> Cow<'h, str> {
Borrowed(hint)
}
fn highlight_candidate<'c>(
&self,
candidate: &'c str,
completion: CompletionType,
) -> Cow<'c, str> {
let _ = completion;
Borrowed(candidate)
}
fn highlight_char(&self, line: &str, pos: usize) -> bool {
let _ = (line, pos);
false
}
}
impl Highlighter for () {}
impl<'r, H: ?Sized + Highlighter> Highlighter for &'r H {
fn highlight<'l>(&self, line: &'l str, pos: usize) -> Cow<'l, str> {
(**self).highlight(line, pos)
}
fn highlight_prompt<'b, 's: 'b, 'p: 'b>(
&'s self,
prompt: &'p str,
default: bool,
) -> Cow<'b, str> {
(**self).highlight_prompt(prompt, default)
}
fn highlight_hint<'h>(&self, hint: &'h str) -> Cow<'h, str> {
(**self).highlight_hint(hint)
}
fn highlight_candidate<'c>(
&self,
candidate: &'c str,
completion: CompletionType,
) -> Cow<'c, str> {
(**self).highlight_candidate(candidate, completion)
}
fn highlight_char(&self, line: &str, pos: usize) -> bool {
(**self).highlight_char(line, pos)
}
}
const OPENS: &[u8; 3] = b"{[(";
const CLOSES: &[u8; 3] = b"}])";
#[derive(Default)]
pub struct MatchingBracketHighlighter {
bracket: Cell<Option<(u8, usize)>>,
}
impl MatchingBracketHighlighter {
pub fn new() -> Self {
Self {
bracket: Cell::new(None),
}
}
}
impl Highlighter for MatchingBracketHighlighter {
fn highlight<'l>(&self, line: &'l str, _pos: usize) -> Cow<'l, str> {
if line.len() <= 1 {
return Borrowed(line);
}
if let Some((bracket, pos)) = self.bracket.get() {
if let Some((matching, idx)) = find_matching_bracket(line, pos, bracket) {
let mut copy = line.to_owned();
copy.replace_range(idx..=idx, &format!("\x1b[1;34m{}\x1b[0m", matching as char));
return Owned(copy);
}
}
Borrowed(line)
}
fn highlight_char(&self, line: &str, pos: usize) -> bool {
self.bracket.set(check_bracket(line, pos));
self.bracket.get().is_some()
}
}
fn find_matching_bracket(line: &str, pos: usize, bracket: u8) -> Option<(u8, usize)> {
let matching = matching_bracket(bracket);
let mut idx;
let mut unmatched = 1;
if is_open_bracket(bracket) {
idx = pos + 1;
let bytes = &line.as_bytes()[idx..];
for b in bytes {
if *b == matching {
unmatched -= 1;
if unmatched == 0 {
debug_assert_eq!(matching, line.as_bytes()[idx]);
return Some((matching, idx));
}
} else if *b == bracket {
unmatched += 1;
}
idx += 1;
}
debug_assert_eq!(idx, line.len());
} else {
idx = pos;
let bytes = &line.as_bytes()[..idx];
for b in bytes.iter().rev() {
if *b == matching {
unmatched -= 1;
if unmatched == 0 {
debug_assert_eq!(matching, line.as_bytes()[idx - 1]);
return Some((matching, idx - 1));
}
} else if *b == bracket {
unmatched += 1;
}
idx -= 1;
}
debug_assert_eq!(idx, 0);
}
None
}
fn check_bracket(line: &str, pos: usize) -> Option<(u8, usize)> {
if line.is_empty() {
return None;
}
let mut pos = pos;
if pos >= line.len() {
pos = line.len() - 1;
let b = line.as_bytes()[pos];
if is_close_bracket(b) {
Some((b, pos))
} else {
None
}
} else {
let mut under_cursor = true;
loop {
let b = line.as_bytes()[pos];
if is_close_bracket(b) {
if pos == 0 {
return None;
} else {
return Some((b, pos));
}
} else if is_open_bracket(b) {
if pos + 1 == line.len() {
return None;
} else {
return Some((b, pos));
}
} else if under_cursor && pos > 0 {
under_cursor = false;
pos -= 1;
} else {
return None;
}
}
}
}
fn matching_bracket(bracket: u8) -> u8 {
match bracket {
b'{' => b'}',
b'}' => b'{',
b'[' => b']',
b']' => b'[',
b'(' => b')',
b')' => b'(',
b => b,
}
}
fn is_open_bracket(bracket: u8) -> bool {
memchr(bracket, OPENS).is_some()
}
fn is_close_bracket(bracket: u8) -> bool {
memchr(bracket, CLOSES).is_some()
}
#[cfg(test)]
mod tests {
#[test]
pub fn find_matching_bracket() {
use super::find_matching_bracket;
assert_eq!(find_matching_bracket("(...", 0, b'('), None);
assert_eq!(find_matching_bracket("...)", 3, b')'), None);
assert_eq!(find_matching_bracket("()..", 0, b'('), Some((b')', 1)));
assert_eq!(find_matching_bracket("(..)", 0, b'('), Some((b')', 3)));
assert_eq!(find_matching_bracket("..()", 3, b')'), Some((b'(', 2)));
assert_eq!(find_matching_bracket("(..)", 3, b')'), Some((b'(', 0)));
assert_eq!(find_matching_bracket("(())", 0, b'('), Some((b')', 3)));
assert_eq!(find_matching_bracket("(())", 3, b')'), Some((b'(', 0)));
}
#[test]
pub fn check_bracket() {
use super::check_bracket;
assert_eq!(check_bracket(")...", 0), None);
assert_eq!(check_bracket("(...", 2), None);
assert_eq!(check_bracket("...(", 3), None);
assert_eq!(check_bracket("...(", 4), None);
assert_eq!(check_bracket("..).", 4), None);
assert_eq!(check_bracket("(...", 0), Some((b'(', 0)));
assert_eq!(check_bracket("(...", 1), Some((b'(', 0)));
assert_eq!(check_bracket("...)", 3), Some((b')', 3)));
assert_eq!(check_bracket("...)", 4), Some((b')', 3)));
}
#[test]
pub fn matching_bracket() {
use super::matching_bracket;
assert_eq!(matching_bracket(b'('), b')');
assert_eq!(matching_bracket(b')'), b'(');
}
#[test]
pub fn is_open_bracket() {
use super::is_close_bracket;
use super::is_open_bracket;
assert!(is_open_bracket(b'('));
assert!(is_close_bracket(b')'));
}
}