Class: SPARQL::Algebra::Operator::EncodeForURI

Inherits:
Unary show all
Includes:
Evaluatable
Defined in:
lib/sparql/algebra/operator/encode_for_uri.rb

Overview

The SPARQL logical abs operator.

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

Examples:

SPARQL Grammar

PREFIX : <http://example.org/>
SELECT ?s ?str (ENCODE_FOR_URI(?str) AS ?encoded) WHERE {
  ?s :str ?str
}

SSE

(prefix ((: <http://example.org/>))
 (project (?s ?str ?encoded)
  (extend ((?encoded (encode_for_uri ?str)))
   (bgp (triple ?s :str ?str)))))

See Also:

Constant Summary collapse

NAME =
:encode_for_uri

Constants inherited from Unary

Unary::ARITY

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 Unary

#initialize

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::Unary

Instance Method Details

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

The ENCODE_FOR_URI function corresponds to the XPath fn:encode-for-uri function. It returns a simple literal with the lexical form obtained from the lexical form of its input after translating reserved characters according to the fn:encode-for-uri function.

Examples:

encode_for_uri("Los Angeles")	"Los%20Angeles"
encode_for_uri("Los Angeles"@en)	"Los%20Angeles"
encode_for_uri("Los Angeles"^^xsd:string)	"Los%20Angeles"

Parameters:

  • operand (RDF::Literal)

    the operand

Returns:

  • (RDF::Literal)

    literal of same type

Raises:

  • (TypeError)

    if the operand is not a literal value



41
42
43
44
45
46
# File 'lib/sparql/algebra/operator/encode_for_uri.rb', line 41

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

#to_sparql(**options) ⇒ String

Returns a partial SPARQL grammar for this operator.

Returns:

  • (String)


53
54
55
# File 'lib/sparql/algebra/operator/encode_for_uri.rb', line 53

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