Sha256: b125ffc26fd33c2385f01804e4a27f08a4c1664a17e9d005ed35db3d8e8f4a07

Contents?: true

Size: 1.52 KB

Versions: 7

Compression:

Stored size: 1.52 KB

Contents

module SPARQL; module Algebra
  class Operator
    ##
    # The SPARQL Property Path `path` operator.
    #
    # @example
    #   (path :a (path+ :p) ?z)
    #
    # @see https://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    https://www.w3.org/TR/sparql11-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,
          subject: subject,
          object: object,
          graph_name: options.fetch(:graph_name, false),
          depth: options[:depth].to_i + 1,
          **options
        ) 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

7 entries across 7 versions & 1 rubygems

Version Path
sparql-3.1.8 lib/sparql/algebra/operator/path.rb
sparql-3.1.7 lib/sparql/algebra/operator/path.rb
sparql-3.1.6 lib/sparql/algebra/operator/path.rb
sparql-3.1.5 lib/sparql/algebra/operator/path.rb
sparql-3.1.4 lib/sparql/algebra/operator/path.rb
sparql-3.1.3 lib/sparql/algebra/operator/path.rb
sparql-3.1.2 lib/sparql/algebra/operator/path.rb