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
use std::ops::Deref;
pub use rust_sitter_macro::*;
#[cfg(feature = "tree-sitter-standard")]
pub use tree_sitter_runtime_standard as tree_sitter;
#[cfg(feature = "tree-sitter-c2rust")]
pub use tree_sitter_runtime_c2rust as tree_sitter;
pub trait Extract<Output> {
type LeafFn: ?Sized;
fn extract(
node: Option<tree_sitter::Node>,
source: &[u8],
last_idx: usize,
leaf_fn: Option<&Self::LeafFn>,
) -> Output;
}
pub struct WithLeaf<L> {
_phantom: std::marker::PhantomData<L>,
}
impl<L> Extract<L> for WithLeaf<L> {
type LeafFn = dyn Fn(&str) -> L;
fn extract(
node: Option<tree_sitter::Node>,
source: &[u8],
_last_idx: usize,
leaf_fn: Option<&Self::LeafFn>,
) -> L {
node.and_then(|n| n.utf8_text(source).ok())
.map(|s| leaf_fn.unwrap()(s))
.unwrap()
}
}
impl Extract<()> for () {
type LeafFn = ();
fn extract(
_node: Option<tree_sitter::Node>,
_source: &[u8],
_last_idx: usize,
_leaf_fn: Option<&Self::LeafFn>,
) {
}
}
impl<T: Extract<U>, U> Extract<Option<U>> for Option<T> {
type LeafFn = T::LeafFn;
fn extract(
node: Option<tree_sitter::Node>,
source: &[u8],
last_idx: usize,
leaf_fn: Option<&Self::LeafFn>,
) -> Option<U> {
node.map(|n| T::extract(Some(n), source, last_idx, leaf_fn))
}
}
impl<T: Extract<U>, U> Extract<Box<U>> for Box<T> {
type LeafFn = T::LeafFn;
fn extract(
node: Option<tree_sitter::Node>,
source: &[u8],
last_idx: usize,
leaf_fn: Option<&Self::LeafFn>,
) -> Box<U> {
Box::new(T::extract(node, source, last_idx, leaf_fn))
}
}
impl<T: Extract<U>, U> Extract<Vec<U>> for Vec<T> {
type LeafFn = T::LeafFn;
fn extract(
node: Option<tree_sitter::Node>,
source: &[u8],
mut last_idx: usize,
leaf_fn: Option<&Self::LeafFn>,
) -> Vec<U> {
node.map(|node| {
let mut cursor = node.walk();
let mut out = vec![];
if cursor.goto_first_child() {
loop {
let n = cursor.node();
if cursor.field_name().is_some() {
out.push(T::extract(Some(n), source, last_idx, leaf_fn));
}
last_idx = n.end_byte();
if !cursor.goto_next_sibling() {
break;
}
}
}
out
})
.unwrap_or_default()
}
}
#[derive(Clone, Debug)]
pub struct Spanned<T> {
pub value: T,
pub span: (usize, usize),
}
impl<T> Deref for Spanned<T> {
type Target = T;
fn deref(&self) -> &T {
&self.value
}
}
impl<T: Extract<U>, U> Extract<Spanned<U>> for Spanned<T> {
type LeafFn = T::LeafFn;
fn extract(
node: Option<tree_sitter::Node>,
source: &[u8],
last_idx: usize,
leaf_fn: Option<&Self::LeafFn>,
) -> Spanned<U> {
Spanned {
value: T::extract(node, source, last_idx, leaf_fn),
span: node
.map(|n| (n.start_byte(), n.end_byte()))
.unwrap_or((last_idx, last_idx)),
}
}
}
pub mod errors {
#[cfg(feature = "tree-sitter-standard")]
use tree_sitter_runtime_standard as tree_sitter;
#[cfg(feature = "tree-sitter-c2rust")]
use tree_sitter_runtime_c2rust as tree_sitter;
#[derive(Debug)]
pub enum ParseErrorReason {
UnexpectedToken(String),
FailedNode(Vec<ParseError>),
MissingToken(String),
}
#[derive(Debug)]
pub struct ParseError {
pub reason: ParseErrorReason,
pub start: usize,
pub end: usize,
}
pub fn collect_parsing_errors(
node: &tree_sitter::Node,
source: &[u8],
errors: &mut Vec<ParseError>,
) {
if node.is_error() {
if node.child(0).is_some() {
let mut inner_errors = vec![];
let mut cursor = node.walk();
node.children(&mut cursor)
.for_each(|c| collect_parsing_errors(&c, source, &mut inner_errors));
errors.push(ParseError {
reason: ParseErrorReason::FailedNode(inner_errors),
start: node.start_byte(),
end: node.end_byte(),
})
} else {
let contents = node.utf8_text(source).unwrap();
if !contents.is_empty() {
errors.push(ParseError {
reason: ParseErrorReason::UnexpectedToken(contents.to_string()),
start: node.start_byte(),
end: node.end_byte(),
})
} else {
errors.push(ParseError {
reason: ParseErrorReason::FailedNode(vec![]),
start: node.start_byte(),
end: node.end_byte(),
})
}
}
} else if node.is_missing() {
errors.push(ParseError {
reason: ParseErrorReason::MissingToken(node.kind().to_string()),
start: node.start_byte(),
end: node.end_byte(),
})
} else if node.has_error() {
let mut cursor = node.walk();
node.children(&mut cursor)
.for_each(|c| collect_parsing_errors(&c, source, errors));
}
}
}