Sha256: 50ddc26427172edf4f3ca9ca44a8df7e811119ed975a30e81bdb65f63dc6213f

Contents?: true

Size: 1.62 KB

Versions: 447

Compression:

Stored size: 1.62 KB

Contents

# A setting that represents a span of time to live, and evaluates to Numeric
# seconds to live where 0 means shortest possible time to live, a positive numeric value means time
# to live in seconds, and the symbolic entry 'unlimited' is an infinite amount of time.
#
class Puppet::Settings::TTLSetting < Puppet::Settings::BaseSetting
  # How we convert from various units to seconds.
  UNITMAP = {
    # 365 days isn't technically a year, but is sufficient for most purposes
    "y" => 365 * 24 * 60 * 60,
    "d" => 24 * 60 * 60,
    "h" => 60 * 60,
    "m" => 60,
    "s" => 1
  }

  # A regex describing valid formats with groups for capturing the value and units
  FORMAT = /^(\d+)(y|d|h|m|s)?$/

  def type
    :ttl
  end

  # Convert the value to Numeric, parsing numeric string with units if necessary.
  def munge(value)
    self.class.munge(value, @name)
  end

  def print(value)
    val = munge(value)
    val == Float::INFINITY ? 'unlimited' : val
  end

  # Convert the value to Numeric, parsing numeric string with units if necessary.
  def self.munge(value, param_name)
    case
    when value.is_a?(Numeric)
      if value < 0
        raise Puppet::Settings::ValidationError, _("Invalid negative 'time to live' %{value} - did you mean 'unlimited'?") % { value: value.inspect }
      end
      value

    when value == 'unlimited'
      Float::INFINITY

    when (value.is_a?(String) and value =~ FORMAT)
      $1.to_i * UNITMAP[$2 || 's']
    else
      raise Puppet::Settings::ValidationError, _("Invalid 'time to live' format '%{value}' for parameter: %{param_name}") % { value: value.inspect, param_name: param_name }
    end
  end
end

Version data entries

447 entries across 447 versions & 2 rubygems

Version Path
puppet-7.34.0 lib/puppet/settings/ttl_setting.rb
puppet-7.34.0-x86-mingw32 lib/puppet/settings/ttl_setting.rb
puppet-7.34.0-x64-mingw32 lib/puppet/settings/ttl_setting.rb
puppet-7.34.0-universal-darwin lib/puppet/settings/ttl_setting.rb
puppet-7.33.0 lib/puppet/settings/ttl_setting.rb
puppet-7.33.0-x86-mingw32 lib/puppet/settings/ttl_setting.rb
puppet-7.33.0-x64-mingw32 lib/puppet/settings/ttl_setting.rb
puppet-7.33.0-universal-darwin lib/puppet/settings/ttl_setting.rb
puppet-7.32.1 lib/puppet/settings/ttl_setting.rb
puppet-7.32.1-x86-mingw32 lib/puppet/settings/ttl_setting.rb
puppet-7.32.1-x64-mingw32 lib/puppet/settings/ttl_setting.rb
puppet-7.32.1-universal-darwin lib/puppet/settings/ttl_setting.rb
puppet-7.31.0 lib/puppet/settings/ttl_setting.rb
puppet-7.31.0-x86-mingw32 lib/puppet/settings/ttl_setting.rb
puppet-7.31.0-x64-mingw32 lib/puppet/settings/ttl_setting.rb
puppet-7.31.0-universal-darwin lib/puppet/settings/ttl_setting.rb
puppet-7.30.0 lib/puppet/settings/ttl_setting.rb
puppet-7.30.0-x86-mingw32 lib/puppet/settings/ttl_setting.rb
puppet-7.30.0-x64-mingw32 lib/puppet/settings/ttl_setting.rb
puppet-7.30.0-universal-darwin lib/puppet/settings/ttl_setting.rb