require 'vm_driver' ## ## $Id$ ## # This requires rhythmx's vixr driver from https://github.com/rhythmx/vixr # and below that, the VIX api from vmware http://www.vmware.com/support/developer/vix-api/ module Lab module Drivers class WorkstationVixrDriver < VmDriver attr_accessor :type attr_accessor :location def initialize(vmid, location, os=nil, tools=false, credentials=nil) # We have to treat this differently, as it's not in the same tree begin require 'vixr' rescue LoadError puts "WARNING: Library pro_vixr not found. To resolve this error, please\n" + " install the vixr gem. Latest is available here:\n" + "https://github.com/rhythmx/vixr ." raise "Unable to create vixr driver" end @vmid = filter_command(vmid) @location = filter_command(location) if !File.exist?(@location) raise ArgumentError,"Couldn't find: " + location end @credentials = credentials @tools = tools # not used in command lines, no filter @os = os # not used in command lines, no filter # TODO - Currently only implemented for the first set if @credentials.count > 0 @vm_user = filter_input(@credentials[0]['user']) || "\'\'" @vm_pass = filter_input(@credentials[0]['pass']) || "\'\'" end host = VixR.connect() vm = host.open_vmx(@location) end def start vm.power_on end def stop vm.power_off end def suspend vm.suspend end def pause vm.pause end def reset vm.reset end def create_snapshot(snapshot) snapshot = filter_input(snapshot) system_command("ssh #{@user}@#{@host} vmrun -T ws snapshot \\\'#{@location}\\\' #{snapshot} nogui") end def revert_snapshot(snapshot) snapshot = filter_input(snapshot) system_command("ssh #{@user}@#{@host} vmrun -T ws revertToSnapshot \\\'#{@location}\\\' #{snapshot} nogui") end def delete_snapshot(snapshot) snapshot = filter_input(snapshot) system_command("ssh #{@user}@#{@host} vmrun -T ws deleteSnapshot \\\'#{@location}\\\' #{snapshot} nogui" ) end def run_command(command) command = filter_input(command) if vm.login(@vm_user,@vm_pass) vm.run_prog(command) end end def copy_from_guest(from, to) from = filter_input(from) to = filter_input(to) cp_from_host(from,to) end def copy_to_guest(from, to) from = filter_input(from) to = filter_input(to) vm.cp_to_guest(from,to) end def check_file_exists(file) file = filter_input(file) file_exists?(file) end def create_directory(directory) directory = filter_input(directory) end def cleanup end def running? vm.running? end end end end