decypher 0.2.0-alpha.6

A rust library for parsing openCypher queries.
Documentation
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
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
//! Name-resolution pass over a parsed Cypher query.
//!
//! This module implements the [`Visit`] trait to walk the AST and verify that
//! every variable reference can be resolved in the visible scope. Undeclared
//! variables produce [`SemaError::UnresolvedVariable`] diagnostics; duplicate
//! declarations produce [`SemaError::RedeclaredVariable`] diagnostics.
//!
//! The entry point is [`resolve_names`].

use crate::ast::clause::*;
use crate::ast::expr::*;
use crate::ast::pattern::*;
use crate::ast::query::*;
use crate::ast::visit::{Visit, walk_match, walk_single_query};
use crate::error::CypherError;
use crate::sema::error::SemaError;
use crate::sema::scope::{ScopeStack, SymbolKind};

/// The result of the name-resolution pass.
pub struct ResolutionResult {
    /// Errors collected during resolution.
    pub errors: Vec<CypherError>,
}

/// Run name resolution over `query`.
///
/// Returns `Ok(())` when every variable reference is bound, or
/// `Err(errors)` with all resolution violations found.
pub fn resolve_names(query: &Query) -> Result<(), Vec<CypherError>> {
    let mut resolver = NameResolver::new();
    resolver.visit_query(query);
    if resolver.errors.is_empty() {
        Ok(())
    } else {
        Err(resolver.errors)
    }
}

/// Visitor that resolves variable references and tracks scope.
struct NameResolver {
    /// Errors accumulated during the walk.
    errors: Vec<CypherError>,
    /// The current lexical scope stack.
    scopes: ScopeStack,
}

impl NameResolver {
    /// Create a fresh resolver with an empty scope stack.
    fn new() -> Self {
        Self {
            errors: Vec::new(),
            scopes: ScopeStack::new(),
        }
    }

    /// Emit a semantic error, converting it to a [`CypherError`] first.
    fn emit(&mut self, sema: SemaError) {
        self.errors.push(CypherError {
            kind: sema.to_error_kind(),
            span: match &sema {
                SemaError::UnresolvedVariable { span, .. } => *span,
                SemaError::RedeclaredVariable { redecl_span, .. } => *redecl_span,
                SemaError::AggregationMix { span, .. } => *span,
                SemaError::DistinctNotAllowed { span } => *span,
                SemaError::InvalidReference { span, .. } => *span,
            },
            source_label: None,
            notes: Vec::new(),
            source: None,
        });
    }
}

impl<'ast> Visit<'ast> for NameResolver {
    fn visit_single_query(&mut self, node: &'ast SingleQuery) {
        // Override to handle WITH scope boundaries in multi-part queries
        match &node.kind {
            SingleQueryKind::MultiPart(mp) => {
                for part in &mp.parts {
                    // Visit reading clauses
                    for rc in &part.reading_clauses {
                        match rc {
                            ReadingClause::Match(m) => self.visit_match(m),
                            ReadingClause::Unwind(u) => self.visit_unwind(u),
                            ReadingClause::InQueryCall(i) => self.visit_in_query_call(i),
                            ReadingClause::CallSubquery(c) => self.visit_call_subquery(c),
                            ReadingClause::LoadCsv(l) => self.visit_load_csv(l),
                        }
                    }
                    // Visit updating clauses
                    for uc in &part.updating_clauses {
                        match uc {
                            UpdatingClause::Create(c) => self.visit_create(c),
                            UpdatingClause::Merge(m) => self.visit_merge(m),
                            UpdatingClause::Delete(d) => self.visit_delete(d),
                            UpdatingClause::Set(s) => self.visit_set(s),
                            UpdatingClause::Remove(r) => self.visit_remove(r),
                            UpdatingClause::Foreach(f) => self.visit_foreach(f),
                        }
                    }
                    self.visit_with(&part.with);
                }
                // Visit final part (reading clauses + body)
                for rc in &mp.final_part.reading_clauses {
                    match rc {
                        ReadingClause::Match(m) => self.visit_match(m),
                        ReadingClause::Unwind(u) => self.visit_unwind(u),
                        ReadingClause::InQueryCall(i) => self.visit_in_query_call(i),
                        ReadingClause::CallSubquery(c) => self.visit_call_subquery(c),
                        ReadingClause::LoadCsv(l) => self.visit_load_csv(l),
                    }
                }
                match &mp.final_part.body {
                    SinglePartBody::Return(r) => self.visit_return(r),
                    SinglePartBody::Updating {
                        updating,
                        return_clause,
                    } => {
                        for uc in updating {
                            match uc {
                                UpdatingClause::Create(c) => self.visit_create(c),
                                UpdatingClause::Merge(m) => self.visit_merge(m),
                                UpdatingClause::Delete(d) => self.visit_delete(d),
                                UpdatingClause::Set(s) => self.visit_set(s),
                                UpdatingClause::Remove(r) => self.visit_remove(r),
                                UpdatingClause::Foreach(f) => self.visit_foreach(f),
                            }
                        }
                        if let Some(ret) = return_clause {
                            self.visit_return(ret);
                        }
                    }
                    SinglePartBody::Finish(_) => {}
                }
            }
            SingleQueryKind::SinglePart(_) => {
                // Single-part queries don't have WITH boundaries — delegate to default walker
                walk_single_query(self, node);
            }
        }
    }

    fn visit_match(&mut self, node: &'ast Match) {
        // Bind pattern variables
        bind_pattern(
            &mut self.scopes,
            &node.pattern,
            SymbolKind::PatternBound,
            &mut self.errors,
        );
        walk_match(self, node);
    }

    fn visit_unwind(&mut self, node: &'ast Unwind) {
        // Unwind expression is evaluated first, then variable is bound
        self.visit_expression(&node.expression);
        if let Err(first_span) = self.scopes.bind(
            &node.variable.name.name,
            SymbolKind::UnwindBound,
            node.variable.name.span,
        ) {
            self.emit(SemaError::RedeclaredVariable {
                name: node.variable.name.name.clone(),
                first_span,
                redecl_span: node.variable.name.span,
            });
        }
    }

    fn visit_with(&mut self, node: &'ast With) {
        // WITH projection items are evaluated in the current scope.
        // Once projection completes, the visible query scope is replaced by
        // only the projected bindings.
        let mut projected = Vec::new();

        if node.star {
            projected.extend(
                self.scopes
                    .visible_bindings()
                    .into_iter()
                    .map(|(name, entry)| (name, entry.span)),
            );
        }

        for item in &node.items {
            self.visit_expression(&item.expression);

            let bind = if let Some(alias) = &item.alias {
                Some((alias.name.name.clone(), alias.name.span))
            } else {
                derive_projection_name(&item.expression)
            };

            if let Some(binding) = bind {
                projected.push(binding);
            }
        }

        self.scopes = ScopeStack::new();

        for (bind_name, bind_span) in projected {
            if let Err(first_span) = self
                .scopes
                .bind(&bind_name, SymbolKind::WithAlias, bind_span)
            {
                self.emit(SemaError::RedeclaredVariable {
                    name: bind_name,
                    first_span,
                    redecl_span: bind_span,
                });
            }
        }

        // ORDER BY, SKIP, LIMIT, WHERE are evaluated in the projected scope.
        if let Some(order) = &node.order {
            self.visit_order(order);
        }
        if let Some(skip) = &node.skip {
            self.visit_expression(skip);
        }
        if let Some(limit) = &node.limit {
            self.visit_expression(limit);
        }
        if let Some(wc) = &node.where_clause {
            self.visit_expression(wc);
        }
    }

    fn visit_return(&mut self, node: &'ast Return) {
        for item in &node.items {
            self.visit_expression(&item.expression);
            if let Some(alias) = &item.alias
                && let Err(first_span) =
                    self.scopes
                        .bind(&alias.name.name, SymbolKind::ReturnAlias, alias.name.span)
            {
                self.emit(SemaError::RedeclaredVariable {
                    name: alias.name.name.clone(),
                    first_span,
                    redecl_span: alias.name.span,
                });
            }
        }
        if let Some(order) = &node.order {
            self.visit_order(order);
        }
        if let Some(skip) = &node.skip {
            self.visit_expression(skip);
        }
        if let Some(limit) = &node.limit {
            self.visit_expression(limit);
        }
    }

    fn visit_in_query_call(&mut self, node: &'ast crate::ast::procedure::InQueryCall) {
        self.visit_procedure_invocation(&node.call);
        if let Some(yield_items) = &node.yield_items {
            for item in &yield_items.items {
                self.visit_symbolic_name(&item.procedure_field);
                if let Some(alias) = &item.alias
                    && let Err(first_span) =
                        self.scopes
                            .bind(&alias.name.name, SymbolKind::YieldAlias, alias.name.span)
                {
                    self.emit(SemaError::RedeclaredVariable {
                        name: alias.name.name.clone(),
                        first_span,
                        redecl_span: alias.name.span,
                    });
                }
            }
            if let Some(wc) = &yield_items.where_clause {
                self.visit_expression(wc);
            }
        }
    }

    fn visit_standalone_call(&mut self, node: &'ast crate::ast::procedure::StandaloneCall) {
        self.visit_procedure_invocation(&node.call);
        if let Some(yield_spec) = &node.yield_items {
            match yield_spec {
                crate::ast::procedure::YieldSpec::Star { .. } => {}
                crate::ast::procedure::YieldSpec::Items(yi) => {
                    for item in &yi.items {
                        self.visit_symbolic_name(&item.procedure_field);
                        if let Some(alias) = &item.alias
                            && let Err(first_span) = self.scopes.bind(
                                &alias.name.name,
                                SymbolKind::YieldAlias,
                                alias.name.span,
                            )
                        {
                            self.emit(SemaError::RedeclaredVariable {
                                name: alias.name.name.clone(),
                                first_span,
                                redecl_span: alias.name.span,
                            });
                        }
                    }
                    if let Some(wc) = &yi.where_clause {
                        self.visit_expression(wc);
                    }
                }
            }
        }
    }

    fn visit_call_subquery(&mut self, node: &'ast CallSubquery) {
        // Subqueries have their own scope — visit the inner query with a fresh scope
        let saved_scopes = std::mem::take(&mut self.scopes);
        self.visit_regular_query(&node.query);
        self.scopes = saved_scopes;
        if let Some(it) = &node.in_transactions
            && let Some(of_rows) = &it.of_rows
        {
            self.visit_expression(of_rows);
        }
    }

    fn visit_foreach(&mut self, node: &'ast Foreach) {
        // FOREACH inner updates are scoped; the list expr is evaluated in outer scope
        self.visit_expression(&node.list);
        self.scopes.push_scope();
        if let Err(first_span) = self.scopes.bind(
            &node.variable.name.name,
            SymbolKind::ForeachVar,
            node.variable.name.span,
        ) {
            self.emit(SemaError::RedeclaredVariable {
                name: node.variable.name.name.clone(),
                first_span,
                redecl_span: node.variable.name.span,
            });
        }
        for update in &node.updates {
            self.visit_foreach_update(update);
        }
        self.scopes.pop_scope();
    }

    fn visit_list_comprehension(&mut self, node: &'ast ListComprehension) {
        self.scopes.push_scope();
        if let Err(first_span) = self.scopes.bind(
            &node.variable.name.name,
            SymbolKind::ComprehensionVar,
            node.variable.name.span,
        ) {
            self.emit(SemaError::RedeclaredVariable {
                name: node.variable.name.name.clone(),
                first_span,
                redecl_span: node.variable.name.span,
            });
        }
        if let Some(filter) = &node.filter {
            self.visit_expression(filter);
        }
        if let Some(map) = &node.map {
            self.visit_expression(map);
        }
        self.scopes.pop_scope();
    }

    fn visit_pattern_comprehension(&mut self, node: &'ast PatternComprehension) {
        self.scopes.push_scope();
        if let Some(var) = &node.variable
            && let Err(first_span) =
                self.scopes
                    .bind(&var.name.name, SymbolKind::ComprehensionVar, var.name.span)
        {
            self.emit(SemaError::RedeclaredVariable {
                name: var.name.name.clone(),
                first_span,
                redecl_span: var.name.span,
            });
        }
        bind_relationships_pattern(
            &mut self.scopes,
            &node.pattern,
            SymbolKind::PatternBound,
            &mut self.errors,
        );
        if let Some(wc) = &node.where_clause {
            self.visit_expression(wc);
        }
        self.visit_expression(&node.map);
        self.scopes.pop_scope();
    }

    fn visit_filter_expression(&mut self, node: &'ast FilterExpression) {
        self.scopes.push_scope();
        if let Err(first_span) = self.scopes.bind(
            &node.variable.name.name,
            SymbolKind::ComprehensionVar,
            node.variable.name.span,
        ) {
            self.emit(SemaError::RedeclaredVariable {
                name: node.variable.name.name.clone(),
                first_span,
                redecl_span: node.variable.name.span,
            });
        }
        self.visit_expression(&node.collection);
        if let Some(pred) = &node.predicate {
            self.visit_expression(pred);
        }
        self.scopes.pop_scope();
    }

    fn visit_variable(&mut self, node: &'ast crate::ast::names::Variable) {
        if !self.scopes.is_bound(&node.name.name) {
            self.emit(SemaError::UnresolvedVariable {
                name: node.name.name.clone(),
                span: node.name.span,
            });
        }
    }
}

/// Bind all variables found in a pattern to the current scope.
fn bind_pattern(
    scopes: &mut ScopeStack,
    pattern: &Pattern,
    kind: SymbolKind,
    errors: &mut Vec<CypherError>,
) {
    for part in &pattern.parts {
        if let Some(var) = &part.variable
            && let Err(first_span) = scopes.bind(&var.name.name, kind, var.name.span)
        {
            errors.push(
                SemaError::RedeclaredVariable {
                    name: var.name.name.clone(),
                    first_span,
                    redecl_span: var.name.span,
                }
                .into_error(),
            );
        }
        bind_node_pattern(scopes, &part.anonymous.element, kind, errors);
    }
}

fn bind_node_pattern(
    scopes: &mut ScopeStack,
    element: &PatternElement,
    kind: SymbolKind,
    errors: &mut Vec<CypherError>,
) {
    match element {
        PatternElement::Path { start, chains } => {
            if let Some(var) = &start.variable
                && let Err(first_span) = scopes.bind(&var.name.name, kind, var.name.span)
            {
                errors.push(
                    SemaError::RedeclaredVariable {
                        name: var.name.name.clone(),
                        first_span,
                        redecl_span: var.name.span,
                    }
                    .into_error(),
                );
            }
            for chain in chains {
                if let Some(var) = &chain
                    .relationship
                    .detail
                    .as_ref()
                    .and_then(|d| d.variable.as_ref())
                    && let Err(first_span) = scopes.bind(&var.name.name, kind, var.name.span)
                {
                    errors.push(
                        SemaError::RedeclaredVariable {
                            name: var.name.name.clone(),
                            first_span,
                            redecl_span: var.name.span,
                        }
                        .into_error(),
                    );
                }
                if let Some(var) = &chain.node.variable
                    && let Err(first_span) = scopes.bind(&var.name.name, kind, var.name.span)
                {
                    errors.push(
                        SemaError::RedeclaredVariable {
                            name: var.name.name.clone(),
                            first_span,
                            redecl_span: var.name.span,
                        }
                        .into_error(),
                    );
                }
            }
        }
        PatternElement::Parenthesized(inner) => {
            bind_node_pattern(scopes, inner, kind, errors);
        }
        PatternElement::Quantified { element, .. } => {
            bind_node_pattern(scopes, element, kind, errors);
        }
    }
}

fn bind_relationships_pattern(
    scopes: &mut ScopeStack,
    pattern: &RelationshipsPattern,
    kind: SymbolKind,
    errors: &mut Vec<CypherError>,
) {
    if let Some(var) = &pattern.start.variable
        && let Err(first_span) = scopes.bind(&var.name.name, kind, var.name.span)
    {
        errors.push(
            SemaError::RedeclaredVariable {
                name: var.name.name.clone(),
                first_span,
                redecl_span: var.name.span,
            }
            .into_error(),
        );
    }
    for chain in &pattern.chains {
        if let Some(var) = &chain
            .relationship
            .detail
            .as_ref()
            .and_then(|d| d.variable.as_ref())
            && let Err(first_span) = scopes.bind(&var.name.name, kind, var.name.span)
        {
            errors.push(
                SemaError::RedeclaredVariable {
                    name: var.name.name.clone(),
                    first_span,
                    redecl_span: var.name.span,
                }
                .into_error(),
            );
        }
        if let Some(var) = &chain.node.variable
            && let Err(first_span) = scopes.bind(&var.name.name, kind, var.name.span)
        {
            errors.push(
                SemaError::RedeclaredVariable {
                    name: var.name.name.clone(),
                    first_span,
                    redecl_span: var.name.span,
                }
                .into_error(),
            );
        }
    }
}

/// Derive the projected name from an unaliased expression.
/// Returns (name, span) only for plain variable projections.
///
/// Cypher requires `AS` to introduce a new variable for property lookups
/// and other expressions.
fn derive_projection_name(expr: &Expression) -> Option<(String, crate::error::Span)> {
    match expr {
        Expression::Variable(v) => Some((v.name.name.clone(), v.name.span)),
        _ => None, // Property lookups, literals, function calls, etc. need `AS`
    }
}