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
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
use super::optimizer::IndexHint;
use super::types::{AttributeSpec, EdnValue, Pattern, PseudoAttr};
use crate::graph::FactStorage;
use crate::graph::types::{EntityId, Fact, Value};
use crate::storage::index::Indexes;
use std::borrow::Cow;
use std::collections::HashMap;
use std::sync::Arc;
use uuid::Uuid;
/// Variable bindings for query execution
/// Maps variable names (e.g., "?name") to their bound values
pub type Bindings = HashMap<String, Value>;
enum MatcherStorage {
Owned(FactStorage),
Slice(Arc<[Fact]>),
}
/// Pattern matcher that finds facts matching a pattern and produces bindings
pub struct PatternMatcher {
storage: MatcherStorage,
/// The `:db/valid-at` value for this query context (Value::Null when not set).
pub(crate) valid_at_value: Value,
#[allow(dead_code)]
/// Indexes for index-guided lookups (Phase 6.2)
indexes: Arc<Indexes>,
}
impl PatternMatcher {
pub fn new(storage: FactStorage) -> Self {
let indexes = storage.pending_indexes_snapshot();
PatternMatcher {
storage: MatcherStorage::Owned(storage),
valid_at_value: Value::Null,
indexes: Arc::new(indexes),
}
}
/// Constructs a [`PatternMatcher`] over a pre-built, already-filtered slice of
/// asserted facts. The caller is responsible for ensuring the slice contains
/// only currently asserted facts (equivalent to `FactStorage::get_asserted_facts()`
/// at the snapshot moment). No additional filtering is applied at match time.
pub(crate) fn from_slice(facts: Arc<[Fact]>) -> Self {
PatternMatcher {
storage: MatcherStorage::Slice(facts),
valid_at_value: Value::Null,
indexes: Arc::new(Indexes::new()),
}
}
/// Constructs a matcher with an explicit `:db/valid-at` binding value.
/// Used by the executor when the query has a known `valid_at` point.
pub(crate) fn from_slice_with_valid_at(facts: Arc<[Fact]>, valid_at: Value) -> Self {
PatternMatcher {
storage: MatcherStorage::Slice(facts),
valid_at_value: valid_at,
indexes: Arc::new(Indexes::new()),
}
}
fn get_facts(&self) -> Cow<'_, [Fact]> {
match &self.storage {
MatcherStorage::Owned(s) => Cow::Owned(s.get_asserted_facts().unwrap_or_default()),
MatcherStorage::Slice(s) => Cow::Borrowed(s),
}
}
/// Match a single pattern against all facts in storage
/// Returns a list of bindings, one for each matching fact
pub fn match_pattern(&self, pattern: &Pattern) -> Vec<Bindings> {
let mut results = Vec::new();
// Get all currently asserted facts
let facts = self.get_facts();
for fact in &*facts {
if let Some(bindings) = self.match_fact_against_pattern(fact, pattern) {
results.push(bindings);
}
}
results
}
/// Try to match a single fact against a pattern
/// Returns Some(bindings) if successful, None otherwise
fn match_fact_against_pattern(&self, fact: &Fact, pattern: &Pattern) -> Option<Bindings> {
let mut bindings = HashMap::new();
// Match entity
if !self.match_component(&pattern.entity, &Value::Ref(fact.entity), &mut bindings) {
return None;
}
match &pattern.attribute {
AttributeSpec::Real(attr_edn) => {
// Match attribute
if !self.match_component(
attr_edn,
&Value::Keyword(fact.attribute.clone()),
&mut bindings,
) {
return None;
}
// Match value
if !self.match_component(&pattern.value, &fact.value, &mut bindings) {
return None;
}
// Store hidden fact-metadata keys so that subsequent pseudo-attr patterns
// for the same entity can read per-fact temporal/tx metadata without
// cross-joining against every other fact for the entity.
// Keys are prefixed with `__f` and namespaced by entity UUID to avoid
// collisions across entities. They are never referenced in :find, so they
// are silently filtered out during result extraction.
let eid = fact.entity.to_string();
bindings.insert(format!("__fvf_{}", eid), Value::Integer(fact.valid_from));
bindings.insert(format!("__fvt_{}", eid), Value::Integer(fact.valid_to));
bindings.insert(
format!("__ftc_{}", eid),
Value::Integer(fact.tx_count.cast_signed()),
);
bindings.insert(
format!("__fti_{}", eid),
Value::Integer(fact.tx_id.cast_signed()),
);
}
AttributeSpec::Pseudo(pseudo) => {
// Pseudo-attribute: skip stored attribute match; bind fact metadata
// field to the value position variable (or match against a constant).
let pseudo_value = match pseudo {
PseudoAttr::ValidFrom => Value::Integer(fact.valid_from),
PseudoAttr::ValidTo => Value::Integer(fact.valid_to),
PseudoAttr::TxCount => Value::Integer(fact.tx_count.cast_signed()),
PseudoAttr::TxId => Value::Integer(fact.tx_id.cast_signed()),
PseudoAttr::ValidAt => self.valid_at_value.clone(),
};
if !self.match_component(&pattern.value, &pseudo_value, &mut bindings) {
return None;
}
}
}
Some(bindings)
}
/// Match a pattern component (entity, attribute, or value) against a fact value
/// Returns true if match succeeds, updating bindings for variables
fn match_component(
&self,
pattern_component: &EdnValue,
fact_value: &Value,
bindings: &mut Bindings,
) -> bool {
match pattern_component {
// Anonymous wildcard `_`: match any value without binding
EdnValue::Symbol(var) if var == "_" => true,
// Wildcard variable (starts with ?_): match any value without binding
EdnValue::Symbol(var) if var.starts_with("?_") => true,
// Variable: bind it or check consistency
EdnValue::Symbol(var) if var.starts_with('?') => {
if let Some(existing) = bindings.get(var) {
// Variable already bound, check consistency
existing == fact_value
} else {
// Bind the variable
bindings.insert(var.clone(), fact_value.clone());
true
}
}
// Constant: must match exactly
EdnValue::Keyword(k) => {
// Keywords can match either Value::Keyword (for attributes)
// or Value::Ref (for entities - need to convert keyword to UUID)
match fact_value {
Value::Keyword(fk) => k == fk,
Value::Ref(entity_id) => {
// Convert keyword to UUID and compare
if let Ok(expected_id) = edn_to_entity_id(&EdnValue::Keyword(k.clone())) {
expected_id == *entity_id
} else {
false
}
}
_ => false,
}
}
EdnValue::String(s) => {
if let Value::String(fs) = fact_value {
s == fs
} else {
false
}
}
EdnValue::Integer(i) => {
if let Value::Integer(fi) = fact_value {
i == fi
} else {
false
}
}
EdnValue::Float(f) => {
if let Value::Float(ff) = fact_value {
(f - ff).abs() < f64::EPSILON
} else {
false
}
}
EdnValue::Boolean(b) => {
if let Value::Boolean(fb) = fact_value {
b == fb
} else {
false
}
}
EdnValue::Uuid(u) => match fact_value {
Value::Ref(entity_id) => u == entity_id,
// A keyword stored as a value may represent an entity reference.
// Convert it to its canonical UUID and compare — symmetric with
// the EdnValue::Keyword arm above that handles Value::Ref.
Value::Keyword(k) => {
edn_to_entity_id(&EdnValue::Keyword(k.clone())).is_ok_and(|id| u == &id)
}
_ => false,
},
EdnValue::Nil => matches!(fact_value, Value::Null),
// Symbols (non-variables) or other types are not supported in patterns
_ => false,
}
}
/// Match multiple patterns with variable unification
/// Returns bindings that satisfy all patterns simultaneously
pub fn match_patterns(&self, patterns: &[Pattern]) -> Vec<Bindings> {
if patterns.is_empty() {
return vec![HashMap::new()];
}
// Start with the first pattern
let Some(first) = patterns.first() else {
return vec![HashMap::new()];
};
let mut results = self.match_pattern(first);
// Join with each subsequent pattern
for pattern in patterns.get(1..).unwrap_or(&[]) {
results = self.join_with_pattern(results, pattern);
}
results
}
/// Match multiple patterns with index hints for optimized lookups.
#[allow(dead_code)]
pub fn match_patterns_with_hints(&self, patterns: &[(Pattern, IndexHint)]) -> Vec<Bindings> {
if patterns.is_empty() {
return vec![HashMap::new()];
}
// Start with the first pattern
let Some(first) = patterns.first() else {
return vec![HashMap::new()];
};
let mut results = self.match_pattern_with_hint(&first.0, &first.1);
// Join with each subsequent pattern
for (pattern, _hint) in patterns.get(1..).unwrap_or(&[]) {
results = self.join_with_pattern(results, pattern);
}
results
}
/// Match a single pattern against existing bindings, using an index hint when the
/// bindings are the unit seed (one empty map — i.e., this is the first pattern in
/// an incremental plan loop).
///
/// - Unit seed (`[{}]`): delegates to `match_pattern_with_hint` for an indexed lookup.
/// - Any other non-empty seed: delegates to `join_with_pattern` (hash-join path).
/// - Empty seed (`[]`): returns empty immediately.
///
/// Used by the executor and evaluator incremental plan loops introduced in #207.
pub(crate) fn match_with_hint_seeded(
&self,
seed: Vec<Bindings>,
pattern: &Pattern,
hint: &IndexHint,
) -> Vec<Bindings> {
if seed.is_empty() {
return vec![];
}
if seed.len() == 1 && seed.first().map(|s| s.is_empty()).unwrap_or(false) {
// First pattern in the plan — use the index hint for a targeted lookup.
self.match_pattern_with_hint(pattern, hint)
} else {
// Subsequent pattern — join_with_pattern uses hash-join when possible.
self.join_with_pattern(seed, pattern)
}
}
/// Match a single pattern with an index hint for optimized lookup.
fn match_pattern_with_hint(&self, pattern: &Pattern, hint: &IndexHint) -> Vec<Bindings> {
// Get matching fact references from index
let fact_refs = self.lookup_with_hint(pattern, hint);
// If no index lookup possible, fall back to full scan
if fact_refs.is_empty() {
return self.match_pattern(pattern);
}
// Get all facts and filter by the fact refs from index lookup
let facts = self.get_facts();
let mut results = Vec::new();
for fact in &*facts {
if let Some(bindings) = self.match_fact_against_pattern(fact, pattern) {
results.push(bindings);
}
}
results
}
/// Look up fact references using the index based on pattern and hint.
fn lookup_with_hint(
&self,
pattern: &Pattern,
hint: &IndexHint,
) -> Vec<crate::storage::index::FactRef> {
let indexes = &self.indexes;
match hint {
IndexHint::Eavt => {
// If entity is bound, use EAVT entity lookup
if let EdnValue::Uuid(entity) = &pattern.entity {
return indexes.lookup_eavt_entity(*entity);
}
// Fall back to full scan
vec![]
}
IndexHint::Aevt => {
// If attribute is bound, use AEVT attribute lookup
if let AttributeSpec::Real(EdnValue::Keyword(attr)) = &pattern.attribute {
return indexes.lookup_aevt_attr(attr);
}
// Fall back to full scan
vec![]
}
IndexHint::Avet => {
// If attribute and value are bound, use AVET
let attr_bound = match &pattern.attribute {
AttributeSpec::Real(edn) => {
if let EdnValue::Keyword(attr) = edn {
Some(attr.clone())
} else {
None
}
}
_ => None,
};
let value_bound = match &pattern.value {
EdnValue::Keyword(k) => Some(Value::Keyword(k.clone())),
EdnValue::String(s) => Some(Value::String(s.clone())),
EdnValue::Integer(i) => Some(Value::Integer(*i)),
EdnValue::Float(f) => Some(Value::Float(*f)),
EdnValue::Boolean(b) => Some(Value::Boolean(*b)),
EdnValue::Uuid(u) => Some(Value::Ref(*u)),
_ => None,
};
if let (Some(attr), Some(value)) = (attr_bound, value_bound) {
return indexes.lookup_avet_attr_value(&attr, &value);
}
// Fall back to full scan
vec![]
}
IndexHint::Vaet => {
// If value is a Ref, use VAET reverse lookup
if let EdnValue::Uuid(target) = &pattern.value {
return indexes.lookup_vaet_ref(*target);
}
// Fall back to full scan
vec![]
}
}
}
/// Match multiple patterns starting from existing seed bindings.
///
/// For each seed binding, extends it by matching all patterns in sequence.
/// Returns all extended bindings that satisfy every pattern.
/// If `seed` is empty, returns empty. If `patterns` is empty, returns `seed` unchanged.
pub(crate) fn match_patterns_seeded(
&self,
patterns: &[Pattern],
seed: Vec<Bindings>,
) -> Vec<Bindings> {
if seed.is_empty() {
return vec![];
}
if patterns.is_empty() {
return seed;
}
let mut results = seed;
for pattern in patterns {
results = self.join_with_pattern(results, pattern);
}
results
}
/// Join existing bindings with a new pattern.
///
/// Uses a hash-join when the pattern shares a variable with existing bindings
/// (the common `?e`-join shape). Falls back to the nested-loop scan when no
/// shared join variable is found (unrelated patterns, fully-literal patterns,
/// or pseudo-attribute patterns which have their own fast path in
/// `match_pattern_with_bindings`).
fn join_with_pattern(
&self,
existing_bindings: Vec<Bindings>,
pattern: &Pattern,
) -> Vec<Bindings> {
if existing_bindings.is_empty() {
return vec![];
}
// Detect the join variable: the first variable in entity, then value position
// of the new pattern that also appears as a bound key in the existing bindings.
// We skip pseudo-attributes (they have a dedicated fast path in
// match_pattern_with_bindings) and fully-literal patterns (nested loop is
// already O(1) per binding for those).
let is_pseudo = matches!(&pattern.attribute, AttributeSpec::Pseudo(_));
let join_var: Option<String> = if is_pseudo {
None
} else {
// Check entity position first.
let entity_var = match &pattern.entity {
EdnValue::Symbol(s) if s.starts_with('?') => {
// It's a variable. Is it bound in existing bindings?
if existing_bindings.first().is_some_and(|b| b.contains_key(s)) {
Some(s.clone())
} else {
None
}
}
_ => None,
};
if entity_var.is_some() {
entity_var
} else {
// Check value position.
match &pattern.value {
EdnValue::Symbol(s) if s.starts_with('?') => {
if existing_bindings.first().is_some_and(|b| b.contains_key(s)) {
Some(s.clone())
} else {
None
}
}
_ => None,
}
}
};
let Some(jvar) = join_var else {
// No join variable detected: fall back to nested-loop scan.
let mut results = Vec::new();
for existing in existing_bindings {
let new_matches = self.match_pattern_with_bindings(pattern, &existing);
results.extend(new_matches);
}
return results;
};
// Hash-join path:
// 1. Scan all candidate facts for this pattern from an empty binding (no outer context).
// This gives us every binding the pattern can produce, keyed by the join variable.
let candidate_bindings = self.match_pattern(pattern);
// 2. Build HashMap: join_var_value → Vec<Bindings from pattern>
// Normalize keyword values to Ref (UUID) so keyword entity references
// (e.g., Value::Keyword(":d-bad") stored as a value) can match the UUID
// that match_fact_against_pattern produces when the same entity appears
// in entity position (stored as Value::Ref). This mirrors the cross-type
// matching done by match_component's EdnValue::Keyword arm.
let mut build_side: HashMap<Value, Vec<Bindings>> = HashMap::new();
for b in candidate_bindings {
if let Some(val) = b.get(&jvar) {
let key = Self::normalize_join_value(val);
build_side.entry(key).or_default().push(b);
}
}
// 3. Probe: for each existing binding, look up join_var value.
let mut results = Vec::new();
for existing in existing_bindings {
let Some(probe_val) = existing.get(&jvar) else {
// Outer binding doesn't have the join var yet — fall back to scan for this row.
let new_matches = self.match_pattern_with_bindings(pattern, &existing);
results.extend(new_matches);
continue;
};
let probe_key = Self::normalize_join_value(probe_val);
if let Some(matches) = build_side.get(&probe_key) {
for candidate in matches {
// Merge and consistency-check.
let mut merged = existing.clone();
let mut consistent = true;
for (var, val) in candidate {
if var.starts_with("__f") {
merged.insert(var.clone(), val.clone());
continue;
}
if let Some(merged_val) = merged.get(var) {
// Compare using normalized values so that keyword entity
// references (e.g., Keyword(":d-bad") stored as a value in
// one fact) are treated as equal to the UUID Ref produced
// when the same entity appears in entity position.
if Self::normalize_join_value(merged_val)
!= Self::normalize_join_value(val)
{
consistent = false;
break;
}
} else {
merged.insert(var.clone(), val.clone());
}
}
if consistent {
results.push(merged);
}
}
}
// No match in build side → this outer binding is dropped (inner join semantics).
}
results
}
/// Normalize a binding value for use as a hash-join key.
///
/// Converts `Value::Keyword(k)` → `Value::Ref(uuid)` so that entity references
/// bound via keyword (value position) and via entity ID (entity position) hash
/// to the same key. Used only for key comparison — does NOT affect what is
/// stored in merged output bindings (the original `val` is always inserted into
/// the result binding, never the normalized form).
fn normalize_join_value(val: &Value) -> Value {
if let Value::Keyword(k) = val
&& let Ok(uuid) = edn_to_entity_id(&EdnValue::Keyword(k.clone()))
{
return Value::Ref(uuid);
}
val.clone()
}
/// Match a pattern given existing variable bindings
/// Returns new bindings that extend the existing ones
fn match_pattern_with_bindings(&self, pattern: &Pattern, existing: &Bindings) -> Vec<Bindings> {
// Fast path for pseudo-attr patterns: when a preceding real-attr pattern stored
// hidden fact-metadata keys (e.g. `__fvf_<uuid>`), use them directly instead of
// scanning all facts and cross-joining. This ensures pseudo-attr patterns are
// correlated with the specific fact matched by the preceding real-attr pattern.
if let AttributeSpec::Pseudo(pseudo) = &pattern.attribute {
// Resolve the entity component to a UUID using existing bindings
let resolved_entity = self.apply_binding_to_component(&pattern.entity, existing);
let entity_uuid_opt: Option<uuid::Uuid> = match &resolved_entity {
EdnValue::Uuid(u) => Some(*u),
EdnValue::Keyword(k) => edn_to_entity_id(&EdnValue::Keyword(k.clone())).ok(),
_ => None,
};
if let Some(uuid) = entity_uuid_opt {
let eid = uuid.to_string();
let hidden_key = match pseudo {
PseudoAttr::ValidFrom => format!("__fvf_{}", eid),
PseudoAttr::ValidTo => format!("__fvt_{}", eid),
PseudoAttr::TxCount => format!("__ftc_{}", eid),
PseudoAttr::TxId => format!("__fti_{}", eid),
// ValidAt is a query-level constant (not per-fact); fall through to
// the normal scan path so each fact produces one binding (all
// identical). Task 5 (executor) will inject the correct value.
PseudoAttr::ValidAt => {
return self.match_pattern_with_bindings_scan(pattern, existing);
}
};
if let Some(stored_value) = existing.get(&hidden_key) {
let mut new_bindings = existing.clone();
if self.match_component(&pattern.value, stored_value, &mut new_bindings) {
return vec![new_bindings];
}
return vec![];
}
}
}
// Default: scan all facts
self.match_pattern_with_bindings_scan(pattern, existing)
}
/// Default join implementation: iterate all facts and try to match.
fn match_pattern_with_bindings_scan(
&self,
pattern: &Pattern,
existing: &Bindings,
) -> Vec<Bindings> {
let mut results = Vec::new();
let facts = self.get_facts();
for fact in &*facts {
// Try to match with existing bindings
let mut new_bindings = existing.clone();
// Apply existing bindings to pattern before matching
let resolved_pattern = self.apply_bindings_to_pattern(pattern, existing);
if let Some(additional_bindings) =
self.match_fact_against_pattern(fact, &resolved_pattern)
{
// Check that additional bindings are consistent with existing.
// Hidden fact-metadata keys (prefixed `__f`) are always overwritten
// and are excluded from the consistency check.
let mut consistent = true;
for (var, val) in &additional_bindings {
if var.starts_with("__f") {
// Hidden metadata keys: always overwrite, never conflict-check.
continue;
}
if matches!(existing.get(var), Some(existing_val) if existing_val != val) {
consistent = false;
break;
}
}
if consistent {
// Merge bindings (hidden keys are overwritten by the new fact's values)
new_bindings.extend(additional_bindings);
results.push(new_bindings);
}
}
}
results
}
/// Apply existing bindings to a pattern, replacing bound variables with their values
fn apply_bindings_to_pattern(&self, pattern: &Pattern, bindings: &Bindings) -> Pattern {
let attribute = match &pattern.attribute {
AttributeSpec::Real(edn) => {
AttributeSpec::Real(self.apply_binding_to_component(edn, bindings))
}
AttributeSpec::Pseudo(p) => AttributeSpec::Pseudo(p.clone()),
};
Pattern {
entity: self.apply_binding_to_component(&pattern.entity, bindings),
attribute,
value: self.apply_binding_to_component(&pattern.value, bindings),
valid_from: pattern.valid_from,
valid_to: pattern.valid_to,
}
}
/// Apply bindings to a single pattern component
fn apply_binding_to_component(&self, component: &EdnValue, bindings: &Bindings) -> EdnValue {
match component {
EdnValue::Symbol(var) if var.starts_with('?') => {
if let Some(value) = bindings.get(var) {
// Convert Value to EdnValue
self.value_to_edn(value)
} else {
component.clone()
}
}
_ => component.clone(),
}
}
/// Convert a Value to EdnValue for pattern matching
fn value_to_edn(&self, value: &Value) -> EdnValue {
match value {
Value::String(s) => EdnValue::String(s.clone()),
Value::Integer(i) => EdnValue::Integer(*i),
Value::Float(f) => EdnValue::Float(*f),
Value::Boolean(b) => EdnValue::Boolean(*b),
Value::Ref(entity_id) => EdnValue::Uuid(*entity_id),
Value::Keyword(k) => EdnValue::Keyword(k.clone()),
Value::Null => EdnValue::Nil,
}
}
}
/// Convert EdnValue to Value for storage
pub fn edn_to_value(edn: &EdnValue) -> Result<Value, String> {
match edn {
EdnValue::String(s) => Ok(Value::String(s.clone())),
EdnValue::Integer(i) => Ok(Value::Integer(*i)),
EdnValue::Float(f) => Ok(Value::Float(*f)),
EdnValue::Boolean(b) => Ok(Value::Boolean(*b)),
EdnValue::Keyword(k) => Ok(Value::Keyword(k.clone())),
EdnValue::Uuid(u) => Ok(Value::Ref(*u)),
EdnValue::Nil => Ok(Value::Null),
EdnValue::Symbol(s) if s.starts_with('?') => {
Err(format!("Cannot convert unbound variable {} to value", s))
}
_ => Err(format!("Cannot convert {:?} to Value", edn)),
}
}
/// Convert EdnValue to EntityId (must be a keyword or UUID)
pub fn edn_to_entity_id(edn: &EdnValue) -> Result<EntityId, String> {
match edn {
EdnValue::Keyword(k) => {
// Convert keyword to deterministic UUID
// For now, we'll use a simple hash-based approach
// In production, you might want a more sophisticated method
let hash = k.as_bytes();
// Create a UUID from the keyword string
// This is deterministic: same keyword always gives same UUID
if let Ok(uuid) = Uuid::parse_str(k.trim_start_matches(':')) {
Ok(uuid)
} else {
// Generate UUID from keyword name
Ok(Uuid::new_v5(&Uuid::NAMESPACE_OID, hash))
}
}
EdnValue::Uuid(u) => Ok(*u),
_ => Err(format!(
"Expected keyword or UUID for entity, got {:?}",
edn
)),
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_from_slice_with_valid_at_field() {
use crate::graph::types::Value;
use std::sync::Arc;
let facts: Arc<[_]> = Arc::from(vec![]);
let m = PatternMatcher::from_slice_with_valid_at(facts, Value::Integer(12345));
assert_eq!(m.valid_at_value, Value::Integer(12345));
}
#[test]
fn test_match_simple_pattern() {
let storage = FactStorage::new();
let alice_id = Uuid::new_v4();
// Add some facts
storage
.transact(
vec![
(
alice_id,
":person/name".to_string(),
Value::String("Alice".to_string()),
),
(alice_id, ":person/age".to_string(), Value::Integer(30)),
],
None,
)
.unwrap();
let matcher = PatternMatcher::new(storage);
// Pattern: [?e :person/name "Alice"]
let pattern = Pattern::new(
EdnValue::Symbol("?e".to_string()),
EdnValue::Keyword(":person/name".to_string()),
EdnValue::String("Alice".to_string()),
);
let results = matcher.match_pattern(&pattern);
assert_eq!(results.len(), 1);
assert_eq!(results[0].get("?e"), Some(&Value::Ref(alice_id)));
}
#[test]
fn test_match_pattern_with_variable_value() {
let storage = FactStorage::new();
let alice_id = Uuid::new_v4();
storage
.transact(
vec![(
alice_id,
":person/name".to_string(),
Value::String("Alice".to_string()),
)],
None,
)
.unwrap();
let matcher = PatternMatcher::new(storage);
// Pattern: [?e :person/name ?name]
let pattern = Pattern::new(
EdnValue::Symbol("?e".to_string()),
EdnValue::Keyword(":person/name".to_string()),
EdnValue::Symbol("?name".to_string()),
);
let results = matcher.match_pattern(&pattern);
assert_eq!(results.len(), 1);
assert_eq!(
results[0].get("?name"),
Some(&Value::String("Alice".to_string()))
);
}
#[test]
fn test_match_multiple_patterns() {
let storage = FactStorage::new();
let alice_id = Uuid::new_v4();
storage
.transact(
vec![
(
alice_id,
":person/name".to_string(),
Value::String("Alice".to_string()),
),
(alice_id, ":person/age".to_string(), Value::Integer(30)),
],
None,
)
.unwrap();
let matcher = PatternMatcher::new(storage);
// Patterns: [?e :person/name ?name] [?e :person/age ?age]
let patterns = vec![
Pattern::new(
EdnValue::Symbol("?e".to_string()),
EdnValue::Keyword(":person/name".to_string()),
EdnValue::Symbol("?name".to_string()),
),
Pattern::new(
EdnValue::Symbol("?e".to_string()),
EdnValue::Keyword(":person/age".to_string()),
EdnValue::Symbol("?age".to_string()),
),
];
let results = matcher.match_patterns(&patterns);
assert_eq!(results.len(), 1);
assert_eq!(
results[0].get("?name"),
Some(&Value::String("Alice".to_string()))
);
assert_eq!(results[0].get("?age"), Some(&Value::Integer(30)));
}
#[test]
fn test_match_patterns_no_match() {
let storage = FactStorage::new();
let alice_id = Uuid::new_v4();
storage
.transact(
vec![(
alice_id,
":person/name".to_string(),
Value::String("Alice".to_string()),
)],
None,
)
.unwrap();
let matcher = PatternMatcher::new(storage);
// Pattern asks for Bob, but we only have Alice
let pattern = Pattern::new(
EdnValue::Symbol("?e".to_string()),
EdnValue::Keyword(":person/name".to_string()),
EdnValue::String("Bob".to_string()),
);
let results = matcher.match_pattern(&pattern);
assert_eq!(results.len(), 0);
}
#[test]
fn test_edn_to_value() {
assert_eq!(
edn_to_value(&EdnValue::String("test".to_string())).unwrap(),
Value::String("test".to_string())
);
assert_eq!(
edn_to_value(&EdnValue::Integer(42)).unwrap(),
Value::Integer(42)
);
assert_eq!(
edn_to_value(&EdnValue::Boolean(true)).unwrap(),
Value::Boolean(true)
);
// Variables should fail
let result = edn_to_value(&EdnValue::Symbol("?x".to_string()));
assert!(result.is_err());
}
#[test]
fn test_edn_to_entity_id() {
let uuid = Uuid::new_v4();
assert_eq!(edn_to_entity_id(&EdnValue::Uuid(uuid)).unwrap(), uuid);
// Keywords should generate deterministic UUIDs
let result1 = edn_to_entity_id(&EdnValue::Keyword(":alice".to_string())).unwrap();
let result2 = edn_to_entity_id(&EdnValue::Keyword(":alice".to_string())).unwrap();
assert_eq!(result1, result2); // Same keyword = same UUID
}
#[test]
fn test_match_patterns_seeded_with_existing_bindings() {
use uuid::Uuid;
let storage = FactStorage::new();
let alice_id = Uuid::new_v4();
let bob_id = Uuid::new_v4();
storage
.transact(
vec![
(alice_id, ":person/age".to_string(), Value::Integer(30)),
(bob_id, ":person/age".to_string(), Value::Integer(25)),
],
None,
)
.unwrap();
let matcher = PatternMatcher::new(storage);
// Seed: ?e is already bound to alice_id
let seed = vec![{
let mut m = HashMap::new();
m.insert("?e".to_string(), Value::Ref(alice_id));
m
}];
// Pattern: [?e :person/age ?age]
let pattern = Pattern::new(
EdnValue::Symbol("?e".to_string()),
EdnValue::Keyword(":person/age".to_string()),
EdnValue::Symbol("?age".to_string()),
);
let results = matcher.match_patterns_seeded(&[pattern], seed);
// Should find age=30 for alice only (bob is not in seed)
assert_eq!(results.len(), 1);
assert_eq!(results[0].get("?age"), Some(&Value::Integer(30)));
}
#[test]
fn test_match_patterns_seeded_empty_seed_returns_empty() {
use uuid::Uuid;
let storage = FactStorage::new();
let alice_id = Uuid::new_v4();
storage
.transact(vec![(alice_id, ":a".to_string(), Value::Integer(1))], None)
.unwrap();
let matcher = PatternMatcher::new(storage);
let pattern = Pattern::new(
EdnValue::Symbol("?e".to_string()),
EdnValue::Keyword(":a".to_string()),
EdnValue::Symbol("?v".to_string()),
);
let results = matcher.match_patterns_seeded(&[pattern], vec![]);
assert!(results.is_empty());
}
#[test]
fn test_match_patterns_seeded_empty_patterns_returns_seed() {
let storage = FactStorage::new();
let matcher = PatternMatcher::new(storage);
let seed = vec![{
let mut m = HashMap::new();
m.insert("?x".to_string(), Value::Integer(42));
m
}];
let results = matcher.match_patterns_seeded(&[], seed.clone());
assert_eq!(results.len(), 1);
assert_eq!(results[0].get("?x"), Some(&Value::Integer(42)));
}
#[test]
fn test_from_slice_matches_same_as_owned() {
let storage = FactStorage::new();
let alice = Uuid::new_v4();
storage
.transact(
vec![(
alice,
":person/name".to_string(),
Value::String("Alice".to_string()),
)],
None,
)
.unwrap();
// Build owned matcher the existing way
let owned_matcher = PatternMatcher::new(storage.clone());
// Build slice matcher via from_slice
let facts: Arc<[Fact]> = Arc::from(storage.get_asserted_facts().unwrap());
let slice_matcher = PatternMatcher::from_slice(facts);
let pattern = Pattern::new(
EdnValue::Symbol("?e".to_string()),
EdnValue::Keyword(":person/name".to_string()),
EdnValue::Symbol("?name".to_string()),
);
let owned_results = owned_matcher.match_pattern(&pattern);
let slice_results = slice_matcher.match_pattern(&pattern);
assert_eq!(
owned_results.len(),
slice_results.len(),
"result count mismatch"
);
assert_eq!(
owned_results[0].get("?name"),
slice_results[0].get("?name"),
"bound value mismatch"
);
}
#[test]
fn test_from_slice_empty() {
let empty: Arc<[Fact]> = Arc::from(vec![]);
let matcher = PatternMatcher::from_slice(empty);
let pattern = Pattern::new(
EdnValue::Symbol("?e".to_string()),
EdnValue::Keyword(":any".to_string()),
EdnValue::Symbol("?v".to_string()),
);
let results = matcher.match_pattern(&pattern);
assert!(results.is_empty(), "empty slice should produce no results");
}
#[test]
fn test_from_slice_respects_caller_prefiltering() {
// The Slice arm applies no internal filtering — the caller is responsible.
// This test verifies that if the caller correctly excludes retracted facts
// before building the slice, the matcher respects that.
let storage = FactStorage::new();
let alice = Uuid::new_v4();
storage
.transact(
vec![(
alice,
":name".to_string(),
Value::String("Alice".to_string()),
)],
None,
)
.unwrap();
storage
.retract(vec![(
alice,
":name".to_string(),
Value::String("Alice".to_string()),
)])
.unwrap();
// net_asserted_facts() returns the true net state: for each (entity, attribute, value)
// triple, the most recent record wins; retractions exclude the triple entirely.
let asserted: Arc<[Fact]> = Arc::from(crate::graph::storage::net_asserted_facts(
storage.get_all_facts().unwrap(),
));
let matcher = PatternMatcher::from_slice(asserted);
let pattern = Pattern::new(
EdnValue::Symbol("?e".to_string()),
EdnValue::Keyword(":name".to_string()),
EdnValue::Symbol("?v".to_string()),
);
let results = matcher.match_pattern(&pattern);
assert!(
results.is_empty(),
"retracted fact should not appear in slice-based matcher"
);
}
#[test]
fn test_from_slice_no_internal_filtering() {
// from_slice does NO filtering — the caller must pre-filter.
// If the caller passes a raw slice that includes a retracted fact,
// the matcher will return it. This is intentional by design.
let storage = FactStorage::new();
let alice = Uuid::new_v4();
storage
.transact(
vec![(
alice,
":name".to_string(),
Value::String("Alice".to_string()),
)],
None,
)
.unwrap();
storage
.retract(vec![(
alice,
":name".to_string(),
Value::String("Alice".to_string()),
)])
.unwrap();
// Deliberately build a raw, unfiltered slice (all facts, including the retraction)
// This simulates a caller mistake — passing unfiltered facts to from_slice.
let all_facts: Arc<[Fact]> = Arc::from(storage.get_all_facts().unwrap());
let matcher = PatternMatcher::from_slice(all_facts);
let pattern = Pattern::new(
EdnValue::Symbol("?e".to_string()),
EdnValue::Keyword(":name".to_string()),
EdnValue::Symbol("?v".to_string()),
);
let results = matcher.match_pattern(&pattern);
// The matcher returns ALL facts in the slice — both the assert and retract records.
// Caller must pre-filter; from_slice does not filter internally.
assert!(
!results.is_empty(),
"from_slice does not filter internally — raw slice passes through unchanged"
);
}
#[test]
fn test_pseudo_attr_valid_from_join() {
// Simulates the time_interval_entire_interval test pattern:
// [?e :item/label _] [?e :db/valid-from ?vf]
use crate::graph::storage::net_asserted_facts;
use crate::graph::types::{Fact, Value};
use crate::query::datalog::types::{AttributeSpec, PseudoAttr};
use uuid::Uuid;
let storage = crate::graph::FactStorage::new();
let e1 = Uuid::new_v4();
// Transact e1 with explicit valid-from = 1577836800000
let opt =
crate::graph::types::TransactOptions::new(Some(1577836800000), Some(1735689600000));
storage
.transact_batch(
vec![(
e1,
":item/label".to_string(),
Value::String("A".to_string()),
None,
)],
Some(opt),
)
.unwrap();
// Get all facts
let all_facts: Arc<[Fact]> =
Arc::from(net_asserted_facts(storage.get_all_facts().unwrap()));
let matcher = PatternMatcher::from_slice(all_facts.clone());
// First pattern: [?e :item/label _]
let p1 = Pattern {
entity: EdnValue::Symbol("?e".to_string()),
attribute: AttributeSpec::Real(EdnValue::Keyword(":item/label".to_string())),
value: EdnValue::Symbol("_".to_string()),
valid_from: None,
valid_to: None,
};
let r1 = matcher.match_pattern(&p1);
assert_eq!(r1.len(), 1, "first pattern should bind ?e");
// Second pattern: [?e :db/valid-from ?vf]
let p2 = Pattern {
entity: EdnValue::Symbol("?e".to_string()),
attribute: AttributeSpec::Pseudo(PseudoAttr::ValidFrom),
value: EdnValue::Symbol("?vf".to_string()),
valid_from: None,
valid_to: None,
};
let r2 = matcher.match_patterns_seeded(&[p2], r1);
assert_eq!(r2.len(), 1, "second pattern should bind ?vf");
assert_eq!(r2[0].get("?vf"), Some(&Value::Integer(1577836800000)));
}
#[test]
fn test_pseudo_attr_valid_to_tx_count_tx_id_scan_path() {
// Exercises matcher.rs lines 120-122: ValidTo/TxCount/TxId arms in
// match_fact_against_pattern (scan path — no hidden keys seeded).
use crate::graph::storage::net_asserted_facts;
use crate::graph::types::Value as GValue;
use std::sync::Arc;
let storage = FactStorage::new();
let alice_id = Uuid::new_v4();
storage
.transact(
vec![(
alice_id,
":item/label".to_string(),
GValue::String("z".to_string()),
)],
None,
)
.unwrap();
let all_facts: Arc<[Fact]> =
Arc::from(net_asserted_facts(storage.get_all_facts().unwrap()));
let matcher = PatternMatcher::from_slice(all_facts);
// Each test uses a UUID entity + wildcard value so the entity check passes
// and no hidden key is seeded → falls through to scan → hits line 120/121/122.
// Line 120: ValidTo
let p_vt = Pattern {
entity: EdnValue::Uuid(alice_id),
attribute: AttributeSpec::Pseudo(PseudoAttr::ValidTo),
value: EdnValue::Symbol("?vt".to_string()),
valid_from: None,
valid_to: None,
};
let r_vt = matcher.match_pattern(&p_vt);
assert_eq!(r_vt.len(), 1, "ValidTo scan should bind one result");
// Line 121: TxCount
let p_tc = Pattern {
entity: EdnValue::Uuid(alice_id),
attribute: AttributeSpec::Pseudo(PseudoAttr::TxCount),
value: EdnValue::Symbol("?tc".to_string()),
valid_from: None,
valid_to: None,
};
let r_tc = matcher.match_pattern(&p_tc);
assert_eq!(r_tc.len(), 1, "TxCount scan should bind one result");
// Line 122: TxId
let p_ti = Pattern {
entity: EdnValue::Uuid(alice_id),
attribute: AttributeSpec::Pseudo(PseudoAttr::TxId),
value: EdnValue::Symbol("?ti".to_string()),
valid_from: None,
valid_to: None,
};
let r_ti = matcher.match_pattern(&p_ti);
assert_eq!(r_ti.len(), 1, "TxId scan should bind one result");
}
#[test]
fn test_pseudo_attr_entity_non_uuid_non_keyword_falls_through() {
// Exercises matcher.rs line 302: `_ => None` when resolved entity is
// neither Uuid nor Keyword — falls through to scan path.
use crate::graph::storage::net_asserted_facts;
use crate::graph::types::Value as GValue;
use std::sync::Arc;
let storage = FactStorage::new();
let alice_id = Uuid::new_v4();
storage
.transact(
vec![(
alice_id,
":item/label".to_string(),
GValue::String("x".to_string()),
)],
None,
)
.unwrap();
let all_facts: Arc<[Fact]> =
Arc::from(net_asserted_facts(storage.get_all_facts().unwrap()));
let matcher = PatternMatcher::from_slice(all_facts);
// Entity is an Integer — neither Uuid nor Keyword → `_ => None` path
let pattern = Pattern {
entity: EdnValue::Integer(99),
attribute: AttributeSpec::Pseudo(PseudoAttr::ValidFrom),
value: EdnValue::Symbol("?vf".to_string()),
valid_from: None,
valid_to: None,
};
// Falls through to scan; Integer entity won't match any stored UUID → 0 results
let results = matcher.match_pattern(&pattern);
assert_eq!(
results.len(),
0,
"non-uuid/keyword entity should yield no matches"
);
}
#[test]
fn test_pseudo_attr_hidden_key_value_mismatch_returns_empty() {
// Exercises matcher.rs line 323: `return vec![]` when the stored hidden-key
// value doesn't match the pattern value component.
use crate::graph::storage::net_asserted_facts;
use crate::graph::types::Value as GValue;
use std::sync::Arc;
let storage = FactStorage::new();
let alice_id = Uuid::new_v4();
storage
.transact(
vec![(
alice_id,
":item/label".to_string(),
GValue::String("y".to_string()),
)],
None,
)
.unwrap();
let all_facts: Arc<[Fact]> =
Arc::from(net_asserted_facts(storage.get_all_facts().unwrap()));
let matcher = PatternMatcher::from_slice(all_facts.clone());
// Seed bindings with the real-attr pattern so hidden keys are populated
let p1 = Pattern {
entity: EdnValue::Symbol("?e".to_string()),
attribute: AttributeSpec::Real(EdnValue::Keyword(":item/label".to_string())),
value: EdnValue::Symbol("_".to_string()),
valid_from: None,
valid_to: None,
};
let seeded = matcher.match_pattern(&p1);
assert_eq!(seeded.len(), 1, "seed should match one fact");
// Ask for :db/valid-from with an impossible constant value (-999)
// The hidden key exists but -999 won't match the real valid_from → vec![]
let p2 = Pattern {
entity: EdnValue::Symbol("?e".to_string()),
attribute: AttributeSpec::Pseudo(PseudoAttr::ValidFrom),
value: EdnValue::Integer(-999),
valid_from: None,
valid_to: None,
};
let results = matcher.match_patterns_seeded(&[p2], seeded);
assert_eq!(
results.len(),
0,
"mismatched constant should return no bindings"
);
}
#[test]
fn test_match_with_hint_seeded_unit_seed_delegates_to_hint_path() {
use crate::query::datalog::optimizer::IndexHint;
use std::sync::Arc;
let storage = FactStorage::new();
let entity = uuid::Uuid::new_v4();
storage
.transact(vec![(entity, ":val".to_string(), Value::Integer(1))], None)
.unwrap();
let facts: Arc<[Fact]> = Arc::from(storage.get_asserted_facts().unwrap());
let matcher = PatternMatcher::from_slice(facts);
let p = Pattern::new(
EdnValue::Symbol("?e".to_string()),
EdnValue::Keyword(":val".to_string()),
EdnValue::Symbol("?v".to_string()),
);
let unit_seed = vec![HashMap::new()];
let results = matcher.match_with_hint_seeded(unit_seed, &p, &IndexHint::Aevt);
assert_eq!(
results.len(),
1,
"unit seed must produce one result per matching fact"
);
assert!(results[0].contains_key("?v"), "binding must contain ?v");
}
#[test]
fn test_match_with_hint_seeded_real_bindings_uses_join() {
use crate::query::datalog::optimizer::IndexHint;
use std::sync::Arc;
let storage = FactStorage::new();
let e = uuid::Uuid::new_v4();
storage
.transact(vec![(e, ":val".to_string(), Value::Integer(42))], None)
.unwrap();
let facts: Arc<[Fact]> = Arc::from(storage.get_asserted_facts().unwrap());
let matcher = PatternMatcher::from_slice(facts);
let p = Pattern::new(
EdnValue::Uuid(e),
EdnValue::Keyword(":val".to_string()),
EdnValue::Symbol("?v".to_string()),
);
// Non-unit seed — simulates a second-pattern call with existing bindings
let seed = vec![{
let mut m = HashMap::new();
m.insert("?other".to_string(), Value::Integer(99));
m
}];
let results = matcher.match_with_hint_seeded(seed, &p, &IndexHint::Eavt);
assert_eq!(
results.len(),
1,
"join path must unify with existing binding"
);
assert_eq!(results[0].get("?v"), Some(&Value::Integer(42)));
}
#[test]
fn test_match_with_hint_seeded_empty_seed_returns_empty() {
use crate::query::datalog::optimizer::IndexHint;
use std::sync::Arc;
let storage = FactStorage::new();
let facts: Arc<[Fact]> = Arc::from(storage.get_asserted_facts().unwrap());
let matcher = PatternMatcher::from_slice(facts);
let p = Pattern::new(
EdnValue::Symbol("?e".to_string()),
EdnValue::Keyword(":val".to_string()),
EdnValue::Symbol("?v".to_string()),
);
// Completely empty seed (no rows at all)
let results = matcher.match_with_hint_seeded(vec![], &p, &IndexHint::Aevt);
assert!(results.is_empty(), "empty seed must produce empty results");
}
}
#[cfg(test)]
mod hash_join_tests {
use crate::graph::FactStorage;
use crate::query::datalog::executor::DatalogExecutor;
fn make_join_db(n: usize, dept_count: usize) -> DatalogExecutor {
let storage = FactStorage::new();
let exec = DatalogExecutor::new(storage);
for batch_start in (0..n).step_by(50) {
let batch_end = (batch_start + 50).min(n);
let mut cmd = String::from("(transact [");
for i in batch_start..batch_end {
cmd.push_str(&format!("[:e{i} :val {i}]", i = i));
cmd.push_str(&format!("[:e{i} :dept :d{d}]", i = i, d = i % dept_count));
}
cmd.push_str("])");
exec.execute(crate::query::datalog::parser::parse_datalog_command(&cmd).unwrap())
.unwrap();
}
exec
}
/// Two-pattern join: every entity has both :dept and :val facts.
/// Querying [:find ?e ?dept ?v :where [?e :dept ?dept] [?e :val ?v]] should
/// return exactly one row per entity (N rows for N entities).
#[test]
fn two_pattern_join_returns_correct_count() {
let n = 100;
let exec = make_join_db(n, 10);
let result = exec
.execute(
crate::query::datalog::parser::parse_datalog_command(
"(query [:find ?e ?dept ?v :where [?e :dept ?dept] [?e :val ?v]])",
)
.unwrap(),
)
.unwrap();
if let crate::query::datalog::executor::QueryResult::QueryResults { results, .. } = result {
// One row per entity — the join must not produce a cross-product.
assert_eq!(results.len(), n, "expected one row per entity");
} else {
panic!("expected QueryResults");
}
}
/// Correctness check: for 10 entities across 2 departments, the join must
/// pair each entity with the right department and value (no mixing).
#[test]
fn two_pattern_join_values_are_correct() {
// e0,e2,e4,e6,e8 → :d0; e1,e3,e5,e7,e9 → :d1
let n = 10;
let exec = make_join_db(n, 2);
let result = exec
.execute(
crate::query::datalog::parser::parse_datalog_command(
"(query [:find ?e ?dept ?v :where [?e :dept ?dept] [?e :val ?v]])",
)
.unwrap(),
)
.unwrap();
if let crate::query::datalog::executor::QueryResult::QueryResults {
vars, results, ..
} = result
{
assert_eq!(results.len(), n, "expected one row per entity");
let dept_idx = vars
.iter()
.position(|v| v == "?dept")
.expect("?dept in vars");
let val_idx = vars.iter().position(|v| v == "?v").expect("?v in vars");
// Collect (dept, val) pairs; no entity should appear in both departments.
let mut d0_vals: Vec<i64> = Vec::new();
let mut d1_vals: Vec<i64> = Vec::new();
for row in &results {
if let (
crate::graph::types::Value::Keyword(dept),
crate::graph::types::Value::Integer(val),
) = (&row[dept_idx], &row[val_idx])
{
if dept == ":d0" {
d0_vals.push(*val);
} else if dept == ":d1" {
d1_vals.push(*val);
}
}
}
assert_eq!(d0_vals.len(), 5, "d0 should have 5 entities");
assert_eq!(d1_vals.len(), 5, "d1 should have 5 entities");
// All d0 vals are even (0,2,4,6,8) and d1 vals are odd (1,3,5,7,9).
for v in &d0_vals {
assert_eq!(v % 2, 0, "d0 entities have even vals");
}
for v in &d1_vals {
assert_eq!(v % 2, 1, "d1 entities have odd vals");
}
} else {
panic!("expected QueryResults");
}
}
}