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
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
//! Binding identifiers, declarations, and resolved reference records.
use selene_core::DbString;
use crate::{GqlType, LabelExpr, SourceSpan, Vec2OrMore, analyze::types::AnalyzedType};
/// Stable, opaque identifier for a binding declaration.
#[derive(Clone, Copy, Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
#[repr(transparent)]
pub struct BindingId(u32);
impl BindingId {
pub(crate) const fn new(raw: u32) -> Self {
Self(raw)
}
/// Return this binding's zero-based numeric index.
#[must_use]
pub const fn get(self) -> u32 {
self.0
}
}
/// Type of a binding declaration site.
#[derive(Clone, Copy, Debug, Eq, Hash, PartialEq)]
pub enum BindingDeclKind {
/// A node variable introduced by a `MATCH` node pattern.
NodePattern,
/// An edge variable introduced by a `MATCH` edge pattern.
EdgePattern,
/// A value alias introduced by `LET`.
LetAlias,
/// A value alias introduced by row expansion (`FOR`).
ForAlias,
/// A projected value introduced by `RETURN` or `WITH`.
ProjectionAlias,
/// An explicit result column introduced by `CALL ... YIELD`.
YieldColumn,
/// A node variable introduced by an `INSERT` node pattern.
InsertNode,
/// An edge variable introduced by an `INSERT` edge pattern.
InsertEdge,
/// A path variable introduced by `path = (...)`.
PathBinding,
}
/// Binding declaration allocated during analysis.
#[derive(Clone, Debug, Eq, PartialEq)]
pub enum BindingDecl {
/// `MATCH (n)`.
NodePattern {
/// Allocated binding ID.
binding: BindingId,
/// Database-string binding name.
name: DbString,
/// Source span of the declaration.
span: SourceSpan,
/// Static type of the binding.
ty: AnalyzedType,
/// Static label predicate written on the pattern, when present.
labels: Option<LabelExpr>,
},
/// `MATCH ()-[e]->()`.
EdgePattern {
/// Allocated binding ID.
binding: BindingId,
/// Database-string binding name.
name: DbString,
/// Source span of the declaration.
span: SourceSpan,
/// Static type of the binding.
ty: AnalyzedType,
/// Static label predicate written on the pattern, when present.
labels: Option<LabelExpr>,
},
/// `LET x = expr`.
LetAlias {
/// Allocated binding ID.
binding: BindingId,
/// Database-string binding name.
name: DbString,
/// Source span of the declaration.
span: SourceSpan,
/// Static type of the binding.
ty: AnalyzedType,
},
/// `FOR x IN expr`.
ForAlias {
/// Allocated binding ID.
binding: BindingId,
/// Database-string binding name.
name: DbString,
/// Source span of the declaration.
span: SourceSpan,
/// Static type of the binding.
ty: AnalyzedType,
},
/// `RETURN expr AS x` or `WITH expr AS x`.
ProjectionAlias {
/// Allocated binding ID.
binding: BindingId,
/// Database-string binding name.
name: DbString,
/// Source span of the declaration.
span: SourceSpan,
/// Static type of the binding.
ty: AnalyzedType,
},
/// `CALL proc() YIELD x`.
YieldColumn {
/// Allocated binding ID.
binding: BindingId,
/// Database-string binding name.
name: DbString,
/// Source span of the declaration.
span: SourceSpan,
/// Static type of the binding.
ty: AnalyzedType,
},
/// `INSERT (n)`.
InsertNode {
/// Allocated binding ID.
binding: BindingId,
/// Database-string binding name.
name: DbString,
/// Source span of the declaration.
span: SourceSpan,
/// Static type of the binding.
ty: AnalyzedType,
/// Static label expression written on the inserted node.
labels: Option<LabelExpr>,
},
/// `INSERT ()-[e]->()`.
InsertEdge {
/// Allocated binding ID.
binding: BindingId,
/// Database-string binding name.
name: DbString,
/// Source span of the declaration.
span: SourceSpan,
/// Static type of the binding.
ty: AnalyzedType,
/// Static label expression written on the inserted edge.
labels: Option<LabelExpr>,
},
/// `p = (...)`.
PathBinding {
/// Allocated binding ID.
binding: BindingId,
/// Database-string binding name.
name: DbString,
/// Source span of the declaration.
span: SourceSpan,
/// Static type of the binding.
ty: AnalyzedType,
},
}
impl BindingDecl {
pub(crate) fn new(
kind: BindingDeclKind,
binding: BindingId,
name: DbString,
span: SourceSpan,
ty: AnalyzedType,
labels: Option<LabelExpr>,
) -> Self {
match kind {
BindingDeclKind::NodePattern => Self::NodePattern {
binding,
name,
span,
ty,
labels,
},
BindingDeclKind::EdgePattern => Self::EdgePattern {
binding,
name,
span,
ty,
labels,
},
BindingDeclKind::LetAlias => Self::LetAlias {
binding,
name,
span,
ty,
},
BindingDeclKind::ForAlias => Self::ForAlias {
binding,
name,
span,
ty,
},
BindingDeclKind::ProjectionAlias => Self::ProjectionAlias {
binding,
name,
span,
ty,
},
BindingDeclKind::YieldColumn => Self::YieldColumn {
binding,
name,
span,
ty,
},
BindingDeclKind::InsertNode => Self::InsertNode {
binding,
name,
span,
ty,
labels,
},
BindingDeclKind::InsertEdge => Self::InsertEdge {
binding,
name,
span,
ty,
labels,
},
BindingDeclKind::PathBinding => Self::PathBinding {
binding,
name,
span,
ty,
},
}
}
pub(crate) fn default_type(kind: BindingDeclKind) -> AnalyzedType {
match kind {
BindingDeclKind::NodePattern | BindingDeclKind::InsertNode => {
AnalyzedType::Resolved(GqlType::NodeRef)
}
BindingDeclKind::EdgePattern | BindingDeclKind::InsertEdge => {
AnalyzedType::Resolved(GqlType::EdgeRef)
}
BindingDeclKind::PathBinding => AnalyzedType::Resolved(GqlType::Path),
BindingDeclKind::LetAlias
| BindingDeclKind::ForAlias
| BindingDeclKind::ProjectionAlias
| BindingDeclKind::YieldColumn => AnalyzedType::Dynamic,
}
}
/// Return this declaration's allocated binding ID.
#[must_use]
pub const fn id(&self) -> BindingId {
match self {
Self::NodePattern { binding, .. }
| Self::EdgePattern { binding, .. }
| Self::LetAlias { binding, .. }
| Self::ForAlias { binding, .. }
| Self::ProjectionAlias { binding, .. }
| Self::YieldColumn { binding, .. }
| Self::InsertNode { binding, .. }
| Self::InsertEdge { binding, .. }
| Self::PathBinding { binding, .. } => *binding,
}
}
/// Return this declaration's database-string name.
#[must_use]
pub fn name(&self) -> DbString {
match self {
Self::NodePattern { name, .. }
| Self::EdgePattern { name, .. }
| Self::LetAlias { name, .. }
| Self::ForAlias { name, .. }
| Self::ProjectionAlias { name, .. }
| Self::YieldColumn { name, .. }
| Self::InsertNode { name, .. }
| Self::InsertEdge { name, .. }
| Self::PathBinding { name, .. } => name.clone(),
}
}
/// Return this declaration's source span.
#[must_use]
pub const fn span(&self) -> SourceSpan {
match self {
Self::NodePattern { span, .. }
| Self::EdgePattern { span, .. }
| Self::LetAlias { span, .. }
| Self::ForAlias { span, .. }
| Self::ProjectionAlias { span, .. }
| Self::YieldColumn { span, .. }
| Self::InsertNode { span, .. }
| Self::InsertEdge { span, .. }
| Self::PathBinding { span, .. } => *span,
}
}
/// Return this declaration's static type.
#[must_use]
pub const fn ty(&self) -> &AnalyzedType {
match self {
Self::NodePattern { ty, .. }
| Self::EdgePattern { ty, .. }
| Self::LetAlias { ty, .. }
| Self::ForAlias { ty, .. }
| Self::ProjectionAlias { ty, .. }
| Self::YieldColumn { ty, .. }
| Self::InsertNode { ty, .. }
| Self::InsertEdge { ty, .. }
| Self::PathBinding { ty, .. } => ty,
}
}
/// Return this declaration's kind.
#[must_use]
pub const fn kind(&self) -> BindingDeclKind {
match self {
Self::NodePattern { .. } => BindingDeclKind::NodePattern,
Self::EdgePattern { .. } => BindingDeclKind::EdgePattern,
Self::LetAlias { .. } => BindingDeclKind::LetAlias,
Self::ForAlias { .. } => BindingDeclKind::ForAlias,
Self::ProjectionAlias { .. } => BindingDeclKind::ProjectionAlias,
Self::YieldColumn { .. } => BindingDeclKind::YieldColumn,
Self::InsertNode { .. } => BindingDeclKind::InsertNode,
Self::InsertEdge { .. } => BindingDeclKind::InsertEdge,
Self::PathBinding { .. } => BindingDeclKind::PathBinding,
}
}
/// Return the pattern label expression attached to this binding declaration.
#[must_use]
pub const fn label_expr(&self) -> Option<&LabelExpr> {
match self {
Self::NodePattern { labels, .. }
| Self::EdgePattern { labels, .. }
| Self::InsertNode { labels, .. }
| Self::InsertEdge { labels, .. } => labels.as_ref(),
Self::LetAlias { .. }
| Self::ForAlias { .. }
| Self::ProjectionAlias { .. }
| Self::YieldColumn { .. }
| Self::PathBinding { .. } => None,
}
}
pub(crate) fn refine_label_expr(&mut self, next: Option<LabelExpr>) {
let Some(next) = next else {
return;
};
let labels = match self {
Self::NodePattern { labels, .. }
| Self::EdgePattern { labels, .. }
| Self::InsertNode { labels, .. }
| Self::InsertEdge { labels, .. } => labels,
Self::LetAlias { .. }
| Self::ForAlias { .. }
| Self::ProjectionAlias { .. }
| Self::YieldColumn { .. }
| Self::PathBinding { .. } => return,
};
match labels.take() {
Some(prior) => {
*labels = Some(LabelExpr::Conjunction(
Vec2OrMore::try_from_vec(vec![prior, next])
.expect("refine_label_expr always merges exactly two labels"),
));
}
None => {
*labels = Some(next);
}
}
}
}
/// Type of a resolved binding reference.
#[derive(Clone, Copy, Debug, Eq, Hash, PartialEq)]
pub enum BindingUseKind {
/// A normal variable reference in a value expression.
Variable,
/// A pattern variable reused after an earlier declaration.
PatternReuse,
/// A target variable in `SET`.
SetTarget,
/// A target variable in `REMOVE`.
RemoveTarget,
/// A target variable in `DELETE`.
DeleteTarget,
}
/// One resolved reference to a binding declaration.
#[derive(Clone, Debug, Eq, PartialEq)]
pub struct BindingUse {
/// Referenced name.
pub name: DbString,
/// Binding declaration resolved by the analyzer.
pub binding: BindingId,
/// Source span of the reference.
pub span: SourceSpan,
/// Reference category.
pub kind: BindingUseKind,
}