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
|
use itertools::Itertools;
use rnix::{match_ast, ast};
use rowan::ast::AstNode;
use crate::queries::*;
use crate::queries::SyntaxKind::*;
#[derive(Debug)]
pub struct Change {
pub node: rnix::SyntaxNode,
pub kind: ChangeKind
}
#[derive(Copy, Clone, Debug)]
pub enum ChangeKind {
Remove,
Keep
}
type NixExprs = Box<dyn Iterator<Item = rnix::SyntaxNode>>;
type Pipe = (Vec<Change>, NixExprs);
macro_rules! ast_node {
($ast:ident, $kind:ident) => {
#[derive(PartialEq, Eq, Hash)]
#[repr(transparent)]
struct $ast(SyntaxNode);
impl $ast {
#[allow(unused)]
fn cast(node: SyntaxNode) -> Option<Self> {
if node.kind() == $kind {
Some(Self(node))
} else {
None
}
}
}
};
}
ast_node!(Root, ROOT);
ast_node!(Atom, ATOM);
ast_node!(List, LIST);
#[derive(PartialEq, Eq, Hash, Debug)]
#[repr(transparent)]
struct Qexp(SyntaxNode);
enum QexpKind {
Atom(Atom),
List(List),
}
impl Qexp {
fn cast(node: SyntaxNode) -> Option<Self> {
if Atom::cast(node.clone()).is_some() || List::cast(node.clone()).is_some() {
Some(Qexp(node))
} else {
None
}
}
fn kind(&self) -> QexpKind {
Atom::cast(self.0.clone())
.map(QexpKind::Atom)
.or_else(|| List::cast(self.0.clone()).map(QexpKind::List))
.unwrap()
}
fn apply(&self, _acc: Pipe) -> Pipe {
todo!()
}
}
impl Root {
fn qexps(&self) -> impl Iterator<Item = Qexp> + '_ {
self.0.children().filter_map(Qexp::cast)
}
}
// address nodes by their role relative to their parent
enum NixSyntaxRole {
Argument,
Function,
Attribute,
// TODO
}
impl NixSyntaxRole {
fn from_str(from: &str) -> Option<NixSyntaxRole> {
use NixSyntaxRole::*;
Some(match from {
"Argument" => Argument,
"Function" => Function,
"Attribute" => Attribute,
_ => return None
})
}
}
enum Op {
Down,
DownRecursive,
Up,
UpRecursive,
NixSyntaxNode(rnix::SyntaxKind),
NixSyntaxRole(NixSyntaxRole),
Named(String)
}
impl Atom {
fn eval(&self) -> Option<i64> {
self.text().parse().ok()
}
fn as_op(&self) -> Option<Op> {
let op = match self.text().as_str() {
">" => Op::Down,
">>" => Op::DownRecursive,
"<" => Op::Up,
"<<" => Op::UpRecursive,
"Inherit" => Op::NixSyntaxNode(rnix::SyntaxKind::NODE_INHERIT),
"String" => Op::NixSyntaxNode(rnix::SyntaxKind::NODE_STRING),
// TODO other syntax nodes
name => if let Some(role) = NixSyntaxRole::from_str(name) {
Op::NixSyntaxRole(role)
} else {
Op::Named(name.to_owned())
},
};
Some(op)
}
fn as_change(&self) -> Option<ChangeKind> {
let change = match self.text().as_str() {
"remove" => ChangeKind::Remove,
"keep" => ChangeKind::Keep,
_ => return None
};
Some(change)
}
fn iter_args(&self) -> impl Iterator<Item = Atom> {
self.0.children().find_map(List::cast).into_iter().map(|arglist| arglist.iter()).flatten()
}
fn text(&self) -> String {
match self.0.green().children().next() {
Some(rowan::NodeOrToken::Token(token)) => token.text().to_string(),
_ => unreachable!(),
}
}
fn apply(&self, (mut changes, acc): Pipe) -> Pipe {
let mut acc: NixExprs = match self.as_op() {
Some(Op::Down) => Box::new(acc.map(|s| s.children()).flatten()),
Some(Op::DownRecursive) => Box::new(acc.map(|s| s.descendants()).flatten()),
Some(Op::Up) => Box::new(acc.filter_map(|s| s.parent())),
Some(Op::UpRecursive) => Box::new(acc.map(|s| s.ancestors()).flatten()),
// TODO: how to select roles relative to previous node?
Some(Op::NixSyntaxNode(kind)) => Box::new(acc.filter(move |s| s.kind() == kind)),
Some(Op::NixSyntaxRole(role)) => {use NixSyntaxRole::*; match role {
Argument => Box::new(acc.filter_map(move |s| match_ast! { match s {
ast::Apply(value) => value.argument().map(|s| s.syntax().to_owned()),
_ => None
}})),
_ => todo!()
}}
Some(Op::Named(name)) =>
Box::new(acc
.filter(move |node| match_ast! { match node {
ast::AttrpathValue(value) => {
name == value.attrpath().unwrap().to_string()
},
ast::Apply(value) => {
// TODO: special case lambda = NODE_SELECT here?
name == value.lambda().unwrap().to_string()
},
// TODO: this is difficult — I want to use free-form names
// to select things below, too, but that might not always be
// possible. perhaps it is possible to skip over descendants?
ast::Ident(value) => {
name == value.to_string()
},
_ => false
}})),
_ => todo!()
};
if let Ok(arg) = self.iter_args().exactly_one() {
if let Some(change) = arg.as_change() {
let (mut nchanges, nacc): (Vec<_>, Vec<_>) = acc
.map(|node| (Change { node: node.clone(), kind: change }, node))
.unzip();
acc = Box::new(nacc.into_iter());
changes.append(&mut nchanges);
}
}
(changes, acc)
}
}
impl List {
fn sexps(&self) -> impl Iterator<Item = Qexp> + '_ {
self.0.children().filter_map(Qexp::cast)
}
fn iter(&self) -> impl Iterator<Item = Atom> {
self.0.children().filter_map(Atom::cast)
}
}
impl Parse {
fn root(&self) -> Root {
Root::cast(self.syntax()).unwrap()
}
pub fn apply(&self, _content: &str, nexp: rnix::SyntaxNode) -> anyhow::Result<(Vec<Change>, Vec<rnix::SyntaxNode>)> {
let mut pipe: Pipe = (Vec::new(), Box::new(std::iter::once(nexp)));
for qexp in self.root().qexps() {
match qexp.kind() {
QexpKind::Atom(filter) => {
pipe = filter.apply(pipe);
}
_ => panic!("???")
}
}
// let results =
// acc.map(|node| content[node.text_range().start().into()..node.text_range().end().into()].to_owned())
// .collect();
Ok((pipe.0, pipe.1.collect()))
}
}
|