Class: SPARQL::Algebra::Operator::Sequence

Inherits:
SPARQL::Algebra::Operator show all
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

Constants inherited from SPARQL::Algebra::Operator

ARITY, IsURI, URI

Constants included from Expression

Expression::PATTERN_PARENTS

Instance Attribute Summary

Attributes inherited from SPARQL::Algebra::Operator

#operands

Instance Method Summary collapse

Methods included from Update

#graph_name=, #unshift, #variables

Methods inherited from SPARQL::Algebra::Operator

#aggregate?, arity, #base_uri, base_uri, base_uri=, #bind, #boolean, #constant?, #deep_dup, #each_descendant, #eql?, #evaluatable?, evaluate, #executable?, #first_ancestor, for, #initialize, #inspect, #ndvars, #node?, #operand, #optimize, #optimize!, #parent, #parent=, #prefixes, prefixes, prefixes=, #rewrite, #to_binary, to_sparql, #to_sxp, #to_sxp_bin, #validate!, #variable?, #variables, #vars

Methods included from Expression

cast, #constant?, #evaluate, extension, extension?, extensions, for, #invalid?, new, #node?, open, #optimize, #optimize!, parse, register_extension, #to_sxp_bin, #valid?, #validate!, #variable?

Constructor Details

This class inherits a constructor from SPARQL::Algebra::Operator

Instance Method Details

#execute(queryable, **options) {|solution| ... } ⇒ Object

Basically a JOIN across multiple operands

Parameters:

  • queryable (RDF::Queryable)

    the graph or repository to write

  • options (Hash{Symbol => Object})

    any additional keyword options

Options Hash (**options):

  • debug (Boolean)

    Query execution debugging

Yields:

  • (solution)

    each matching solution

Yield Parameters:

Yield Returns:

  • (void)

    ignored

See Also:



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, **options)
  debug(options) {"Sequence #{operands.to_sse}"}

  last = queryable.query(operands.shift, **options.merge(depth: options[:depth].to_i + 1))
  debug(options) {"(sequence)=>(last) #{last.map(&:to_h).to_sse}"}

  operands.each do |op|
    this = queryable.query(op, **options.merge(depth: options[:depth].to_i + 1))
    debug(options) {"(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(options) {"(sequence)=>(next) #{last.map(&:to_h).to_sse}"}
  end

  @solutions = RDF::Query::Solutions.new(last)
  debug(options) {"(sequence)=> #{@solutions.map(&:to_h).to_sse}"}
  @solutions.each(&block) if block_given?
  @solutions
end

#to_sparql(**options) ⇒ String

Returns a partial SPARQL grammar for this operator.

Returns:

  • (String)


60
61
62
63
# File 'lib/sparql/algebra/operator/sequence.rb', line 60

def to_sparql(**options)
  str = "{\n" + operands.to_sparql(top_level: false, **options) + "\n}"
  Operator.to_sparql(str, **options)
end