Sha256: b84db3ffa9af74e07f32bc7d283ad2ac4503d6b8a87365df3b4d7d53da6373b5

Contents?: true

Size: 1.12 KB

Versions: 3

Compression:

Stored size: 1.12 KB

Contents

require "log4r"

module VagrantPlugins
  module OpenStack
    module Action
      # This action reads the state of the machine and puts it in the
      # `:machine_state_id` key in the environment.
      class ReadState
        def initialize(app, env)
          @app    = app
          @logger = Log4r::Logger.new("vagrant_openstack::action::read_state")
        end

        def call(env)
          env[:machine_state_id] = read_state(env[:openstack_compute], env[:machine])

          @app.call(env)
        end

        def read_state(openstack, machine)
          id = machine.id || openstack.servers.all( :name => machine.name ).first.id rescue nil
          return :not_created if id.nil?

          # Find the machine
          server = openstack.servers.get(id)
          if server.nil? || server.state == "DELETED"
            # The machine can't be found
            @logger.info("Machine not found or deleted, assuming it got destroyed.")
            machine.id = nil
            return :not_created
          end

          # Return the state
          return server.state.downcase.to_sym
        end
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
vagrant-openstack-plugin-0.6.1 lib/vagrant-openstack-plugin/action/read_state.rb
vagrant-openstack-plugin-0.6.0 lib/vagrant-openstack-plugin/action/read_state.rb
vagrant-openstack-plugin-0.5.0 lib/vagrant-openstack-plugin/action/read_state.rb