Sha256: 9bf811f7aa975c82bc1189813807ca7d6ee2ff6132bfd92ff68a507023d83a6b

Contents?: true

Size: 1.38 KB

Versions: 11

Compression:

Stored size: 1.38 KB

Contents

require 'digest'

module SPARQL; module Algebra
  class Operator
    ##
    # The SPARQL logical `md5` operator.
    #
    # Returns the MD5 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 (md5 ?l)))
    #           (bgp (triple :s1 :str ?l)))))
    #
    # @see http://www.w3.org/TR/sparql11-query/#func-md5
    class MD5 < Operator::Unary
      include Evaluatable

      NAME = :md5

      ##
      # Returns the MD5 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::MD5.new.hexdigest(operand.to_s))
      end
    end # MD5
  end # Operator
end; end # SPARQL::Algebra

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
sparql-3.1.0 lib/sparql/algebra/operator/md5.rb
sparql-3.0.2 lib/sparql/algebra/operator/md5.rb
sparql-3.0.1 lib/sparql/algebra/operator/md5.rb
sparql-3.0.0 lib/sparql/algebra/operator/md5.rb
sparql-2.2.2 lib/sparql/algebra/operator/md5.rb
sparql-2.2.1 lib/sparql/algebra/operator/md5.rb
sparql-2.2.0 lib/sparql/algebra/operator/md5.rb
sparql-2.1.0 lib/sparql/algebra/operator/md5.rb
sparql-2.0.0 lib/sparql/algebra/operator/md5.rb
sparql-2.0.0.beta2 lib/sparql/algebra/operator/md5.rb
sparql-2.0.0.beta1 lib/sparql/algebra/operator/md5.rb