Class: SPARQL::Algebra::Operator::PathStar

Inherits:
Unary show all
Includes:
Query
Defined in:
lib/sparql/algebra/operator/path_star.rb

Overview

Examples:

SPARQL Grammar

PREFIX : <http://example/> 
SELECT * WHERE {
  :a :p* ?z
} 

SSE

(prefix ((: <http://example/>))
 (path :a (path* :p) ?z))

See Also:

Constant Summary collapse

NAME =
:"path*"

Constants inherited from Unary

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

#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::Unary

Instance Method Details

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

Path including at zero length:

(path :a (path* :p) :b)

into

(path :a (path? (path+ :p)) :b)

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:



45
46
47
48
49
50
51
52
# File 'lib/sparql/algebra/operator/path_star.rb', line 45

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

  # (:x :p* :y) => (:x (:p+)? :y)
  query = PathOpt.new(PathPlus.new(*operands))
  query.execute(queryable, **options.merge(depth: options[:depth].to_i + 1), &block)
end

#to_sparql(**options) ⇒ String

Returns a partial SPARQL grammar for this operator.

Returns:

  • (String)


58
59
60
# File 'lib/sparql/algebra/operator/path_star.rb', line 58

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