Class: RbVmomi::VIM::VirtualMachine

Inherits:
Object
  • Object
show all
Defined in:
lib/rvc/extensions/VirtualMachine.rb

Overview

Copyright © 2011 VMware, Inc. All Rights Reserved.

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.ls_propertiesObject



192
193
194
# File 'lib/rvc/extensions/VirtualMachine.rb', line 192

def self.ls_properties
  %w(name runtime.powerState)
end

Instance Method Details

#childrenObject



200
201
202
203
204
205
206
207
208
209
210
211
# File 'lib/rvc/extensions/VirtualMachine.rb', line 200

def children
  host, resourcePool = collect *%w(runtime.host resourcePool)
  {
    'host' => host,
    'resourcePool' => resourcePool,
    'datastores' => RVC::FakeFolder.new(self, :rvc_children_datastores),
    'networks' => RVC::FakeFolder.new(self, :rvc_children_networks),
    'files' => RVC::FakeFolder.new(self, :rvc_children_files),
    'snapshots' => RVC::RootSnapshotFolder.new(self),
    'devices' => RVC::FakeFolder.new(self, :rvc_children_devices),
  }
end

#display_infoObject



147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
# File 'lib/rvc/extensions/VirtualMachine.rb', line 147

def display_info
  config, runtime, guest = collect :config, :runtime, :guest
  RVC::Util.err "Information currently unavailable" unless config and runtime and guest

  puts "name: #{config.name}"
  puts "note: #{config.annotation}" if config.annotation and !config.annotation.empty?
  puts "host: #{runtime.host.path[1..-1].map { |x| x[1] } * '/'}" if runtime.host
  puts "tools: #{guest.toolsRunningStatus}"
  puts "hostname: #{guest.hostName} (#{guest.ipAddress})" if guest.hostName and guest.ipAddress
  puts "VC UUID: #{config.instanceUuid}" if config.instanceUuid and !config.instanceUuid.empty?
  puts "power: #{runtime.powerState}"
  if runtime.question
    puts "question: #{runtime.question.text.lines.to_a.join("> ")}"
    puts "choices: #{runtime.question.choice.choiceInfo.map(&:label) * ', '}"
    if i = runtime.question.choice.defaultIndex
      puts "default: #{runtime.question.choice.choiceInfo[i].label}"
    end
  end
  puts "cpus: #{config.hardware.numCPU}"
  puts "memory: #{config.hardware.memoryMB} MB"

  puts "nics:"
  config.hardware.device.grep RbVmomi::VIM::VirtualEthernetCard do |dev|
    backing_info = case dev.backing
    when RbVmomi::VIM::VirtualEthernetCardNetworkBackingInfo
      dev.backing.deviceName.inspect
    when RbVmomi::VIM::VirtualEthernetCardDistributedVirtualPortBackingInfo
      dev.backing.port.portgroupKey.inspect
    else
      dev.backing.class.name
    end
    guest_net = guest.net.find { |x| x.macAddress == dev.macAddress }
    puts " #{dev.name}: #{backing_info} #{dev.connectable.connected ? :connected : :disconnected} #{dev.macAddress} #{guest_net ? (guest_net.ipAddress * ' ') : ''}"
  end

  puts "storage:"
  storage.perDatastoreUsage.map do |usage|
    puts " #{usage.datastore.name}: committed=#{usage.committed.metric}B uncommitted=#{usage.uncommitted.metric}B unshared=#{usage.unshared.metric}B"
  end
  
  if runtime.dasVmProtection
    puts "HA protected: #{runtime.dasVmProtection.dasProtected ? 'yes' : 'no'}"
  end
end

#ls_text(r) ⇒ Object



196
197
198
# File 'lib/rvc/extensions/VirtualMachine.rb', line 196

def ls_text r
  ": #{r['runtime.powerState']}"
end

#rvc_children_datastoresObject



213
214
215
# File 'lib/rvc/extensions/VirtualMachine.rb', line 213

def rvc_children_datastores
  RVC::Util.collect_children self, :datastore
end

#rvc_children_devicesObject



235
236
237
238
239
# File 'lib/rvc/extensions/VirtualMachine.rb', line 235

def rvc_children_devices
  devices, = collect 'config.hardware.device'
  devices.each { |x| x.rvc_vm = self }
  Hash[devices.map { |x| [x.name, x] }]
end

#rvc_children_filesObject



221
222
223
224
225
226
227
228
229
230
231
232
233
# File 'lib/rvc/extensions/VirtualMachine.rb', line 221

def rvc_children_files
  files = layoutEx.file
  datastore_map = RVC::Util.collect_children self, :datastore
  Hash[files.map do |file|
    file.name =~ /^\[(.+)\] (.+)$/ or fail "invalid datastore path"
    ds = datastore_map[$1] or fail "datastore #{$1.inspect} not found"
    arcs, = RVC::Path.parse $2
    arcs.unshift 'files'
    objs = $shell.fs.traverse ds, arcs
    fail unless objs.size == 1
    [File.basename(file.name), objs.first]
  end]
end

#rvc_children_networksObject



217
218
219
# File 'lib/rvc/extensions/VirtualMachine.rb', line 217

def rvc_children_networks
  RVC::Util.collect_children self, :network
end