Copy OSFAMILY to OS property if distro is unknown
[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     """Given the distro name and the osfamily, return the appropriate class"""
42     module = None
43     classname = None
44     try:
45         module = __import__("image_creator.os_type.%s" % distro,
46                             fromlist=['image_creator.os_type'])
47         classname = distro.capitalize()
48     except ImportError:
49         module = __import__("image_creator.os_type.%s" % osfamily,
50                             fromlist=['image_creator.os_type'])
51         classname = osfamily.capitalize()
52
53     return getattr(module, classname)
54
55
56 def add_prefix(target):
57     def wrapper(self, *args):
58         prefix = args[0]
59         return map(lambda x: prefix + x, target(self, *args))
60     return wrapper
61
62
63 def sysprep(enabled=True):
64     """Decorator for system preparation tasks"""
65     def wrapper(func):
66         func.sysprep = True
67         func.enabled = enabled
68         return func
69     return wrapper
70
71
72 class OSBase(object):
73     """Basic operating system class"""
74
75     def __init__(self, rootdev, ghandler, output):
76         self.root = rootdev
77         self.g = ghandler
78         self.out = output
79
80         # Collect metadata about the OS
81         self.meta = {}
82         self.meta['ROOT_PARTITION'] = "%d" % self.g.part_to_partnum(self.root)
83         self.meta['OSFAMILY'] = self.g.inspect_get_type(self.root)
84         self.meta['OS'] = self.g.inspect_get_distro(self.root)
85         if self.meta['OS'] == "unknown":
86             self.meta['OS'] = self.meta['OSFAMILY']
87         self.meta['DESCRIPTION'] = self.g.inspect_get_product_name(self.root)
88
89     def _is_sysprep(self, obj):
90         return getattr(obj, 'sysprep', False) and callable(obj)
91
92     def list_syspreps(self):
93
94         objs = [getattr(self, name) for name in dir(self)
95                 if not name.startswith('_')]
96
97         return [x for x in objs if self._is_sysprep(x)]
98
99     def sysprep_info(self, obj):
100         assert self._is_sysprep(obj), "Object is not a sysprep"
101
102         return (obj.__name__.replace('_', '-'), textwrap.dedent(obj.__doc__))
103
104     def get_sysprep_by_name(self, name):
105         """Returns the sysprep object with the given name"""
106         error_msg = "Syprep operation %s does not exist for %s" % \
107                     (name, self.__class__.__name__)
108
109         method_name = name.replace('-', '_')
110         method = None
111         try:
112             method = getattr(self, method_name)
113         except AttributeError:
114             raise FatalError(error_msg)
115
116         if not self._is_sysprep(method):
117             raise FatalError(error_msg)
118
119         return method
120
121     def enable_sysprep(self, obj):
122         """Enable a system preparation operation"""
123         setattr(obj.im_func, 'enabled', True)
124
125     def disable_sysprep(self, obj):
126         """Disable a system preparation operation"""
127         setattr(obj.im_func, 'enabled', False)
128
129     def print_syspreps(self):
130         """Print enabled and disabled system preparation operations."""
131
132         syspreps = self.list_syspreps()
133         enabled = filter(lambda x: x.enabled, syspreps)
134         disabled = filter(lambda x: not x.enabled, syspreps)
135
136         wrapper = textwrap.TextWrapper()
137         wrapper.subsequent_indent = '\t'
138         wrapper.initial_indent = '\t'
139         wrapper.width = 72
140
141         self.out.output("Enabled system preparation operations:")
142         if len(enabled) == 0:
143             self.out.output("(none)")
144         else:
145             for sysprep in enabled:
146                 name = sysprep.__name__.replace('_', '-')
147                 descr = wrapper.fill(textwrap.dedent(sysprep.__doc__))
148                 self.out.output('    %s:\n%s\n' % (name, descr))
149
150         self.out.output("Disabled system preparation operations:")
151         if len(disabled) == 0:
152             self.out.output("(none)")
153         else:
154             for sysprep in disabled:
155                 name = sysprep.__name__.replace('_', '-')
156                 descr = wrapper.fill(textwrap.dedent(sysprep.__doc__))
157                 self.out.output('    %s:\n%s\n' % (name, descr))
158
159     @add_prefix
160     def ls(self, directory):
161         """List the name of all files under a directory"""
162         return self.g.ls(directory)
163
164     @add_prefix
165     def find(self, directory):
166         """List the name of all files recursively under a directory"""
167         return self.g.find(directory)
168
169     def foreach_file(self, directory, action, **kargs):
170         """Perform an action recursively on all files under a directory.
171
172         The following options are allowed:
173
174         * maxdepth: If defined the action will not be performed on
175           files that are below this level of directories under the
176           directory parameter.
177
178         * ftype: The action will only be performed on files of this
179           type. For a list of all allowed filetypes, see here:
180           http://libguestfs.org/guestfs.3.html#guestfs_readdir
181
182         * exclude: Exclude all files that follow this pattern.
183         """
184         maxdepth = None if 'maxdepth' not in kargs else kargs['maxdepth']
185         if maxdepth == 0:
186             return
187
188         # maxdepth -= 1
189         maxdepth = None if maxdepth is None else maxdepth - 1
190         kargs['maxdepth'] = maxdepth
191
192         exclude = None if 'exclude' not in kargs else kargs['exclude']
193         ftype = None if 'ftype' not in kargs else kargs['ftype']
194         has_ftype = lambda x, y: y is None and True or x['ftyp'] == y
195
196         for f in self.g.readdir(directory):
197             if f['name'] in ('.', '..'):
198                 continue
199
200             full_path = "%s/%s" % (directory, f['name'])
201
202             if exclude and re.match(exclude, full_path):
203                 continue
204
205             if has_ftype(f, 'd'):
206                 self.foreach_file(full_path, action, **kargs)
207
208             if has_ftype(f, ftype):
209                 action(full_path)
210
211     def do_sysprep(self):
212         """Prepere system for image creation."""
213
214         self.out.output('Preparing system for image creation:')
215
216         tasks = self.list_syspreps()
217         enabled = filter(lambda x: x.enabled, tasks)
218
219         size = len(enabled)
220         cnt = 0
221         for task in enabled:
222             cnt += 1
223             self.out.output(('(%d/%d)' % (cnt, size)).ljust(7), False)
224             task()
225         self.out.output()
226
227 # vim: set sta sts=4 shiftwidth=4 sw=4 et ai :