Sha256: 1c8dc1e8bfd39e39651c52ba19c07459ddb769e4a75837f97bcdb7ab1da04a5e

Contents?: true

Size: 1.41 KB

Versions: 5

Compression:

Stored size: 1.41 KB

Contents

require 'digest'

module SPARQL; module Algebra
  class Operator
    ##
    # The SPARQL logical `sha512` operator.
    #
    # Returns the SHA512 checksum, as a hex digit string, calculated on the UTF-8 representation of the simple literal or lexical form of the `xsd:string`. Hex digits `SHOULD` be in lower case.
    #
    # @example
    #     (prefix ((: <http://example.org/>))
    #       (project (?hash)
    #         (extend ((?hash (sha512 ?l)))
    #           (bgp (triple :s1 :str ?l)))))
    #
    # @see https://www.w3.org/TR/sparql11-query/#func-sha512
    class SHA512 < Operator::Unary
      include Evaluatable

      NAME = :sha512

      ##
      # Returns the SHA512 checksum, as a hex digit string, calculated on the UTF-8 representation of the simple literal or lexical form of the xsd:string. Hex digits should be in lower case.
      #
      # @param  [RDF::Literal] operand
      #   the operand
      # @return [RDF::Literal]
      # @raise  [TypeError] if the operand is not a simple literal
      def apply(operand)
        raise TypeError, "expected an RDF::Literal, but got #{operand.inspect}" unless operand.literal?
        raise TypeError, "expected simple literal or xsd:string, but got #{operand.inspect}" unless (operand.datatype || RDF::XSD.string) == RDF::XSD.string
        RDF::Literal(Digest::SHA512.new.hexdigest(operand.to_s))
      end
    end # SHA512
  end # Operator
end; end # SPARQL::Algebra

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
sparql-3.1.6 lib/sparql/algebra/operator/sha512.rb
sparql-3.1.5 lib/sparql/algebra/operator/sha512.rb
sparql-3.1.4 lib/sparql/algebra/operator/sha512.rb
sparql-3.1.3 lib/sparql/algebra/operator/sha512.rb
sparql-3.1.2 lib/sparql/algebra/operator/sha512.rb