Overview
Comment: | Run pylint on script, fixed some interesting warnings |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
9b67069d301371df0a0c051a19457cbc |
User & Date: | vitus on 2015-12-23 09:22:19 |
Other Links: | manifest | tags |
Context
2015-12-23
| ||
10:49 | some more pylint warnings supressed check-in: ab32712efb user: vitus tags: trunk | |
09:22 | Run pylint on script, fixed some interesting warnings check-in: 9b67069d30 user: vitus tags: trunk | |
2015-12-22
| ||
12:57 | Fix error crawled into previous commit check-in: d3ca2e329c user: vitus tags: trunk | |
Changes
Modified vws from [516cb1ea0d] to [42637cb5d5].
1 2 | #!/usr/bin/python from ConfigParser import ConfigParser | > | | | > | > | | | | | | | | > | > | | | | | > | | | | < | | > | | | | | | | | | | | | | | | | > | | | | | | | | | | > | | | | | | | | > | | | > | | | | > > > | | | > | > | | | | | | > | | | | | | > | | | | | | | > > | | | | > | | | | > | | > | | < < < < | | > > > > > | | | | | | | | | > | | | | | | | | < | | | | | | | | > | | | | | | | | | | | | > | | | | | | | | | | | | | | | < < < < < | | | < < < | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 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 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 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 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 | #!/usr/bin/python """ vws - script to control QEMU/KVM virtual workstations """ from ConfigParser import ConfigParser from argparse import ArgumentParser, Namespace import fcntl import socket, select import errno import re import os, sys, time, os.path VERSION = 0.2 def find_vm(name): """ Search and return VM directory """ search_path = [os.path.join(os.environ['HOME'], "VWs"), config.get("directories", "SharedVMs"), config.get("directories", "AutostartVMs")] for dirname in search_path: if not os.access(dirname, os.X_OK): continue if (name in os.listdir(dirname) and os.access(os.path.join(dirname, name, "start"), os.X_OK)): return os.path.join(dirname, + name) raise ValueError("Machine %s not found." % name) def connect_vm(vm_dir): """ Connects to monitor of VM in vm_dir and returns connected socket""" sock = socket.socket(socket.AF_UNIX) monitor_path = os.path.join(vm_dir, "monitor") if not os.access(monitor_path, os.W_OK): return None try: sock.connect(monitor_path) except IOError as e: if e.errno == errno.ECONNREFUSED: # virtal machine is not running return None else: raise e r, w, x = select.select([sock], [], [], 0.001) if sock in r: greeting = sock.recv(1024) return sock def send_command(sock, command): """ Sends monitor command to given socket and returns answer """ fcntl.flock(sock, fcntl.LOCK_EX) try: sock.send(command + "\n") answer = "" while not answer.endswith("(qemu) "): chunk = sock.recv(1024) if chunk == '': raise IOError("Unexpected EOF From monitor") answer += chunk finally: fcntl.flock(sock, fcntl.LOCK_UN) return answer def spiceurl(options): """ Returns spice URI for given (as set of parsed args) VM """ output = send_command(options.sock, "info spice") url = None for line in output.split("\n"): if url is not None: continue n = line.find("address:") if n != -1: url = line[n+9:] if url.startswith('*:'): url = "localhost"+url[1:] if url is None: return None return "spice://" + url.rstrip('\r') def list_bridges(): lst = [] with os.popen(config.get('tools', 'bridge_list'), "r") as f: for line in f: n = line.find('\t') if n <= 0: continue name = line[:n] if name == "bridge name": continue lst.append(name) return lst def validate_size(size): return re.match('\\d+[KMG]', size) is not None def get_drives(vm_dir): """ Return list of drive files in the VW directory """ result = [] with open(vm_dir + "/start") as f: for line in f: if (re.match("\\s*-drive .*", line) and line.find("media=disk") > -1): m = re.search("file=([^,\\s]*)", line) if m: result.append(m.group(1)) return result def snapshot_mode(sock): """ Returns True if VM is running in snapshot mode """ answer = send_command(sock, "info block") return re.search(": /tmp", answer) is not None # # command implementation # def cmd_spiceuri(options): print spiceurl(options) def cmd_start(options): if options.stopped: arg = "" if options.cdrom: arg = " -cdrom " + options.cdrom[0] if options.snapshot: arg = arg+" -snapshot" if options.args: arg = arg + " " + "".join(options.args) print arg cwd = os.getcwd() os.chdir(options.dir) # Check for snapshot nxt = 0 snapshot_id = None with os.popen("qemu-img info \"%s\"" % (get_drives(options.dir)[0]), "r") as f: for line in f: if line == 'Snapshot list:\n': nxt = 2 elif nxt == 2 and line.startswith('ID'): nxt = 1 elif nxt == 1: nxt = 0 snapshot_id = line[:line.index(' ')] arg = arg + " -loadvm " + snapshot_id break os.system("./start%s" % arg) os.chdir(cwd) time.sleep(2) options.sock = connect_vm(options.dir) if snapshot_id: send_command(options.sock, "delvm " + snapshot_id) else: if options.snapshot or options.args: print >>sys.stderr, ("Cannot change qemu options. " + "VM is already running") if options.cdrom: options.file = options.cdrom[0] cmd_cdrom(options) if options.gui: uri = spiceurl(options) os.system((config.get('tools', 'viewer') + "&") % uri) elif not options.stopped: print >>sys.stderr, "VM already running" def cmd_stop(options): if snapshot_mode(options.sock) or options.hard: print send_command(options.sock, 'quit') else: print send_command(options.sock, 'system_powerdown') def cmd_monitor(options): try: print "(qemu) ", sys.stdout.flush() while True: r, w, x = select.select([sys.stdin, options.sock], [], []) if sys.stdin in r: cmd = sys.stdin.readline() # Check for eof if len(cmd) == 0: break answer = send_command(options.sock, cmd.rstrip()) n = answer.index('\n') print answer[n+1:], sys.stdout.flush() elif options.sock in r: print "UNSOLICITED MESSAGE %" + options.sock.readline().rstrip() except KeyboardInterrupt: print "Keyboard interrupt" sys.exit() def cmd_reset(options): print send_command(options.sock, 'system_reset') def cmd_save(options): answer = send_command(options.sock, 'savevm') if re.search("Error", answer): print >>sys.stderr, answer sys.exit(1) else: send_command(options.sock, 'quit') def cmd_cdrom(options): if options.id is None: # Search for devices which could be interpreted as CDROM devlist = send_command(options.sock, "info block") for dev in re.findall("([-\\w]+): [^\n]+\n Removable device:", devlist): if re.search("cd", dev): options.id = dev break if options.id is None: print >>sys.stderr, "No CDROM device found among:\n" + devlist sys.exit(1) if options.file == "": print >>sys.stderr, "Please specify either --eject or iso image" sys.exit(1) if options.file is None: answer = send_command(options.sock, "eject " + options.id) else: answer = send_command(options.sock, "change %s %s" % (options.id, options.file)) print answer def find_usb(options, devices): if hasattr("pattern", options): for dev in devices: if re.search(options.pattern, dev[1]): options.address = dev[0] break elif not hasattr("address", options): print >>sys.stderr, ("Address or search pattern for device " + "is not specified") sys.exit(1) else: return options.address def get_host_devices(): global config f = os.popen(config.get('tools', "lsusb"), "r") l = [] for dev in f: m = re.match('Bus (\\d+) Device (\\d+): (.*)$', dev) if m: if m.group(3).endswith("root hub"): continue l.append((m.group(1) + "." + m.group(2), m.group(3))) f.close() return l def get_vm_devices(sock): answer = send_command(sock, "info usb") l = [] for dev in answer.split("\n"): m = re.match('Device (\\d+\\.\\d+), .*?, Product (.*)$', dev) if m: l.append((m.group(1), m.group(2))) return l def cmd_usb_insert(options): address = find_usb(options, get_host_devices()) answer = send_command(options.sock, "usb_add host:%s" % address) print answer def cmd_usb_list(options): for addr, descr in get_host_devices(): print addr, ": ", descr def cmd_usb_attached(options): for t in get_vm_devices(options.sock): print "Address %s : %s" % (t[0], t[1]) def cmd_usb_remove(options): address = find_usb(options, get_vm_devices(options.sock)) answer = send_command(options.sock, "usb_del %s" % address) print answer def cmd_list(options): count = 0 search_path = [os.environ['HOME'] + "/VWs", config.get("directories", "SharedVMs"), config.get("directories", "AutostartVMs")] for dirname in search_path: if not os.access(dirname + "/.", os.X_OK): continue maxlen = 0 vms = [] for vmname in os.listdir(dirname): if os.access(dirname + "/" + vmname + "/start", os.X_OK): count += 1 f = [vmname] if maxlen < len(vmname): maxlen = len(vmname) if options.state: sock = connect_vm(dirname + "/" + vmname) if sock is None: state = "stopped" else: sock.shutdown(socket.SHUT_RDWR) sock.close() state = "running" f.append(state) vms.append(f) for f in sorted(vms): if len(f) == 2: print "%*s %s" % (-maxlen, f[0], f[1]) else: print f[0] if not count: sys.exit(1) def cmd_screenshot(options): from os.path import abspath filename = abspath(options.filename) print send_command(options.sock, "screendump " + filename) def cmd_record(options): from os.path import abspath filename = abspath(options.filename) print send_command(options.sock, "wavcapture " + filename) def cmd_stoprecord(options): answer = send_command(options.sock, "info capture") m = re.search('\\[(\\d+)\\]: ', answer) if not m: print >>sys.stderr, "No sound recording in progress" sys.exit(1) else: print send_command(options.sock, "stopcapture " + m.group(1)) def cmd_version(options): print VERSION def cmd_snapshot(options): if not options.stopped: print >>sys.stderr, "Cannot make snapshot of running VW" sys.exit(1) drives = get_drives(options.dir) os.chdir(options.dir) newnames = {} for i in drives: name, ext = os.path.splitext(i) newnames[i] = name + "." + options.snapname + ext if os.path.exists(newnames[i]): print >>sys.stderr, "Snapshot %s already exists", options.snapname return 1 for i in drives: os.rename(i, newnames[i]) os.system("qemu-img create -f qcow2 -b \"%s\" \"%s\"" % (newnames[i], i)) return 0 def cmd_snapshots(options): os.chdir(options.dir) drives = get_drives(options.dir) lst = [] info = {} with os.popen("qemu-img info --backing-chain " + drives[0], "r") as f: for line in f: if line.find(": ") != -1: var, val = line.strip().split(": ") if val != "": info[var] = val elif line[0] == '\n': lst.append(info) info = {} lst.append(info) for d in lst: print "%-30s %+8s %+8s" % (d["image"], d["virtual size"], d["disk size"]) def get_backing(drive): with os.popen('qemu-img info "%s"' % drive, "r") as f: for line in f: m = re.match("backing.file: (.*)$", line) if m: return m.group(1) return None def cmd_revert(options): " Removes latest snapshot images and creates new ones instead " if not options.stopped: print >>sys.stderr, "Cannot revert running VW to snapshot" sys.exit(1) os.chdir(options.dir) for drive in get_drives(options.dir): # Check if first has backing file backing = get_backing(drive) if not backing: print >>sys.stderr, "Drive %s has no snapshots" % drive continue # Unlink current image os.unlink(drive) # create new image with same backing file os.system('qemu-img create -f qcow2 -b "%s" "%s"' % (backing, drive)) def cmd_commit(options): # # Commits last snapshot changes into it's backing file # if options.stopped: # # Stoppend vm - last snapshot is commited into its backing file. # Backing file is made current drive image # os.chdir(options.dir) found = 0 for drive in get_drives(options.dir): backing = get_backing(drive) if backing is None: continue found = 1 os.system('qemu-img commit "%s"'%drive) os.unlink(drive) os.rename(backing, drive) if not found: print >>sys.stderr, "No snapshots exist for this VM" sys.exit(1) else: if snapshot_mode(options.sock): send_command(options.sock, "commit") else: print >>sys.stderr, "VM is not running in snapshot mode" sys.exit(1) template = """#!/bin/sh # Get machine name from current directory name NAME=$(basename $(pwd)) # if remote access is enabled, then there should be # SPICE_PASSWORD=password QEMU_AUDIO_DRV=spice export QEMU_AUDIO_DRV if [ -n "$SPICE_PASSWORD" ]; then |
︙ | ︙ | |||
443 444 445 446 447 448 449 | -device ich9-usb-uhci1,masterbus=usb.0,firstport=0,multifunction=on \\ -chardev spicevmc,name=usbredir,id=usbredirchardev1 \\ -device usb-redir,chardev=usbredirchardev1,id=usbredirdev1 \\ -daemonize -pidfile pid """ def cmd_create(parsed_args): | | | | | < | | | | | | | | | | | > | > | | > | | | | > | | | | | | | | | | > | > | | > | > | > > | | > | | | | < | < | | | | < | < < < | | | | | | | < | | | | | | | | | | | | > | | | | | | | | | | > | | | | | | | < | | | | | | | | | | > | > | | > | > | | > | | | > | | | | | | | > | | | | | | | | > | | | | | | | > | | | | > | | | | | | | > | | | > | < | | | | | > > > > > > > > > | | | | | | > < < < < < < < < < < | | | 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 | -device ich9-usb-uhci1,masterbus=usb.0,firstport=0,multifunction=on \\ -chardev spicevmc,name=usbredir,id=usbredirchardev1 \\ -device usb-redir,chardev=usbredirchardev1,id=usbredirdev1 \\ -daemonize -pidfile pid """ def cmd_create(parsed_args): BADSIZE = "Invalid size of %s specifed %s. Should have K, M or G suffix" global template if not parsed_args.image and not validate_size(parsed_args.size): print >>sys.stderr, BADSIZE % ("disk", parsed_args.size) sys.exit(1) if not validate_size(parsed_args.mem): print >>sys.stderr, BADSIZE % ("memory", parsed_args.size) sys.exit(1) drivename = "drive0.qcow2" options = {'qemubinary':'qemu-system-x86_64', "accel":"-enable-kvm", "memory":"1024M", "vga":'qxl', "drive":"-drive media=disk,index=0,if={interface},file={image}", "cdrom":"-drive media=cdrom,index=2,if=ide", "sound":"-soundhw hda", "usb":"-usb"} macaddr = ":".join(map(lambda x: "%02x" % ord(x), chr(0x52) + os.urandom(5))) if parsed_args.shared: machinedir = os.path.join(config.get("directories", "SharedVMs"), parsed_args.machine) dirmode = 0755 else: machinedir = os.path.join(os.environ["HOME"], "VWs", parsed_args.machine) dirmode = 0775 if parsed_args.net != 'user': bridges = list_bridges() if not parsed_args.net in bridges: print >>sys.stderr, ("No such bridge %s. Available ones %s" % (parsed_args.net, ", ".join(bridges))) sys.exit(1) options["net"] = ("-net nic,macaddr=%s -net bridge,br=%s" % (macaddr, parsed_args.net)) else: options["net"] = "-net nic,macaddr=%s -net user" % (macaddr,) options["qemubinary"] = 'qemu-system-'+parsed_args.arch options["vga"] = parsed_args.vga NOACCEL = "KVM acceleration disabled due to " if not parsed_args.arch in ('i386', 'x86_64'): print >>sys.stderr, NOACCEL + "target architecture" options.accel = '' elif not os.access("/dev/kvm", os.W_OK): print >>sys.stderr, NOACCEL + "unavailability on the host system" options.accel = '' if not parsed_args.usb: options["usb"] = '' if not parsed_args.sound: options["sound"] = '' else: options["sound"] = '-soundhw ' + parsed_args.sound options["memory"] = parsed_args.mem if os.path.exists(machinedir): if os.path.exists(os.path.join(machinedir, "start")): print >> sys.stderr, ("Virtual Worstation %s already exists" % parsed_args.machine) else: print >> sys.stderr, ("Cannot create VW directory, " + "something on the way") sys.exit(1) # Creating directory for VM os.makedirs(machinedir, dirmode) driveopts = {"interface":parsed_args.diskif, "image":drivename} if parsed_args.image: # Copying image file print >>sys.stderr, ("Copying %s to %s" % (parsed_args.image, os.path.join(machinedir, drivename))) os.system("qemu-img convert -O qcow2 -p %s %s" % (parsed_args.image, os.path.join(machinedir, drivename))) os.chdir(machinedir) else: print >>sys.stderr, "Creating new image file of %s" % parsed_args.size os.chdir(machinedir) os.system("qemu-img create -f qcow2 %s %s" % (drivename, parsed_args.size)) options["drive"] = options["drive"].format(**driveopts) if hasattr(parsed_args, "debug") and parsed_args.debug: print repr(driveopts), repr(options["drive"]) print repr(options) with open("start", "w") as script: script.write(template.format(**options)) os.chmod('start', dirmode) # If installation media is specified vws start for new vm if parsed_args.install: start_opts = Namespace(machine=parsed_args.machine, command='start', cdrom=[parsed_args.install], dir=machinedir, stopped=True, snapshot=False, args="", gui=True) try: cmd_start(start_opts) finally: start_opts.sock.shutdown(socket.SHUT_RDWR) # # Utility functions for arg parsing # def new_command(cmds, name, **kwargs): """ Adds a subparser and adds a machine name argument to it """ p = cmds.add_parser(name, **kwargs) p.add_argument('machine', type=str, help='name of vm to operate on') return p # # prepare defaults for config # arch = os.uname()[4] if re.match("i[3-9]86", arch): arch = "i386" elif arch.startswith("arm"): arch = "arm" config = ConfigParser({'SharedVMs':'/var/cache/vws/shared', 'AutoStartVMs':'/var/cache/vws/autostart'}) config.add_section('directories') config.add_section('create options') for option, value in [('net', 'user'), ('size', '20G'), ('mem', '1G'), ('diskif', 'virtio'), ('sound', 'hda'), ('arch', arch), ('vga', 'qxl')]: config.set('create options', option, value) config.add_section('tools') config.set('tools', 'viewer', 'remote-viewer %s') config.set('tools', 'bridge_list', '/sbin/brctl show') config.set('tools', 'lsusb', 'lsusb') # Read configration files config.read(['/etc/vws.conf', os.environ['HOME'] + '/.vwsrc']) # Parse argument args = ArgumentParser(description="Manage Virtual Workstations") cmds = args.add_subparsers(dest='command', help="sub-command help") p = cmds.add_parser("list", help="List existing VWs", description="List existing VWs") p.add_argument("--state", action='store_const', const=True, default=False, dest='state', help='Show state of the machine') p.add_argument("--addr", action='store_const', const=True, default=False, dest='addr', help='Show mac address and spice port') p.add_argument("--usb", action='store_const', const=True, default=False, dest='usb', help='Show connected USB devices') p = cmds.add_parser("version", help="show vws version") # Power management p = new_command(cmds, 'start', help='Start VW and connect to console', description="Start VW if not running and connect " + "to the console") p.add_argument('--no-gui', dest='gui', action='store_const', const=False, default=True, help='do not open console window') p.add_argument('--cdrom', metavar='filename.iso', dest='cdrom', nargs=1, help='connect specified iso image to VMs cdrom on start') p.add_argument('--args', metavar='string', dest='args', nargs=1, default="", help="Specify extra QEMU options") p.add_argument("--snapshot", action='store_const', const=True, default=False, help="Run without modifying disk image") p = new_command(cmds, 'stop', help='Shut down virtual machine', description="Terminate the VW, gracefully or ungracefully") p.add_argument('--hard', help='Power off immediately', action='store_const', dest='hard', const=True, default=False) new_command(cmds, 'save', help='Save VW state and stop emulation', description="Save VW state and stop emulation") new_command(cmds, 'reset', help='Reboot a guest OS', description="Reboot othe guuest OS") # Removable devices management p = new_command(cmds, 'cdrom', help='manage CDROM Drive', description='"insert" an ISO image into emulated CD-ROM ' + "or eject it") p.add_argument('--id', type=str, default=None, help='Identifier of CDROM drive if VM has more than one') p.add_argument('file', nargs="?", default='', help='ISO image or special file to connect to drive') p.add_argument('--eject', dest='file', action='store_const', const=None) usb = cmds.add_parser('usb', help='manage USB devices' ).add_subparsers(dest='subcommand', help='manage USB devices') p = new_command(usb, 'insert', help='attach device to the virtual machine') p.add_argument('pattern', help='Pattern of device name to look up in lsusb') p.add_argument('--address', type=str, dest='address', nargs=1, help='exact address bus:device') p = new_command(usb, 'remove', help='detach connected usb device') p.add_argument('pattern', help='Pattern of device name to look up in lsusb') p.add_argument('--address', type=str, dest='address', nargs=1, help='exact address bus:device') p = new_command(usb, 'attached', help='list devices attached to vm') usb.add_parser('list', help='list devices available in the host system') # Snapshot management p = new_command(cmds, 'snapshot', help='Create new snapshot') p.add_argument('snapname', help='snapshot name') p = new_command(cmds, 'revert', help='Revert to snapshot') p.add_argument('snapname', help='name of snapshot to revert to') p = new_command(cmds, 'commit', help='Commit snapshot changes into backing file') p = new_command(cmds, 'snapshots', help='List existing snapshots') # Screenshoits and recording p = new_command(cmds, 'screenshot', help='take a screenshot') p.add_argument('filename', help='PPM image filename to write screenshot to') p = new_command(cmds, 'record', help='Record audio output from VM') p.add_argument('filename', help='wav file to record autdio to') new_command(cmds, 'stoprecord', help='stop recording audio') # Create new VM p = new_command(cmds, 'create', help="Create new VW") p.add_argument("--no-usb", help="Disable USB controller", action='store_const', const=False, default=True, dest="usb") p.add_argument("--size", metavar='size', help="Size of primary disk images", dest="size", default=config.get('create options', 'size')) p.add_argument("--arch", metavar='cputype', help="Emulated architecture", dest="arch", default=config.get('create options', 'arch')) p.add_argument("--no-sound", help="Disable sound card", action='store_const', const=None, default=config.get('create options', 'sound'), dest="sound") p.add_argument("--sound", metavar='cardtype', help="Specify sound card type", dest='sound', default=config.get('create options', 'sound')) p.add_argument("--vga", metavar='cardtype', help="specify video card type (cirrus,std,vmware,qxl) default " + config.get('create options', 'vga',), dest="vga", default=config.get('create options', 'vga')) p.add_argument("--net", help="Network - 'user' or bridge name", dest='net', default=config.get('create options', 'net')) p.add_argument("--mem", metavar='size', help="Size of memory", dest="mem", default=config.get('create options', 'mem')) p.add_argument("--diskif", metavar='interface-type', help="Disk interface (virtio, scsi, ide)", choices=['virtio', 'scsi', 'ide'], dest="diskif", default=config.get('create options', 'diskif')) p.add_argument('--shared', help='Create shared VW instead of private one', action='store_const', const=True, dest='shared', default=False) p.add_argument('--image', metavar='filename', dest='image', default=None, help='Existing disk image to import') p.add_argument('--install', metavar='filename.iso', dest='install', help='ISO image to install OS from', default=None) # Miscellenia p = new_command(cmds, 'monitor', help='connect stdin/stdout to monitor of VM') p = new_command(cmds, 'spiceuri', help='Output spice URI of machine') parsed_args = args.parse_args(sys.argv[1:]) # Create command is totally different, so it is handled separately if parsed_args.command == 'create': cmd_create(parsed_args) sys.exit(0) funcname = "cmd_" + parsed_args.command if hasattr(parsed_args, "subcommand"): funcname += "_" + parsed_args.subcommand try: func = globals()[funcname] except KeyError: print >>sys.stderr, "Operation %s is not implemented" % funcname sys.exit(3) parsed_args.stopped = False stopped_vm_commands = ['start', 'snapshot', 'revert', 'commit', 'snapshots'] if hasattr(parsed_args, 'machine'): parsed_args.dir = find_vm(parsed_args.machine) parsed_args.sock = connect_vm(parsed_args.dir) if parsed_args.sock is None: if not parsed_args.command in stopped_vm_commands: print >>sys.stderr, ("Virtual machine %s is not running." % parsed_args.machine) sys.exit(1) else: parsed_args.stopped = True try: func(parsed_args) finally: if hasattr(parsed_args, 'sock') and parsed_args.sock is not None: parsed_args.sock.shutdown(socket.SHUT_RDWR) parsed_args.sock.close() |