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
use {
lazy_static::lazy_static,
std::{borrow::Cow, cmp, fmt, path::PathBuf, sync::Arc},
};
lazy_static! {
static ref DUMMY_SPAN: Span = Span::new(Arc::from(""), 0, 0, None).unwrap();
}
pub struct Position {
input: Arc<str>,
pos: usize,
}
impl Position {
pub fn new(input: Arc<str>, pos: usize) -> Option<Position> {
input.clone().get(pos..).map(|_| Position { input, pos })
}
#[inline]
pub fn line_col(&self) -> (usize, usize) {
if self.pos > self.input.len() {
panic!("position out of bounds");
}
let mut pos = self.pos;
let slice = &self.input[..pos];
let mut chars = slice.chars().peekable();
let mut line_col = (1, 1);
while pos != 0 {
match chars.next() {
Some('\r') => {
if let Some(&'\n') = chars.peek() {
chars.next();
if pos == 1 {
pos -= 1;
} else {
pos -= 2;
}
line_col = (line_col.0 + 1, 1);
} else {
pos -= 1;
line_col = (line_col.0, line_col.1 + 1);
}
}
Some('\n') => {
pos -= 1;
line_col = (line_col.0 + 1, 1);
}
Some(c) => {
pos -= c.len_utf8();
line_col = (line_col.0, line_col.1 + 1);
}
None => unreachable!(),
}
}
line_col
}
}
#[derive(Clone, Eq, PartialEq, PartialOrd, Hash)]
pub struct Span {
src: Arc<str>,
start: usize,
end: usize,
path: Option<Arc<PathBuf>>,
}
impl Span {
pub fn dummy() -> Span {
DUMMY_SPAN.clone()
}
pub fn new(
src: Arc<str>,
start: usize,
end: usize,
path: Option<Arc<PathBuf>>,
) -> Option<Span> {
let _ = src.get(start..end)?;
Some(Span {
src,
start,
end,
path,
})
}
pub fn from_string(source: String) -> Span {
let len = source.len();
Span::new(Arc::from(source), 0, len, None).unwrap()
}
pub fn src(&self) -> &Arc<str> {
&self.src
}
pub fn start(&self) -> usize {
self.start
}
pub fn end(&self) -> usize {
self.end
}
pub fn path(&self) -> Option<&Arc<PathBuf>> {
self.path.as_ref()
}
pub fn path_str(&self) -> Option<Cow<'_, str>> {
self.path.as_deref().map(|path| path.to_string_lossy())
}
pub fn start_pos(&self) -> Position {
Position::new(self.src.clone(), self.start).unwrap()
}
pub fn end_pos(&self) -> Position {
Position::new(self.src.clone(), self.end).unwrap()
}
pub fn split(&self) -> (Position, Position) {
let start = self.start_pos();
let end = self.end_pos();
(start, end)
}
pub fn str(self) -> String {
self.as_str().to_owned()
}
pub fn as_str(&self) -> &str {
&self.src[self.start..self.end]
}
pub fn input(&self) -> &str {
&self.src
}
pub fn trim(self) -> Span {
let start_delta = self.as_str().len() - self.as_str().trim_start().len();
let end_delta = self.as_str().len() - self.as_str().trim_end().len();
Span {
src: self.src,
start: self.start + start_delta,
end: self.end - end_delta,
path: self.path,
}
}
pub fn join(s1: Span, s2: Span) -> Span {
assert!(
Arc::ptr_eq(&s1.src, &s2.src) && s1.path == s2.path,
"Spans from different files cannot be joined.",
);
Span {
src: s1.src,
start: cmp::min(s1.start, s2.start),
end: cmp::max(s1.end, s2.end),
path: s1.path,
}
}
}
impl fmt::Debug for Span {
fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
fmt.debug_struct("Span")
.field("src (ptr)", &self.src.as_ptr())
.field("path", &self.path)
.field("start", &self.start)
.field("end", &self.end)
.field("as_str()", &self.as_str())
.finish()
}
}
pub trait Spanned {
fn span(&self) -> Span;
}