Sha256: cf946389af8509cc87529b3012a2dbbb5a98ca363e2202a0e07f3f6d97cafcef

Contents?: true

Size: 1.87 KB

Versions: 28

Compression:

Stored size: 1.87 KB

Contents

# frozen_string_literal: true

module Puppet::Pops
module Types
  class PTimestampType < PAbstractTimeDataType
    def self.register_ptype(loader, ir)
      create_ptype(loader, ir, 'ScalarType',
                   'from' => { KEY_TYPE => POptionalType.new(PTimestampType::DEFAULT), KEY_VALUE => nil },
                   'to' => { KEY_TYPE => POptionalType.new(PTimestampType::DEFAULT), KEY_VALUE => nil })
    end

    def self.new_function(type)
      @new_function ||= Puppet::Functions.create_loaded_function(:new_timestamp, type.loader) do
        local_types do
          type 'Formats = Variant[String[2],Array[String[2], 1]]'
        end

        dispatch :now do
        end

        dispatch :from_seconds do
          param 'Variant[Integer,Float]', :seconds
        end

        dispatch :from_string do
          param           'String[1]', :string
          optional_param  'Formats',   :format
          optional_param  'String[1]', :timezone
        end

        dispatch :from_string_hash do
          param <<-TYPE, :hash_arg
            Struct[{
              string => String[1],
              Optional[format] => Formats,
              Optional[timezone] => String[1]
            }]
          TYPE
        end

        def now
          Time::Timestamp.now
        end

        def from_string(string, format = :default, timezone = nil)
          Time::Timestamp.parse(string, format, timezone)
        end

        def from_string_hash(args_hash)
          Time::Timestamp.from_hash(args_hash)
        end

        def from_seconds(seconds)
          Time::Timestamp.new((seconds * Time::NSECS_PER_SEC).to_i)
        end
      end
    end

    def generalize
      DEFAULT
    end

    def impl_class
      Time::Timestamp
    end

    def instance?(o, guard = nil)
      o.is_a?(Time::Timestamp) && o >= @from && o <= @to
    end

    DEFAULT = PTimestampType.new(nil, nil)
  end
end
end

Version data entries

28 entries across 28 versions & 1 rubygems

Version Path
puppet-8.5.1 lib/puppet/pops/types/p_timestamp_type.rb
puppet-8.5.1-x86-mingw32 lib/puppet/pops/types/p_timestamp_type.rb
puppet-8.5.1-x64-mingw32 lib/puppet/pops/types/p_timestamp_type.rb
puppet-8.5.1-universal-darwin lib/puppet/pops/types/p_timestamp_type.rb
puppet-8.5.0 lib/puppet/pops/types/p_timestamp_type.rb
puppet-8.5.0-x86-mingw32 lib/puppet/pops/types/p_timestamp_type.rb
puppet-8.5.0-x64-mingw32 lib/puppet/pops/types/p_timestamp_type.rb
puppet-8.5.0-universal-darwin lib/puppet/pops/types/p_timestamp_type.rb