Class: SPARQL::Algebra::Operator::Alt

Inherits:
Binary show all
Includes:
Query
Defined in:
lib/sparql/algebra/operator/alt.rb

Overview

The SPARQL Property Path alt (Alternative Property Path) operator.

Let P and Q be property path expressions.

eval(Path(X, alt(P,Q), Y)) = Union(eval(Path(X, P, Y)), eval(Path(X, Q, Y)))

[89] PathAlternative ::= PathSequence ( '|' PathSequence )*

Examples:

SPARQL Query

PREFIX :  <http://www.example.org/>
SELECT ?t
WHERE {
  :a :p1|:p2/:p3|:p4 ?t
}

SSE

(prefix ((: <http://www.example.org/>))
 (project (?t)
  (path :a
   (alt
    (alt :p1 (seq :p2 :p3))
    :p4)
   ?t)))

See Also:

Constant Summary collapse

NAME =
:alt

Constants inherited from Binary

Binary::ARITY

Constants inherited from SPARQL::Algebra::Operator

ARITY, IsURI, URI

Constants included from Expression

Expression::PATTERN_PARENTS

Instance Attribute Summary

Attributes included from Query

#solutions

Attributes inherited from SPARQL::Algebra::Operator

#operands

Instance Method Summary collapse

Methods included from Query

#each_solution, #empty?, #failed?, #graph_name=, #matched?, #query_yields_boolean?, #query_yields_solutions?, #query_yields_statements?, #unshift, #variables

Methods inherited from Binary

#initialize

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::Binary

Instance Method Details

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

Equivalent to:

(path x (alt :p :q) y) => (union (bgp (x :p y)) (bgp (x :q y)))

Parameters:

  • queryable (RDF::Queryable)

    the graph or repository to query

  • options (Hash{Symbol => Object})

    any additional keyword options

Options Hash (**options):

Yields:

  • (solution)

    each matching solution

Yield Parameters:

Yield Returns:

  • (void)

    ignored

See Also:



51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
# File 'lib/sparql/algebra/operator/alt.rb', line 51

def execute(queryable, **options, &block)
  subject, object = options[:subject], options[:object]
  debug(options) {"Alt #{[subject, operands, object].to_sse}"}

  # Solutions where predicate exists
  qa = if operand(0).is_a?(RDF::Term)
    RDF::Query.new do |q|
      q.pattern [subject, operand(0), object]
    end
  else
    operand(0)
  end

  qb = if operand(1).is_a?(RDF::Term)
    RDF::Query.new do |q|
      q.pattern [subject, operand(1), object]
    end
  else
    operand(1)
  end

  query = Union.new(qa, qb)
  queryable.query(query, **options.merge(depth: options[:depth].to_i + 1), &block)
end

#to_sparql(**options) ⇒ String

Returns a partial SPARQL grammar for this operator.

Returns:

  • (String)


81
82
83
# File 'lib/sparql/algebra/operator/alt.rb', line 81

def to_sparql(**options)
  "(#{operands.first.to_sparql(**options)}|#{operands.last.to_sparql(**options)})"
end