8a398462a03350a2be6fc696656435bca3472831
[snf-image-creator] / image_creator / os_type / __init__.py
1 # Copyright 2012 GRNET S.A. All rights reserved.
2 #
3 # Redistribution and use in source and binary forms, with or
4 # without modification, are permitted provided that the following
5 # conditions are met:
6 #
7 #   1. Redistributions of source code must retain the above
8 #      copyright notice, this list of conditions and the following
9 #      disclaimer.
10 #
11 #   2. Redistributions in binary form must reproduce the above
12 #      copyright notice, this list of conditions and the following
13 #      disclaimer in the documentation and/or other materials
14 #      provided with the distribution.
15 #
16 # THIS SOFTWARE IS PROVIDED BY GRNET S.A. ``AS IS'' AND ANY EXPRESS
17 # OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
18 # WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
19 # PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GRNET S.A OR
20 # CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21 # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22 # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
23 # USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
24 # AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
26 # ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
27 # POSSIBILITY OF SUCH DAMAGE.
28 #
29 # The views and conclusions contained in the software and
30 # documentation are those of the authors and should not be
31 # interpreted as representing official policies, either expressed
32 # or implied, of GRNET S.A.
33
34 from image_creator.util import output, FatalError
35
36 import textwrap
37 import re
38
39
40 def get_os_class(distro, osfamily):
41     module = None
42     classname = None
43     try:
44         module = __import__("image_creator.os_type.%s"
45             % distro, fromlist=['image_creator.os_type'])
46         classname = distro.capitalize()
47     except ImportError:
48         module = __import__("image_creator.os_type.%s"
49             % osfamily, fromlist=['image_creator.os_type'])
50         classname = osfamily.capitalize()
51
52     return getattr(module, classname)
53
54
55 def add_prefix(target):
56     def wrapper(self, *args):
57         prefix = args[0]
58         return map(lambda x: prefix + x, target(self, *args))
59     return wrapper
60
61
62 def sysprep(enabled=True):
63     def wrapper(func):
64         func.sysprep = True
65         func.enabled = enabled
66         return func
67     return wrapper
68
69
70 class OSBase(object):
71     """Basic operating system class"""
72
73     def __init__(self, rootdev, ghandler):
74         self.root = rootdev
75         self.g = ghandler
76
77         # Collect metadata about the OS
78         self.meta = {}
79         self.meta['ROOT_PARTITION'] = "%d" % self.g.part_to_partnum(self.root)
80         self.meta['OSFAMILY'] = self.g.inspect_get_type(self.root)
81         self.meta['OS'] = self.g.inspect_get_distro(self.root)
82         self.meta['DESCRIPTION'] = self.g.inspect_get_product_name(self.root)
83
84     def _is_sysprep(self, obj):
85         return getattr(obj, 'sysprep', False) and callable(obj)
86
87     def list_syspreps(self):
88
89         objs = [getattr(self, name) for name in dir(self) \
90             if not name.startswith('_')]
91
92         enabled = [x for x in objs if self._is_sysprep(x) and x.enabled]
93         disabled = [x for x in objs if self._is_sysprep(x) and not x.enabled]
94
95         return enabled, disabled
96
97     def _sysprep_change_status(self, name, status):
98
99         error_msg = "Syprep operation %s does not exist for %s" % \
100                 (name, self.__class__.__name__)
101
102         method_name = name.replace('-', '_')
103         method = None
104         try:
105             method = getattr(self, method_name)
106         except AttributeError:
107             raise FatalError(error_msg)
108
109         if not self._is_sysprep(method):
110             raise FatalError(error_msg)
111
112         setattr(method.im_func, 'enabled', status)
113
114     def enable_sysprep(self, name):
115         """Enable a system preperation operation"""
116         self._sysprep_change_status(name, True)
117
118     def disable_sysprep(self, name):
119         """Disable a system preperation operation"""
120         self._sysprep_change_status(name, False)
121
122     def print_syspreps(self):
123         """Print enabled and disabled system preperation operations."""
124
125         enabled, disabled = self.list_syspreps()
126
127         wrapper = textwrap.TextWrapper()
128         wrapper.subsequent_indent = '\t'
129         wrapper.initial_indent = '\t'
130         wrapper.width = 72
131
132         output("Enabled system preperation operations:")
133         if len(enabled) == 0:
134             output("(none)")
135         else:
136             for sysprep in enabled:
137                 name = sysprep.__name__.replace('_', '-')
138                 descr = wrapper.fill(textwrap.dedent(sysprep.__doc__))
139                 output('    %s:\n%s\n' % (name, descr))
140
141         output("Disabled system preperation operations:")
142         if len(disabled) == 0:
143             output("(none)")
144         else:
145             for sysprep in disabled:
146                 name = sysprep.__name__.replace('_', '-')
147                 descr = wrapper.fill(textwrap.dedent(sysprep.__doc__))
148                 output('    %s:\n%s\n' % (name, descr))
149
150     @add_prefix
151     def ls(self, directory):
152         """List the name of all files under a directory"""
153         return self.g.ls(directory)
154
155     @add_prefix
156     def find(self, directory):
157         """List the name of all files recursively under a directory"""
158         return self.g.find(directory)
159
160     def foreach_file(self, directory, action, **kargs):
161         """Perform an action recursively on all files under a directory.
162
163         The following options are allowed:
164
165         * maxdepth: If defined the action will not be performed on
166           files that are below this level of directories under the
167           directory parameter.
168
169         * ftype: The action will only be performed on files of this
170           type. For a list of all allowed filetypes, see here:
171           http://libguestfs.org/guestfs.3.html#guestfs_readdir
172
173         * exclude: Exclude all files that follow this pattern.
174         """
175         maxdepth = None if 'maxdepth' not in kargs else kargs['maxdepth']
176         if maxdepth == 0:
177             return
178
179         # maxdepth -= 1
180         maxdepth = None if maxdepth is None else maxdepth - 1
181         kargs['maxdepth'] = maxdepth
182
183         exclude = None if 'exclude' not in kargs else kargs['exclude']
184         ftype = None if 'ftype' not in kargs else kargs['ftype']
185         has_ftype = lambda x, y: y is None and True or x['ftyp'] == y
186
187         for f in self.g.readdir(directory):
188             if f['name'] in ('.', '..'):
189                 continue
190
191             full_path = "%s/%s" % (directory, f['name'])
192
193             if exclude and re.match(exclude, full_path):
194                 continue
195
196             if has_ftype(f, 'd'):
197                 self.foreach_file(full_path, action, **kargs)
198
199             if has_ftype(f, ftype):
200                 action(full_path)
201
202     def do_sysprep(self):
203         """Prepere system for image creation."""
204
205         output('Preparing system for image creation:')
206
207         tasks, _ = self.list_syspreps()
208         size = len(tasks)
209         cnt = 0
210         for task in tasks:
211             cnt += 1
212             output(('(%d/%d)' % (cnt, size)).ljust(7), False)
213             task()
214         output()
215
216 # vim: set sta sts=4 shiftwidth=4 sw=4 et ai :