Sha256: 88cc0da84e8f50884f19240c4dacc68f84db0b3ec492c2a58b9bbee61d7539d1
Contents?: true
Size: 1.51 KB
Versions: 4
Compression:
Stored size: 1.51 KB
Contents
module SPARQL; module Algebra class Operator ## # The SPARQL Property Path `path` operator. # # @example # (path :a (path+ :p) ?z) # # @see http://www.w3.org/TR/sparql11-query/#sparqlTranslatePathExpressions class Path < Operator::Ternary include Query NAME = :path ## # Finds solutions from `queryable` matching the path. # # @param [RDF::Queryable] queryable # the graph or repository to query # @param [Hash{Symbol => Object}] options # any additional keyword options # @yield [solution] # each matching solution # @yieldparam [RDF::Query::Solution] solution # @yieldreturn [void] ignored # @return [RDF::Query::Solutions] # the resulting solution sequence # @see http://www.w3.org/TR/rdf-sparql-query/#sparqlAlgebra def execute(queryable, options = {}, &block) debug(options) {"Path #{operands.to_sse}"} subject, path_op, object = operands @solutions = RDF::Query::Solutions.new path_op.execute(queryable, options.merge( subject: subject, object: object, context: options.fetch(:context, false), depth: options[:depth].to_i + 1) ) do |solution| @solutions << solution end debug(options) {"=> #{@solutions.inspect}"} @solutions.uniq! @solutions.each(&block) if block_given? @solutions end end # Path end # Operator end; end # SPARQL::Algebra
Version data entries
4 entries across 4 versions & 1 rubygems