Sha256: 036093c8d7a5a64ddd0d1bb0b57086530eeeeca0ad0234aa68e2ad82991ce51b

Contents?: true

Size: 1.12 KB

Versions: 2

Compression:

Stored size: 1.12 KB

Contents

#
# Author:: Mohit Sethi (<mohit@sethis.in>)
# Copyright:: Copyright (c) 2013 Mohit Sethi.
#

require "log4r"

module VagrantPlugins
  module HP
    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_hp::action::read_state")
        end

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

          @app.call(env)
        end

        def read_state(hp, machine)
          return :not_created if machine.id.nil?

          # Find the machine
          server = hp.servers.get(machine.id)
          if server.nil? || [:"shutting-down", :terminated].include?(server.state.to_sym)
            # The machine can't be found
            @logger.info("Machine not found or terminated, assuming it got destroyed.")
            machine.id = nil
            return :not_created
          end

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

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
vagrant-hp-0.1.2 lib/vagrant-hp/action/read_state.rb
vagrant-hp-0.1.1 lib/vagrant-hp/action/read_state.rb