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