oxirs-arq 0.4.0

Jena-style SPARQL algebra with extension points and query optimization
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
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
//! Dataset Implementation
//!
//! This module provides dataset abstractions and implementations for query execution.

use crate::algebra::{PropertyPath, Term as AlgebraTerm, TriplePattern};
use crate::path::{PathDataset, PropertyPath as PathPropertyPath};
use anyhow::{anyhow, Result};
use oxirs_core::model::{GraphName, NamedNode};
use oxirs_core::RdfTerm;
use std::collections::HashSet;

/// Selects which graph(s) a triple-pattern lookup targets within a
/// [`Dataset`].
///
/// This mirrors the SPARQL RDF-dataset distinction between the single active
/// *default graph* and an individually addressed *named graph*. It deliberately
/// does not offer an "all graphs / union" mode, because unioning every graph
/// for a plain pattern is exactly the semantic bug this abstraction exists to
/// prevent (see [`Dataset::find_triples`]).
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum GraphSelector {
    /// The dataset's active default graph.
    DefaultGraph,
    /// A single named graph addressed by its IRI (e.g. `GRAPH <iri> { ... }`).
    Named(NamedNode),
}

/// Dataset trait for data access during query execution
pub trait Dataset: Send + Sync {
    /// Find all triples matching the given pattern in the dataset's **active
    /// default graph**.
    ///
    /// Per SPARQL RDF-dataset semantics a plain (non-`GRAPH`) basic graph
    /// pattern reads only the default graph, not the union of every named
    /// graph. Implementors backed by a quad store MUST scope this to the
    /// default graph rather than passing an unbound graph filter.
    fn find_triples(
        &self,
        pattern: &TriplePattern,
    ) -> Result<Vec<(AlgebraTerm, AlgebraTerm, AlgebraTerm)>>;

    /// Check if a triple exists in the dataset
    fn contains_triple(
        &self,
        subject: &AlgebraTerm,
        predicate: &AlgebraTerm,
        object: &AlgebraTerm,
    ) -> Result<bool>;

    /// Get all subjects in the dataset
    fn subjects(&self) -> Result<Vec<AlgebraTerm>>;

    /// Get all predicates in the dataset
    fn predicates(&self) -> Result<Vec<AlgebraTerm>>;

    /// Get all objects in the dataset
    fn objects(&self) -> Result<Vec<AlgebraTerm>>;

    /// Whether this dataset can honor graph-scoped access
    /// ([`Dataset::find_triples_in`]) and named-graph enumeration
    /// ([`Dataset::named_graphs`]).
    ///
    /// Defaults to `false`; graph-capable implementors override it to `true`.
    fn has_graph_support(&self) -> bool {
        false
    }

    /// Find all triples matching `pattern` within the graph selected by
    /// `selector`.
    ///
    /// The default implementation FAILS LOUD: a dataset that cannot scope by
    /// graph must never silently fall back to unioning every graph, since that
    /// corrupts `GRAPH` / `FROM` semantics. Graph-capable implementors override
    /// this (and set [`Dataset::has_graph_support`] to `true`).
    fn find_triples_in(
        &self,
        selector: &GraphSelector,
        pattern: &TriplePattern,
    ) -> Result<Vec<(AlgebraTerm, AlgebraTerm, AlgebraTerm)>> {
        let _ = (selector, pattern);
        Err(anyhow!(
            "graph-scoped access not supported by this dataset: it does not \
             implement Dataset::find_triples_in (has_graph_support() is false)"
        ))
    }

    /// Enumerate the named graphs visible in this dataset, as `Term::Iri`
    /// values, for `GRAPH ?g` evaluation.
    ///
    /// The default implementation FAILS LOUD for the same reason as
    /// [`Dataset::find_triples_in`].
    fn named_graphs(&self) -> Result<Vec<AlgebraTerm>> {
        Err(anyhow!(
            "named-graph enumeration not supported by this dataset: it does \
             not implement Dataset::named_graphs (has_graph_support() is false)"
        ))
    }
}

/// In-memory dataset implementation for testing.
///
/// Each stored triple carries an optional graph label: `None` places it in the
/// default graph, `Some(iri)` in the named graph `iri`. This lets the in-memory
/// dataset exercise `GRAPH` / `FROM` scoping without a backing quad store.
#[derive(Debug, Clone, Default)]
pub struct InMemoryDataset {
    quads: Vec<(Option<NamedNode>, AlgebraTerm, AlgebraTerm, AlgebraTerm)>,
}

impl InMemoryDataset {
    pub fn new() -> Self {
        Self { quads: Vec::new() }
    }

    /// Add a triple to the **default graph**.
    pub fn add_triple(
        &mut self,
        subject: AlgebraTerm,
        predicate: AlgebraTerm,
        object: AlgebraTerm,
    ) {
        self.quads.push((None, subject, predicate, object));
    }

    /// Add a triple to the named graph `graph`.
    pub fn add_triple_in_graph(
        &mut self,
        graph: NamedNode,
        subject: AlgebraTerm,
        predicate: AlgebraTerm,
        object: AlgebraTerm,
    ) {
        self.quads.push((Some(graph), subject, predicate, object));
    }

    /// Build a default-graph-only dataset from a list of triples.
    pub fn from_triples(triples: Vec<(AlgebraTerm, AlgebraTerm, AlgebraTerm)>) -> Self {
        Self {
            quads: triples
                .into_iter()
                .map(|(s, p, o)| (None, s, p, o))
                .collect(),
        }
    }

    /// Filter stored quads by an explicit graph target and the pattern.
    fn scan(
        &self,
        want_graph: Option<&NamedNode>,
        pattern: &TriplePattern,
    ) -> Vec<(AlgebraTerm, AlgebraTerm, AlgebraTerm)> {
        self.quads
            .iter()
            .filter(|(g, s, p, o)| {
                let graph_ok = match (want_graph, g) {
                    (None, None) => true,
                    (Some(want), Some(have)) => want == have,
                    _ => false,
                };
                graph_ok
                    && matches_term(&pattern.subject, s)
                    && matches_term(&pattern.predicate, p)
                    && matches_term(&pattern.object, o)
            })
            .map(|(_, s, p, o)| (s.clone(), p.clone(), o.clone()))
            .collect()
    }
}

impl Dataset for InMemoryDataset {
    fn find_triples(
        &self,
        pattern: &TriplePattern,
    ) -> Result<Vec<(AlgebraTerm, AlgebraTerm, AlgebraTerm)>> {
        // Plain BGP reads the default graph only.
        Ok(self.scan(None, pattern))
    }

    fn find_triples_in(
        &self,
        selector: &GraphSelector,
        pattern: &TriplePattern,
    ) -> Result<Vec<(AlgebraTerm, AlgebraTerm, AlgebraTerm)>> {
        let want = match selector {
            GraphSelector::DefaultGraph => None,
            GraphSelector::Named(iri) => Some(iri),
        };
        Ok(self.scan(want, pattern))
    }

    fn has_graph_support(&self) -> bool {
        true
    }

    fn named_graphs(&self) -> Result<Vec<AlgebraTerm>> {
        let mut seen: HashSet<NamedNode> = HashSet::new();
        let mut names: Vec<AlgebraTerm> = Vec::new();
        for (g, _, _, _) in &self.quads {
            if let Some(iri) = g {
                if seen.insert(iri.clone()) {
                    names.push(AlgebraTerm::Iri(iri.clone()));
                }
            }
        }
        Ok(names)
    }

    fn contains_triple(
        &self,
        subject: &AlgebraTerm,
        predicate: &AlgebraTerm,
        object: &AlgebraTerm,
    ) -> Result<bool> {
        // Existence check against the default graph, consistent with
        // `find_triples`.
        Ok(self
            .quads
            .iter()
            .any(|(g, s, p, o)| g.is_none() && s == subject && p == predicate && o == object))
    }

    fn subjects(&self) -> Result<Vec<AlgebraTerm>> {
        let subjects: HashSet<_> = self.quads.iter().map(|(_, s, _, _)| s.clone()).collect();
        Ok(subjects.into_iter().collect())
    }

    fn predicates(&self) -> Result<Vec<AlgebraTerm>> {
        let predicates: HashSet<_> = self.quads.iter().map(|(_, _, p, _)| p.clone()).collect();
        Ok(predicates.into_iter().collect())
    }

    fn objects(&self) -> Result<Vec<AlgebraTerm>> {
        let objects: HashSet<_> = self.quads.iter().map(|(_, _, _, o)| o.clone()).collect();
        Ok(objects.into_iter().collect())
    }
}

fn matches_term(pattern: &AlgebraTerm, term: &AlgebraTerm) -> bool {
    match pattern {
        AlgebraTerm::Variable(_) => true, // Variables match any term
        _ => pattern == term,
    }
}

/// Adapter to make Dataset implement PathDataset
pub struct DatasetPathAdapter<'a> {
    dataset: &'a dyn Dataset,
}

impl<'a> DatasetPathAdapter<'a> {
    pub fn new(dataset: &'a dyn Dataset) -> Self {
        Self { dataset }
    }
}

impl<'a> PathDataset for DatasetPathAdapter<'a> {
    fn find_outgoing(
        &self,
        subject: &AlgebraTerm,
        predicate: &AlgebraTerm,
    ) -> Result<Vec<AlgebraTerm>> {
        let pattern = TriplePattern::new(
            subject.clone(),
            predicate.clone(),
            AlgebraTerm::Variable(crate::algebra::Variable::new("?o")?),
        );
        let triples = self.dataset.find_triples(&pattern)?;
        Ok(triples.into_iter().map(|(_, _, o)| o).collect())
    }

    fn find_incoming(
        &self,
        predicate: &AlgebraTerm,
        object: &AlgebraTerm,
    ) -> Result<Vec<AlgebraTerm>> {
        let pattern = TriplePattern::new(
            AlgebraTerm::Variable(crate::algebra::Variable::new("?s")?),
            predicate.clone(),
            object.clone(),
        );
        let triples = self.dataset.find_triples(&pattern)?;
        Ok(triples.into_iter().map(|(s, _, _)| s).collect())
    }

    fn find_predicates(
        &self,
        subject: &AlgebraTerm,
        object: &AlgebraTerm,
    ) -> Result<Vec<AlgebraTerm>> {
        let pattern = TriplePattern::new(
            subject.clone(),
            AlgebraTerm::Variable(crate::algebra::Variable::new("?p")?),
            object.clone(),
        );
        let triples = self.dataset.find_triples(&pattern)?;
        Ok(triples.into_iter().map(|(_, p, _)| p).collect())
    }

    fn get_predicates(&self) -> Result<Vec<AlgebraTerm>> {
        self.dataset.predicates()
    }

    fn contains_triple(
        &self,
        subject: &AlgebraTerm,
        predicate: &AlgebraTerm,
        object: &AlgebraTerm,
    ) -> Result<bool> {
        self.dataset.contains_triple(subject, predicate, object)
    }
}

/// Convert algebra PropertyPath to path module PropertyPath
pub fn convert_property_path(path: &PropertyPath) -> Result<PathPropertyPath> {
    match path {
        PropertyPath::Iri(iri) => Ok(PathPropertyPath::Direct(AlgebraTerm::Iri(iri.clone()))),
        PropertyPath::Variable(var) => {
            Ok(PathPropertyPath::Direct(AlgebraTerm::Variable(var.clone())))
        }
        PropertyPath::Inverse(inner) => {
            let inner_path = convert_property_path(inner)?;
            Ok(PathPropertyPath::Inverse(Box::new(inner_path)))
        }
        PropertyPath::Sequence(left, right) => {
            let left_path = convert_property_path(left)?;
            let right_path = convert_property_path(right)?;
            Ok(PathPropertyPath::Sequence(
                Box::new(left_path),
                Box::new(right_path),
            ))
        }
        PropertyPath::Alternative(left, right) => {
            let left_path = convert_property_path(left)?;
            let right_path = convert_property_path(right)?;
            Ok(PathPropertyPath::Alternative(
                Box::new(left_path),
                Box::new(right_path),
            ))
        }
        PropertyPath::ZeroOrMore(inner) => {
            let inner_path = convert_property_path(inner)?;
            Ok(PathPropertyPath::ZeroOrMore(Box::new(inner_path)))
        }
        PropertyPath::OneOrMore(inner) => {
            let inner_path = convert_property_path(inner)?;
            Ok(PathPropertyPath::OneOrMore(Box::new(inner_path)))
        }
        PropertyPath::ZeroOrOne(inner) => {
            let inner_path = convert_property_path(inner)?;
            Ok(PathPropertyPath::ZeroOrOne(Box::new(inner_path)))
        }
        PropertyPath::NegatedPropertySet(paths) => {
            let mut terms = Vec::new();
            for p in paths {
                match p {
                    PropertyPath::Iri(iri) => terms.push(AlgebraTerm::Iri(iri.clone())),
                    PropertyPath::Variable(var) => terms.push(AlgebraTerm::Variable(var.clone())),
                    _ => {
                        return Err(anyhow!(
                            "Negated property set can only contain IRIs or variables"
                        ))
                    }
                }
            }
            Ok(PathPropertyPath::NegatedPropertySet(terms))
        }
    }
}

/// Adapter to make ConcreteStore implement Dataset trait
/// This is primarily for benchmarking and testing purposes
pub struct ConcreteStoreDataset {
    store: std::sync::Arc<oxirs_core::rdf_store::ConcreteStore>,
}

impl ConcreteStoreDataset {
    pub fn new(store: oxirs_core::rdf_store::ConcreteStore) -> Self {
        Self {
            store: std::sync::Arc::new(store),
        }
    }

    pub fn from_arc(store: std::sync::Arc<oxirs_core::rdf_store::ConcreteStore>) -> Self {
        Self { store }
    }
}

impl Clone for ConcreteStoreDataset {
    fn clone(&self) -> Self {
        Self {
            store: std::sync::Arc::clone(&self.store),
        }
    }
}

impl Dataset for ConcreteStoreDataset {
    fn find_triples(
        &self,
        pattern: &TriplePattern,
    ) -> Result<Vec<(AlgebraTerm, AlgebraTerm, AlgebraTerm)>> {
        // Plain BGP reads the default graph only (SPARQL dataset semantics).
        self.find_triples_in(&GraphSelector::DefaultGraph, pattern)
    }

    fn find_triples_in(
        &self,
        selector: &GraphSelector,
        pattern: &TriplePattern,
    ) -> Result<Vec<(AlgebraTerm, AlgebraTerm, AlgebraTerm)>> {
        use oxirs_core::rdf_store::Store;

        let Some((subject, predicate, object)) = pattern_to_query_terms(pattern)? else {
            // The pattern references a term that cannot occupy its position, so
            // it matches nothing (not an error).
            return Ok(Vec::new());
        };
        let graph_name = graph_selector_to_name(selector);
        let quads = self.store.find_quads(
            subject.as_ref(),
            predicate.as_ref(),
            object.as_ref(),
            Some(&graph_name),
        )?;
        Ok(quads_to_algebra_triples(quads))
    }

    fn has_graph_support(&self) -> bool {
        true
    }

    fn named_graphs(&self) -> Result<Vec<AlgebraTerm>> {
        collect_named_graphs(self.store.as_ref())
    }

    fn contains_triple(
        &self,
        subject: &AlgebraTerm,
        predicate: &AlgebraTerm,
        object: &AlgebraTerm,
    ) -> Result<bool> {
        let pattern = TriplePattern::new(subject.clone(), predicate.clone(), object.clone());
        let triples = self.find_triples(&pattern)?;
        Ok(!triples.is_empty())
    }

    fn subjects(&self) -> Result<Vec<AlgebraTerm>> {
        use oxirs_core::rdf_store::Store;
        let quads = self.store.find_quads(None, None, None, None)?;
        let subjects: HashSet<_> = quads
            .into_iter()
            .filter_map(|quad| match quad.subject() {
                oxirs_core::model::Subject::NamedNode(n) => Some(AlgebraTerm::Iri(
                    oxirs_core::model::NamedNode::new(n.as_str()).ok()?,
                )),
                oxirs_core::model::Subject::BlankNode(b) => {
                    Some(AlgebraTerm::BlankNode(b.as_str().to_string()))
                }
                oxirs_core::model::Subject::Variable(v) => Some(AlgebraTerm::Variable(v.clone())),
                oxirs_core::model::Subject::QuotedTriple(_) => None,
            })
            .collect();
        Ok(subjects.into_iter().collect())
    }

    fn predicates(&self) -> Result<Vec<AlgebraTerm>> {
        use oxirs_core::rdf_store::Store;
        let quads = self.store.find_quads(None, None, None, None)?;
        let predicates: HashSet<_> = quads
            .into_iter()
            .filter_map(|quad| {
                Some(AlgebraTerm::Iri(
                    oxirs_core::model::NamedNode::new(quad.predicate().as_str()).ok()?,
                ))
            })
            .collect();
        Ok(predicates.into_iter().collect())
    }

    fn objects(&self) -> Result<Vec<AlgebraTerm>> {
        use oxirs_core::rdf_store::Store;
        let quads = self.store.find_quads(None, None, None, None)?;
        let objects: HashSet<_> = quads
            .into_iter()
            .filter_map(|quad| match quad.object() {
                oxirs_core::model::Object::NamedNode(n) => Some(AlgebraTerm::Iri(
                    oxirs_core::model::NamedNode::new(n.as_str()).ok()?,
                )),
                oxirs_core::model::Object::Literal(l) => {
                    Some(AlgebraTerm::Literal(core_literal_to_algebra(l)))
                }
                oxirs_core::model::Object::BlankNode(b) => {
                    Some(AlgebraTerm::BlankNode(b.as_str().to_string()))
                }
                oxirs_core::model::Object::Variable(v) => Some(AlgebraTerm::Variable(v.clone())),
                oxirs_core::model::Object::QuotedTriple(_) => None,
            })
            .collect();
        Ok(objects.into_iter().collect())
    }
}

/// Well-known datatype IRIs whose presence is implicit for plain / language
/// literals and therefore represented as `datatype: None` in the algebra model.
const XSD_STRING: &str = "http://www.w3.org/2001/XMLSchema#string";
const RDF_LANG_STRING: &str = "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString";

/// Build a store `Literal` from an algebra `Literal`, preserving the datatype
/// and language tag. Mirrors `update::UpdateExecutor::term_to_object` so that
/// typed/lang-tagged literal patterns match real data in the store instead of
/// being silently coerced to plain `xsd:string`.
pub(crate) fn algebra_literal_to_core(lit: &crate::algebra::Literal) -> oxirs_core::model::Literal {
    if let Some(lang) = &lit.language {
        oxirs_core::model::Literal::new_language_tagged_literal(&lit.value, lang)
            .unwrap_or_else(|_| oxirs_core::model::Literal::new(&lit.value))
    } else if let Some(dt) = &lit.datatype {
        oxirs_core::model::Literal::new_typed(&lit.value, dt.clone())
    } else {
        oxirs_core::model::Literal::new(&lit.value)
    }
}

/// Convert a store `Literal` into an algebra `Literal`, preserving the datatype
/// and language tag (dropping only the implicit `xsd:string` / `rdf:langString`
/// datatypes, which the algebra model expresses via `datatype: None`).
pub(crate) fn core_literal_to_algebra(l: &oxirs_core::model::Literal) -> crate::algebra::Literal {
    if let Some(lang) = l.language() {
        crate::algebra::Literal {
            value: l.value().to_string(),
            language: Some(lang.to_string()),
            datatype: None,
        }
    } else {
        let dt = l.datatype().into_owned();
        let datatype = if dt.as_str() == XSD_STRING || dt.as_str() == RDF_LANG_STRING {
            None
        } else {
            Some(dt)
        };
        crate::algebra::Literal {
            value: l.value().to_string(),
            language: None,
            datatype,
        }
    }
}

/// Convert a triple pattern into optional (subject, predicate, object) store
/// query terms. `None` in any position means an unbound wildcard.
/// Convert a triple pattern's terms into a store `find_quads` filter.
///
/// Returns `Ok(None)` when a concrete term cannot occupy its position — a
/// literal (or property-path / quoted-triple) subject, or a literal / blank
/// predicate — because such a pattern matches nothing in a well-formed RDF
/// graph. Callers must treat `None` as an empty result rather than an error:
/// the property-path engine, when both endpoints are variables, probes every
/// term (including literals) as a candidate start node, and those probes must
/// yield no rows rather than failing the whole query.
#[allow(clippy::type_complexity)]
pub(crate) fn pattern_to_query_terms(
    pattern: &TriplePattern,
) -> Result<
    Option<(
        Option<oxirs_core::model::Subject>,
        Option<oxirs_core::model::Predicate>,
        Option<oxirs_core::model::Object>,
    )>,
> {
    let subject = match &pattern.subject {
        AlgebraTerm::Iri(iri) => Some(oxirs_core::model::Subject::NamedNode(iri.clone())),
        AlgebraTerm::Variable(_) => None,
        AlgebraTerm::BlankNode(id) => Some(oxirs_core::model::Subject::BlankNode(
            oxirs_core::model::BlankNode::new(id)
                .map_err(|e| anyhow!("Invalid blank node: {}", e))?,
        )),
        // A literal / property-path / quoted-triple can never be a subject.
        _ => return Ok(None),
    };

    let predicate = match &pattern.predicate {
        AlgebraTerm::Iri(iri) => Some(oxirs_core::model::Predicate::NamedNode(iri.clone())),
        AlgebraTerm::Variable(_) => None,
        AlgebraTerm::PropertyPath(path) => match path {
            PropertyPath::Iri(iri) => Some(oxirs_core::model::Predicate::NamedNode(iri.clone())),
            PropertyPath::Variable(_) => None,
            // A complex path must be evaluated by the path engine, not matched
            // as a single triple; reaching here is an engine routing fault.
            _ => {
                return Err(anyhow!(
                    "Complex property paths not yet supported in find_triples"
                ))
            }
        },
        // A literal / blank node can never be a predicate.
        _ => return Ok(None),
    };

    let object = match &pattern.object {
        AlgebraTerm::Iri(iri) => Some(oxirs_core::model::Object::NamedNode(iri.clone())),
        AlgebraTerm::Literal(lit) => Some(oxirs_core::model::Object::Literal(
            algebra_literal_to_core(lit),
        )),
        AlgebraTerm::BlankNode(id) => Some(oxirs_core::model::Object::BlankNode(
            oxirs_core::model::BlankNode::new(id)
                .map_err(|e| anyhow!("Invalid blank node: {}", e))?,
        )),
        AlgebraTerm::Variable(_) => None,
        // A property-path / quoted-triple can never be an object here.
        _ => return Ok(None),
    };

    Ok(Some((subject, predicate, object)))
}

/// Convert store quads into algebra triples, preserving literal datatype and
/// language. RDF-star quoted triples are skipped.
pub(crate) fn quads_to_algebra_triples(
    quads: Vec<oxirs_core::model::Quad>,
) -> Vec<(AlgebraTerm, AlgebraTerm, AlgebraTerm)> {
    quads
        .into_iter()
        .filter_map(|quad| {
            let s = match quad.subject() {
                oxirs_core::model::Subject::NamedNode(n) => {
                    AlgebraTerm::Iri(oxirs_core::model::NamedNode::new(n.as_str()).ok()?)
                }
                oxirs_core::model::Subject::BlankNode(b) => {
                    AlgebraTerm::BlankNode(b.as_str().to_string())
                }
                oxirs_core::model::Subject::Variable(v) => AlgebraTerm::Variable(v.clone()),
                oxirs_core::model::Subject::QuotedTriple(_) => return None,
            };

            let p = AlgebraTerm::Iri(
                oxirs_core::model::NamedNode::new(quad.predicate().as_str()).ok()?,
            );

            let o = match quad.object() {
                oxirs_core::model::Object::NamedNode(n) => {
                    AlgebraTerm::Iri(oxirs_core::model::NamedNode::new(n.as_str()).ok()?)
                }
                oxirs_core::model::Object::Literal(l) => {
                    AlgebraTerm::Literal(core_literal_to_algebra(l))
                }
                oxirs_core::model::Object::BlankNode(b) => {
                    AlgebraTerm::BlankNode(b.as_str().to_string())
                }
                oxirs_core::model::Object::Variable(v) => AlgebraTerm::Variable(v.clone()),
                oxirs_core::model::Object::QuotedTriple(_) => return None,
            };

            Some((s, p, o))
        })
        .collect()
}

/// Map a [`GraphSelector`] to the concrete store [`GraphName`] it addresses.
pub(crate) fn graph_selector_to_name(selector: &GraphSelector) -> GraphName {
    match selector {
        GraphSelector::DefaultGraph => GraphName::DefaultGraph,
        GraphSelector::Named(iri) => GraphName::NamedNode(iri.clone()),
    }
}

/// Enumerate the distinct named graphs of a store as algebra `Term::Iri`
/// values.
///
/// Delegates to the store's [`Store::named_graphs`](oxirs_core::rdf_store::Store::named_graphs)
/// trait method, which both real oxirs-core stores (`RdfStore` and
/// `ConcreteStore`) override to read the interned graph-name index in
/// O(graphs). This replaces the earlier streaming `for_each_quad` scan
/// (O(quads)) that only existed because the trait method used to return an
/// empty vector; now that the concrete stores populate it for real, the trait
/// is the authoritative source.
pub(crate) fn collect_named_graphs(
    store: &dyn oxirs_core::rdf_store::Store,
) -> Result<Vec<AlgebraTerm>> {
    Ok(store
        .named_graphs()?
        .into_iter()
        .map(AlgebraTerm::Iri)
        .collect())
}

/// Adapter exposing any `&dyn oxirs_core::Store` as a query [`Dataset`].
///
/// This is the bridge used by `UPDATE ... WHERE` evaluation so that
/// DELETE/INSERT WHERE and DELETE-INSERT operate on the real triple store
/// (via `Store::find_quads`) rather than a disconnected in-memory executor.
pub struct StoreRefDataset<'s> {
    store: &'s dyn oxirs_core::rdf_store::Store,
}

impl<'s> StoreRefDataset<'s> {
    /// Wrap a borrowed store as a dataset.
    pub fn new(store: &'s dyn oxirs_core::rdf_store::Store) -> Self {
        Self { store }
    }
}

impl<'s> Dataset for StoreRefDataset<'s> {
    fn find_triples(
        &self,
        pattern: &TriplePattern,
    ) -> Result<Vec<(AlgebraTerm, AlgebraTerm, AlgebraTerm)>> {
        // Plain BGP reads the dataset's default graph only. Previously this
        // passed `None` (unbound graph), which UNIONED every named graph and
        // violated SPARQL default-graph semantics.
        self.find_triples_in(&GraphSelector::DefaultGraph, pattern)
    }

    fn find_triples_in(
        &self,
        selector: &GraphSelector,
        pattern: &TriplePattern,
    ) -> Result<Vec<(AlgebraTerm, AlgebraTerm, AlgebraTerm)>> {
        let Some((subject, predicate, object)) = pattern_to_query_terms(pattern)? else {
            return Ok(Vec::new());
        };
        let graph_name = graph_selector_to_name(selector);
        let quads = self.store.find_quads(
            subject.as_ref(),
            predicate.as_ref(),
            object.as_ref(),
            Some(&graph_name),
        )?;
        Ok(quads_to_algebra_triples(quads))
    }

    fn has_graph_support(&self) -> bool {
        true
    }

    fn named_graphs(&self) -> Result<Vec<AlgebraTerm>> {
        collect_named_graphs(self.store)
    }

    fn contains_triple(
        &self,
        subject: &AlgebraTerm,
        predicate: &AlgebraTerm,
        object: &AlgebraTerm,
    ) -> Result<bool> {
        let pattern = TriplePattern::new(subject.clone(), predicate.clone(), object.clone());
        Ok(!self.find_triples(&pattern)?.is_empty())
    }

    fn subjects(&self) -> Result<Vec<AlgebraTerm>> {
        let quads = self.store.find_quads(None, None, None, None)?;
        let subjects: HashSet<_> = quads
            .into_iter()
            .filter_map(|quad| match quad.subject() {
                oxirs_core::model::Subject::NamedNode(n) => Some(AlgebraTerm::Iri(
                    oxirs_core::model::NamedNode::new(n.as_str()).ok()?,
                )),
                oxirs_core::model::Subject::BlankNode(b) => {
                    Some(AlgebraTerm::BlankNode(b.as_str().to_string()))
                }
                oxirs_core::model::Subject::Variable(v) => Some(AlgebraTerm::Variable(v.clone())),
                oxirs_core::model::Subject::QuotedTriple(_) => None,
            })
            .collect();
        Ok(subjects.into_iter().collect())
    }

    fn predicates(&self) -> Result<Vec<AlgebraTerm>> {
        let quads = self.store.find_quads(None, None, None, None)?;
        let predicates: HashSet<_> = quads
            .into_iter()
            .filter_map(|quad| {
                Some(AlgebraTerm::Iri(
                    oxirs_core::model::NamedNode::new(quad.predicate().as_str()).ok()?,
                ))
            })
            .collect();
        Ok(predicates.into_iter().collect())
    }

    fn objects(&self) -> Result<Vec<AlgebraTerm>> {
        let quads = self.store.find_quads(None, None, None, None)?;
        let objects: HashSet<_> = quads
            .into_iter()
            .filter_map(|quad| match quad.object() {
                oxirs_core::model::Object::NamedNode(n) => Some(AlgebraTerm::Iri(
                    oxirs_core::model::NamedNode::new(n.as_str()).ok()?,
                )),
                oxirs_core::model::Object::Literal(l) => {
                    Some(AlgebraTerm::Literal(core_literal_to_algebra(l)))
                }
                oxirs_core::model::Object::BlankNode(b) => {
                    Some(AlgebraTerm::BlankNode(b.as_str().to_string()))
                }
                oxirs_core::model::Object::Variable(v) => Some(AlgebraTerm::Variable(v.clone())),
                oxirs_core::model::Object::QuotedTriple(_) => None,
            })
            .collect();
        Ok(objects.into_iter().collect())
    }
}

/// Build a wildcard triple pattern (`?s ?p ?o`) for whole-graph scans.
fn wildcard_pattern() -> TriplePattern {
    TriplePattern::new(
        AlgebraTerm::Variable(crate::algebra::Variable::new_unchecked("s")),
        AlgebraTerm::Variable(crate::algebra::Variable::new_unchecked("p")),
        AlgebraTerm::Variable(crate::algebra::Variable::new_unchecked("o")),
    )
}

/// A [`Dataset`] view that pins every plain lookup to a single graph.
///
/// Wrapping a base dataset in a `GraphScopedDataset` makes the *unscoped*
/// [`Dataset::find_triples`] entry point — the funnel that BGP evaluation,
/// property paths and `EXISTS` all pass through — read only the selected graph.
/// The inner pattern-evaluation code therefore needs no changes to honor
/// `GRAPH` scoping: it keeps calling `find_triples`, and the view redirects it.
///
/// A nested `GRAPH` inside a scoped view overrides the outer scope, exactly as
/// SPARQL requires: [`Dataset::find_triples_in`] forwards the inner selector to
/// the base rather than intersecting with the outer one.
pub struct GraphScopedDataset<'a> {
    base: &'a dyn Dataset,
    selector: GraphSelector,
}

impl<'a> GraphScopedDataset<'a> {
    /// Restrict all plain lookups on `base` to the graph named by `selector`.
    pub fn new(base: &'a dyn Dataset, selector: GraphSelector) -> Self {
        Self { base, selector }
    }
}

impl<'a> Dataset for GraphScopedDataset<'a> {
    fn find_triples(
        &self,
        pattern: &TriplePattern,
    ) -> Result<Vec<(AlgebraTerm, AlgebraTerm, AlgebraTerm)>> {
        self.base.find_triples_in(&self.selector, pattern)
    }

    fn find_triples_in(
        &self,
        selector: &GraphSelector,
        pattern: &TriplePattern,
    ) -> Result<Vec<(AlgebraTerm, AlgebraTerm, AlgebraTerm)>> {
        // Inner GRAPH wins over the outer scope.
        self.base.find_triples_in(selector, pattern)
    }

    fn has_graph_support(&self) -> bool {
        self.base.has_graph_support()
    }

    fn named_graphs(&self) -> Result<Vec<AlgebraTerm>> {
        self.base.named_graphs()
    }

    fn contains_triple(
        &self,
        subject: &AlgebraTerm,
        predicate: &AlgebraTerm,
        object: &AlgebraTerm,
    ) -> Result<bool> {
        let pattern = TriplePattern::new(subject.clone(), predicate.clone(), object.clone());
        Ok(!self.find_triples(&pattern)?.is_empty())
    }

    fn subjects(&self) -> Result<Vec<AlgebraTerm>> {
        let triples = self.find_triples(&wildcard_pattern())?;
        let set: HashSet<_> = triples.into_iter().map(|(s, _, _)| s).collect();
        Ok(set.into_iter().collect())
    }

    fn predicates(&self) -> Result<Vec<AlgebraTerm>> {
        let triples = self.find_triples(&wildcard_pattern())?;
        let set: HashSet<_> = triples.into_iter().map(|(_, p, _)| p).collect();
        Ok(set.into_iter().collect())
    }

    fn objects(&self) -> Result<Vec<AlgebraTerm>> {
        let triples = self.find_triples(&wildcard_pattern())?;
        let set: HashSet<_> = triples.into_iter().map(|(_, _, o)| o).collect();
        Ok(set.into_iter().collect())
    }
}

/// A [`Dataset`] view implementing SPARQL `FROM` / `FROM NAMED` dataset
/// construction over a base dataset.
///
/// * The active **default graph** is the union of the `FROM` graphs
///   (`default_graphs`); with no `FROM` graphs it falls back to the base
///   dataset's own default graph.
/// * The visible **named graphs** (for `GRAPH` and `GRAPH ?g` enumeration) are
///   exactly the `FROM NAMED` graphs (`named_graphs`); a `FROM`-only clause
///   therefore exposes no named graphs.
/// * An entirely empty clause is a transparent passthrough of the base's
///   semantics.
///
/// Construct with [`with_dataset_clause`] from a parsed
/// [`crate::query::DatasetClause`], or with [`DatasetView::new`] from explicit
/// graph lists.
pub struct DatasetView<'a> {
    base: &'a dyn Dataset,
    default_graphs: Vec<NamedNode>,
    named_graphs: Vec<NamedNode>,
}

impl<'a> DatasetView<'a> {
    /// Build a view from explicit `FROM` / `FROM NAMED` graph lists.
    pub fn new(
        base: &'a dyn Dataset,
        default_graphs: Vec<NamedNode>,
        named_graphs: Vec<NamedNode>,
    ) -> Self {
        Self {
            base,
            default_graphs,
            named_graphs,
        }
    }

    /// Whether the clause is empty (no `FROM`, no `FROM NAMED`); such a view is
    /// a transparent passthrough of the base dataset.
    fn is_passthrough(&self) -> bool {
        self.default_graphs.is_empty() && self.named_graphs.is_empty()
    }

    /// Triples visible in the view's active default graph: the union of the
    /// `FROM` graphs, or the base default graph when there are none.
    fn default_graph_triples(
        &self,
        pattern: &TriplePattern,
    ) -> Result<Vec<(AlgebraTerm, AlgebraTerm, AlgebraTerm)>> {
        if self.default_graphs.is_empty() {
            return self.base.find_triples(pattern);
        }
        let mut seen: HashSet<(AlgebraTerm, AlgebraTerm, AlgebraTerm)> = HashSet::new();
        let mut out: Vec<(AlgebraTerm, AlgebraTerm, AlgebraTerm)> = Vec::new();
        for graph in &self.default_graphs {
            let selector = GraphSelector::Named(graph.clone());
            for triple in self.base.find_triples_in(&selector, pattern)? {
                if seen.insert(triple.clone()) {
                    out.push(triple);
                }
            }
        }
        Ok(out)
    }
}

/// Build a [`DatasetView`] over `base` from a parsed `FROM` / `FROM NAMED`
/// clause.
///
/// The fuseki wave calls this with `Query.dataset` to materialize the RDF
/// dataset a query runs against. An empty clause yields a passthrough view.
pub fn with_dataset_clause<'a>(
    base: &'a dyn Dataset,
    clause: &crate::query::DatasetClause,
) -> DatasetView<'a> {
    DatasetView::new(
        base,
        clause.default_graphs.clone(),
        clause.named_graphs.clone(),
    )
}

impl<'a> Dataset for DatasetView<'a> {
    fn find_triples(
        &self,
        pattern: &TriplePattern,
    ) -> Result<Vec<(AlgebraTerm, AlgebraTerm, AlgebraTerm)>> {
        if self.is_passthrough() {
            return self.base.find_triples(pattern);
        }
        self.default_graph_triples(pattern)
    }

    fn find_triples_in(
        &self,
        selector: &GraphSelector,
        pattern: &TriplePattern,
    ) -> Result<Vec<(AlgebraTerm, AlgebraTerm, AlgebraTerm)>> {
        if self.is_passthrough() {
            return self.base.find_triples_in(selector, pattern);
        }
        match selector {
            GraphSelector::DefaultGraph => self.default_graph_triples(pattern),
            GraphSelector::Named(graph) => {
                // Only graphs named in FROM NAMED are visible.
                if self.named_graphs.iter().any(|n| n == graph) {
                    self.base.find_triples_in(selector, pattern)
                } else {
                    Ok(Vec::new())
                }
            }
        }
    }

    fn has_graph_support(&self) -> bool {
        self.base.has_graph_support()
    }

    fn named_graphs(&self) -> Result<Vec<AlgebraTerm>> {
        if self.is_passthrough() {
            return self.base.named_graphs();
        }
        Ok(self
            .named_graphs
            .iter()
            .cloned()
            .map(AlgebraTerm::Iri)
            .collect())
    }

    fn contains_triple(
        &self,
        subject: &AlgebraTerm,
        predicate: &AlgebraTerm,
        object: &AlgebraTerm,
    ) -> Result<bool> {
        let pattern = TriplePattern::new(subject.clone(), predicate.clone(), object.clone());
        Ok(!self.find_triples(&pattern)?.is_empty())
    }

    fn subjects(&self) -> Result<Vec<AlgebraTerm>> {
        if self.is_passthrough() {
            return self.base.subjects();
        }
        let triples = self.default_graph_triples(&wildcard_pattern())?;
        let set: HashSet<_> = triples.into_iter().map(|(s, _, _)| s).collect();
        Ok(set.into_iter().collect())
    }

    fn predicates(&self) -> Result<Vec<AlgebraTerm>> {
        if self.is_passthrough() {
            return self.base.predicates();
        }
        let triples = self.default_graph_triples(&wildcard_pattern())?;
        let set: HashSet<_> = triples.into_iter().map(|(_, p, _)| p).collect();
        Ok(set.into_iter().collect())
    }

    fn objects(&self) -> Result<Vec<AlgebraTerm>> {
        if self.is_passthrough() {
            return self.base.objects();
        }
        let triples = self.default_graph_triples(&wildcard_pattern())?;
        let set: HashSet<_> = triples.into_iter().map(|(_, _, o)| o).collect();
        Ok(set.into_iter().collect())
    }
}

#[cfg(test)]
mod store_ref_dataset_tests {
    use super::*;
    use crate::algebra::{Literal, Variable};
    use oxirs_core::model::{GraphName, Literal as CoreLiteral, NamedNode, Quad};
    use oxirs_core::rdf_store::{ConcreteStore, Store};

    #[test]
    fn store_ref_dataset_matches_typed_literal() {
        let store = ConcreteStore::new().expect("store");
        let s = NamedNode::new_unchecked("http://ex/s");
        let age = NamedNode::new_unchecked("http://ex/age");
        let xsd_int = NamedNode::new_unchecked("http://www.w3.org/2001/XMLSchema#integer");

        // One typed and one plain literal with the same lexical form.
        store
            .insert(&Quad::new(
                s.clone(),
                age.clone(),
                CoreLiteral::new_typed("25", xsd_int.clone()),
                GraphName::DefaultGraph,
            ))
            .expect("insert typed");
        store
            .insert(&Quad::new(
                s.clone(),
                age.clone(),
                CoreLiteral::new("25"),
                GraphName::DefaultGraph,
            ))
            .expect("insert plain");

        let ds = StoreRefDataset::new(&store);
        let pattern = TriplePattern {
            subject: AlgebraTerm::Variable(Variable::new_unchecked("s")),
            predicate: AlgebraTerm::Iri(age.clone()),
            object: AlgebraTerm::Literal(Literal {
                value: "25".to_string(),
                language: None,
                datatype: Some(xsd_int.clone()),
            }),
        };
        let results = ds.find_triples(&pattern).expect("find");
        assert_eq!(
            results.len(),
            1,
            "typed-literal pattern must match exactly the typed triple"
        );
        // The returned object literal must preserve the integer datatype (the
        // pre-fix code coerced everything to plain xsd:string and dropped it).
        match &results[0].2 {
            AlgebraTerm::Literal(lit) => {
                assert_eq!(lit.value, "25");
                assert_eq!(
                    lit.datatype.as_ref().map(|d| d.as_str()),
                    Some("http://www.w3.org/2001/XMLSchema#integer")
                );
            }
            other => panic!("expected literal, got {other:?}"),
        }
    }

    #[test]
    fn store_ref_dataset_preserves_language_tag() {
        let store = ConcreteStore::new().expect("store");
        let s = NamedNode::new_unchecked("http://ex/s");
        let label = NamedNode::new_unchecked("http://ex/label");
        store
            .insert(&Quad::new(
                s.clone(),
                label.clone(),
                CoreLiteral::new_language_tagged_literal("hi", "en").expect("lang literal"),
                GraphName::DefaultGraph,
            ))
            .expect("insert");

        let ds = StoreRefDataset::new(&store);
        let pattern = TriplePattern {
            subject: AlgebraTerm::Variable(Variable::new_unchecked("s")),
            predicate: AlgebraTerm::Iri(label.clone()),
            object: AlgebraTerm::Literal(Literal {
                value: "hi".to_string(),
                language: Some("en".to_string()),
                datatype: None,
            }),
        };
        let results = ds.find_triples(&pattern).expect("find");
        assert_eq!(results.len(), 1, "language-tagged pattern must match");
        match &results[0].2 {
            AlgebraTerm::Literal(lit) => {
                assert_eq!(lit.language.as_deref(), Some("en"));
            }
            other => panic!("expected literal, got {other:?}"),
        }
    }
}

#[cfg(test)]
mod graph_scoping_tests {
    use super::*;
    use crate::algebra::Variable;
    use oxirs_core::model::{GraphName, NamedNode, Quad};
    use oxirs_core::rdf_store::{ConcreteStore, Store};

    fn nn(s: &str) -> NamedNode {
        NamedNode::new_unchecked(s)
    }

    fn wildcard() -> TriplePattern {
        TriplePattern {
            subject: AlgebraTerm::Variable(Variable::new_unchecked("s")),
            predicate: AlgebraTerm::Variable(Variable::new_unchecked("p")),
            object: AlgebraTerm::Variable(Variable::new_unchecked("o")),
        }
    }

    /// Store with one default-graph triple and two triples spread over two
    /// named graphs `<g1>` (two triples) and `<g2>` (one triple).
    fn seeded_store() -> ConcreteStore {
        let store = ConcreteStore::new().expect("store");
        let p = nn("http://ex/p");
        store
            .insert(&Quad::new(
                nn("http://ex/sd"),
                p.clone(),
                nn("http://ex/od"),
                GraphName::DefaultGraph,
            ))
            .expect("insert default");
        store
            .insert(&Quad::new(
                nn("http://ex/s1"),
                p.clone(),
                nn("http://ex/o1"),
                GraphName::NamedNode(nn("http://ex/g1")),
            ))
            .expect("insert g1 a");
        store
            .insert(&Quad::new(
                nn("http://ex/s2"),
                p.clone(),
                nn("http://ex/o2"),
                GraphName::NamedNode(nn("http://ex/g1")),
            ))
            .expect("insert g1 b");
        store
            .insert(&Quad::new(
                nn("http://ex/s3"),
                p,
                nn("http://ex/o3"),
                GraphName::NamedNode(nn("http://ex/g2")),
            ))
            .expect("insert g2");
        store
    }

    #[test]
    fn store_ref_find_triples_reads_default_graph_only() {
        let store = seeded_store();
        let ds = StoreRefDataset::new(&store);
        // Regression for the union bug: the plain lookup must see ONLY the one
        // default-graph triple, not all four.
        let all = ds.find_triples(&wildcard()).expect("find default");
        assert_eq!(
            all.len(),
            1,
            "plain find_triples must be default-graph-only"
        );
        assert_eq!(all[0].0, AlgebraTerm::Iri(nn("http://ex/sd")));
    }

    #[test]
    fn store_ref_find_triples_in_named_graph() {
        let store = seeded_store();
        let ds = StoreRefDataset::new(&store);
        let g1 = ds
            .find_triples_in(&GraphSelector::Named(nn("http://ex/g1")), &wildcard())
            .expect("find g1");
        assert_eq!(g1.len(), 2, "named graph g1 has two triples");
        let g2 = ds
            .find_triples_in(&GraphSelector::Named(nn("http://ex/g2")), &wildcard())
            .expect("find g2");
        assert_eq!(g2.len(), 1, "named graph g2 has one triple");
        let dg = ds
            .find_triples_in(&GraphSelector::DefaultGraph, &wildcard())
            .expect("find default");
        assert_eq!(dg.len(), 1, "default graph has one triple");
    }

    #[test]
    fn store_ref_named_graphs_enumerates() {
        let store = seeded_store();
        let ds = StoreRefDataset::new(&store);
        assert!(ds.has_graph_support());
        let mut graphs = ds.named_graphs().expect("named graphs");
        graphs.sort_by_key(|t| format!("{t:?}"));
        assert_eq!(graphs.len(), 2, "two distinct named graphs");
        assert!(graphs.contains(&AlgebraTerm::Iri(nn("http://ex/g1"))));
        assert!(graphs.contains(&AlgebraTerm::Iri(nn("http://ex/g2"))));
    }

    #[test]
    fn default_impl_find_triples_in_fails_loud() {
        // A dataset that does not override the graph methods must FAIL LOUD
        // rather than silently union all graphs.
        struct NoGraphDataset;
        impl Dataset for NoGraphDataset {
            fn find_triples(
                &self,
                _pattern: &TriplePattern,
            ) -> Result<Vec<(AlgebraTerm, AlgebraTerm, AlgebraTerm)>> {
                Ok(Vec::new())
            }
            fn contains_triple(
                &self,
                _s: &AlgebraTerm,
                _p: &AlgebraTerm,
                _o: &AlgebraTerm,
            ) -> Result<bool> {
                Ok(false)
            }
            fn subjects(&self) -> Result<Vec<AlgebraTerm>> {
                Ok(Vec::new())
            }
            fn predicates(&self) -> Result<Vec<AlgebraTerm>> {
                Ok(Vec::new())
            }
            fn objects(&self) -> Result<Vec<AlgebraTerm>> {
                Ok(Vec::new())
            }
        }
        let ds = NoGraphDataset;
        assert!(!ds.has_graph_support());
        assert!(ds
            .find_triples_in(&GraphSelector::Named(nn("http://ex/g")), &wildcard())
            .is_err());
        assert!(ds.named_graphs().is_err());
    }

    #[test]
    fn dataset_view_from_single_graph_default() {
        let store = seeded_store();
        let base = StoreRefDataset::new(&store);
        // FROM <g1>: default graph becomes g1's two triples.
        let view = DatasetView::new(&base, vec![nn("http://ex/g1")], vec![]);
        let default = view.find_triples(&wildcard()).expect("view default");
        assert_eq!(default.len(), 2, "FROM <g1> default graph = g1's triples");
        // FROM-only clause exposes no named graphs.
        assert!(view.named_graphs().expect("named").is_empty());
    }

    #[test]
    fn dataset_view_from_multiple_graphs_union() {
        let store = seeded_store();
        let base = StoreRefDataset::new(&store);
        // FROM <g1> FROM <g2>: default graph = union (2 + 1 = 3 triples).
        let view = DatasetView::new(&base, vec![nn("http://ex/g1"), nn("http://ex/g2")], vec![]);
        let default = view.find_triples(&wildcard()).expect("view default");
        assert_eq!(default.len(), 3, "FROM union of g1+g2 = three triples");
    }

    #[test]
    fn dataset_view_from_named_restricts_visibility() {
        let store = seeded_store();
        let base = StoreRefDataset::new(&store);
        // FROM NAMED <g1> only: g1 visible, g2 not.
        let view = DatasetView::new(&base, vec![], vec![nn("http://ex/g1")]);
        let named = view.named_graphs().expect("named graphs");
        assert_eq!(named, vec![AlgebraTerm::Iri(nn("http://ex/g1"))]);
        // g1 is visible.
        let g1 = view
            .find_triples_in(&GraphSelector::Named(nn("http://ex/g1")), &wildcard())
            .expect("find g1");
        assert_eq!(g1.len(), 2);
        // g2 is NOT in FROM NAMED -> invisible -> empty.
        let g2 = view
            .find_triples_in(&GraphSelector::Named(nn("http://ex/g2")), &wildcard())
            .expect("find g2");
        assert!(g2.is_empty(), "graph outside FROM NAMED must be invisible");
        // No FROM -> default graph falls back to the store default (one triple).
        let default = view.find_triples(&wildcard()).expect("view default");
        assert_eq!(default.len(), 1, "no FROM => store default graph");
    }

    #[test]
    fn dataset_view_empty_clause_is_passthrough() {
        let store = seeded_store();
        let base = StoreRefDataset::new(&store);
        let view = DatasetView::new(&base, vec![], vec![]);
        // Passthrough: identical to the base dataset's behavior.
        let default = view.find_triples(&wildcard()).expect("view default");
        assert_eq!(
            default.len(),
            1,
            "empty clause preserves default-graph read"
        );
        let mut graphs = view.named_graphs().expect("named");
        graphs.sort_by_key(|t| format!("{t:?}"));
        assert_eq!(graphs.len(), 2, "empty clause preserves base named graphs");
    }

    #[test]
    fn graph_scoped_dataset_routes_plain_lookup() {
        let store = seeded_store();
        let base = StoreRefDataset::new(&store);
        // Wrapping in a scope for g1 makes the *plain* find_triples read g1.
        let scoped = GraphScopedDataset::new(&base, GraphSelector::Named(nn("http://ex/g1")));
        let triples = scoped.find_triples(&wildcard()).expect("scoped find");
        assert_eq!(triples.len(), 2, "scoped plain lookup reads g1 only");
    }
}