Class: SPARQL::Algebra::Operator::Sequence
- Includes:
- Update
- Defined in:
- lib/sparql/algebra/operator/sequence.rb
Overview
The SPARQL UPDATE sequence operator.
Sequences through each operand.
[103] CollectionPath ::= '(' GraphNodePath+ ')'
Constant Summary collapse
- NAME =
:sequence
Instance Method Summary collapse
-
#execute(queryable, **options) {|solution| ... } ⇒ Object
Basically a JOIN across multiple operands.
-
#to_sparql(**options) ⇒ String
Returns a partial SPARQL grammar for this operator.
Methods included from Update
#empty?, #graph_name=, #unshift, #variables
Instance Method Details
#execute(queryable, **options) {|solution| ... } ⇒ Object
Basically a JOIN across multiple operands
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 |
# File 'lib/sparql/algebra/operator/sequence.rb', line 31 def execute(queryable, **, &block) debug() {"Sequence #{operands.to_sse}"} last = queryable.query(operands.shift, **.merge(depth: [:depth].to_i + 1)) debug() {"(sequence)=>(last) #{last.map(&:to_h).to_sse}"} operands.each do |op| this = queryable.query(op, **.merge(depth: [:depth].to_i + 1)) debug() {"(sequence)=>(this) #{this.map(&:to_h).to_sse}"} last = last.map do |s1| this.map do |s2| s2.merge(s1) if s2.compatible?(s1) end end.flatten.compact debug() {"(sequence)=>(next) #{last.map(&:to_h).to_sse}"} end @solutions = RDF::Query::Solutions.new(last) debug() {"(sequence)=> #{@solutions.map(&:to_h).to_sse}"} @solutions.each(&block) if block_given? @solutions end |