reifydb-rql 0.4.9

ReifyDB Query Language (RQL) parser and AST
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
// SPDX-License-Identifier: Apache-2.0
// Copyright (c) 2025 ReifyDB

//! Maybe-qualified identifier types for AST
//! These types allow optional qualification as they come directly from user
//! input

use crate::{
	bump::BumpFragment,
	token::token::{Token, TokenKind},
};

/// Represents a source identifier that hasn't been resolved to a specific type yet
/// Used in AST parsing before we know whether it's a table, view, or ring buffer
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct UnresolvedShapeIdentifier<'bump> {
	pub namespace: Vec<BumpFragment<'bump>>,
	pub name: BumpFragment<'bump>,
	pub alias: Option<BumpFragment<'bump>>,
}

impl<'bump> UnresolvedShapeIdentifier<'bump> {
	pub fn new(namespace: Vec<BumpFragment<'bump>>, name: BumpFragment<'bump>) -> Self {
		Self {
			namespace,
			name,
			alias: None,
		}
	}

	pub fn with_alias(mut self, alias: BumpFragment<'bump>) -> Self {
		self.alias = Some(alias);
		self
	}

	pub fn effective_name(&self) -> &str {
		self.alias.as_ref().map(|a| a.text()).unwrap_or_else(|| self.name.text())
	}
}

/// An unqualified identifier that hasn't been parsed for qualification yet.
/// This is used in the AST for simple identifiers before they're resolved
/// to specific types (column, table, namespace, etc.)
#[derive(Debug, Clone, Copy, PartialEq)]
pub struct UnqualifiedIdentifier<'bump> {
	pub token: Token<'bump>,
}

impl<'bump> UnqualifiedIdentifier<'bump> {
	pub fn new(token: Token<'bump>) -> Self {
		Self {
			token,
		}
	}

	pub fn from_fragment(fragment: BumpFragment<'bump>) -> Self {
		Self {
			token: Token {
				kind: TokenKind::Identifier,
				fragment,
			},
		}
	}

	pub fn text(&self) -> &str {
		self.token.fragment.text()
	}

	pub fn fragment(&self) -> &BumpFragment<'bump> {
		&self.token.fragment
	}

	pub fn into_fragment(self) -> BumpFragment<'bump> {
		self.token.fragment
	}
}

/// Maybe-qualified namespace identifier - segments of a dot-separated path
#[derive(Debug, Clone, PartialEq)]
pub struct MaybeQualifiedNamespaceIdentifier<'bump> {
	pub segments: Vec<BumpFragment<'bump>>,
}

impl<'bump> MaybeQualifiedNamespaceIdentifier<'bump> {
	pub fn new(segments: Vec<BumpFragment<'bump>>) -> Self {
		Self {
			segments,
		}
	}
}

/// Maybe-qualified table identifier for tables - namespace is optional
#[derive(Debug, Clone, PartialEq)]
pub struct MaybeQualifiedTableIdentifier<'bump> {
	pub namespace: Vec<BumpFragment<'bump>>,
	pub name: BumpFragment<'bump>,
	pub alias: Option<BumpFragment<'bump>>,
}

impl<'bump> MaybeQualifiedTableIdentifier<'bump> {
	pub fn new(name: BumpFragment<'bump>) -> Self {
		Self {
			namespace: Vec::new(),
			name,
			alias: None,
		}
	}

	pub fn with_namespace(mut self, namespace: Vec<BumpFragment<'bump>>) -> Self {
		self.namespace = namespace;
		self
	}

	pub fn with_alias(mut self, alias: BumpFragment<'bump>) -> Self {
		self.alias = Some(alias);
		self
	}
}

/// Maybe-qualified deferred view identifier - namespace is optional
#[derive(Debug, Clone, PartialEq)]
pub struct MaybeQualifiedDeferredViewIdentifier<'bump> {
	pub namespace: Vec<BumpFragment<'bump>>,
	pub name: BumpFragment<'bump>,
	pub alias: Option<BumpFragment<'bump>>,
}

impl<'bump> MaybeQualifiedDeferredViewIdentifier<'bump> {
	pub fn new(name: BumpFragment<'bump>) -> Self {
		Self {
			namespace: Vec::new(),
			name,
			alias: None,
		}
	}

	pub fn with_namespace(mut self, namespace: Vec<BumpFragment<'bump>>) -> Self {
		self.namespace = namespace;
		self
	}

	pub fn with_alias(mut self, alias: BumpFragment<'bump>) -> Self {
		self.alias = Some(alias);
		self
	}
}

/// Maybe-qualified transactional view identifier - namespace is optional
#[derive(Debug, Clone, PartialEq)]
pub struct MaybeQualifiedTransactionalViewIdentifier<'bump> {
	pub namespace: Vec<BumpFragment<'bump>>,
	pub name: BumpFragment<'bump>,
	pub alias: Option<BumpFragment<'bump>>,
}

impl<'bump> MaybeQualifiedTransactionalViewIdentifier<'bump> {
	pub fn new(name: BumpFragment<'bump>) -> Self {
		Self {
			namespace: Vec::new(),
			name,
			alias: None,
		}
	}

	pub fn with_namespace(mut self, namespace: Vec<BumpFragment<'bump>>) -> Self {
		self.namespace = namespace;
		self
	}

	pub fn with_alias(mut self, alias: BumpFragment<'bump>) -> Self {
		self.alias = Some(alias);
		self
	}
}

/// Maybe-qualified view identifier (generic) - namespace is optional
#[derive(Debug, Clone, PartialEq)]
pub struct MaybeQualifiedViewIdentifier<'bump> {
	pub namespace: Vec<BumpFragment<'bump>>,
	pub name: BumpFragment<'bump>,
	pub alias: Option<BumpFragment<'bump>>,
}

impl<'bump> MaybeQualifiedViewIdentifier<'bump> {
	pub fn new(name: BumpFragment<'bump>) -> Self {
		Self {
			namespace: Vec::new(),
			name,
			alias: None,
		}
	}

	pub fn with_namespace(mut self, namespace: Vec<BumpFragment<'bump>>) -> Self {
		self.namespace = namespace;
		self
	}

	pub fn with_alias(mut self, alias: BumpFragment<'bump>) -> Self {
		self.alias = Some(alias);
		self
	}
}

/// Maybe-qualified ring buffer identifier - namespace is optional
#[derive(Debug, Clone, PartialEq)]
pub struct MaybeQualifiedRingBufferIdentifier<'bump> {
	pub namespace: Vec<BumpFragment<'bump>>,
	pub name: BumpFragment<'bump>,
	pub alias: Option<BumpFragment<'bump>>,
}

impl<'bump> MaybeQualifiedRingBufferIdentifier<'bump> {
	pub fn new(name: BumpFragment<'bump>) -> Self {
		Self {
			namespace: Vec::new(),
			name,
			alias: None,
		}
	}

	pub fn with_namespace(mut self, namespace: Vec<BumpFragment<'bump>>) -> Self {
		self.namespace = namespace;
		self
	}

	pub fn with_alias(mut self, alias: BumpFragment<'bump>) -> Self {
		self.alias = Some(alias);
		self
	}
}

/// Maybe-qualified dictionary identifier - namespace is optional
#[derive(Debug, Clone, PartialEq)]
pub struct MaybeQualifiedDictionaryIdentifier<'bump> {
	pub namespace: Vec<BumpFragment<'bump>>,
	pub name: BumpFragment<'bump>,
}

impl<'bump> MaybeQualifiedDictionaryIdentifier<'bump> {
	pub fn new(name: BumpFragment<'bump>) -> Self {
		Self {
			namespace: Vec::new(),
			name,
		}
	}

	pub fn with_namespace(mut self, namespace: Vec<BumpFragment<'bump>>) -> Self {
		self.namespace = namespace;
		self
	}
}

/// Maybe-qualified sum type identifier - namespace is optional
#[derive(Debug, Clone, PartialEq)]
pub struct MaybeQualifiedSumTypeIdentifier<'bump> {
	pub namespace: Vec<BumpFragment<'bump>>,
	pub name: BumpFragment<'bump>,
}

impl<'bump> MaybeQualifiedSumTypeIdentifier<'bump> {
	pub fn new(name: BumpFragment<'bump>) -> Self {
		Self {
			namespace: Vec::new(),
			name,
		}
	}

	pub fn with_namespace(mut self, namespace: Vec<BumpFragment<'bump>>) -> Self {
		self.namespace = namespace;
		self
	}
}

/// Maybe-qualified series identifier - namespace is optional
#[derive(Debug, Clone, PartialEq)]
pub struct MaybeQualifiedSeriesIdentifier<'bump> {
	pub namespace: Vec<BumpFragment<'bump>>,
	pub name: BumpFragment<'bump>,
}

impl<'bump> MaybeQualifiedSeriesIdentifier<'bump> {
	pub fn new(name: BumpFragment<'bump>) -> Self {
		Self {
			namespace: Vec::new(),
			name,
		}
	}

	pub fn with_namespace(mut self, namespace: Vec<BumpFragment<'bump>>) -> Self {
		self.namespace = namespace;
		self
	}
}

/// Maybe-qualified sequence identifier - namespace is optional
#[derive(Debug, Clone, PartialEq)]
pub struct MaybeQualifiedSequenceIdentifier<'bump> {
	pub namespace: Vec<BumpFragment<'bump>>,
	pub name: BumpFragment<'bump>,
}

impl<'bump> MaybeQualifiedSequenceIdentifier<'bump> {
	pub fn new(name: BumpFragment<'bump>) -> Self {
		Self {
			namespace: Vec::new(),
			name,
		}
	}

	pub fn with_namespace(mut self, namespace: Vec<BumpFragment<'bump>>) -> Self {
		self.namespace = namespace;
		self
	}
}

/// Maybe-qualified index identifier - namespace is optional
#[derive(Debug, Clone, PartialEq)]
pub struct MaybeQualifiedIndexIdentifier<'bump> {
	pub namespace: Vec<BumpFragment<'bump>>,
	pub table: BumpFragment<'bump>,
	pub name: BumpFragment<'bump>,
}

impl<'bump> MaybeQualifiedIndexIdentifier<'bump> {
	pub fn new(table: BumpFragment<'bump>, name: BumpFragment<'bump>) -> Self {
		Self {
			namespace: Vec::new(),
			table,
			name,
		}
	}

	pub fn with_shape(mut self, namespace: Vec<BumpFragment<'bump>>) -> Self {
		self.namespace = namespace;
		self
	}
}

/// How a maybe-qualified column is referenced
#[derive(Debug, Clone, PartialEq)]
pub enum MaybeQualifiedColumnShape<'bump> {
	/// Qualified by shape name (table/view) - namespace still optional
	Qualified {
		namespace: Vec<BumpFragment<'bump>>,
		name: BumpFragment<'bump>,
	},
	/// Qualified by alias
	Alias(BumpFragment<'bump>),
	/// Not qualified (needs resolution based on context)
	Unqualified,
}

/// Maybe-qualified column identifier - shape qualification is optional
#[derive(Debug, Clone, PartialEq)]
pub struct MaybeQualifiedColumnIdentifier<'bump> {
	pub shape: MaybeQualifiedColumnShape<'bump>,
	pub name: BumpFragment<'bump>,
}

impl<'bump> MaybeQualifiedColumnIdentifier<'bump> {
	pub fn unqualified(name: BumpFragment<'bump>) -> Self {
		Self {
			shape: MaybeQualifiedColumnShape::Unqualified,
			name,
		}
	}

	pub fn with_shape(
		namespace: Vec<BumpFragment<'bump>>,
		shape: BumpFragment<'bump>,
		name: BumpFragment<'bump>,
	) -> Self {
		Self {
			shape: MaybeQualifiedColumnShape::Qualified {
				namespace,
				name: shape,
			},
			name,
		}
	}

	pub fn with_alias(alias: BumpFragment<'bump>, name: BumpFragment<'bump>) -> Self {
		Self {
			shape: MaybeQualifiedColumnShape::Alias(alias),
			name,
		}
	}
}

/// Maybe-qualified function identifier - namespaces can be partial
#[derive(Debug, Clone, PartialEq)]
pub struct MaybeQualifiedFunctionIdentifier<'bump> {
	/// Namespace chain (may be empty or partial)
	pub namespaces: Vec<BumpFragment<'bump>>,
	/// Function name
	pub name: BumpFragment<'bump>,
}

impl<'bump> MaybeQualifiedFunctionIdentifier<'bump> {
	pub fn new(name: BumpFragment<'bump>) -> Self {
		Self {
			namespaces: Vec::new(),
			name,
		}
	}

	pub fn with_namespaces(mut self, namespaces: Vec<BumpFragment<'bump>>) -> Self {
		self.namespaces = namespaces;
		self
	}
}

/// Maybe-qualified procedure identifier
#[derive(Debug, Clone, PartialEq)]
pub struct MaybeQualifiedProcedureIdentifier<'bump> {
	/// Namespace chain (may be empty or partial)
	pub namespace: Vec<BumpFragment<'bump>>,
	/// Procedure name
	pub name: BumpFragment<'bump>,
}

impl<'bump> MaybeQualifiedProcedureIdentifier<'bump> {
	pub fn new(name: BumpFragment<'bump>) -> Self {
		Self {
			namespace: Vec::new(),
			name,
		}
	}

	pub fn with_namespace(mut self, namespace: Vec<BumpFragment<'bump>>) -> Self {
		self.namespace = namespace;
		self
	}
}

/// Maybe-qualified test identifier
#[derive(Debug, Clone, PartialEq)]
pub struct MaybeQualifiedTestIdentifier<'bump> {
	/// Namespace chain (may be empty or partial)
	pub namespace: Vec<BumpFragment<'bump>>,
	/// Test name
	pub name: BumpFragment<'bump>,
}

impl<'bump> MaybeQualifiedTestIdentifier<'bump> {
	pub fn new(name: BumpFragment<'bump>) -> Self {
		Self {
			namespace: Vec::new(),
			name,
		}
	}

	pub fn with_namespace(mut self, namespace: Vec<BumpFragment<'bump>>) -> Self {
		self.namespace = namespace;
		self
	}
}

/// Generic maybe-qualified identifier - namespace is optional.
/// Used for targets/sources in CREATE SOURCE/SINK where the entity type is not known at parse time.
#[derive(Debug, Clone, PartialEq)]
pub struct MaybeQualifiedIdentifier<'bump> {
	pub namespace: Vec<BumpFragment<'bump>>,
	pub name: BumpFragment<'bump>,
}

impl<'bump> MaybeQualifiedIdentifier<'bump> {
	pub fn new(name: BumpFragment<'bump>) -> Self {
		Self {
			namespace: Vec::new(),
			name,
		}
	}

	pub fn with_namespace(mut self, namespace: Vec<BumpFragment<'bump>>) -> Self {
		self.namespace = namespace;
		self
	}
}

/// Maybe-qualified source identifier - namespace is optional
#[derive(Debug, Clone, PartialEq)]
pub struct MaybeQualifiedSourceIdentifier<'bump> {
	pub namespace: Vec<BumpFragment<'bump>>,
	pub name: BumpFragment<'bump>,
}

impl<'bump> MaybeQualifiedSourceIdentifier<'bump> {
	pub fn new(name: BumpFragment<'bump>) -> Self {
		Self {
			namespace: Vec::new(),
			name,
		}
	}

	pub fn with_namespace(mut self, namespace: Vec<BumpFragment<'bump>>) -> Self {
		self.namespace = namespace;
		self
	}
}

/// Maybe-qualified sink identifier - namespace is optional
#[derive(Debug, Clone, PartialEq)]
pub struct MaybeQualifiedSinkIdentifier<'bump> {
	pub namespace: Vec<BumpFragment<'bump>>,
	pub name: BumpFragment<'bump>,
}

impl<'bump> MaybeQualifiedSinkIdentifier<'bump> {
	pub fn new(name: BumpFragment<'bump>) -> Self {
		Self {
			namespace: Vec::new(),
			name,
		}
	}

	pub fn with_namespace(mut self, namespace: Vec<BumpFragment<'bump>>) -> Self {
		self.namespace = namespace;
		self
	}
}