Sha256: 1c0944078d2700da6677c33248eb7caab3b0ab6177db2cb53a055b8ad079ba10

Contents?: true

Size: 1.24 KB

Versions: 10

Compression:

Stored size: 1.24 KB

Contents

require "log4r"

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

        def call(env)
          env[:machine_state_id] = read_state(env)
          @app.call(env)
        end

        def read_state(env)
          machine = env[:machine]
          conn = env[:g5k_connection]
          id = machine.id
          local_storage = conn.check_storage(env)
          if id.nil? and local_storage.nil?
            return :not_created
          end

          if id.nil? and not local_storage.nil?
            return :shutdown
          end
         
          if not id.nil?
            # is there a job running for this vm ?
            job = conn.check_job(id)
            if job.nil?
              return :not_created
            end
            
            net_state = conn.check_net(id)
            return net_state.to_sym unless net_state.nil?

            return job["state"].to_sym
          end

            return :guru_meditation
        end
      end
    end
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
vagrant-g5k-0.9.9 lib/vagrant-g5k/action/read_state.rb
vagrant-g5k-0.9.8 lib/vagrant-g5k/action/read_state.rb
vagrant-g5k-0.9.7 lib/vagrant-g5k/action/read_state.rb
vagrant-g5k-0.9.6 lib/vagrant-g5k/action/read_state.rb
vagrant-g5k-0.9.5 lib/vagrant-g5k/action/read_state.rb
vagrant-g5k-0.9.4 lib/vagrant-g5k/action/read_state.rb
vagrant-g5k-0.9.3 lib/vagrant-g5k/action/read_state.rb
vagrant-g5k-0.9.2 lib/vagrant-g5k/action/read_state.rb
vagrant-g5k-0.9.1 lib/vagrant-g5k/action/read_state.rb
vagrant-g5k-0.9.0 lib/vagrant-g5k/action/read_state.rb