Sha256: 231f9c633153cbbca466b8b3885cb6e8d9e1d0537cb0e6633ed6c56edf6eaf2e

Contents?: true

Size: 1.63 KB

Versions: 7

Compression:

Stored size: 1.63 KB

Contents

module SPARQL; module Algebra
  class Operator
    ##
    # The SPARQL logical `ucase` operator.
    #
    # [121] BuiltInCall ::= ... | 'UCASE' '(' Expression ')' 
    #
    # @example SPARQL Grammar
    #   PREFIX : <http://example.org/>
    #   SELECT ?s (UCASE(?str) AS ?ustr) WHERE {
    #     ?s :str ?str
    #   }
    #
    # @example SSE
    #   (prefix
    #    ((: <http://example.org/>))
    #    (project (?s ?ustr)
    #     (extend ((?ustr (ucase ?str)))
    #      (bgp (triple ?s :str ?str)))))
    #
    # @see https://www.w3.org/TR/sparql11-query/#func-ucase
    # @see https://www.w3.org/TR/xpath-functions/#func-ucase
    class UCase < Operator::Unary
      include Evaluatable

      NAME = :ucase

      ##
      # The LCASE function corresponds to the XPath fn:lower-case function. It returns a string literal whose lexical form is the lower case of the lexcial form of the argument.
      #
      # @param  [RDF::Literal] operand
      #   the operand
      # @return [RDF::Literal] literal of same type
      # @raise  [TypeError] if the operand is not a literal value
      def apply(operand, **options)
        case operand
          when RDF::Literal then RDF::Literal(operand.to_s.upcase, datatype: operand.datatype, language: operand.language)
          else raise TypeError, "expected an RDF::Literal::Numeric, but got #{operand.inspect}"
        end
      end

      ##
      #
      # Returns a partial SPARQL grammar for this operator.
      #
      # @return [String]
      def to_sparql(**options)
        "UCASE(" + operands.last.to_sparql(**options) + ")"
      end
    end # UCase
  end # Operator
end; end # SPARQL::Algebra

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
sparql-3.3.1 lib/sparql/algebra/operator/ucase.rb
sparql-3.3.0 lib/sparql/algebra/operator/ucase.rb
sparql-3.2.6 lib/sparql/algebra/operator/ucase.rb
sparql-3.2.5 lib/sparql/algebra/operator/ucase.rb
sparql-3.2.4 lib/sparql/algebra/operator/ucase.rb
sparql-3.2.3 lib/sparql/algebra/operator/ucase.rb
sparql-3.2.1 lib/sparql/algebra/operator/ucase.rb