Sha256: 7f598fe934c7d5736801473cc29d5f760f5b5ee968ff5dae958a725edf56a600
Contents?: true
Size: 1.82 KB
Versions: 5
Compression:
Stored size: 1.82 KB
Contents
module RDF; class Literal ## # A time literal. # # The lexical representation for time is the left truncated lexical # representation for `xsd:dateTime`: "hh:mm:ss.sss" with an optional # following time zone indicator. # # @see http://www.w3.org/TR/xmlschema-2/#time # @since 0.2.1 class Time < Literal DATATYPE = XSD.time GRAMMAR = %r(\A\d{2}:\d{2}:\d{2}(\.\d+)?(([\+\-]\d{2}:\d{2})|UTC|Z)?\Z).freeze ## # @param [Time] value # @option options [String] :lexical (nil) def initialize(value, options = {}) @datatype = RDF::URI(options[:datatype] || DATATYPE) @string = options[:lexical] if options.has_key?(:lexical) @string = value if !defined?(@string) && value.is_a?(String) @object = case when value.is_a?(::Time) then value when value.respond_to?(:to_time) then value.to_time # Ruby 1.9+ else ::Time.parse(value.to_s) end end ## # Converts this literal into its canonical lexical representation. # # §3.2.8.2 Canonical representation # # The canonical representation for time is defined by prohibiting # certain options from the Lexical representation (§3.2.8.1). # Specifically, either the time zone must be omitted or, if present, the # time zone must be Coordinated Universal Time (UTC) indicated by a "Z". # Additionally, the canonical representation for midnight is 00:00:00. # # @return [RDF::Literal] `self` # @see http://www.w3.org/TR/xmlschema-2/#time def canonicalize! @string = @object.utc.strftime('%H:%M:%S%Z').sub(/\+00:00|UTC/, 'Z') self end ## # Returns the value as a string. # # @return [String] def to_s @string || @object.strftime('%H:%M:%S%Z').sub(/\+00:00|UTC/, 'Z') end end # Time end; end # RDF::Literal
Version data entries
5 entries across 5 versions & 1 rubygems