6fe13366fea535fbdd651c6a2797ed4ada0c14e1
[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 FatalError
35
36 import textwrap
37 import re
38
39
40 def os_cls(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, output):
74         self.root = rootdev
75         self.g = ghandler
76         self.out = output
77
78         # Collect metadata about the OS
79         self.meta = {}
80         self.meta['ROOT_PARTITION'] = "%d" % self.g.part_to_partnum(self.root)
81         self.meta['OSFAMILY'] = self.g.inspect_get_type(self.root)
82         self.meta['OS'] = self.g.inspect_get_distro(self.root)
83         self.meta['DESCRIPTION'] = self.g.inspect_get_product_name(self.root)
84
85     def _is_sysprep(self, obj):
86         return getattr(obj, 'sysprep', False) and callable(obj)
87
88     def list_syspreps(self):
89
90         objs = [getattr(self, name) for name in dir(self) \
91             if not name.startswith('_')]
92
93         enabled = [x for x in objs if self._is_sysprep(x) and x.enabled]
94         disabled = [x for x in objs if self._is_sysprep(x) and not x.enabled]
95
96         return enabled, disabled
97
98     def _sysprep_change_status(self, name, status):
99
100         error_msg = "Syprep operation %s does not exist for %s" % \
101                 (name, self.__class__.__name__)
102
103         method_name = name.replace('-', '_')
104         method = None
105         try:
106             method = getattr(self, method_name)
107         except AttributeError:
108             raise FatalError(error_msg)
109
110         if not self._is_sysprep(method):
111             raise FatalError(error_msg)
112
113         setattr(method.im_func, 'enabled', status)
114
115     def enable_sysprep(self, name):
116         """Enable a system preperation operation"""
117         self._sysprep_change_status(name, True)
118
119     def disable_sysprep(self, name):
120         """Disable a system preperation operation"""
121         self._sysprep_change_status(name, False)
122
123     def print_syspreps(self):
124         """Print enabled and disabled system preperation operations."""
125
126         enabled, disabled = self.list_syspreps()
127
128         wrapper = textwrap.TextWrapper()
129         wrapper.subsequent_indent = '\t'
130         wrapper.initial_indent = '\t'
131         wrapper.width = 72
132
133         self.out.output("Enabled system preperation operations:")
134         if len(enabled) == 0:
135             self.out.output("(none)")
136         else:
137             for sysprep in enabled:
138                 name = sysprep.__name__.replace('_', '-')
139                 descr = wrapper.fill(textwrap.dedent(sysprep.__doc__))
140                 self.out.output('    %s:\n%s\n' % (name, descr))
141
142         self.out.output("Disabled system preperation operations:")
143         if len(disabled) == 0:
144             self.out.output("(none)")
145         else:
146             for sysprep in disabled:
147                 name = sysprep.__name__.replace('_', '-')
148                 descr = wrapper.fill(textwrap.dedent(sysprep.__doc__))
149                 self.out.output('    %s:\n%s\n' % (name, descr))
150
151     @add_prefix
152     def ls(self, directory):
153         """List the name of all files under a directory"""
154         return self.g.ls(directory)
155
156     @add_prefix
157     def find(self, directory):
158         """List the name of all files recursively under a directory"""
159         return self.g.find(directory)
160
161     def foreach_file(self, directory, action, **kargs):
162         """Perform an action recursively on all files under a directory.
163
164         The following options are allowed:
165
166         * maxdepth: If defined the action will not be performed on
167           files that are below this level of directories under the
168           directory parameter.
169
170         * ftype: The action will only be performed on files of this
171           type. For a list of all allowed filetypes, see here:
172           http://libguestfs.org/guestfs.3.html#guestfs_readdir
173
174         * exclude: Exclude all files that follow this pattern.
175         """
176         maxdepth = None if 'maxdepth' not in kargs else kargs['maxdepth']
177         if maxdepth == 0:
178             return
179
180         # maxdepth -= 1
181         maxdepth = None if maxdepth is None else maxdepth - 1
182         kargs['maxdepth'] = maxdepth
183
184         exclude = None if 'exclude' not in kargs else kargs['exclude']
185         ftype = None if 'ftype' not in kargs else kargs['ftype']
186         has_ftype = lambda x, y: y is None and True or x['ftyp'] == y
187
188         for f in self.g.readdir(directory):
189             if f['name'] in ('.', '..'):
190                 continue
191
192             full_path = "%s/%s" % (directory, f['name'])
193
194             if exclude and re.match(exclude, full_path):
195                 continue
196
197             if has_ftype(f, 'd'):
198                 self.foreach_file(full_path, action, **kargs)
199
200             if has_ftype(f, ftype):
201                 action(full_path)
202
203     def do_sysprep(self):
204         """Prepere system for image creation."""
205
206         self.out.output('Preparing system for image creation:')
207
208         tasks, _ = self.list_syspreps()
209         size = len(tasks)
210         cnt = 0
211         for task in tasks:
212             cnt += 1
213             self.out.output(('(%d/%d)' % (cnt, size)).ljust(7), False)
214             task()
215         self.out.output()
216
217 # vim: set sta sts=4 shiftwidth=4 sw=4 et ai :