Sha256: 16bf8a5977632873379cd6d2f8eaa1c0de8f7f257ac80fa6bcb38a02fead3936

Contents?: true

Size: 1.12 KB

Versions: 5

Compression:

Stored size: 1.12 KB

Contents

module Vagrant
  module Backports
    module Action
      # This middleware is meant to be used with Call and can check if
      # a machine is in the given state ID.
      class IsState
        # Note: Any of the arguments can be arrays as well.
        #
        # @param [Symbol] target_state The target state ID that means that
        #   the machine was properly shut down.
        # @param [Symbol] source_state The source state ID that the machine
        #   must be in to be shut down.
        def initialize(app, env, check, **opts)
          @app    = app
          @logger = Log4r::Logger.new("vagrant::action::builtin::is_state")
          @check  = check
          @invert = !!opts[:invert]
        end

        def call(env)
          @logger.debug("Checking if machine state is '#{@check}'")
          state = env[:machine].state.id
          @logger.debug("-- Machine state: #{state}")

          env[:result] = @check == state
          env[:result] = !env[:result] if @invert
          @app.call(env)
        end
      end
    end
  end
end

Vagrant::Action::Builtin.const_set :IsState, Vagrant::Backports::Action::IsState

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
vagrant-lxc-1.0.1 lib/vagrant-backports/action/is_state.rb
vagrant-lxc-1.0.0 lib/vagrant-backports/action/is_state.rb
vagrant-lxc-1.0.0.alpha.3 lib/vagrant-backports/action/is_state.rb
vagrant-lxc-1.0.0.alpha.2 lib/vagrant-backports/action/is_state.rb
vagrant-lxc-1.0.0.alpha.1 lib/vagrant-backports/action/is_state.rb