Class: SPARQL::Algebra::Operator::PathOpt
- Includes:
- Query
- Defined in:
- lib/sparql/algebra/operator/path_opt.rb
Overview
Constant Summary collapse
- NAME =
:path?
Instance Attribute Summary
Attributes included from Query
Instance Method Summary collapse
-
#execute(queryable, **options) {|solution| ... } ⇒ Object
Optional path:.
-
#to_sparql(**options) ⇒ String
Returns a partial SPARQL grammar for this operator.
Methods included from Query
#each_solution, #empty?, #failed?, #graph_name=, #matched?, #query_yields_boolean?, #query_yields_solutions?, #query_yields_statements?, #unshift, #variables
Instance Method Details
#execute(queryable, **options) {|solution| ... } ⇒ Object
Optional path:
(path x (path? :p) y)
=> (union (bgp ((x :p y))) (filter (x = y) (solution x y)))
42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 |
# File 'lib/sparql/algebra/operator/path_opt.rb', line 42 def execute(queryable, **, &block) subject, object = [:subject], [:object] debug() {"Path? #{[subject, operands, object].to_sse}"} query = PathZero.new(operand) solutions = query.execute(queryable, **.merge(depth: [:depth].to_i + 1)) # Solutions where predicate exists query = if operand.is_a?(RDF::Term) RDF::Query.new do |q| q.pattern [subject, operand, object] end else # path operand end # Recurse into query solutions += query.execute(queryable, **.merge(depth: [:depth].to_i + 1)) debug() {"(path?)=> #{solutions.to_sxp}"} solutions.each(&block) if block_given? solutions end |
#to_sparql(**options) ⇒ String
Returns a partial SPARQL grammar for this operator.
70 71 72 |
# File 'lib/sparql/algebra/operator/path_opt.rb', line 70 def to_sparql(**) "(#{operands.first.to_sparql(**options)})?" end |