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
use super::*;
use std::{
path::{Path, PathBuf},
collections::{HashMap, hash_map::Entry},
fs, mem::replace,
};
pub trait Cache<Id: ?Sized> {
fn fetch(&mut self, id: &Id) -> Result<&Source, Box<dyn fmt::Debug + '_>>;
fn display<'a>(&self, id: &'a Id) -> Option<Box<dyn fmt::Display + 'a>>;
}
impl<'b, C: Cache<Id>, Id: ?Sized> Cache<Id> for &'b mut C {
fn fetch(&mut self, id: &Id) -> Result<&Source, Box<dyn fmt::Debug + '_>> { C::fetch(self, id) }
fn display<'a>(&self, id: &'a Id) -> Option<Box<dyn fmt::Display + 'a>> { C::display(self, id) }
}
impl<C: Cache<Id>, Id: ?Sized> Cache<Id> for Box<C> {
fn fetch(&mut self, id: &Id) -> Result<&Source, Box<dyn fmt::Debug + '_>> { C::fetch(self, id) }
fn display<'a>(&self, id: &'a Id) -> Option<Box<dyn fmt::Display + 'a>> { C::display(self, id) }
}
#[derive(Clone, Debug, Hash, PartialEq, Eq)]
pub struct Line {
offset: usize,
len: usize,
chars: String,
}
impl Line {
pub fn offset(&self) -> usize { self.offset }
pub fn len(&self) -> usize { self.len }
pub fn span(&self) -> Range<usize> { self.offset..self.offset + self.len }
pub fn chars(&self) -> impl Iterator<Item = char> + '_ { self.chars.chars() }
}
#[derive(Clone, Debug, Hash, PartialEq, Eq)]
pub struct Source {
lines: Vec<Line>,
len: usize,
}
impl<S: AsRef<str>> From<S> for Source {
fn from(s: S) -> Self {
let mut offset = 0;
let mut last_line: Option<(Line, bool)> = None;
let mut lines: Vec<Line> = s
.as_ref()
.split_inclusive([
'\r', '\n', '\x0B', '\x0C', '\u{0085}', '\u{2028}', '\u{2029}' ])
.flat_map(|line| {
if let Some((last, ends_with_cr)) = last_line.as_mut() {
if *ends_with_cr && line == "\n" {
last.len += 1;
offset += 1;
return replace(&mut last_line, None).map(|(l, _)| l);
}
}
let len = line.chars().count();
let ends_with_cr = line.ends_with('\r');
let line = Line {
offset,
len,
chars: line.trim_end().to_owned(),
};
offset += len;
replace(&mut last_line, Some((line, ends_with_cr))).map(|(l, _)| l)
})
.collect();
if let Some((l, _)) = last_line {
lines.push(l);
}
Self {
lines,
len: offset,
}
}
}
impl Source {
pub fn len(&self) -> usize { self.len }
pub fn chars(&self) -> impl Iterator<Item = char> + '_ {
self.lines.iter().map(|l| l.chars()).flatten()
}
pub fn line(&self, idx: usize) -> Option<&Line> { self.lines.get(idx) }
pub fn lines(&self) -> impl ExactSizeIterator<Item = &Line> + '_ { self.lines.iter() }
pub fn get_offset_line(&self, offset: usize) -> Option<(&Line, usize, usize)> {
if offset <= self.len {
let idx = self.lines
.binary_search_by_key(&offset, |line| line.offset)
.unwrap_or_else(|idx| idx.saturating_sub(1));
let line = &self.lines[idx];
assert!(offset >= line.offset, "offset = {}, line.offset = {}", offset, line.offset);
Some((line, idx, offset - line.offset))
} else {
None
}
}
pub fn get_line_range<S: Span>(&self, span: &S) -> Range<usize> {
let start = self.get_offset_line(span.start()).map_or(0, |(_, l, _)| l);
let end = self.get_offset_line(span.end().saturating_sub(1).max(span.start())).map_or(self.lines.len(), |(_, l, _)| l + 1);
start..end
}
}
impl Cache<()> for Source {
fn fetch(&mut self, _: &()) -> Result<&Source, Box<dyn fmt::Debug + '_>> { Ok(self) }
fn display(&self, _: &()) -> Option<Box<dyn fmt::Display>> { None }
}
impl<Id: fmt::Display + Eq> Cache<Id> for (Id, Source) {
fn fetch(&mut self, id: &Id) -> Result<&Source, Box<dyn fmt::Debug + '_>> {
if id == &self.0 { Ok(&self.1) } else { Err(Box::new(format!("Failed to fetch source '{}'", id))) }
}
fn display<'a>(&self, id: &'a Id) -> Option<Box<dyn fmt::Display + 'a>> { Some(Box::new(id)) }
}
#[derive(Default, Debug, Clone)]
pub struct FileCache {
files: HashMap<PathBuf, Source>,
}
impl Cache<Path> for FileCache {
fn fetch(&mut self, path: &Path) -> Result<&Source, Box<dyn fmt::Debug + '_>> {
Ok(match self.files.entry(path.to_path_buf()) { Entry::Occupied(entry) => entry.into_mut(),
Entry::Vacant(entry) => entry.insert(Source::from(&fs::read_to_string(path).map_err(|e| Box::new(e) as _)?)),
})
}
fn display<'a>(&self, path: &'a Path) -> Option<Box<dyn fmt::Display + 'a>> { Some(Box::new(path.display())) }
}
#[derive(Debug, Clone)]
pub struct FnCache<Id, F> {
sources: HashMap<Id, Source>,
get: F,
}
impl<Id, F> FnCache<Id, F> {
pub fn new(get: F) -> Self {
Self {
sources: HashMap::default(),
get,
}
}
pub fn with_sources(mut self, sources: HashMap<Id, Source>) -> Self
where Id: Eq + Hash
{
self.sources.reserve(sources.len());
for (id, src) in sources {
self.sources.insert(id, src);
}
self
}
}
impl<Id: fmt::Display + Hash + PartialEq + Eq + Clone, F> Cache<Id> for FnCache<Id, F>
where F: for<'a> FnMut(&'a Id) -> Result<String, Box<dyn fmt::Debug>>
{
fn fetch(&mut self, id: &Id) -> Result<&Source, Box<dyn fmt::Debug + '_>> {
Ok(match self.sources.entry(id.clone()) {
Entry::Occupied(entry) => entry.into_mut(),
Entry::Vacant(entry) => entry.insert(Source::from((self.get)(id)?)),
})
}
fn display<'a>(&self, id: &'a Id) -> Option<Box<dyn fmt::Display + 'a>> { Some(Box::new(id)) }
}
pub fn sources<Id, S, I>(iter: I) -> impl Cache<Id>
where
Id: fmt::Display + Hash + PartialEq + Eq + Clone + 'static,
I: IntoIterator<Item = (Id, S)>,
S: AsRef<str>,
{
FnCache::new((move |id| Err(Box::new(format!("Failed to fetch source '{}'", id)) as _)) as fn(&_) -> _)
.with_sources(iter
.into_iter()
.map(|(id, s)| (id, Source::from(s.as_ref())))
.collect())
}
#[cfg(test)]
mod tests {
use std::iter::zip;
use super::Source;
#[test]
fn source_from() {
fn test(lines: Vec<&str>) {
let source: String = lines.iter().map(|s| *s).collect();
let source = Source::from(source);
assert_eq!(source.lines.len(), lines.len());
let mut offset = 0;
for (source_line, raw_line) in zip(source.lines.into_iter(), lines.into_iter()) {
assert_eq!(source_line.offset, offset);
assert_eq!(source_line.len, raw_line.chars().count());
assert_eq!(source_line.chars, raw_line.trim_end());
offset += source_line.len;
}
assert_eq!(source.len, offset);
}
test(vec![]); test(vec!["Single line"]);
test(vec!["Single line with LF\n"]);
test(vec!["Single line with CRLF\r\n"]);
test(vec!["Two\r\n", "lines\n"]);
test(vec!["Some\n", "more\r\n", "lines"]);
test(vec!["\n", "\r\n", "\n", "Empty Lines"]);
test(vec!["Trailing spaces \n", "are trimmed\t"]);
test(vec!["CR\r", "VT\x0B", "FF\x0C", "NEL\u{0085}", "LS\u{2028}", "PS\u{2029}"]);
}
}