Fix missing imports introduced in 023e1217b32385ba
[snf-image-creator] / image_creator / dialog_util.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 os
37 from image_creator.output.dialog import GaugeOutput
38 from image_creator.util import MD5
39
40 SMALL_WIDTH = 60
41 WIDTH = 70
42
43
44 def update_background_title(session):
45     d = session['dialog']
46     dev = session['device']
47
48     MB = 2 ** 20
49
50     size = (dev.size + MB - 1) // MB
51     shrinked = 'shrinked' in session and session['shrinked']
52     postfix = " (shrinked)" if shrinked else ''
53
54     title = "OS: %s, Distro: %s, Size: %dMB%s" % \
55             (dev.ostype, dev.distro, size, postfix)
56
57     d.setBackgroundTitle(title)
58
59
60 def confirm_exit(d, msg=''):
61     return not d.yesno("%s Do you want to exit?" % msg, width=SMALL_WIDTH)
62
63
64 def confirm_reset(d):
65     return not d.yesno("Are you sure you want to reset everything?",
66                        width=SMALL_WIDTH, defaultno=1)
67
68
69 class Reset(Exception):
70     pass
71
72
73 def extract_metadata_string(session):
74     metadata = ['%s=%s' % (k, v) for (k, v) in session['metadata'].items()]
75
76     if 'task_metadata' in session:
77         metadata.extend("%s=yes" % m for m in session['task_metadata'])
78
79     return '\n'.join(metadata) + '\n'
80
81
82 def extract_image(session):
83     d = session['dialog']
84     dir = os.getcwd()
85     while 1:
86         if dir and dir[-1] != os.sep:
87             dir = dir + os.sep
88
89         (code, path) = d.fselect(dir, 10, 50, title="Save image as...")
90         if code in (d.DIALOG_CANCEL, d.DIALOG_ESC):
91             return False
92
93         if os.path.isdir(path):
94             dir = path
95             continue
96
97         if os.path.isdir("%s.meta" % path):
98             d.msgbox("Can't overwrite directory `%s.meta'" % path,
99                      width=SMALL_WIDTH)
100             continue
101
102         if os.path.isdir("%s.md5sum" % path):
103             d.msgbox("Can't overwrite directory `%s.md5sum'" % path,
104                      width=SMALL_WIDTH)
105             continue
106
107         basedir = os.path.dirname(path)
108         name = os.path.basename(path)
109         if not os.path.exists(basedir):
110             d.msgbox("Directory `%s' does not exist" % basedir,
111                      width=SMALL_WIDTH)
112             continue
113
114         dir = basedir
115         if len(name) == 0:
116             continue
117
118         files = ["%s%s" % (path, ext) for ext in ('', '.meta', '.md5sum')]
119         overwrite = filter(os.path.exists, files)
120
121         if len(overwrite) > 0:
122             if d.yesno("The following file(s) exist:\n"
123                        "%s\nDo you want to overwrite them?" %
124                        "\n".join(overwrite), width=SMALL_WIDTH):
125                 continue
126
127         gauge = GaugeOutput(d, "Image Extraction", "Extracting image...")
128         try:
129             dev = session['device']
130             out = dev.out
131             out.add(gauge)
132             try:
133                 if "checksum" not in session:
134                     size = dev.size
135                     md5 = MD5(out)
136                     session['checksum'] = md5.compute(session['snapshot'],
137                                                       size)
138
139                 # Extract image file
140                 dev.dump(path)
141
142                 # Extract metadata file
143                 out.output("Extracting metadata file...")
144                 with open('%s.meta' % path, 'w') as f:
145                     f.write(extract_metadata_string(session))
146                 out.success('done')
147
148                 # Extract md5sum file
149                 out.output("Extracting md5sum file...")
150                 md5str = "%s %s\n" % (session['checksum'], name)
151                 with open('%s.md5sum' % path, 'w') as f:
152                     f.write(md5str)
153                 out.success("done")
154             finally:
155                 out.remove(gauge)
156         finally:
157             gauge.cleanup()
158         d.msgbox("Image file `%s' was successfully extracted!" % path,
159                  width=SMALL_WIDTH)
160         break
161
162     return True
163
164 # vim: set sta sts=4 shiftwidth=4 sw=4 et ai :