Fix pep8 error
[snf-image-creator] / image_creator / main.py
1 #!/usr/bin/env python
2
3 # Copyright 2011 GRNET S.A. All rights reserved.
4 #
5 # Redistribution and use in source and binary forms, with or
6 # without modification, are permitted provided that the following
7 # conditions are met:
8 #
9 #   1. Redistributions of source code must retain the above
10 #      copyright notice, this list of conditions and the following
11 #      disclaimer.
12 #
13 #   2. Redistributions in binary form must reproduce the above
14 #      copyright notice, this list of conditions and the following
15 #      disclaimer in the documentation and/or other materials
16 #      provided with the distribution.
17 #
18 # THIS SOFTWARE IS PROVIDED BY GRNET S.A. ``AS IS'' AND ANY EXPRESS
19 # OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
20 # WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
21 # PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GRNET S.A OR
22 # CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23 # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24 # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
25 # USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
26 # AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
28 # ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 # POSSIBILITY OF SUCH DAMAGE.
30 #
31 # The views and conclusions contained in the software and
32 # documentation are those of the authors and should not be
33 # interpreted as representing official policies, either expressed
34 # or implied, of GRNET S.A.
35
36 from image_creator import get_os_class
37 from image_creator import __version__ as version
38 from image_creator import FatalError
39 from image_creator.disk import Disk
40 from image_creator.util import get_command, error, success, output
41 from image_creator import util
42 import sys
43 import os
44 import optparse
45
46 dd = get_command('dd')
47
48
49 def check_writable_dir(option, opt_str, value, parser):
50     dirname = os.path.dirname(value)
51     name = os.path.basename(value)
52     if dirname and not os.path.isdir(dirname):
53         parser.error("`%s' is not an existing directory" % dirname)
54
55     if not name:
56         parser.error("`%s' is not a valid file name" % dirname)
57
58     setattr(parser.values, option.dest, value)
59
60
61 def parse_options(input_args):
62     usage = "Usage: %prog [options] <input_media>"
63     parser = optparse.OptionParser(version=version, usage=usage)
64
65     parser.add_option("-f", "--force", dest="force", default=False,
66         action="store_true", help="overwrite output files if they exist")
67
68     parser.add_option("--no-cleanup", dest="cleanup", default=True,
69         help="don't cleanup sensitive data", action="store_false")
70
71     parser.add_option("--no-sysprep", dest="sysprep", default=True,
72         help="don't perform system preperation", action="store_false")
73
74     parser.add_option("--no-shrink", dest="shrink", default=True,
75         help="don't shrink any partition", action="store_false")
76
77     parser.add_option("-o", "--outfile", type="string", dest="outfile",
78         default=None, action="callback", callback=check_writable_dir,
79         help="dump image to FILE", metavar="FILE")
80
81     parser.add_option("-s", "--silent", dest="silent", default=False,
82         help="silent mode, only output error", action="store_true")
83
84     parser.add_option("-u", "--upload", dest="upload", default=False,
85         help="upload the image to pithos", action="store_true")
86
87     parser.add_option("-r", "--register", dest="register", default=False,
88         help="register the image to ~okeanos", action="store_true")
89
90     options, args = parser.parse_args(input_args)
91
92     if len(args) != 1:
93         parser.error('Wrong number of arguments')
94     options.source = args[0]
95     if not os.path.exists(options.source):
96         parser.error('input media is not accessible')
97
98     if options.register:
99         options.upload = True
100
101     if options.outfile is None and not options.upload:
102         parser.error('either outfile (-o) or upload (-u) must be set.')
103
104     return options
105
106
107 def image_creator():
108     options = parse_options(sys.argv[1:])
109
110     if options.silent:
111         util.silent = True
112
113     output('snf-image-creator %s\n' % version)
114
115     if os.geteuid() != 0:
116         raise FatalError("You must run %s as root" \
117                         % os.path.basename(sys.argv[0]))
118
119     if not options.force and options.outfile is not None:
120         for extension in ('', '.meta'):
121             filename = "%s%s" % (options.outfile, extension)
122             if os.path.exists(filename):
123                 raise FatalError("Output file %s exists "
124                     "(use --force to overwrite it)." % filename)
125
126     disk = Disk(options.source)
127     try:
128         dev = disk.get_device()
129         dev.mount()
130
131         osclass = get_os_class(dev.distro, dev.ostype)
132         image_os = osclass(dev.root, dev.g)
133         metadata = image_os.get_metadata()
134
135         output()
136
137         if options.sysprep:
138             image_os.sysprep()
139
140         if options.cleanup:
141             image_os.data_cleanup()
142
143         dev.umount()
144
145         size = options.shrink and dev.shrink() or dev.size()
146         metadata['SIZE'] = str(size // 2 ** 20)
147
148         if options.outfile is not None:
149             f = open('%s.%s' % (options.outfile, 'meta'), 'w')
150             try:
151                 for key in metadata.keys():
152                     f.write("%s=%s\n" % (key, metadata[key]))
153             finally:
154                 f.close()
155
156             dev.dump(options.outfile)
157     finally:
158         output('cleaning up...')
159         disk.cleanup()
160
161     return 0
162
163
164 def main():
165     try:
166         ret = image_creator()
167         sys.exit(ret)
168     except FatalError as e:
169         error(e)
170         sys.exit(1)
171
172
173 if __name__ == '__main__':
174     main()
175
176 # vim: set sta sts=4 shiftwidth=4 sw=4 et ai :