1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592
|
require_relative '../puppet/concurrent/synchronized'
# @api private
module Puppet::Environments
class EnvironmentNotFound < Puppet::Error
def initialize(environment_name, original = nil)
environmentpath = Puppet[:environmentpath]
super("Could not find a directory environment named '#{environment_name}' anywhere in the path: #{environmentpath}. Does the directory exist?", original)
end
end
# @api private
module EnvironmentCreator
# Create an anonymous environment.
#
# @param module_path [String] A list of module directories separated by the
# PATH_SEPARATOR
# @param manifest [String] The path to the manifest
# @return A new environment with the `name` `:anonymous`
#
# @api private
def for(module_path, manifest)
Puppet::Node::Environment.create(:anonymous,
module_path.split(File::PATH_SEPARATOR),
manifest)
end
end
# Provide any common methods that loaders should have. It requires that any
# classes that include this module implement get
# @api private
module EnvironmentLoader
# @!macro loader_get_or_fail
def get!(name)
environment = get(name)
if environment
environment
else
raise EnvironmentNotFound, name
end
end
def clear_all
root = Puppet.lookup(:root_environment) { nil }
unless root.nil?
root.instance_variable_set(:@static_catalogs, nil)
root.instance_variable_set(:@rich_data, nil)
end
end
# The base implementation is a noop, because `get` returns a new environment
# each time.
#
# @see Puppet::Environments::Cached#guard
def guard(name); end
def unguard(name); end
end
# @!macro [new] loader_search_paths
# A list of indicators of where the loader is getting its environments from.
# @return [Array<String>] The URIs of the load locations
#
# @!macro [new] loader_list
# @return [Array<Puppet::Node::Environment>] All of the environments known
# to the loader
#
# @!macro [new] loader_get
# Find a named environment
#
# @param name [String,Symbol] The name of environment to find
# @return [Puppet::Node::Environment, nil] the requested environment or nil
# if it wasn't found
#
# @!macro [new] loader_get_conf
# Attempt to obtain the initial configuration for the environment. Not all
# loaders can provide this.
#
# @param name [String,Symbol] The name of the environment whose configuration
# we are looking up
# @return [Puppet::Setting::EnvironmentConf, nil] the configuration for the
# requested environment, or nil if not found or no configuration is available
#
# @!macro [new] loader_get_or_fail
# Find a named environment or raise
# Puppet::Environments::EnvironmentNotFound when the named environment is
# does not exist.
#
# @param name [String,Symbol] The name of environment to find
# @return [Puppet::Node::Environment] the requested environment
# A source of pre-defined environments.
#
# @api private
class Static
include EnvironmentCreator
include EnvironmentLoader
def initialize(*environments)
@environments = environments
end
# @!macro loader_search_paths
def search_paths
["data:text/plain,internal"]
end
# @!macro loader_list
def list
@environments
end
# @!macro loader_get
def get(name)
@environments.find do |env|
env.name == name.intern
end
end
# Returns a basic environment configuration object tied to the environment's
# implementation values. Will not interpolate.
#
# @!macro loader_get_conf
def get_conf(name)
env = get(name)
if env
Puppet::Settings::EnvironmentConf.static_for(env, Puppet[:environment_timeout], Puppet[:static_catalogs], Puppet[:rich_data])
else
nil
end
end
end
# A source of unlisted pre-defined environments.
#
# Used only for internal bootstrapping environments which are not relevant
# to an end user (such as the fall back 'configured' environment).
#
# @api private
class StaticPrivate < Static
# Unlisted
#
# @!macro loader_list
def list
[]
end
end
class StaticDirectory < Static
# Accepts a single environment in the given directory having the given name (not required to be reflected as the name
# of the directory)
def initialize(env_name, env_dir, environment)
super(environment)
@env_dir = env_dir
@env_name = env_name.intern
end
# @!macro loader_get_conf
def get_conf(name)
return nil unless name.intern == @env_name
Puppet::Settings::EnvironmentConf.load_from(@env_dir, [])
end
end
# Reads environments from a directory on disk. Each environment is
# represented as a sub-directory. The environment's manifest setting is the
# `manifest` directory of the environment directory. The environment's
# modulepath setting is the global modulepath (from the `[server]` section
# for the server) prepended with the `modules` directory of the environment
# directory.
#
# @api private
class Directories
include EnvironmentLoader
def initialize(environment_dir, global_module_path)
@environment_dir = Puppet::FileSystem.expand_path(environment_dir)
@global_module_path = global_module_path ?
global_module_path.map { |p| Puppet::FileSystem.expand_path(p) } :
nil
end
# Generate an array of directory loaders from a path string.
# @param path [String] path to environment directories
# @param global_module_path [Array<String>] the global modulepath setting
# @return [Array<Puppet::Environments::Directories>] An array
# of configured directory loaders.
def self.from_path(path, global_module_path)
environments = path.split(File::PATH_SEPARATOR)
environments.map do |dir|
Puppet::Environments::Directories.new(dir, global_module_path)
end
end
def self.real_path(dir)
if Puppet::FileSystem.symlink?(dir) && Puppet[:versioned_environment_dirs]
dir = Pathname.new Puppet::FileSystem.expand_path(Puppet::FileSystem.readlink(dir))
end
return dir
end
# @!macro loader_search_paths
def search_paths
["file://#{@environment_dir}"]
end
# @!macro loader_list
def list
valid_environment_names.collect do |name|
create_environment(name)
end
end
# @!macro loader_get
def get(name)
if validated_directory(File.join(@environment_dir, name.to_s))
create_environment(name)
end
end
# @!macro loader_get_conf
def get_conf(name)
envdir = validated_directory(File.join(@environment_dir, name.to_s))
if envdir
Puppet::Settings::EnvironmentConf.load_from(envdir, @global_module_path)
else
nil
end
end
private
def create_environment(name)
# interpolated modulepaths may be cached from prior environment instances
Puppet.settings.clear_environment_settings(name)
env_symbol = name.intern
setting_values = Puppet.settings.values(env_symbol, Puppet.settings.preferred_run_mode)
env = Puppet::Node::Environment.create(
env_symbol,
Puppet::Node::Environment.split_path(setting_values.interpolate(:modulepath)),
setting_values.interpolate(:manifest),
setting_values.interpolate(:config_version)
)
env
end
def validated_directory(envdir)
env_name = Puppet::FileSystem.basename_string(envdir)
envdir = Puppet::Environments::Directories.real_path(envdir).to_s
if Puppet::FileSystem.directory?(envdir) && Puppet::Node::Environment.valid_name?(env_name)
envdir
else
nil
end
end
def valid_environment_names
return [] unless Puppet::FileSystem.directory?(@environment_dir)
Puppet::FileSystem.children(@environment_dir).map do |child|
Puppet::FileSystem.basename_string(child).intern if validated_directory(child)
end.compact
end
end
# Combine together multiple loaders to act as one.
# @api private
class Combined
include EnvironmentLoader
def initialize(*loaders)
@loaders = loaders
end
# @!macro loader_search_paths
def search_paths
@loaders.collect(&:search_paths).flatten
end
# @!macro loader_list
def list
@loaders.collect(&:list).flatten
end
# @!macro loader_get
def get(name)
@loaders.each do |loader|
env = loader.get(name)
if env
return env
end
end
nil
end
# @!macro loader_get_conf
def get_conf(name)
@loaders.each do |loader|
conf = loader.get_conf(name)
if conf
return conf
end
end
nil
end
def clear_all
@loaders.each {|loader| loader.clear_all}
end
end
class Cached
include EnvironmentLoader
include Puppet::Concurrent::Synchronized
class DefaultCacheExpirationService
# Called when the environment is created.
#
# @param [Puppet::Node::Environment] env
def created(env)
end
# Is the environment with this name expired?
#
# @param [Symbol] env_name The symbolic environment name
# @return [Boolean]
def expired?(env_name)
false
end
# The environment with this name was evicted.
#
# @param [Symbol] env_name The symbolic environment name
def evicted(env_name)
end
end
def self.cache_expiration_service=(service)
@cache_expiration_service_singleton = service
end
def self.cache_expiration_service
@cache_expiration_service_singleton || DefaultCacheExpirationService.new
end
def initialize(loader)
@loader = loader
@cache_expiration_service = Puppet::Environments::Cached.cache_expiration_service
@cache = {}
end
# @!macro loader_list
def list
# Evict all that have expired, in the same way as `get`
clear_all_expired
# Evict all that was removed from disk
cached_envs = @cache.keys.map!(&:to_sym)
loader_envs = @loader.list.map!(&:name)
removed_envs = cached_envs - loader_envs
removed_envs.each do |env_name|
Puppet.debug { "Environment no longer exists '#{env_name}'"}
clear(env_name)
end
@loader.list.map do |env|
name = env.name
old_entry = @cache[name]
if old_entry
old_entry.value
else
add_entry(name, entry(env))
env
end
end
end
# @!macro loader_search_paths
def search_paths
@loader.search_paths
end
# @!macro loader_get
def get(name)
entry = get_entry(name)
entry ? entry.value : nil
end
# Get a cache entry for an envionment. It returns nil if the
# environment doesn't exist.
def get_entry(name, check_expired = true)
# Aggressively evict all that has expired
# This strategy favors smaller memory footprint over environment
# retrieval time.
clear_all_expired if check_expired
name = name.to_sym
entry = @cache[name]
if entry
Puppet.debug {"Found in cache #{name.inspect} #{entry.label}"}
# found in cache
entry.touch
elsif (env = @loader.get(name))
# environment loaded, cache it
entry = entry(env)
add_entry(name, entry)
end
entry
end
private :get_entry
# Adds a cache entry to the cache
def add_entry(name, cache_entry)
Puppet.debug {"Caching environment #{name.inspect} #{cache_entry.label}"}
@cache[name] = cache_entry
@cache_expiration_service.created(cache_entry.value)
end
private :add_entry
def clear_entry(name, entry)
@cache.delete(name)
Puppet.debug {"Evicting cache entry for environment #{name.inspect}"}
@cache_expiration_service.evicted(name.to_sym)
Puppet::GettextConfig.delete_text_domain(name)
Puppet.settings.clear_environment_settings(name)
end
private :clear_entry
# 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)
def clear(name)
name = name.to_sym
entry = @cache[name]
clear_entry(name, entry) if entry
end
# Clears all cached environments.
# (The intention is that this could be used from a MANUAL cache eviction command (TBD)
def clear_all
super
@cache.each_pair do |name, entry|
clear_entry(name, entry)
end
@cache = {}
Puppet::GettextConfig.delete_environment_text_domains
end
# Clears all environments that have expired, either by exceeding their time to live, or
# through an explicit eviction determined by the cache expiration service.
#
def clear_all_expired
t = Time.now
@cache.each_pair do |name, entry|
clear_if_expired(name, entry, t)
end
end
private :clear_all_expired
# Clear an environment if it is expired, either by exceeding its time to live, or
# through an explicit eviction determined by the cache expiration service.
#
def clear_if_expired(name, entry, t = Time.now)
return unless entry
return if entry.guarded?
if entry.expired?(t) || @cache_expiration_service.expired?(name.to_sym)
clear_entry(name, entry)
end
end
private :clear_if_expired
# 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.
#
# @!macro loader_get_conf
def get_conf(name)
name = name.to_sym
clear_if_expired(name, @cache[name])
@loader.get_conf(name)
end
# Guard an environment so it can't be evicted while it's in use. The method
# may be called multiple times, provided it is unguarded the same number of
# times. If you call this method, you must call `unguard` in an ensure block.
def guard(name)
entry = get_entry(name, false)
entry.guard if entry
end
# Unguard an environment.
def unguard(name)
entry = get_entry(name, false)
entry.unguard if entry
end
# Creates a suitable cache entry given the time to live for one environment
#
def entry(env)
ttl = if (conf = get_conf(env.name))
conf.environment_timeout
else
Puppet[:environment_timeout]
end
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
MRUEntry.new(env, ttl) # Entry that expires in ttl from when it was last touched
end
end
# Never evicting entry
class Entry
attr_reader :value
def initialize(value)
@value = value
@guards = 0
end
def touch
end
def expired?(now)
false
end
def label
""
end
# These are not protected with a lock, because all of the Cached
# methods are protected.
def guarded?
@guards > 0
end
def guard
@guards += 1
end
def unguard
@guards -= 1
end
end
# Always evicting entry
class NotCachedEntry < Entry
def expired?(now)
true
end
def label
"(ttl = 0 sec)"
end
end
# Policy that expires if it hasn't been touched within ttl_seconds
class MRUEntry < Entry
def initialize(value, ttl_seconds)
super(value)
@ttl = Time.now + ttl_seconds
@ttl_seconds = ttl_seconds
touch
end
def touch
@ttl = Time.now + @ttl_seconds
end
def expired?(now)
now > @ttl
end
def label
"(ttl = #{@ttl_seconds} sec)"
end
end
end
end
|