Class: SPARQL::Algebra::Operator::Plus

Inherits:
SPARQL::Algebra::Operator show all
Includes:
Evaluatable
Defined in:
lib/sparql/algebra/operator/plus.rb

Overview

The SPARQL numeric binary/unary + operator.

[118] UnaryExpression ::= ... | '+' PrimaryExpression

[116] AdditiveExpression ::= MultiplicativeExpression ( '+' MultiplicativeExpression )?

Examples:

SPARQL Grammar

PREFIX : <http://example.org/>
SELECT ?s WHERE {
  ?s :p ?o .
  FILTER(-?o = +3) .
}

SSE

(prefix ((: <http://example.org/>))
 (project (?s)
  (filter (= (- ?o) +3)
   (bgp (triple ?s :p ?o)))))

SPARQL Grammar

PREFIX : <http://example.org/>
SELECT ?s WHERE {
  ?s :p ?o .
  ?s2 :p ?o2 .
  FILTER(?o + ?o2 = 3) .
}

SSE

(prefix
 ((: <http://example.org/>))
 (project (?s)
  (filter (= (+ ?o ?o2) 3)
   (bgp
    (triple ?s :p ?o)
    (triple ?s2 :p ?o2)))))

See Also:

Constant Summary collapse

NAME =
[:+, :plus]

Constants inherited from SPARQL::Algebra::Operator

ARITY, IsURI, URI

Constants included from Expression

Expression::PATTERN_PARENTS

Instance Attribute Summary

Attributes inherited from SPARQL::Algebra::Operator

#operands

Instance Method Summary collapse

Methods included from Evaluatable

#evaluate, #memoize, #replace_aggregate!, #replace_vars!

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

Instance Method Details

#apply(left, right = nil, **options) ⇒ RDF::Literal::Numeric, RDF::Literal::Temporal

Returns the arithmetic sum of the operands, unless there is no right.

Parameters:

  • left (RDF::Literal::Numeric, RDF::Literal::Temporal)

    a numeric literal

  • right (RDF::Literal::Numeric, RDF::Literal::Duration) (defaults to: nil)

    a numeric literal

Returns:

  • (RDF::Literal::Numeric, RDF::Literal::Temporal)

Raises:

  • (TypeError)

    if either operand is neither a numeric nor a temporal literal



56
57
58
59
60
61
62
63
64
65
66
# File 'lib/sparql/algebra/operator/plus.rb', line 56

def apply(left, right = nil, **options)
  case
  when left.is_a?(RDF::Literal::Numeric) && right.is_a?(RDF::Literal::Numeric)
    left + right
  when left.is_a?(RDF::Literal::Numeric) && right.nil?
    left
  when left.is_a?(RDF::Literal::Temporal) && right.is_a?(RDF::Literal::Duration)
    left + right
  else raise TypeError, "expected two RDF::Literal::Numeric operands or a Temporal and a Duration, but got #{left.inspect} and #{right.inspect}"
  end
end

#to_sparql(**options) ⇒ String

Returns a partial SPARQL grammar for this operator.

Returns:

  • (String)


73
74
75
# File 'lib/sparql/algebra/operator/plus.rb', line 73

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