Remove the installation restriction about Ubuntu
[snf-image-creator] / image_creator / dialog_main.py
1 #!/usr/bin/env python
2
3 # Copyright 2012 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 import dialog
37 import sys
38 import os
39 import textwrap
40 import signal
41 import optparse
42
43 from image_creator import __version__ as version
44 from image_creator.util import FatalError
45 from image_creator.output import Output
46 from image_creator.output.cli import SimpleOutput
47 from image_creator.output.dialog import GaugeOutput
48 from image_creator.output.composite import CompositeOutput
49 from image_creator.disk import Disk
50 from image_creator.os_type import os_cls
51 from image_creator.dialog_wizard import wizard
52 from image_creator.dialog_menu import main_menu
53 from image_creator.dialog_util import SMALL_WIDTH, WIDTH, confirm_exit, \
54     Reset, update_background_title
55
56
57 def image_creator(d, media, out):
58
59     d.setBackgroundTitle('snf-image-creator')
60
61     gauge = GaugeOutput(d, "Initialization", "Initializing...")
62     out.add(gauge)
63     disk = Disk(media, out)
64
65     def signal_handler(signum, frame):
66         gauge.cleanup()
67         disk.cleanup()
68
69     signal.signal(signal.SIGINT, signal_handler)
70     signal.signal(signal.SIGTERM, signal_handler)
71     try:
72         snapshot = disk.snapshot()
73         dev = disk.get_device(snapshot)
74
75         metadata = {}
76         for (key, value) in dev.meta.items():
77             metadata[str(key)] = str(value)
78
79         dev.mount(readonly=True)
80         out.output("Collecting image metadata...")
81         cls = os_cls(dev.distro, dev.ostype)
82         image_os = cls(dev.root, dev.g, out)
83         dev.umount()
84
85         for (key, value) in image_os.meta.items():
86             metadata[str(key)] = str(value)
87
88         out.success("done")
89         gauge.cleanup()
90         out.remove(gauge)
91
92         # Make sure the signal handler does not call gauge.cleanup again
93         def dummy(self):
94             pass
95         gauge.cleanup = type(GaugeOutput.cleanup)(dummy, gauge, GaugeOutput)
96
97         session = {"dialog": d,
98                    "disk": disk,
99                    "snapshot": snapshot,
100                    "device": dev,
101                    "image_os": image_os,
102                    "metadata": metadata}
103
104         msg = "snf-image-creator detected a %s system on the input media. " \
105               "Would you like to run a wizard to assist you through the " \
106               "image creation process?\n\nChoose <Wizard> to run the wizard," \
107               " <Expert> to run the snf-image-creator in expert mode or " \
108               "press ESC to quit the program." \
109               % (dev.ostype if dev.ostype == dev.distro else "%s (%s)" %
110                  (dev.ostype, dev.distro))
111
112         update_background_title(session)
113
114         while True:
115             code = d.yesno(msg, width=WIDTH, height=12, yes_label="Wizard",
116                            no_label="Expert")
117             if code == d.DIALOG_OK:
118                 if wizard(session):
119                     break
120             elif code == d.DIALOG_CANCEL:
121                 main_menu(session)
122                 break
123
124             if confirm_exit(d):
125                 break
126
127         d.infobox("Thank you for using snf-image-creator. Bye", width=53)
128     finally:
129         disk.cleanup()
130
131     return 0
132
133
134 def select_file(d, media):
135     root = os.sep
136     while 1:
137         if media is not None:
138             if not os.path.exists(media):
139                 d.msgbox("The file `%s' you choose does not exist." % media,
140                          width=SMALL_WIDTH)
141             else:
142                 break
143
144         (code, media) = d.fselect(root, 10, 50,
145                                   title="Please select input media")
146         if code in (d.DIALOG_CANCEL, d.DIALOG_ESC):
147             if confirm_exit(d, "You canceled the media selection dialog box."):
148                 sys.exit(0)
149             else:
150                 media = None
151                 continue
152
153     return media
154
155
156 def main():
157
158     d = dialog.Dialog(dialog="dialog")
159
160     # Add extra button in dialog library
161     dialog._common_args_syntax["extra_button"] = \
162         lambda enable: dialog._simple_option("--extra-button", enable)
163
164     dialog._common_args_syntax["extra_label"] = \
165         lambda string: ("--extra-label", string)
166
167     # Allow yes-no label overwriting
168     dialog._common_args_syntax["yes_label"] = \
169         lambda string: ("--yes-label", string)
170
171     dialog._common_args_syntax["no_label"] = \
172         lambda string: ("--no-label", string)
173
174     usage = "Usage: %prog [options] [<input_media>]"
175     parser = optparse.OptionParser(version=version, usage=usage)
176     parser.add_option("-l", "--logfile", type="string", dest="logfile",
177                       default=None, help="log all messages to FILE",
178                       metavar="FILE")
179
180     options, args = parser.parse_args(sys.argv[1:])
181
182     if len(args) > 1:
183         parser.error("Wrong number of arguments")
184
185     d.setBackgroundTitle('snf-image-creator')
186
187     try:
188         if os.geteuid() != 0:
189             raise FatalError("You must run %s as root" %
190                              parser.get_prog_name())
191
192         media = select_file(d, args[0] if len(args) == 1 else None)
193
194         logfile = None
195         if options.logfile is not None:
196             try:
197                 logfile = open(options.logfile, 'w')
198             except IOError as e:
199                 raise FatalError(
200                     "Unable to open logfile `%s' for writing. Reason: %s" %
201                     (options.logfile, e.strerror))
202         try:
203             log = SimpleOutput(False, logfile) if logfile is not None \
204                 else Output()
205             while 1:
206                 try:
207                     out = CompositeOutput([log])
208                     out.output("Starting %s v%s..." %
209                                (parser.get_prog_name(), version))
210                     ret = image_creator(d, media, out)
211                     sys.exit(ret)
212                 except Reset:
213                     log.output("Resetting everything...")
214                     continue
215         finally:
216             if logfile is not None:
217                 logfile.close()
218     except FatalError as e:
219         msg = textwrap.fill(str(e), width=WIDTH)
220         d.infobox(msg, width=WIDTH, title="Fatal Error")
221         sys.exit(1)
222
223 # vim: set sta sts=4 shiftwidth=4 sw=4 et ai :