Class: Fog::Compute::Vsphere::Interface

Inherits:
Model
  • Object
show all
Defined in:
lib/fog/vsphere/models/compute/interface.rb

Constant Summary collapse

SAVE_MUTEX =
Mutex.new

Instance Attribute Summary

Attributes inherited from Model

#collection, #service

Instance Method Summary collapse

Methods inherited from Model

#inspect, #reload, #symbolize_keys, #to_json, #wait_for

Methods included from Attributes::ClassMethods

#_load, #aliases, #attribute, #attributes, #identity, #ignore_attributes, #ignored_attributes

Methods included from Fog::Core::DeprecatedConnectionAccessors

#connection, #connection=, #prepare_service_value

Methods included from Attributes::InstanceMethods

#_dump, #attributes, #dup, #identity, #identity=, #merge_attributes, #new_record?, #persisted?, #requires, #requires_one

Constructor Details

#initialize(attributes = {}) ⇒ Interface

Returns a new instance of Interface.



21
22
23
24
25
26
27
28
29
30
31
32
# File 'lib/fog/vsphere/models/compute/interface.rb', line 21

def initialize(attributes = {})
  # Assign server first to prevent race condition with persisted?
  self.server_id = attributes.delete(:server_id)

  if attributes.has_key? :type and attributes[:type].is_a? String then
    attributes[:type] = Fog.class_from_string(attributes[:type], "RbVmomi::VIM")
  else
    attributes[:type] = Fog.class_from_string("VirtualE1000", "RbVmomi::VIM")
  end

  super defaults.merge(attributes)
end

Instance Method Details

#destroyObject



43
44
45
46
47
# File 'lib/fog/vsphere/models/compute/interface.rb', line 43

def destroy
  requires :server_id, :key, :type

  service.destroy_vm_interface(server_id, :key => key, :type => type)
end

#saveObject

Raises:



49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
# File 'lib/fog/vsphere/models/compute/interface.rb', line 49

def save
  raise Fog::Errors::Error.new('Resaving an existing object may create a duplicate') if persisted?
  requires :server_id, :type, :network

  # Our approach of finding the newly created interface is rough.  We assume that the :key value always increments
  # and thus the highest :key value must correspond to the created interface.  Since this has an inherent race
  # condition we need to gate the saves.
  SAVE_MUTEX.synchronize do
    data = service.add_vm_interface(server_id, attributes)

    if data['task_state'] == 'success'
      # We have to query vSphere to get the interface attributes since the task handle doesn't include that info.
      created = server.interfaces.all.sort_by(&:key).last

      self.mac = created.mac
      self.name = created.name
      self.status = created.status
      self.summary = created.summary
      self.key = created.key
      self.virtualswitch = created.virtualswitch

      true
    else
      false
    end
  end
end

#serverObject



38
39
40
41
# File 'lib/fog/vsphere/models/compute/interface.rb', line 38

def server
  requires :server_id
  service.servers.get(server_id)
end

#to_sObject



34
35
36
# File 'lib/fog/vsphere/models/compute/interface.rb', line 34

def to_s
  name
end