Sha256: 4c2fe3b6359ec6776368f5fbd345e8068002888acfceeb149eb83a28d8ac7ff6

Contents?: true

Size: 1.21 KB

Versions: 7

Compression:

Stored size: 1.21 KB

Contents

require "log4r"
require "timeout"

module VagrantPlugins
  module XHYVE
    module Action
      # This action will wait for a machine to reach a specific state or quit by timeout
      class WaitForState
        # env[:result] will be false in case of timeout.
        # @param [Symbol] state Target machine state.
        # @param [Number] timeout Timeout in seconds.
        def initialize(app, env, state, timeout)
          @app     = app
          @logger  = Log4r::Logger.new("vagrant_xhyve::action::wait_for_state")
          @state   = state
          @timeout = timeout
        end

        def call(env)
          env[:result] = true
          if env[:machine].state.id == @state
            @logger.info(I18n.t("vagrant_xhyve.already_status", :status => @state))
          else
            @logger.info("Waiting for machine to reach state #{@state}")
            begin
              Timeout.timeout(@timeout) do
                until env[:machine].state.id == @state
                  sleep 2
                end
              end
            rescue Timeout::Error
              env[:result] = false # couldn't reach state in time
            end
          end

          @app.call(env)
        end
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
vagrant-xhyve-0.4.1 lib/vagrant-xhyve/action/wait_for_state.rb
vagrant-xhyve-0.4.0 lib/vagrant-xhyve/action/wait_for_state.rb
vagrant-xhyve-0.3.0 lib/vagrant-xhyve/action/wait_for_state.rb
vagrant-xhyve-0.2.0 lib/vagrant-xhyve/action/wait_for_state.rb
vagrant-xhyve-0.1.1 lib/vagrant-xhyve/action/wait_for_state.rb
vagrant-xhyve-0.1.1.pre lib/vagrant-xhyve/action/wait_for_state.rb
vagrant-xhyve-0.1.0.pre lib/vagrant-xhyve/action/wait_for_state.rb