Sha256: 55d51554aca133a3d366f7af990e7e5801368b537ba3e3eb2561862dbd2efe6c

Contents?: true

Size: 1 KB

Versions: 3

Compression:

Stored size: 1 KB

Contents

module RDF::N3::Algebra::Time
  ##
  # For a date-time, its time:day is the day of the month.
  #
  # @see https://www.w3.org/TR/xpath-functions/#func-day-from-dateTime
  class Day < RDF::N3::Algebra::ResourceOperator
    NAME = :timeDay
    URI = RDF::N3::Time.day

    ##
    # The time:day operator takes string or dateTime and extracts the day component.
    #
    # @param [RDF::Term] resource
    # @param [:subject, :object] position
    # @return [RDF::Term]
    # @see RDF::N3::ResourceOperator#evaluate
    def resolve(resource, position:)
      case position
      when :subject
        return nil unless resource.literal?
        resource = resource.as_datetime
        RDF::Literal(resource.object.strftime("%d").to_i)
      when :object
        return nil unless resource.literal? || resource.variable?
        resource
      end
    end

    ##
    # There is no day unless it was specified in the lexical form
    def valid?(subject, object)
      subject.value.match?(%r(^\d{4}-\d{2}-\d{2}))
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
rdf-n3-3.2.1 lib/rdf/n3/algebra/time/day.rb
rdf-n3-3.2.0 lib/rdf/n3/algebra/time/day.rb
rdf-n3-3.1.2 lib/rdf/n3/algebra/time/day.rb