Class: Bolt::Inventory::Group2

Inherits:
Object
  • Object
show all
Defined in:
lib/bolt/inventory/group2.rb

Constant Summary collapse

NAME_REGEX =

THESE are duplicates with the old groups for now. Regex used to validate group names and target aliases.

/\A[a-z0-9_][a-z0-9_-]*\Z/.freeze
DATA_KEYS =
%w[name config facts vars features].freeze
NODE_KEYS =
DATA_KEYS + %w[alias uri]
GROUP_KEYS =
DATA_KEYS + %w[groups targets target-lookups]
CONFIG_KEYS =
Bolt::TRANSPORTS.keys.map(&:to_s) + ['transport']

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data) ⇒ Group2

Returns a new instance of Group2.

Raises:



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
# File 'lib/bolt/inventory/group2.rb', line 19

def initialize(data)
  @logger = Logging.logger[self]

  raise ValidationError.new("Expected group to be a Hash, not #{data.class}", nil) unless data.is_a?(Hash)
  raise ValidationError.new("Group does not have a name", nil) unless data.key?('name')

  @name = data['name']
  raise ValidationError.new("Group name must be a String, not #{@name.inspect}", nil) unless @name.is_a?(String)
  raise ValidationError.new("Invalid group name #{@name}", @name) unless @name =~ NAME_REGEX

  unless (unexpected_keys = data.keys - GROUP_KEYS).empty?
    msg = "Found unexpected key(s) #{unexpected_keys.join(', ')} in group #{@name}"
    @logger.warn(msg)
  end

  @vars = fetch_value(data, 'vars', Hash)
  @facts = fetch_value(data, 'facts', Hash)
  @features = fetch_value(data, 'features', Array)
  @config = fetch_value(data, 'config', Hash)

  @target_lookups = fetch_value(data, 'target-lookups', Array)

  unless (unexpected_keys = @config.keys - CONFIG_KEYS).empty?
    msg = "Found unexpected key(s) #{unexpected_keys.join(', ')} in config for group #{@name}"
    @logger.warn(msg)
  end

  targets = fetch_value(data, 'targets', Array)
  groups = fetch_value(data, 'groups', Array)

  @targets = {}
  @aliases = {}
  @name_or_alias = []
  targets.each do |target|
    # If target is a string, it can refer to either a target name or
    # alias. Which can't be determined until all groups have been
    # resolved, and requires a depth-first traversal to categorize them.
    if target.is_a?(String)
      @name_or_alias << target
    else
      add_target(target)
    end
  end

  @groups = groups.map { |g| Group2.new(g) }
end

Instance Attribute Details

#aliasesObject

Returns the value of attribute aliases.



8
9
10
# File 'lib/bolt/inventory/group2.rb', line 8

def aliases
  @aliases
end

#configObject

Returns the value of attribute config.



8
9
10
# File 'lib/bolt/inventory/group2.rb', line 8

def config
  @config
end

#factsObject

Returns the value of attribute facts.



8
9
10
# File 'lib/bolt/inventory/group2.rb', line 8

def facts
  @facts
end

#featuresObject

Returns the value of attribute features.



8
9
10
# File 'lib/bolt/inventory/group2.rb', line 8

def features
  @features
end

#groupsObject

Returns the value of attribute groups.



8
9
10
# File 'lib/bolt/inventory/group2.rb', line 8

def groups
  @groups
end

#nameObject

Returns the value of attribute name.



8
9
10
# File 'lib/bolt/inventory/group2.rb', line 8

def name
  @name
end

#name_or_aliasObject

Returns the value of attribute name_or_alias.



8
9
10
# File 'lib/bolt/inventory/group2.rb', line 8

def name_or_alias
  @name_or_alias
end

#restObject

Returns the value of attribute rest.



8
9
10
# File 'lib/bolt/inventory/group2.rb', line 8

def rest
  @rest
end

#targetsObject

Returns the value of attribute targets.



8
9
10
# File 'lib/bolt/inventory/group2.rb', line 8

def targets
  @targets
end

#varsObject

Returns the value of attribute vars.



8
9
10
# File 'lib/bolt/inventory/group2.rb', line 8

def vars
  @vars
end

Instance Method Details

#add_target(target) ⇒ Object

Raises:



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
# File 'lib/bolt/inventory/group2.rb', line 80

def add_target(target)
  # TODO: Do we want to accept strings from lookup_targets plugins? How should
  # they be handled?
  unless target.is_a?(Hash)
    raise ValidationError.new("Node entry must be a String or Hash, not #{target.class}", @name)
  end

  target['name'] ||= target['uri']

  if target['name'].nil? || target['name'].empty?
    raise ValidationError.new("No name or uri for target: #{target}", @name)
  end

  if @targets.include?(target['name'])
    @logger.warn("Ignoring duplicate target in #{@name}: #{target}")
    return
  end

  raise ValidationError.new("Node #{target} does not have a name", @name) unless target['name']
  @targets[target['name']] = target

  unless (unexpected_keys = target.keys - NODE_KEYS).empty?
    msg = "Found unexpected key(s) #{unexpected_keys.join(', ')} in target #{target['name']}"
    @logger.warn(msg)
  end

  unless target['config'].nil? || target['config'].is_a?(Hash)
    raise ValidationError.new("Invalid configuration for target: #{target['name']}", @name)
  end

  config_keys = target['config']&.keys || []
  unless (unexpected_keys = config_keys - CONFIG_KEYS).empty?
    msg = "Found unexpected key(s) #{unexpected_keys.join(', ')} in config for target #{target['name']}"
    @logger.warn(msg)
  end

  unless target.include?('alias')
    return
  end

  aliases = target['alias']
  aliases = [aliases] if aliases.is_a?(String)
  unless aliases.is_a?(Array)
    msg = "Alias entry on #{target['name']} must be a String or Array, not #{aliases.class}"
    raise ValidationError.new(msg, @name)
  end

  aliases.each do |alia|
    raise ValidationError.new("Invalid alias #{alia}", @name) unless alia =~ NAME_REGEX

    if (found = @aliases[alia])
      raise ValidationError.new(alias_conflict(alia, found, target['name']), @name)
    end
    @aliases[alia] = target['name']
  end
end

#collect_groupsObject

Return a mapping of group names to group.



315
316
317
318
319
# File 'lib/bolt/inventory/group2.rb', line 315

def collect_groups
  @groups.inject(name => self) do |acc, g|
    acc.merge(g.collect_groups)
  end
end

#data_for(target_name) ⇒ Object

The data functions below expect and return nil or a hash of the schema { ‘config’ => Hash , ‘vars’ => Hash, ‘facts’ => Hash, ‘features’ => Array, groups => Array }



280
281
282
# File 'lib/bolt/inventory/group2.rb', line 280

def data_for(target_name)
  data_merge(group_collect(target_name), target_collect(target_name))
end

#data_merge(data1, data2) ⇒ Object



158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
# File 'lib/bolt/inventory/group2.rb', line 158

def data_merge(data1, data2)
  if data2.nil? || data1.nil?
    return data2 || data1
  end

  {
    'config' => Bolt::Util.deep_merge(data1['config'], data2['config']),
    'name' => data1['name'] || data2['name'],
    'uri' => data1['uri'] || data2['uri'],
    # Shallow merge instead of deep merge so that vars with a hash value
    # are assigned a new hash, rather than merging the existing value
    # with the value meant to replace it
    'vars' => data1['vars'].merge(data2['vars']),
    'facts' => Bolt::Util.deep_merge(data1['facts'], data2['facts']),
    'features' => data1['features'] | data2['features'],
    'groups' => data2['groups'] + data1['groups']
  }
end

#empty_dataObject



292
293
294
295
296
297
298
# File 'lib/bolt/inventory/group2.rb', line 292

def empty_data
  { 'config' => {},
    'vars' => {},
    'facts' => {},
    'features' => [],
    'groups' => [] }
end

#group_collect(target_name) ⇒ Object



337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
# File 'lib/bolt/inventory/group2.rb', line 337

def group_collect(target_name)
  data = @groups.inject(nil) do |acc, g|
    if (d = g.data_for(target_name))
      data_merge(d, acc)
    else
      acc
    end
  end

  if data
    data_merge(group_data, data)
  elsif @targets.include?(target_name)
    group_data
  end
end

#group_dataObject



284
285
286
287
288
289
290
# File 'lib/bolt/inventory/group2.rb', line 284

def group_data
  { 'config' => @config,
    'vars' => @vars,
    'facts' => @facts,
    'features' => @features,
    'groups' => [@name] }
end

#lookup_targets(plugins) ⇒ Object



137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
# File 'lib/bolt/inventory/group2.rb', line 137

def lookup_targets(plugins)
  @target_lookups.each do |lookup|
    unless lookup.is_a?(Hash)
      raise ValidationError.new("target-lookup is not a hash: #{lookup}", @name)
    end
    unless lookup['plugin']
      raise ValidationError.new("target-lookup does not specify a plugin: #{lookup}", @name)
    end

    unless (plugin = plugins.by_name(lookup['plugin']))
      raise ValidationError.new("target-lookup specifies an unkown plugin: '#{lookup['plugin']}'", @name)

    end

    targets = plugin.lookup_targets(lookup)
    targets.each { |target| add_target(target) }
  end

  @groups.each { |g| g.lookup_targets(plugins) }
end

#resolve_aliases(aliases, target_names) ⇒ Object



185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
# File 'lib/bolt/inventory/group2.rb', line 185

def resolve_aliases(aliases, target_names)
  @name_or_alias.each do |name_or_alias|
    # If an alias is found, insert the name into this group. Otherwise use the name as a new target's uri.
    if target_names.include?(name_or_alias)
      @targets[name_or_alias] = { 'name' => name_or_alias }
    elsif (target_name = aliases[name_or_alias])
      if @targets.include?(target_name)
        @logger.warn("Ignoring duplicate target in #{@name}: #{target_name}")
      else
        @targets[target_name] = { 'name' => target_name }
      end
    else
      target_name = name_or_alias

      if @targets.include?(target_name)
        @logger.warn("Ignoring duplicate target in #{@name}: #{target_name}")
      else
        @targets[target_name] = { 'uri' => target_name }
      end
    end
  end

  @groups.each { |g| g.resolve_aliases(aliases, target_names) }
end

#target_aliasesObject

Returns a mapping of aliases to targets contained within the group, which includes subgroups.



308
309
310
311
312
# File 'lib/bolt/inventory/group2.rb', line 308

def target_aliases
  @groups.inject(@aliases) do |acc, g|
    acc.merge(g.target_aliases)
  end
end

#target_collect(target_name) ⇒ Object



326
327
328
329
330
331
332
333
334
335
# File 'lib/bolt/inventory/group2.rb', line 326

def target_collect(target_name)
  data = @groups.inject(nil) do |acc, g|
    if (d = g.target_collect(target_name))
      data_merge(d, acc)
    else
      acc
    end
  end
  data_merge(target_data(target_name), data)
end

#target_data(target_name) ⇒ Object



66
67
68
69
70
71
72
73
74
75
76
77
78
# File 'lib/bolt/inventory/group2.rb', line 66

def target_data(target_name)
  if (data = @targets[target_name])
    { 'config' => data['config'] || {},
      'vars' => data['vars'] || {},
      'facts' => data['facts'] || {},
      'features' => data['features'] || [],
      # This allows us to determine if a target was found?
      'name' => data['name'] || nil,
      'uri' => data['uri'] || nil,
      # groups come from group_data
      'groups' => [] }
  end
end

#target_namesObject

Returns all targets contained within the group, which includes targets from subgroups.



301
302
303
304
305
# File 'lib/bolt/inventory/group2.rb', line 301

def target_names
  @groups.inject(local_target_names) do |acc, g|
    acc.merge(g.target_names)
  end
end

#validate(used_names = Set.new, target_names = Set.new, aliased = {}, depth = 0) ⇒ Object

Raises:



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
# File 'lib/bolt/inventory/group2.rb', line 226

def validate(used_names = Set.new, target_names = Set.new, aliased = {}, depth = 0)
  # Test if this group name conflicts with anything used before.
  raise ValidationError.new("Tried to redefine group #{@name}", @name) if used_names.include?(@name)
  raise ValidationError.new(group_target_conflict(@name), @name) if target_names.include?(@name)
  raise ValidationError.new(group_alias_conflict(@name), @name) if aliased.include?(@name)

  used_names << @name

  # Collect target names and aliases into a list used to validate that subgroups don't conflict.
  # Used names validate that previously used group names don't conflict with new target names/aliases.
  @targets.each_key do |n|
    # Require targets to be parseable as a Target.
    begin
      Target.new(n)
    rescue Bolt::ParseError => e
      @logger.debug(e)
      raise ValidationError.new("Invalid target name #{n}", @name)
    end

    raise ValidationError.new(group_target_conflict(n), @name) if used_names.include?(n)
    if aliased.include?(n)
      raise ValidationError.new(alias_target_conflict(n), @name)
    end

    target_names << n
  end

  @aliases.each do |n, target|
    raise ValidationError.new(group_alias_conflict(n), @name) if used_names.include?(n)
    if target_names.include?(n)
      raise ValidationError.new(alias_target_conflict(n), @name)
    end

    if aliased.include?(n)
      raise ValidationError.new(alias_conflict(n, target, aliased[n]), @name)
    end

    aliased[n] = target
  end

  @groups.each do |g|
    begin
      g.validate(used_names, target_names, aliased, depth + 1)
    rescue ValidationError => e
      e.add_parent(@name)
      raise e
    end
  end

  nil
end