1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
|
# cerbero - a multi-platform build system for Open Source software
# Copyright (C) 2012 Andoni Morales Alastruey <ylatuya@gmail.com>
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Library General Public
# License as published by the Free Software Foundation; either
# version 2 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Library General Public License for more details.
#
# You should have received a copy of the GNU Library General Public
# License along with this library; if not, write to the
# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
# Boston, MA 02111-1307, USA.
import tempfile
import shutil
import traceback
from cerbero.errors import BuildStepError, FatalError, AbortedError
from cerbero.build.recipe import Recipe, BuildSteps
from cerbero.utils import _, N_, shell
from cerbero.utils import messages as m
class RecoveryActions(object):
'''
Enumeration factory for recovery actions after an error
'''
SHELL = N_("Enter the shell")
RETRY_ALL = N_("Rebuild the recipe from scratch")
RETRY_STEP = N_("Rebuild starting from the failed step")
SKIP = N_("Skip recipe")
ABORT = N_("Abort")
def __new__(klass):
return [RecoveryActions.SHELL, RecoveryActions.RETRY_ALL,
RecoveryActions.RETRY_STEP, RecoveryActions.SKIP,
RecoveryActions.ABORT]
class Oven (object):
'''
This oven cooks recipes with all their ingredients
@ivar recipe: A recipe to build
@type: L{cerberos.recipe.recipe}
@ivar cookbook: Cookbook with the recipes status
@type: L{cerberos.cookbook.CookBook}
@ivar force: Force the build of the recipe
@type: bool
@ivar no_deps: Ignore dependencies
@type: bool
@ivar missing_files: check for files missing in the recipe
@type missing_files: bool
'''
STEP_TPL = '[(%s/%s) %s -> %s ]'
def __init__(self, recipes, cookbook, force=False, no_deps=False,
missing_files=False, dry_run=False, wanted_steps=[]):
if isinstance(recipes, Recipe):
recipes = [recipes]
self.recipes = recipes
self.cookbook = cookbook
self.force = force
self.no_deps = no_deps
self.missing_files = missing_files
self.config = cookbook.get_config()
self.wanted_steps = wanted_steps
self.interactive = self.config.interactive
shell.DRY_RUN = dry_run
def start_cooking(self):
'''
Cooks the recipe and all its dependencies
'''
if self.no_deps:
ordered_recipes = [self.cookbook.get_recipe(x) for x in
self.recipes]
else:
ordered_recipes = []
for recipe in self.recipes:
recipes = self.cookbook.list_recipe_deps(recipe)
# remove recipes already scheduled to be built
recipes = [x for x in recipes if x not in ordered_recipes]
ordered_recipes.extend(recipes)
m.message(_("Building the following recipes: %s") %
' '.join([x.name for x in ordered_recipes]))
i = 1
for recipe in ordered_recipes:
try:
self._cook_recipe(recipe, i, len(ordered_recipes))
except BuildStepError, be:
if not self.interactive:
raise be
msg = be.msg
msg += _("Select an action to proceed:")
action = shell.prompt_multiple(msg, RecoveryActions())
if action == RecoveryActions.SHELL:
shell.enter_build_environment(self.config.target_platform,
self.config.target_arch, recipe.build_dir)
break
elif action == RecoveryActions.RETRY_ALL:
shutil.rmtree(recipe.build_dir)
self.cookbook.reset_recipe_status(recipe.name)
self._cook_recipe(recipe, i, len(ordered_recipes))
elif action == RecoveryActions.RETRY_STEP:
self._cook_recipe(recipe, i, len(ordered_recipes))
elif action == RecoveryActions.SKIP:
continue
elif action == RecoveryActions.ABORT:
raise AbortedError()
i += 1
def _cook_recipe(self, recipe, count, total):
if not self.cookbook.recipe_needs_build(recipe.name) and \
not self.force and not self.wanted_steps:
m.build_step(count, total, recipe.name, _("already built"))
return
if self.missing_files:
# create a temp file that will be used to find newer files
tmp = tempfile.NamedTemporaryFile()
recipe.force = self.force
for desc, step in recipe.steps:
m.build_step(count, total, recipe.name, step)
# check if the current step needs to be done
if self.cookbook.step_done(recipe.name, step) and not self.force and \
not step in self.wanted_steps:
m.action(_("Step done"))
continue
try:
# call step function
stepfunc = getattr(recipe, step)
if not stepfunc:
raise FatalError(_('Step %s not found') % step)
shell.set_logfile_output("%s/%s-%s.log" % (recipe.config.logs, recipe, step))
stepfunc()
# update status successfully
self.cookbook.update_step_status(recipe.name, step)
shell.close_logfile_output()
except FatalError:
shell.close_logfile_output(dump=True)
self._handle_build_step_error(recipe, step)
except Exception:
shell.close_logfile_output(dump=True)
raise BuildStepError(recipe, step, traceback.format_exc())
self.cookbook.update_build_status(recipe.name, recipe.built_version())
if self.missing_files:
self._print_missing_files(recipe, tmp)
tmp.close()
def _handle_build_step_error(self, recipe, step):
if step in [BuildSteps.FETCH, BuildSteps.EXTRACT]:
# if any of the source steps failed, wipe the directory and reset
# the recipe status to start from scratch next time
shutil.rmtree(recipe.build_dir)
self.cookbook.reset_recipe_status(recipe.name)
raise BuildStepError(recipe, step)
def _print_missing_files(self, recipe, tmp):
recipe_files = set(recipe.files_list())
installed_files = set(shell.find_newer_files(recipe.config.prefix,
tmp.name))
not_in_recipe = list(installed_files - recipe_files)
not_installed = list(recipe_files - installed_files)
if len(not_in_recipe) != 0:
m.message(_("The following files where installed, but are not "
"listed in the recipe:"))
m.message('\n'.join(sorted(not_in_recipe)))
if len(not_installed) != 0:
m.message(_("The following files are listed in the recipe, but "
"where not installed:"))
m.message('\n'.join(sorted(not_installed)))
|