module SPARQL; module Algebra class Operator ## # The SPARQL GraphPattern `filter` operator. # # [68] Filter ::= 'FILTER' Constraint # # @example SPARQL Grammar # SELECT ?v # { # ?s ?v # FILTER(?v = 2) # } # # @example SSE # (project (?v) # (filter (= ?v 2) # (bgp (triple ?s ?v)))) # # @see https://www.w3.org/TR/sparql11-query/#evaluation class Filter < Operator::Binary include Query NAME = [:filter] ## # Executes this query on the given `queryable` graph or repository. # Then it passes each solution through one or more filters and removes # those that evaluate to false or generate a _TypeError_. # # Note that the last operand returns a solution set, while the first # is an expression. This may be a variable, simple expression, # or exprlist. # # @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 # @see https://www.w3.org/TR/sparql11-query/#ebv def execute(queryable, **options, &block) debug(options) {"Filter #{operands.first.to_sxp}"} opts = options.merge(queryable: queryable, depth: options[:depth].to_i + 1) @solutions = RDF::Query::Solutions() queryable.query(operands.last, **options.merge(depth: options[:depth].to_i + 1)) do |solution| # Re-bind to bindings, if defined, as they might not be found in solution options[:bindings].each_binding do |name, value| solution[name] ||= value if operands.first.variables.include?(name) end if options[:bindings] && operands.first.respond_to?(:variables) begin pass = boolean(operands.first.evaluate(solution, **opts)).true? debug(options) {"(filter) #{pass.inspect} #{solution.to_h.inspect}"} @solutions << solution if pass rescue debug(options) {"(filter) rescue(#{$!}): #{solution.to_h.inspect}"} end end @solutions.each(&block) if block_given? @solutions end # If filtering a join of two BGPs (having the same graph name), don't worry about validating, for shared ndvars, anyway, # # (filter (regex ?homepage "^http://example.org/" "") # (join # (bgp (triple ??who :homepage ?homepage)) # (bgp (triple ??who :schoolHomepage ?schoolPage)))))) # # is legitimate def validate! unless (join = operands.last).is_a?(Join) && join.operands.all? {|op| op.is_a?(RDF::Query)} && join.operands.map(&:graph_name).uniq.length == 1 operands.last.validate! end self end ## # # Returns a partial SPARQL grammar for this operator. # # Provides filters to descendant query. # # If filter operation is an Exprlist, then separate into multiple filter ops. # # @return [String] def to_sparql(**options) filter_ops = operands.first.is_a?(Operator::Exprlist) ? operands.first.operands : [operands.first] str = operands.last.to_sparql(filter_ops: filter_ops, **options) end end # Filter end # Operator end; end # SPARQL::Algebra