@@ -54,6 +54,27 @@ impl<'a> QueryEngine<'a> {
54
54
} )
55
55
}
56
56
57
+ pub fn construct_atoms (
58
+ & ' a self ,
59
+ plan : QueryPlan ,
60
+ prefixes : & HashMap < String , String > ,
61
+ templates : Vec < ( VarOrNode , VarOrNamedNode , VarOrNodeOrLiteral ) > ,
62
+ ns_cache : Vec < Namespace > ,
63
+ ) -> StdResult < ResolvedAtomIterator < ' _ > > {
64
+ let templates = templates
65
+ . into_iter ( )
66
+ . map ( |t| AtomTemplate :: try_new ( & plan, prefixes, t) )
67
+ . collect :: < StdResult < Vec < AtomTemplate > > > ( ) ?;
68
+
69
+ ResolvedAtomIterator :: try_new (
70
+ self . storage ,
71
+ ns_cache. into ( ) ,
72
+ IdentifierIssuer :: new ( "b" , 0u128 ) ,
73
+ self . eval_plan ( plan) ,
74
+ templates,
75
+ )
76
+ }
77
+
57
78
pub fn eval_plan ( & ' a self , plan : QueryPlan ) -> ResolvedVariablesIterator < ' _ > {
58
79
return self . eval_node ( plan. entrypoint ) ( ResolvedVariables :: with_capacity (
59
80
plan. variables . len ( ) ,
@@ -451,20 +472,6 @@ impl<'a> SolutionsIterator<'a> {
451
472
ResolvedTripleIterator :: try_new ( & mut ns_resolver, storage, self , prefixes, templates) ?;
452
473
triples_iter. collect ( )
453
474
}
454
-
455
- pub fn resolve_atoms (
456
- self ,
457
- storage : & dyn Storage ,
458
- prefixes : & HashMap < String , String > ,
459
- templates : Vec < ( VarOrNode , VarOrNamedNode , VarOrNodeOrLiteral ) > ,
460
- ns_cache : Vec < Namespace > ,
461
- ) -> StdResult < Vec < Atom > > {
462
- let mut ns_resolver = ns_cache. into ( ) ;
463
-
464
- let atoms_iter =
465
- ResolvedAtomIterator :: try_new ( & mut ns_resolver, storage, self , prefixes, templates) ?;
466
- atoms_iter. collect ( )
467
- }
468
475
}
469
476
470
477
impl < ' a > Iterator for SolutionsIterator < ' a > {
@@ -684,31 +691,28 @@ impl TripleTemplate {
684
691
}
685
692
686
693
pub struct ResolvedAtomIterator < ' a > {
687
- ns_resolver : & ' a mut NamespaceResolver ,
688
- id_issuer : IdentifierIssuer ,
689
694
storage : & ' a dyn Storage ,
690
- iter : SolutionsIterator < ' a > ,
695
+ ns_resolver : NamespaceResolver ,
696
+ id_issuer : IdentifierIssuer ,
697
+ upstream_iter : ResolvedVariablesIterator < ' a > ,
691
698
templates : Vec < AtomTemplate > ,
692
699
buffer : VecDeque < StdResult < Atom > > ,
693
700
}
694
701
695
702
impl < ' a > ResolvedAtomIterator < ' a > {
696
703
pub fn try_new (
697
- ns_resolver : & ' a mut NamespaceResolver ,
698
704
storage : & ' a dyn Storage ,
699
- solutions : SolutionsIterator < ' a > ,
700
- prefixes : & HashMap < String , String > ,
701
- templates : Vec < ( VarOrNode , VarOrNamedNode , VarOrNodeOrLiteral ) > ,
705
+ ns_resolver : NamespaceResolver ,
706
+ id_issuer : IdentifierIssuer ,
707
+ upstream_iter : ResolvedVariablesIterator < ' a > ,
708
+ templates : Vec < AtomTemplate > ,
702
709
) -> StdResult < Self > {
703
710
Ok ( Self {
704
- ns_resolver,
705
- id_issuer : IdentifierIssuer :: new ( "b" , 0u128 ) ,
706
711
storage,
707
- iter : solutions,
708
- templates : templates
709
- . into_iter ( )
710
- . map ( |t| AtomTemplate :: try_new ( prefixes, t) )
711
- . collect :: < StdResult < Vec < AtomTemplate > > > ( ) ?,
712
+ ns_resolver,
713
+ id_issuer,
714
+ upstream_iter,
715
+ templates,
712
716
buffer : VecDeque :: new ( ) ,
713
717
} )
714
718
}
@@ -723,7 +727,7 @@ impl<'a> Iterator for ResolvedAtomIterator<'a> {
723
727
return Some ( val) ;
724
728
}
725
729
726
- let upstream_res = match self . iter . next ( ) {
730
+ let upstream_res = match self . upstream_iter . next ( ) {
727
731
None => None ?,
728
732
Some ( res) => res,
729
733
} ;
@@ -734,7 +738,12 @@ impl<'a> Iterator for ResolvedAtomIterator<'a> {
734
738
}
735
739
Ok ( vars) => {
736
740
for res in self . templates . iter ( ) . map ( |template| {
737
- template. resolve ( self . ns_resolver , & mut self . id_issuer , self . storage , & vars)
741
+ template. resolve (
742
+ self . storage ,
743
+ & mut self . ns_resolver ,
744
+ & mut self . id_issuer ,
745
+ & vars,
746
+ )
738
747
} ) {
739
748
match res {
740
749
Ok ( Some ( atom) ) => self . buffer . push_back ( Ok ( atom) ) ,
@@ -748,28 +757,38 @@ impl<'a> Iterator for ResolvedAtomIterator<'a> {
748
757
}
749
758
}
750
759
751
- struct AtomTemplate {
752
- subject : Either < rdf:: Subject , String > ,
753
- property : Either < rdf:: Property , String > ,
754
- value : Either < rdf:: Value , String > ,
760
+ pub struct AtomTemplate {
761
+ subject : Either < rdf:: Subject , usize > ,
762
+ property : Either < rdf:: Property , usize > ,
763
+ value : Either < rdf:: Value , usize > ,
755
764
}
756
765
757
766
impl AtomTemplate {
758
767
pub fn try_new (
768
+ plan : & QueryPlan ,
759
769
prefixes : & HashMap < String , String > ,
760
770
( s_tpl, p_tpl, o_tpl) : ( VarOrNode , VarOrNamedNode , VarOrNodeOrLiteral ) ,
761
771
) -> StdResult < AtomTemplate > {
762
772
Ok ( Self {
763
773
subject : match s_tpl {
764
- VarOrNode :: Variable ( key) => Right ( key) ,
774
+ VarOrNode :: Variable ( key) => Right ( plan. get_var_index ( key. as_str ( ) ) . ok_or (
775
+ StdError :: generic_err ( "Selected variable not found in query" ) ,
776
+ ) ?) ,
765
777
VarOrNode :: Node ( n) => Left ( ( n, prefixes) . try_into ( ) ?) ,
766
778
} ,
767
779
property : match p_tpl {
768
- VarOrNamedNode :: Variable ( key) => Right ( key) ,
780
+ VarOrNamedNode :: Variable ( key) => Right ( plan. get_var_index ( key. as_str ( ) ) . ok_or (
781
+ StdError :: generic_err ( "Selected variable not found in query" ) ,
782
+ ) ?) ,
769
783
VarOrNamedNode :: NamedNode ( iri) => Left ( ( iri, prefixes) . try_into ( ) ?) ,
770
784
} ,
771
785
value : match o_tpl {
772
- VarOrNodeOrLiteral :: Variable ( key) => Right ( key) ,
786
+ VarOrNodeOrLiteral :: Variable ( key) => Right (
787
+ plan. get_var_index ( key. as_str ( ) )
788
+ . ok_or ( StdError :: generic_err (
789
+ "Selected variable not found in query" ,
790
+ ) ) ?,
791
+ ) ,
773
792
VarOrNodeOrLiteral :: Node ( n) => Left ( ( n, prefixes) . try_into ( ) ?) ,
774
793
VarOrNodeOrLiteral :: Literal ( l) => Left ( ( l, prefixes) . try_into ( ) ?) ,
775
794
} ,
@@ -778,10 +797,10 @@ impl AtomTemplate {
778
797
779
798
pub fn resolve (
780
799
& self ,
800
+ storage : & dyn Storage ,
781
801
ns_resolver : & mut NamespaceResolver ,
782
802
id_issuer : & mut IdentifierIssuer ,
783
- storage : & dyn Storage ,
784
- vars : & BTreeMap < String , ResolvedVariable > ,
803
+ vars : & ResolvedVariables ,
785
804
) -> StdResult < Option < Atom > > {
786
805
let resolve_ns_fn = & mut |ns_key| {
787
806
let res = ns_resolver. resolve_from_key ( storage, ns_key) ;
@@ -815,7 +834,7 @@ impl AtomTemplate {
815
834
& self ,
816
835
resolve_ns_fn : & mut F ,
817
836
id_issuer : & mut IdentifierIssuer ,
818
- vars : & BTreeMap < String , ResolvedVariable > ,
837
+ vars : & ResolvedVariables ,
819
838
) -> StdResult < Option < rdf:: Subject > >
820
839
where
821
840
F : FnMut ( u128 ) -> StdResult < String > ,
@@ -839,7 +858,7 @@ impl AtomTemplate {
839
858
fn resolve_atom_property < F > (
840
859
& self ,
841
860
resolve_ns_fn : & mut F ,
842
- vars : & BTreeMap < String , ResolvedVariable > ,
861
+ vars : & ResolvedVariables ,
843
862
) -> StdResult < Option < rdf:: Property > >
844
863
where
845
864
F : FnMut ( u128 ) -> StdResult < String > ,
@@ -857,7 +876,7 @@ impl AtomTemplate {
857
876
& self ,
858
877
resolve_ns_fn : & mut F ,
859
878
id_issuer : & mut IdentifierIssuer ,
860
- vars : & BTreeMap < String , ResolvedVariable > ,
879
+ vars : & ResolvedVariables ,
861
880
) -> StdResult < Option < rdf:: Value > >
862
881
where
863
882
F : FnMut ( u128 ) -> StdResult < String > ,
@@ -888,9 +907,9 @@ impl AtomTemplate {
888
907
}
889
908
890
909
fn resolve_atom_term < A , T , F , M > (
891
- term : & Either < A , String > ,
910
+ term : & Either < A , usize > ,
892
911
from_var : F ,
893
- vars : & BTreeMap < String , ResolvedVariable > ,
912
+ vars : & ResolvedVariables ,
894
913
mapping_fn : & mut M ,
895
914
term_name : & str ,
896
915
) -> StdResult < Option < A > >
@@ -902,7 +921,7 @@ impl AtomTemplate {
902
921
match term {
903
922
Left ( v) => Ok ( Some ( v. clone ( ) ) ) ,
904
923
Right ( key) => {
905
- let var = vars. get ( key) . ok_or_else ( || {
924
+ let var = vars. get ( * key) . as_ref ( ) . ok_or_else ( || {
906
925
StdError :: generic_err ( format ! ( "Unbound {:?} variable: {:?}" , term_name, key) )
907
926
} ) ?;
908
927
0 commit comments