Class: SPARQL::Algebra::Operator::Str

Inherits:
Operator::Unary
  • Object
show all
Includes:
Evaluatable
Defined in:
lib/sparql/algebra/operator/str.rb

Overview

The SPARQL str operator.

[121] BuiltInCall ::= ... | 'STR' '(' Expression ')'

Examples:

SPARQL Grammar

PREFIX  xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX  : <http://example.org/things#>
SELECT  ?x ?v
WHERE
    { ?x :p ?v . 
      FILTER ( str(?v) = "1" ) .
    }

SSE

(prefix ((xsd: <http://www.w3.org/2001/XMLSchema#>)
         (: <http://example.org/things#>))
  (project (?x ?v)
    (filter (= (str ?v) "1")
      (bgp (triple ?x :p ?v)))))

See Also:

Constant Summary collapse

NAME =
:str

Instance Method Summary collapse

Methods included from Evaluatable

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

Instance Method Details

#apply(term, **options) ⇒ RDF::Literal

Returns the string form of the operand.

Parameters:

  • term (RDF::Literal, RDF::URI)

    a literal or IRI

Returns:

  • (RDF::Literal)

    a simple literal

Raises:

  • (TypeError)

    if the operand is not a literal or IRI



37
38
39
40
41
42
43
# File 'lib/sparql/algebra/operator/str.rb', line 37

def apply(term, **options)
  case term
    when RDF::Literal then RDF::Literal(term.value)
    when RDF::URI     then RDF::Literal(term.to_s)
    else raise TypeError, "expected an RDF::Literal or RDF::URI, but got #{term.inspect}"
  end
end

#to_sparql(**options) ⇒ String

Returns a partial SPARQL grammar for this operator.

Returns:

  • (String)


50
51
52
# File 'lib/sparql/algebra/operator/str.rb', line 50

def to_sparql(**options)
  "str(" + operands.first.to_sparql(**options) + ")"
end