Class: Puppet::Resource::Catalog

Inherits:
Graph::SimpleGraph show all
Extended by:
Indirector
Includes:
Util::Tagging
Defined in:
lib/puppet/resource/catalog.rb

Overview

This class models a node catalog. It is the thing meant to be passed from server to client, and it contains all of the information in the catalog, including the resources and the relationships between them.

Defined Under Namespace

Classes: Compiler, DuplicateResourceError, Json, Msgpack, Rest, StaticCompiler, StoreConfigs, Yaml

Constant Summary

Constants included from Indirector

Indirector::BadNameRegexp

Constants included from Util::Tagging

Util::Tagging::ValidTagRegex

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Methods included from Indirector

configure_routes, indirects

Methods included from Util::Tagging

#merge_into, #merge_tags, #raw_tagged?, #set_tags, #tag, #tag_if_valid, #tagged?, #tags, #tags=

Methods inherited from Graph::SimpleGraph

#add_edge, #add_relationship, #add_vertex, #adjacent, #dependencies, #dependents, #direct_dependencies_of, #direct_dependents_of, #directed?, #downstream_from_vertex, #each_edge, #edge?, #edges, #edges_between, #find_cycles_in_graph, #instance_variable_get, #leaves, #matching_edges, #path_between, #paths_in_cycle, #remove_edge!, #remove_vertex!, #report_cycles_in_graph, #reversal, #size, #tarjan, #to_a, #to_dot, #to_dot_graph, #to_yaml_properties, #tree_from_vertex, #upstream_from_vertex, #vertex?, #vertices, #walk, #write_cycles_to_graph, #yaml_initialize

Constructor Details

#initialize(name = nil, environment = Puppet::Node::Environment::NONE, code_id = nil) ⇒ Catalog

Returns a new instance of Catalog.



291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
# File 'lib/puppet/resource/catalog.rb', line 291

def initialize(name = nil, environment = Puppet::Node::Environment::NONE, code_id = nil)
  super()
  @name = name
  @catalog_uuid = SecureRandom.uuid
  @catalog_format = 1
  @metadata = {}
  @recursive_metadata = {}
  @classes = []
  @resource_table = {}
  @resources = []
  @relationship_graph = nil

  @host_config = true
  @environment_instance = environment
  @environment = environment.to_s
  @code_id = code_id

  @aliases = {}

  if block_given?
    yield(self)
    finalize
  end
end

Instance Attribute Details

#catalog_formatInteger

Returns catalog format version number. This value is constant for a given version of Puppet; it is incremented when a new release of Puppet changes the API for the various objects that make up the catalog.

Returns:

  • (Integer)

    catalog format version number. This value is constant for a given version of Puppet; it is incremented when a new release of Puppet changes the API for the various objects that make up the catalog.



42
43
44
# File 'lib/puppet/resource/catalog.rb', line 42

def catalog_format
  @catalog_format
end

#catalog_uuidObject

The UUID of the catalog



37
38
39
# File 'lib/puppet/resource/catalog.rb', line 37

def catalog_uuid
  @catalog_uuid
end

#client_versionObject

Some metadata to help us compile and generally respond to the current state.



67
68
69
# File 'lib/puppet/resource/catalog.rb', line 67

def client_version
  @client_version
end

#code_idObject

The id of the code input to the compiler.



34
35
36
# File 'lib/puppet/resource/catalog.rb', line 34

def code_id
  @code_id
end

#environmentObject

A String representing the environment for this catalog



70
71
72
# File 'lib/puppet/resource/catalog.rb', line 70

def environment
  @environment
end

#environment_instanceObject

The actual environment instance that was used during compilation



73
74
75
# File 'lib/puppet/resource/catalog.rb', line 73

def environment_instance
  @environment_instance
end

#from_cacheObject

Whether this catalog was retrieved from the cache, which affects whether it is written back out again.



64
65
66
# File 'lib/puppet/resource/catalog.rb', line 64

def from_cache
  @from_cache
end

#host_configObject

Whether this is a host catalog, which behaves very differently. In particular, reports are sent, graphs are made, and state is stored in the state database. If this is set incorrectly, then you often end up in infinite loops, because catalogs are used to make things that the host catalog needs.



60
61
62
# File 'lib/puppet/resource/catalog.rb', line 60

def host_config
  @host_config
end

#metadataObject

Inlined file metadata for non-recursive find A hash of title => metadata



46
47
48
# File 'lib/puppet/resource/catalog.rb', line 46

def 
  @metadata
end

#nameObject

The host name this is a catalog for.



27
28
29
# File 'lib/puppet/resource/catalog.rb', line 27

def name
  @name
end

#recursive_metadataObject

Inlined file metadata for recursive search A hash of title => { source => [metadata, …] }



50
51
52
# File 'lib/puppet/resource/catalog.rb', line 50

def 
  @recursive_metadata
end

#retrieval_durationObject

How long this catalog took to retrieve. Used for reporting stats.



53
54
55
# File 'lib/puppet/resource/catalog.rb', line 53

def retrieval_duration
  @retrieval_duration
end

#server_versionObject

Some metadata to help us compile and generally respond to the current state.



67
68
69
# File 'lib/puppet/resource/catalog.rb', line 67

def server_version
  @server_version
end

#versionObject

The catalog version. Used for testing whether a catalog is up to date.



31
32
33
# File 'lib/puppet/resource/catalog.rb', line 31

def version
  @version
end

Class Method Details

.from_data_hash(data) ⇒ Object



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
# File 'lib/puppet/resource/catalog.rb', line 390

def self.from_data_hash(data)
  result = new(data['name'], Puppet::Node::Environment::NONE)

  if tags = data['tags']
    result.tag(*tags)
  end

  if version = data['version']
    result.version = version
  end

  if code_id = data['code_id']
    result.code_id = code_id
  end

  if catalog_uuid = data['catalog_uuid']
    result.catalog_uuid = catalog_uuid
  end

  result.catalog_format = data['catalog_format'] || 0

  if environment = data['environment']
    result.environment = environment
    result.environment_instance = Puppet::Node::Environment.remote(environment.to_sym)
  end

  if resources = data['resources']
    result.add_resource(*resources.collect do |res|
      Puppet::Resource.from_data_hash(res)
    end)
  end

  if edges = data['edges']
    edges.each do |edge_hash|
      edge = Puppet::Relationship.from_data_hash(edge_hash)
      unless source = result.resource(edge.source)
        raise ArgumentError, "Could not intern from data: Could not find relationship source #{edge.source.inspect} for #{edge.target.to_s}"
      end
      edge.source = source

      unless target = result.resource(edge.target)
        raise ArgumentError, "Could not intern from data: Could not find relationship target #{edge.target.inspect} for #{edge.source.to_s}"
      end
      edge.target = target

      result.add_edge(edge)
    end
  end

  if classes = data['classes']
    result.add_class(*classes)
  end

  if  = data['metadata']
    result. = .inject({}) { |h, (k, v)| h[k] = Puppet::FileServing::Metadata.from_data_hash(v); h }
  end

  if  = data['recursive_metadata']
    result. = .inject({}) do |h, (title, source_to_meta_hash)|
      h[title] = source_to_meta_hash.inject({}) do |inner_h, (source, metas)|
        inner_h[source] = metas.map {|meta| Puppet::FileServing::Metadata.from_data_hash(meta)}
        inner_h
      end
      h
    end
  end

  result
end

Instance Method Details

#add_class(*classes) ⇒ Object

Add classes to our class list.



76
77
78
79
80
81
82
83
# File 'lib/puppet/resource/catalog.rb', line 76

def add_class(*classes)
  classes.each do |klass|
    @classes << klass
  end

  # Add the class names as tags, too.
  tag(*classes)
end

#add_resource(*resources) ⇒ Object



117
118
119
120
121
# File 'lib/puppet/resource/catalog.rb', line 117

def add_resource(*resources)
  resources.each do |resource|
    add_one_resource(resource)
  end
end

#add_resource_after(other, *resources) ⇒ Object

Add ‘resources` to the catalog after `other`. WARNING: adding multiple resources will produce the reverse ordering, e.g. calling `add_resource_after(A, [B,C])` will result in `[A,C,B]`.



108
109
110
111
112
113
114
115
# File 'lib/puppet/resource/catalog.rb', line 108

def add_resource_after(other, *resources)
  resources.each do |resource|
    other_title_key = title_key_for_ref(other.ref)
    idx = @resources.index(other_title_key)
    raise ArgumentError, "Cannot add resource #{resource.ref} after #{other.ref} because #{other.ref} is not yet in the catalog" if idx.nil?
    add_one_resource(resource, idx+1)
  end
end

#add_resource_before(other, *resources) ⇒ Object



96
97
98
99
100
101
102
103
# File 'lib/puppet/resource/catalog.rb', line 96

def add_resource_before(other, *resources)
  resources.each do |resource|
    other_title_key = title_key_for_ref(other.ref)
    idx = @resources.index(other_title_key)
    raise ArgumentError, "Cannot add resource #{resource.ref} before #{other.ref} because #{other.ref} is not yet in the catalog" if idx.nil?
    add_one_resource(resource, idx)
  end
end

#alias(resource, key) ⇒ Object

Create an alias for a resource.



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
# File 'lib/puppet/resource/catalog.rb', line 169

def alias(resource, key)
  resource.ref =~ /^(.+)\[/
  class_name = $1 || resource.class.name

  newref = [class_name, key].flatten

  if key.is_a? String
    ref_string = "#{class_name}[#{key}]"
    return if ref_string == resource.ref
  end

  # LAK:NOTE It's important that we directly compare the references,
  # because sometimes an alias is created before the resource is
  # added to the catalog, so comparing inside the below if block
  # isn't sufficient.
  if existing = @resource_table[newref]
    return if existing == resource
    resource_declaration = " at #{resource.file}:#{resource.line}" if resource.file and resource.line
    existing_declaration = " at #{existing.file}:#{existing.line}" if existing.file and existing.line
    msg = "Cannot alias #{resource.ref} to #{key.inspect}#{resource_declaration}; resource #{newref.inspect} already declared#{existing_declaration}"
    raise ArgumentError, msg
  end
  @resource_table[newref] = resource
  @aliases[resource.ref] ||= []
  @aliases[resource.ref] << newref
end

#apply(options = {}) {|transaction| ... } ⇒ Puppet::Transaction

Apply our catalog to the local host.

Parameters:

Options Hash (options):

  • :report (Puppet::Transaction::Report)

    The report object to log this transaction to. This is optional, and the resulting transaction will create a report if not supplied.

  • :tags (Array[String])

    Tags used to filter the transaction. If supplied then only resources tagged with any of these tags will be evaluated.

  • :ignoreschedules (Boolean)

    Ignore schedules when evaluating resources

  • :for_network_device (Boolean)

    Whether this catalog is for a network device

Yields:

  • (transaction)

Returns:



214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
# File 'lib/puppet/resource/catalog.rb', line 214

def apply(options = {})
  Puppet::Util::Storage.load if host_config?

  transaction = create_transaction(options)

  begin
    transaction.report.as_logging_destination do
      transaction.evaluate
    end
  ensure
    # Don't try to store state unless we're a host config
    # too recursive.
    Puppet::Util::Storage.store if host_config?
  end

  yield transaction if block_given?

  transaction
end

#classesObject



263
264
265
# File 'lib/puppet/resource/catalog.rb', line 263

def classes
  @classes.dup
end

#clear(remove_resources = true) ⇒ Object



250
251
252
253
254
255
256
257
258
259
260
261
# File 'lib/puppet/resource/catalog.rb', line 250

def clear(remove_resources = true)
  super()
  # We have to do this so that the resources clean themselves up.
  @resource_table.values.each { |resource| resource.remove } if remove_resources
  @resource_table.clear
  @resources = []

  if @relationship_graph
    @relationship_graph.clear
    @relationship_graph = nil
  end
end

#container_of(resource) ⇒ A Resource?

Returns the resource that contains the given resource.

Parameters:

  • resource (A Resource)

    a resource in the catalog

Returns:

  • (A Resource, nil)

    the resource that contains the given resource



126
127
128
# File 'lib/puppet/resource/catalog.rb', line 126

def container_of(resource)
  adjacent(resource, :direction => :in)[0]
end

#create_resource(type, options) ⇒ Object

Create a new resource and register it in the catalog.



268
269
270
271
272
273
274
275
276
# File 'lib/puppet/resource/catalog.rb', line 268

def create_resource(type, options)
  unless klass = Puppet::Type.type(type)
    raise ArgumentError, "Unknown resource type #{type}"
  end
  return unless resource = klass.new(options)

  add_resource(resource)
  resource
end

#filter(&block) ⇒ Object

filter out the catalog, applying block to each resource. If the block result is false, the resource will be kept otherwise it will be skipped



498
499
500
501
502
503
504
505
506
507
508
509
510
511
# File 'lib/puppet/resource/catalog.rb', line 498

def filter(&block)
  # to_catalog must take place in a context where current_environment is set to the same env as the
  # environment set in the catalog (if it is set)
  # See PUP-3755
  if environment_instance
    Puppet.override({:current_environment => environment_instance}) do
      to_catalog :to_resource, &block
    end
  else
    # If catalog has no environment_instance, hope that the caller has made sure the context has the
    # correct current_environment
    to_catalog :to_resource, &block
  end
end

#finalizeObject

Make sure all of our resources are “finished”.



279
280
281
282
283
284
285
# File 'lib/puppet/resource/catalog.rb', line 279

def finalize
  make_default_resources

  @resource_table.values.each { |resource| resource.finish }

  write_graph(:resources)
end

#host_config?Boolean

Returns:

  • (Boolean)


287
288
289
# File 'lib/puppet/resource/catalog.rb', line 287

def host_config?
  host_config
end

#make_default_resourcesObject

Make the default objects necessary for function.



317
318
319
320
321
322
323
324
325
326
327
328
# File 'lib/puppet/resource/catalog.rb', line 317

def make_default_resources
  # We have to add the resources to the catalog, or else they won't get cleaned up after
  # the transaction.

  # First create the default scheduling objects
  Puppet::Type.type(:schedule).mkdefaultschedules.each { |res| add_resource(res) unless resource(res.ref) }

  # And filebuckets
  if bucket = Puppet::Type.type(:filebucket).mkdefaultbucket
    add_resource(bucket) unless resource(bucket.ref)
  end
end

#relationship_graph(given_prioritizer = nil) ⇒ Puppet::Graph::RelationshipGraph

The relationship_graph form of the catalog. This contains all of the dependency edges that are used for determining order.

Parameters:

  • given_prioritizer (Puppet::Graph::Prioritizer) (defaults to: nil)

    The prioritization strategy to use when constructing the relationship graph. Defaults the being determined by the ‘ordering` setting.

Returns:



242
243
244
245
246
247
248
# File 'lib/puppet/resource/catalog.rb', line 242

def relationship_graph(given_prioritizer = nil)
  if @relationship_graph.nil?
    @relationship_graph = Puppet::Graph::RelationshipGraph.new(given_prioritizer || prioritizer)
    @relationship_graph.populate_from(self)
  end
  @relationship_graph
end

#remove_resource(*resources) ⇒ Object

Remove the resource from our catalog. Notice that we also call ‘remove’ on the resource, at least until resource classes no longer maintain references to the resource instances.



333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
# File 'lib/puppet/resource/catalog.rb', line 333

def remove_resource(*resources)
  resources.each do |resource|
    title_key = title_key_for_ref(resource.ref)
    @resource_table.delete(title_key)
    if aliases = @aliases[resource.ref]
      aliases.each { |res_alias| @resource_table.delete(res_alias) }
      @aliases.delete(resource.ref)
    end
    remove_vertex!(resource) if vertex?(resource)
    @relationship_graph.remove_vertex!(resource) if @relationship_graph and @relationship_graph.vertex?(resource)
    @resources.delete(title_key)
    # Only Puppet::Type kind of resources respond to :remove, not Puppet::Resource
    resource.remove if resource.respond_to?(:remove)
  end
end

#resource(type, title = nil) ⇒ Object

Look a resource up by its reference (e.g., File).



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
# File 'lib/puppet/resource/catalog.rb', line 350

def resource(type, title = nil)
  # Always create a resource reference, so that it always
  # canonicalizes how we are referring to them.
  attributes = { :environment => environment_instance }
  if title
    res = Puppet::Resource.new(type, title, attributes)
  else
    # If they didn't provide a title, then we expect the first
    # argument to be of the form 'Class[name]', which our
    # Reference class canonicalizes for us.
    res = Puppet::Resource.new(nil, type, attributes)
  end
  res.catalog = self
  title_key      = [res.type, res.title.to_s]
  uniqueness_key = [res.type, res.uniqueness_key].flatten
  result = @resource_table[title_key] || @resource_table[uniqueness_key]
  if ! result && res.resource_type && res.resource_type.is_capability?
    # @todo lutter 2015-03-10: this assumes that it is legal to just
    # mention a capability resource in code and have it automatically
    # made available, even if the current component does not require it
    result = Puppet::Resource::CapabilityFinder.find(environment, code_id, res)
    add_resource(result) if result
  end
  result
end

#resource_keysObject



380
381
382
# File 'lib/puppet/resource/catalog.rb', line 380

def resource_keys
  @resource_table.keys
end

#resource_refsObject



376
377
378
# File 'lib/puppet/resource/catalog.rb', line 376

def resource_refs
  resource_keys.collect{ |type, name| name.is_a?( String ) ? "#{type}[#{name}]" : nil}.compact
end

#resourcesObject



384
385
386
387
388
# File 'lib/puppet/resource/catalog.rb', line 384

def resources
  @resources.collect do |key|
    @resource_table[key]
  end
end

#title_key_for_ref(ref) ⇒ Object



85
86
87
88
89
90
91
92
93
94
# File 'lib/puppet/resource/catalog.rb', line 85

def title_key_for_ref( ref )
  s = ref.index('[')
  e = ref.rindex(']')
  if s && e && e > s
    a = [ref[0, s], ref[s+1, e-s-1]]
  else
    a = [nil, nil]
  end
  return a
end

#to_data_hashObject



460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
# File 'lib/puppet/resource/catalog.rb', line 460

def to_data_hash
   = .inject({}) { |h, (k, v)| h[k] = v.to_data_hash; h }
   = .inject({}) do |h, (title, source_to_meta_hash)|
    h[title] = source_to_meta_hash.inject({}) do |inner_h, (source, metas)|
      inner_h[source] = metas.map {|meta| meta.to_data_hash}
      inner_h
    end
    h
  end

  {
    'tags'      => tags,
    'name'      => name,
    'version'   => version,
    'code_id'   => code_id,
    'catalog_uuid' => catalog_uuid,
    'catalog_format' => catalog_format,
    'environment'  => environment.to_s,
    'resources' => @resources.collect { |v| @resource_table[v].to_data_hash },
    'edges'     => edges.   collect { |e| e.to_data_hash },
    'classes'   => classes,
  }.merge(.empty? ? {} : {'metadata' => })
   .merge(.empty? ? {} : {'recursive_metadata' => })
end

#to_ralObject

Convert our catalog into a RAL catalog.



486
487
488
# File 'lib/puppet/resource/catalog.rb', line 486

def to_ral
  to_catalog :to_ral
end

#to_resourceObject

Convert our catalog into a catalog of Puppet::Resource instances.



491
492
493
# File 'lib/puppet/resource/catalog.rb', line 491

def to_resource
  to_catalog :to_resource
end

#write_class_fileObject

Store the classes in the classfile.



514
515
516
517
518
519
520
# File 'lib/puppet/resource/catalog.rb', line 514

def write_class_file
  ::File.open(Puppet[:classfile], "w") do |f|
    f.puts classes.join("\n")
  end
rescue => detail
  Puppet.err "Could not create class file #{Puppet[:classfile]}: #{detail}"
end

#write_graph(name) ⇒ Object

Produce the graph files if requested.



540
541
542
543
544
545
# File 'lib/puppet/resource/catalog.rb', line 540

def write_graph(name)
  # We only want to graph the main host catalog.
  return unless host_config?

  super
end

#write_resource_fileObject

Store the list of resources we manage



523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
# File 'lib/puppet/resource/catalog.rb', line 523

def write_resource_file
  ::File.open(Puppet[:resourcefile], "w") do |f|
    to_print = resources.map do |resource|
      next unless resource.managed?
      if resource.name_var
        "#{resource.type}[#{resource[resource.name_var]}]"
      else
        "#{resource.ref.downcase}"
      end
    end.compact
    f.puts to_print.join("\n")
  end
rescue => detail
  Puppet.err "Could not create resource file #{Puppet[:resourcefile]}: #{detail}"
end