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



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

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



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

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



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

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



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

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.



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

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



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

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