Class: SPARQL::Algebra::Operator::Order
- Includes:
- Query
- Defined in:
- lib/sparql/algebra/operator/order.rb
Overview
The SPARQL GraphPattern order operator.
[23] OrderClause ::= 'ORDER' 'BY' OrderCondition+
Constant Summary collapse
- NAME =
[:order]
Instance Attribute Summary
Attributes included from Query
Instance Method Summary collapse
-
#execute(queryable, **options) {|solution| ... } ⇒ RDF::Query::Solutions
Executes this query on the given
queryablegraph or repository. -
#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| ... } ⇒ RDF::Query::Solutions
Executes this query on the given queryable graph or repository.
Orders a solution set returned by executing operand(1) using
an array of expressions and/or variables specified in operand(0)
86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 |
# File 'lib/sparql/algebra/operator/order.rb', line 86 def execute(queryable, **, &block) debug() {"Order"} @solutions = queryable.query(operands.last, **.merge(depth: [:depth].to_i + 1)).order do |a, b| operand(0).inject(0) do |memo, op| debug() {"(order) #{op.inspect}"} memo = begin a_eval = op.evaluate(a, queryable: queryable, **.merge(depth: [:depth].to_i + 1)) rescue nil b_eval = op.evaluate(b, queryable: queryable, **.merge(depth: [:depth].to_i + 1)) rescue nil comp = begin Operator::Compare.evaluate(a_eval, b_eval, order_by: true).to_s.to_i rescue TypeError # Type sError is effectively zero debug() {"(order) rescue(#{$!}): #{a_eval.inspect}, #{b_eval.inspect}"} RDF::Literal(0) end comp = -comp if op.is_a?(Operator::Desc) comp end if memo == 0 memo end end @solutions.each(&block) if block_given? @solutions end |
#to_sparql(**options) ⇒ String
Returns a partial SPARQL grammar for this operator.
Provides order to descendant query.
119 120 121 |
# File 'lib/sparql/algebra/operator/order.rb', line 119 def to_sparql(**) operands.last.to_sparql(order_ops: operands.first, **) end |