Class: Puppet::Environments::Cached Private

Inherits:
Object
  • Object
show all
Includes:
EnvironmentLoader
Defined in:
lib/puppet/environments.rb

This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.

Defined Under Namespace

Classes: DefaultCacheExpirationService, Entry, NotCachedEntry, TTLEntry

Constant Summary collapse

END_OF_TIME =

This constant is part of a private API. You should avoid using this constant if possible, as it may be removed or be changed in the future.

end_of_time
START_OF_TIME =

This constant is part of a private API. You should avoid using this constant if possible, as it may be removed or be changed in the future.

Time.gm(1)

Class Method Summary collapse

Instance Method Summary collapse

Methods included from EnvironmentLoader

#get!

Constructor Details

#initialize(loader) ⇒ Cached

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Returns a new instance of Cached.



324
325
326
327
328
329
330
331
332
333
334
# File 'lib/puppet/environments.rb', line 324

def initialize(loader)
  @loader = loader
  @cache_expiration_service = Puppet::Environments::Cached.cache_expiration_service
  @cache = {}

  # Holds expiration times in sorted order - next to expire is first
  @expirations = SortedSet.new

  # Infinity since it there are no entries, this is a cache of the first to expire time
  @next_expiration = END_OF_TIME
end

Class Method Details

.cache_expiration_serviceObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



312
313
314
# File 'lib/puppet/environments.rb', line 312

def self.cache_expiration_service
  @cache_expiration_service || DefaultCacheExpirationService.new
end

.cache_expiration_service=(service) ⇒ Object

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



308
309
310
# File 'lib/puppet/environments.rb', line 308

def self.cache_expiration_service=(service)
  @cache_expiration_service = service
end

.end_of_timeObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Returns the end of time (the next Mesoamerican Long Count cycle-end after 2012 (5125+2012) = 7137



317
318
319
# File 'lib/puppet/environments.rb', line 317

def self.end_of_time
  Time.gm(7137)
end

Instance Method Details

#clear(name) ⇒ Object

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Clears the cache of the environment with the given name. (The intention is that this could be used from a MANUAL cache eviction command (TBD)



378
379
380
381
# File 'lib/puppet/environments.rb', line 378

def clear(name)
  @cache.delete(name)
  Puppet::GettextConfig.delete_text_domain(name)
end

#clear_allObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Clears all cached environments. (The intention is that this could be used from a MANUAL cache eviction command (TBD)



385
386
387
388
389
390
391
# File 'lib/puppet/environments.rb', line 385

def clear_all()
  super
  @cache = {}
  @expirations.clear
  @next_expiration = END_OF_TIME
  Puppet::GettextConfig.delete_environment_text_domains
end

#clear_all_expiredObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Clears all environments that have expired, either by exceeding their time to live, or through an explicit eviction determined by the cache expiration service.



396
397
398
399
400
401
402
403
404
405
406
407
408
# File 'lib/puppet/environments.rb', line 396

def clear_all_expired()
  t = Time.now
  return if t < @next_expiration && ! @cache.any? {|name, _| @cache_expiration_service.expired?(name.to_sym) }
  to_expire = @cache.select { |name, entry| entry.expires < t || @cache_expiration_service.expired?(name.to_sym) }
  to_expire.each do |name, entry|
    Puppet.debug {"Evicting cache entry for environment '#{name}'"}
    @cache_expiration_service.evicted(name)
    clear(name)
    @expirations.delete(entry.expires)
    Puppet.settings.clear_environment_settings(name)
  end
  @next_expiration = @expirations.first || END_OF_TIME
end

#entry(env) ⇒ Object

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Creates a suitable cache entry given the time to live for one environment



425
426
427
428
429
430
431
432
433
434
435
# File 'lib/puppet/environments.rb', line 425

def entry(env)
  ttl = (conf = get_conf(env.name)) ? conf.environment_timeout : Puppet.settings.value(:environment_timeout)
  case ttl
  when 0
    NotCachedEntry.new(env)     # Entry that is always expired (avoids syscall to get time)
  when Float::INFINITY
    Entry.new(env)              # Entry that never expires (avoids syscall to get time)
  else
    TTLEntry.new(env, ttl)
  end
end

#evict_if_expired(name) ⇒ Object

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Evicts the entry if it has expired Also clears caches in Settings that may prevent the entry from being updated



439
440
441
442
443
444
445
446
# File 'lib/puppet/environments.rb', line 439

def evict_if_expired(name)
  if (result = @cache[name]) && (result.expired? || @cache_expiration_service.expired?(name))
    Puppet.debug {"Evicting cache entry for environment '#{name}'"}
    @cache_expiration_service.evicted(name)
    clear(name)
    Puppet.settings.clear_environment_settings(name)
  end
end

#get(name) ⇒ Puppet::Node::Environment?

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Find a named environment

Parameters:

  • name (String, Symbol)

    The name of environment to find

Returns:



347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
# File 'lib/puppet/environments.rb', line 347

def get(name)
  # Aggressively evict all that has expired
  # This strategy favors smaller memory footprint over environment
  # retrieval time.
  clear_all_expired
  if result = @cache[name]
    # found in cache
    return result.value
  elsif (result = @loader.get(name))
    # environment loaded, cache it
    cache_entry = entry(result)
    @cache_expiration_service.created(result)
    add_entry(name, cache_entry)
    result
  end
end

#get_conf(name) ⇒ Puppet::Setting::EnvironmentConf?

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

This implementation evicts the cache, and always gets the current configuration of the environment

TODO: While this is wasteful since it needs to go on a search for the conf, it is too disruptive to optimize this.

Attempt to obtain the initial configuration for the environment. Not all loaders can provide this.

Parameters:

  • name (String, Symbol)

    The name of the environment whose configuration we are looking up

Returns:

  • (Puppet::Setting::EnvironmentConf, nil)

    the configuration for the requested environment, or nil if not found or no configuration is available



418
419
420
421
# File 'lib/puppet/environments.rb', line 418

def get_conf(name)
  evict_if_expired(name)
  @loader.get_conf(name)
end

#listArray<Puppet::Node::Environment>

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Returns All of the environments known to the loader.

Returns:



337
338
339
# File 'lib/puppet/environments.rb', line 337

def list
  @loader.list
end

#search_pathsArray<String>

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

A list of indicators of where the loader is getting its environments from.

Returns:

  • (Array<String>)

    The URIs of the load locations



342
343
344
# File 'lib/puppet/environments.rb', line 342

def search_paths
  @loader.search_paths
end