Class: Chef::Provider::MachineBatch

Inherits:
LWRPBase
  • Object
show all
Defined in:
lib/chef/provider/machine_batch.rb

Instance Method Summary collapse

Instance Method Details

#action_handlerObject



11
12
13
# File 'lib/chef/provider/machine_batch.rb', line 11

def action_handler
  @action_handler ||= ChefMetal::ChefProviderActionHandler.new(self)
end

#by_current_driverObject



127
128
129
130
131
132
133
134
135
136
137
138
139
# File 'lib/chef/provider/machine_batch.rb', line 127

def by_current_driver
  result = {}
  drivers = {}
  @machines.each do |m|
    if m[:spec].driver_url
      drivers[m[:spec].driver_url] ||= run_context.chef_metal.driver_for(m[:spec].driver_url)
      driver = drivers[m[:spec].driver_url]
      result[driver] ||= {}
      result[driver][m[:spec]] = m[:machine_options].call(driver)
    end
  end
  result
end

#by_new_driverObject



104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
# File 'lib/chef/provider/machine_batch.rb', line 104

def by_new_driver
  result = {}
  drivers = {}
  @machines.each do |m|
    if m[:desired_driver]
      drivers[m[:desired_driver]] ||= run_context.chef_metal.driver_for(m[:desired_driver])
      driver = drivers[m[:desired_driver]]
      # Check whether the current driver is same or different; we disallow
      # moving a machine from one place to another.
      if m[:spec].driver_url
        drivers[m[:spec].driver_url] ||= run_context.chef_metal.driver_for(m[:spec].driver_url)
        current_driver = drivers[m[:spec].driver_url]
        if driver.driver_url != current_driver.driver_url
          raise "Cannot move '#{m[:spec].name}' from #{current_driver.driver_url} to #{driver.driver_url}: machine moving is not supported.  Destroy and recreate."
        end
      end
      result[driver] ||= {}
      result[driver][m[:spec]] = m[:machine_options].call(driver)
    end
  end
  result
end

#load_current_resourceObject



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
# File 'lib/chef/provider/machine_batch.rb', line 141

def load_current_resource
  # Load nodes in parallel
  @machines = parallel_do(new_resource.machines) do |machine|
    if machine.is_a?(Chef::Resource::Machine)
      machine_resource = machine
      provider = Chef::Provider::Machine.new(machine_resource, machine_resource.run_context)
      provider.load_current_resource
      {
        :spec => provider.machine_spec,
        :desired_driver => machine_resource.driver,
        :files => machine_resource.files,
        :machine_options => proc { |driver| provider.machine_options(driver) }
      }
    elsif machine.is_a?(ChefMetal::MachineSpec)
      machine_spec = machine
      {
        :spec => machine_spec,
        :desired_driver => new_resource.driver,
        :files => new_resource.files,
        :machine_options => proc { |driver| machine_options(driver) }
      }
    else
      name = machine
      machine_spec = ChefMetal::ChefMachineSpec.get(name, new_resource.chef_server) ||
                     ChefMetal::ChefMachineSpec.empty(name, new_resource.chef_server)
      {
        :spec => machine_spec,
        :desired_driver => new_resource.driver,
        :files => new_resource.files,
        :machine_options => proc { |driver| machine_options(driver) }
      }
    end
  end.to_a
end

#machine_options(driver) ⇒ Object



176
177
178
179
180
181
182
# File 'lib/chef/provider/machine_batch.rb', line 176

def machine_options(driver)
  result = { :convergence_options => { :chef_server => new_resource.chef_server } }
  result = Chef::Mixin::DeepMerge.hash_only_merge(result, run_context.chef_metal.config[:machine_options]) if run_context.chef_metal.config[:machine_options]
  result = Chef::Mixin::DeepMerge.hash_only_merge(result, driver.config[:machine_options]) if driver.config && driver.config[:machine_options]
  result = Chef::Mixin::DeepMerge.hash_only_merge(result, new_resource.machine_options)
  result
end

#parallel_do(enum, options = {}, &block) ⇒ Object

TODO in many of these cases, the order of the results only matters because you want to match it up with the input. Make a parallelize method that doesn’t care about order and spits back results as quickly as possible.



100
101
102
# File 'lib/chef/provider/machine_batch.rb', line 100

def parallel_do(enum, options = {}, &block)
  parallelizer.parallelize(enum, options, &block).to_a
end

#parallelizerObject



21
22
23
# File 'lib/chef/provider/machine_batch.rb', line 21

def parallelizer
  @parallelizer ||= Chef::ChefFS::Parallelizer.new(new_resource.max_simultaneous || 100)
end

#whyrun_supported?Boolean

Returns:

  • (Boolean)


17
18
19
# File 'lib/chef/provider/machine_batch.rb', line 17

def whyrun_supported?
  true
end

#with_ready_machinesObject



78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
# File 'lib/chef/provider/machine_batch.rb', line 78

def with_ready_machines
  action_allocate
  by_id = @machines.inject({}) { |hash,m| hash[m[:spec].id] = m; hash }
  parallel_do(by_new_driver) do |driver, specs_and_options|
    driver.ready_machines(action_handler, specs_and_options, parallelizer) do |machine|
      machine.machine_spec.save(action_handler)

      m = by_id[machine.machine_spec.id]

      m[:machine] = machine
      begin
        yield m if block_given?
      ensure
        machine.disconnect
      end
    end
  end
end