Sha256: e296b9a3097c682d0e86e05832a35a0c53c663162ac6c393ae24bad3c1678d46

Contents?: true

Size: 1.79 KB

Versions: 4

Compression:

Stored size: 1.79 KB

Contents

require "log4r"

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

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

        def read_state(env)
          vms_service = env[:vms_service]
          machine = env[:machine]
          return :not_created if machine.id.nil?

          server = vms_service.vm_service(machine.id)
          begin
            if server.get.nil?
              machine.id = nil
              return :not_created
            end
          rescue 
            machine.id = nil
            return :not_created
          end
          nics_service = server.nics_service
          nics = nics_service.list
          begin
            ip_addr = nics.collect { |nic_attachment| env[:connection].follow_link(nic_attachment.reported_devices).collect { |dev| dev.ips.collect { |ip| ip.address if ip.version == 'v4' } unless dev.ips.nil? } }.flatten.reject { |ip| ip.nil? }.first
          rescue
            # for backwards compatibility with ovirt 4.3
            ip_addr = nics.collect { |nic_attachment| env[:connection].follow_link(nic_attachment).reported_devices.collect { |dev| dev.ips.collect { |ip| ip.address if ip.version == 'v4' } unless dev.ips.nil? } }.flatten.reject { |ip| ip.nil? }.first rescue nil
          end

          unless ip_addr.nil?
            env[:ip_address] = ip_addr
            @logger.debug("Got output #{env[:ip_address]}")
          end

          return server.get.status.to_sym
        end
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
vagrant-ovirt4-2.2.0 lib/vagrant-ovirt4/action/read_state.rb
vagrant-ovirt4-2.1.3 lib/vagrant-ovirt4/action/read_state.rb
vagrant-ovirt4-2.1.0 lib/vagrant-ovirt4/action/read_state.rb
vagrant-ovirt4-2.0.0 lib/vagrant-ovirt4/action/read_state.rb