forked from autotest/virt-test
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvirt_disk.py
executable file
·97 lines (77 loc) · 3.19 KB
/
virt_disk.py
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
#!/usr/bin/env python
'''
This is a tool for that makes it easy to create virtual disks, optionally
with content ready for unattended installations.
The main use case for this tool is debugging guest installations with an
disks just like they're created by the virt unattended test installation.
'''
import sys
import optparse
import common
from virttest import utils_disk
class OptionParser(optparse.OptionParser):
'''
App option parser
'''
def __init__(self):
optparse.OptionParser.__init__(self,
usage=('Usage: %prog [options] '
'<image_file_name> '
'[file 1][file 2]..[file N]'))
media = optparse.OptionGroup(self, 'MEDIA SELECTION')
media.set_description('Choose only one of the media formats supported')
media.add_option('-c', '--cdrom', dest='cdrom', default=False,
action='store_true',
help=('create a basic cdrom image'))
media.add_option('-f', '--floppy', dest='floppy', default=False,
action='store_true',
help=('create a basic floppy image'))
media.add_option('--floppy-size', dest='vfd_size',
action='store_true', default="1440k",
help=('Floppy size (1440k or 2880k). '
'defaults to %default'))
self.add_option_group(media)
path = optparse.OptionGroup(self, 'PATH SELECTION')
path.add_option('-q', '--qemu-img', dest='qemu_img',
default='/usr/bin/qemu-img',
help=('qemu-img binary path. defaults to '
'%default'))
path.add_option('-t', '--temp', dest='temp', default='/tmp',
help='Path to hold temporary files. defaults to %default')
self.add_option_group(path)
class App:
'''
Virt Disk Creation App
'''
def __init__(self):
self.opt_parser = OptionParser()
def usage(self):
self.opt_parser.print_help()
sys.exit(1)
def parse_cmdline(self):
self.options, self.args = self.opt_parser.parse_args()
if not (self.options.cdrom or self.options.floppy):
self.usage()
if (self.options.cdrom and self.options.floppy):
self.usage()
if not len(self.args) >= 1:
self.usage()
else:
self.image = self.args[0]
self.files = self.args[1:]
def main(self):
self.parse_cmdline()
if self.options.floppy:
self.disk = utils_disk.FloppyDisk(self.image,
self.options.qemu_img,
self.options.temp,
self.options.vfd_size)
elif self.options.cdrom:
self.disk = utils_disk.CdromDisk(self.image,
self.options.temp)
for f in self.files:
self.disk.copy_to(f)
self.disk.close()
if __name__ == '__main__':
app = App()
app.main()