author | timothy.murphy@nokia.com |
Tue, 11 May 2010 20:22:35 +0100 | |
branch | fix |
changeset 549 | d633be326c9f |
parent 537 | 164e587fef9f |
child 553 | 7d4971eaf863 |
permissions | -rw-r--r-- |
3 | 1 |
# |
225
d401dbd3a410
Ensure that parallel parsing sbs calls pass on --no-depend-generate and --no-depend-include (as these influence makefile generation).
Jon Chatten
parents:
219
diff
changeset
|
2 |
# Copyright (c) 2006-2010 Nokia Corporation and/or its subsidiary(-ies). |
3 | 3 |
# All rights reserved. |
4 |
# This component and the accompanying materials are made available |
|
5 |
# under the terms of the License "Eclipse Public License v1.0" |
|
6 |
# which accompanies this distribution, and is available |
|
7 |
# at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
8 |
# |
|
9 |
# Initial Contributors: |
|
10 |
# Nokia Corporation - initial contribution. |
|
11 |
# |
|
12 |
# Contributors: |
|
13 |
# |
|
59
0f7d6c11c675
Environment variables in the log are sorted alphabetically.
Stefan Karlsson <stefan.karlsson@nokia.com>
parents:
29
diff
changeset
|
14 |
# Description: |
3 | 15 |
# raptor module |
16 |
# This module represents the running Raptor program. Raptor is started |
|
17 |
# either by calling the Main() function, which creates an instance of |
|
18 |
# the raptor.Raptor class and calls its methods to perform a build based |
|
19 |
# on command-line parameters, or by explicitly creating a raptor.Raptor |
|
20 |
# instance and calling its methods to set-up and perform a build. |
|
21 |
# |
|
22 |
||
23 |
name = "sbs" # the public name for the raptor build tool |
|
24 |
env = "SBS_HOME" # the environment variable that locates us |
|
25 |
xml = "sbs_init.xml" # the primary initialisation file |
|
26 |
env2 = "HOME" # the environment variable that locates the user |
|
27 |
xml2 = ".sbs_init.xml" # the override initialisation file |
|
28 |
||
29 |
import generic_path |
|
30 |
import os |
|
31 |
import raptor_cache |
|
32 |
import raptor_cli |
|
33 |
import raptor_data |
|
34 |
import raptor_make |
|
5 | 35 |
import raptor_makefile |
3 | 36 |
import raptor_meta |
29
ee00c00df073
Catchup to Perforce WIP with timing, python24
timothy.murphy@nokia.com
parents:
21
diff
changeset
|
37 |
import raptor_timing |
3 | 38 |
import raptor_utilities |
39 |
import raptor_version |
|
40 |
import raptor_xml |
|
41 |
import filter_list |
|
42 |
import sys |
|
43 |
import types |
|
44 |
import time |
|
45 |
import traceback |
|
46 |
import pluginbox |
|
47 |
from xml.sax.saxutils import escape |
|
48 |
||
49 |
||
50 |
if not "HOSTPLATFORM" in os.environ or not "HOSTPLATFORM_DIR" in os.environ: |
|
51 |
print "Error: HOSTPLATFORM and HOSTPLATFORM_DIR must be set in the environment (this is usually done automatically by the startup script)." |
|
52 |
sys.exit(1) |
|
53 |
||
54 |
hostplatform = os.environ["HOSTPLATFORM"].split(" ") |
|
55 |
hostplatform_dir = os.environ["HOSTPLATFORM_DIR"] |
|
56 |
||
57 |
# defaults can use EPOCROOT |
|
5 | 58 |
|
3 | 59 |
if "EPOCROOT" in os.environ: |
115
5869e06bf2ac
Cause whatcomp output to use the incoming epocroot value. i.e. if epocroot is relative then so is the what output.
timothy.murphy@nokia.com
parents:
59
diff
changeset
|
60 |
incoming_epocroot = os.environ["EPOCROOT"] |
136
d84e89d4dde4
Tab/space problem
raptorbot <raptorbot@systemstesthead.symbian.intra>
parents:
133
diff
changeset
|
61 |
epocroot = incoming_epocroot.replace("\\","/") |
3 | 62 |
else: |
133
8184bb802ee1
In epocroot handling make windows the exceptional case because it is, use os.sep.
raptorbot <raptorbot@systemstesthead.symbian.intra>
parents:
115
diff
changeset
|
63 |
if 'win' in hostplatform: |
8184bb802ee1
In epocroot handling make windows the exceptional case because it is, use os.sep.
raptorbot <raptorbot@systemstesthead.symbian.intra>
parents:
115
diff
changeset
|
64 |
incoming_epocroot = os.sep |
8184bb802ee1
In epocroot handling make windows the exceptional case because it is, use os.sep.
raptorbot <raptorbot@systemstesthead.symbian.intra>
parents:
115
diff
changeset
|
65 |
epocroot = "/" |
8184bb802ee1
In epocroot handling make windows the exceptional case because it is, use os.sep.
raptorbot <raptorbot@systemstesthead.symbian.intra>
parents:
115
diff
changeset
|
66 |
os.environ["EPOCROOT"] = os.sep |
8184bb802ee1
In epocroot handling make windows the exceptional case because it is, use os.sep.
raptorbot <raptorbot@systemstesthead.symbian.intra>
parents:
115
diff
changeset
|
67 |
else: |
3 | 68 |
epocroot=os.environ['HOME'] + os.sep + "epocroot" |
69 |
os.environ["EPOCROOT"] = epocroot |
|
115
5869e06bf2ac
Cause whatcomp output to use the incoming epocroot value. i.e. if epocroot is relative then so is the what output.
timothy.murphy@nokia.com
parents:
59
diff
changeset
|
70 |
incoming_epocroot = epocroot |
3 | 71 |
|
72 |
if "SBS_BUILD_DIR" in os.environ: |
|
73 |
sbs_build_dir = os.environ["SBS_BUILD_DIR"] |
|
74 |
else: |
|
75 |
sbs_build_dir = (epocroot + "/epoc32/build").replace("//","/") |
|
76 |
||
77 |
||
78 |
# only use default XML from the epoc32 tree if it exists |
|
79 |
defaultSystemConfig = "lib/config" |
|
80 |
epoc32UserConfigDir = generic_path.Join(epocroot, "epoc32/sbs_config") |
|
81 |
if epoc32UserConfigDir.isDir(): |
|
82 |
defaultSystemConfig = str(epoc32UserConfigDir) + os.pathsep + defaultSystemConfig |
|
83 |
||
84 |
# parameters that can be overriden by the sbs_init.xml file |
|
85 |
# or by the command-line. |
|
86 |
defaults = { |
|
87 |
"allowCommandLineOverrides" : True, |
|
88 |
"CLI" : "raptor_cli", |
|
89 |
"buildInformation" : generic_path.Path("bld.inf"), |
|
90 |
"defaultConfig" : "default", |
|
91 |
"jobs": 4, |
|
92 |
"keepGoing": False, |
|
93 |
"logFileName" : generic_path.Join(sbs_build_dir,"Makefile.%TIME.log"), |
|
94 |
"makeEngine" : "make", |
|
95 |
"preferBuildInfoToSystemDefinition" : False, |
|
96 |
"pruneDuplicateMakefiles": True, |
|
97 |
"quiet" : False, |
|
98 |
"systemConfig" : defaultSystemConfig, |
|
99 |
"systemDefinition" : generic_path.Path("System_Definition.xml"), |
|
100 |
"systemDefinitionBase" : generic_path.Path("."), |
|
101 |
"systemFLM" : generic_path.Path("lib/flm"), |
|
102 |
"systemPlugins" : generic_path.Path("python/plugins"), |
|
103 |
"topMakefile" : generic_path.Join(sbs_build_dir,"Makefile"), |
|
104 |
"tries": 1, |
|
105 |
"writeSingleMakefile": True, |
|
106 |
"ignoreOsDetection": False, |
|
107 |
"toolcheck": "on", |
|
108 |
"filterList": "filterterminal,filterlogfile" |
|
109 |
} |
|
110 |
||
111 |
||
5 | 112 |
|
113 |
class ModelNode(object): |
|
114 |
""" Represents any node in a a tree of build information |
|
115 |
e.g. a tree of bld.infs, mmps and finally things like resource blocks and string table blocks. |
|
116 |
This is before they are produced into "build" specs. |
|
117 |
""" |
|
118 |
||
119 |
def __init__(self, id, parent = None): |
|
120 |
self.id = id |
|
121 |
self.type = type |
|
122 |
self.specs = [] |
|
123 |
self.deps = [] |
|
59
0f7d6c11c675
Environment variables in the log are sorted alphabetically.
Stefan Karlsson <stefan.karlsson@nokia.com>
parents:
29
diff
changeset
|
124 |
self.children = set() |
5 | 125 |
self.unfurled = False |
126 |
self.parent = parent |
|
127 |
||
128 |
# Allow one to make a set |
|
129 |
def __hash__(self): |
|
130 |
return hash(self.id) |
|
131 |
||
132 |
def __cmp__(self,other): |
|
133 |
return cmp(self.id, other) |
|
3 | 134 |
|
135 |
def __iter__(self): |
|
5 | 136 |
return iter(self.children) |
3 | 137 |
|
138 |
def __getitem__(self,x): |
|
139 |
if isinstance(x, slice): |
|
5 | 140 |
return self.children[x.start:x.stop] |
141 |
return self.children[x] |
|
3 | 142 |
|
143 |
def __setitem__(self,k, v): |
|
5 | 144 |
self.children[k] = v |
3 | 145 |
|
146 |
def __len__(self): |
|
5 | 147 |
return len(self.children) |
3 | 148 |
|
5 | 149 |
def add(self, item): |
150 |
return self.children.add(item) |
|
151 |
||
152 |
def isunfurled(self, c): |
|
153 |
return self.unfurled == False |
|
3 | 154 |
|
5 | 155 |
def unfurl(self, build): |
156 |
"""Find any children of this node by processing it, produces specs""" |
|
157 |
pass |
|
3 | 158 |
|
5 | 159 |
def unfurl_all(self, build): |
160 |
"""Unfurl self and all children - preparatory e.g for realisation""" |
|
161 |
if not self.unfurled: |
|
162 |
self.unfurl(build) |
|
3 | 163 |
|
5 | 164 |
self.realise_exports(build) # permit communication of dependencies between children |
3 | 165 |
|
5 | 166 |
for c in self.children: |
167 |
c.unfurl_all(build) |
|
59
0f7d6c11c675
Environment variables in the log are sorted alphabetically.
Stefan Karlsson <stefan.karlsson@nokia.com>
parents:
29
diff
changeset
|
168 |
|
3 | 169 |
|
5 | 170 |
def realise_exports(self, build): |
59
0f7d6c11c675
Environment variables in the log are sorted alphabetically.
Stefan Karlsson <stefan.karlsson@nokia.com>
parents:
29
diff
changeset
|
171 |
"""Do the things that are needed such that we can fully unfurl all |
5 | 172 |
sibling nodes. i.e. this step is here to "take care" of the dependencies |
59
0f7d6c11c675
Environment variables in the log are sorted alphabetically.
Stefan Karlsson <stefan.karlsson@nokia.com>
parents:
29
diff
changeset
|
173 |
between siblings. |
5 | 174 |
""" |
175 |
pass |
|
59
0f7d6c11c675
Environment variables in the log are sorted alphabetically.
Stefan Karlsson <stefan.karlsson@nokia.com>
parents:
29
diff
changeset
|
176 |
|
5 | 177 |
def realise_makefile(self, build, specs): |
178 |
makefilename_base = build.topMakefile |
|
179 |
if self.name is not None: |
|
3 | 180 |
makefile = generic_path.Path(str(makefilename_base) + "_" + raptor_utilities.sanitise(self.name)) |
181 |
else: |
|
182 |
makefile = generic_path.Path(str(makefilename_base)) |
|
183 |
||
184 |
# insert the start time into the Makefile name? |
|
185 |
makefile.path = makefile.path.replace("%TIME", build.timestring) |
|
186 |
||
29
ee00c00df073
Catchup to Perforce WIP with timing, python24
timothy.murphy@nokia.com
parents:
21
diff
changeset
|
187 |
build.InfoDiscovery(object_type = "layers", count = 1) |
ee00c00df073
Catchup to Perforce WIP with timing, python24
timothy.murphy@nokia.com
parents:
21
diff
changeset
|
188 |
build.InfoStartTime(object_type = "layer", task = "parse", |
ee00c00df073
Catchup to Perforce WIP with timing, python24
timothy.murphy@nokia.com
parents:
21
diff
changeset
|
189 |
key = str(makefile.path)) |
5 | 190 |
makefileset = build.maker.Write(makefile, specs, build.buildUnitsToBuild) |
29
ee00c00df073
Catchup to Perforce WIP with timing, python24
timothy.murphy@nokia.com
parents:
21
diff
changeset
|
191 |
build.InfoEndTime(object_type = "layer", task = "parse", |
ee00c00df073
Catchup to Perforce WIP with timing, python24
timothy.murphy@nokia.com
parents:
21
diff
changeset
|
192 |
key = str(makefile.path)) |
5 | 193 |
|
194 |
return makefileset |
|
59
0f7d6c11c675
Environment variables in the log are sorted alphabetically.
Stefan Karlsson <stefan.karlsson@nokia.com>
parents:
29
diff
changeset
|
195 |
|
5 | 196 |
|
29
ee00c00df073
Catchup to Perforce WIP with timing, python24
timothy.murphy@nokia.com
parents:
21
diff
changeset
|
197 |
|
5 | 198 |
def realise(self, build): |
59
0f7d6c11c675
Environment variables in the log are sorted alphabetically.
Stefan Karlsson <stefan.karlsson@nokia.com>
parents:
29
diff
changeset
|
199 |
"""Give the spec trees to the make engine and actually |
0f7d6c11c675
Environment variables in the log are sorted alphabetically.
Stefan Karlsson <stefan.karlsson@nokia.com>
parents:
29
diff
changeset
|
200 |
"build" the product represented by this model node""" |
5 | 201 |
# Must ensure that all children are unfurled at this point |
202 |
self.unfurl_all(build) |
|
203 |
||
59
0f7d6c11c675
Environment variables in the log are sorted alphabetically.
Stefan Karlsson <stefan.karlsson@nokia.com>
parents:
29
diff
changeset
|
204 |
sp = self.specs |
5 | 205 |
|
206 |
build.AssertBuildOK() |
|
207 |
||
208 |
m = self.realise_makefile(build, sp) |
|
209 |
||
29
ee00c00df073
Catchup to Perforce WIP with timing, python24
timothy.murphy@nokia.com
parents:
21
diff
changeset
|
210 |
build.InfoStartTime(object_type = "layer", task = "build", |
ee00c00df073
Catchup to Perforce WIP with timing, python24
timothy.murphy@nokia.com
parents:
21
diff
changeset
|
211 |
key = (str(m.directory) + "/" + str(m.filenamebase))) |
ee00c00df073
Catchup to Perforce WIP with timing, python24
timothy.murphy@nokia.com
parents:
21
diff
changeset
|
212 |
result = build.Make(m) |
ee00c00df073
Catchup to Perforce WIP with timing, python24
timothy.murphy@nokia.com
parents:
21
diff
changeset
|
213 |
build.InfoEndTime(object_type = "layer", task = "build", |
ee00c00df073
Catchup to Perforce WIP with timing, python24
timothy.murphy@nokia.com
parents:
21
diff
changeset
|
214 |
key = (str(m.directory) + "/" + str(m.filenamebase))) |
59
0f7d6c11c675
Environment variables in the log are sorted alphabetically.
Stefan Karlsson <stefan.karlsson@nokia.com>
parents:
29
diff
changeset
|
215 |
|
0f7d6c11c675
Environment variables in the log are sorted alphabetically.
Stefan Karlsson <stefan.karlsson@nokia.com>
parents:
29
diff
changeset
|
216 |
|
29
ee00c00df073
Catchup to Perforce WIP with timing, python24
timothy.murphy@nokia.com
parents:
21
diff
changeset
|
217 |
return result |
ee00c00df073
Catchup to Perforce WIP with timing, python24
timothy.murphy@nokia.com
parents:
21
diff
changeset
|
218 |
|
5 | 219 |
|
3 | 220 |
|
5 | 221 |
class Project(ModelNode): |
222 |
"""A project or, in symbian-speak, an MMP |
|
223 |
""" |
|
224 |
def __init__(self, filename, parent = None): |
|
225 |
super(Project,self).__init__(filename, parent = parent) |
|
226 |
# Assume that components are specified in mmp files for now |
|
227 |
# One day that tyranny might end. |
|
228 |
self.mmp_name = str(generic_path.Path.Absolute(filename)) |
|
229 |
self.id = self.mmp_name |
|
230 |
self.unfurled = False |
|
231 |
||
232 |
def makefile(self, makefilename_base, engine, named = False): |
|
233 |
"""Makefiles for individual mmps not feasible at the moment""" |
|
374
96629a6f26e4
fault tolerant XML groups
Richard Taylor <richard.i.taylor@nokia.com>
parents:
372
diff
changeset
|
234 |
pass |
96629a6f26e4
fault tolerant XML groups
Richard Taylor <richard.i.taylor@nokia.com>
parents:
372
diff
changeset
|
235 |
# Cannot, currently, "unfurl an mmp" directly but do want |
96629a6f26e4
fault tolerant XML groups
Richard Taylor <richard.i.taylor@nokia.com>
parents:
372
diff
changeset
|
236 |
# to be able to simulate the overall recursive unfurling of a build. |
5 | 237 |
|
238 |
class Component(ModelNode): |
|
239 |
"""A group of projects or, in symbian-speak, a bld.inf. |
|
240 |
""" |
|
268
692d9a4eefc4
Resurrect COMPONENT_NAME and LAYER_NAME output in logs when bld.inf files are gathered from system definition files.
Jon Chatten
parents:
226
diff
changeset
|
241 |
def __init__(self, filename, layername="", componentname=""): |
5 | 242 |
super(Component,self).__init__(filename) |
243 |
# Assume that components are specified in bld.inf files for now |
|
244 |
# One day that tyranny might end. |
|
245 |
self.bldinf = None # Slot for a bldinf object if we spot one later |
|
246 |
self.bldinf_filename = generic_path.Path.Absolute(filename) |
|
247 |
||
248 |
self.id = str(self.bldinf_filename) |
|
249 |
self.exportspecs = [] |
|
250 |
self.depfiles = [] |
|
251 |
self.unfurled = False # We can parse this |
|
268
692d9a4eefc4
Resurrect COMPONENT_NAME and LAYER_NAME output in logs when bld.inf files are gathered from system definition files.
Jon Chatten
parents:
226
diff
changeset
|
252 |
|
692d9a4eefc4
Resurrect COMPONENT_NAME and LAYER_NAME output in logs when bld.inf files are gathered from system definition files.
Jon Chatten
parents:
226
diff
changeset
|
253 |
# Extra metadata optionally supplied with system definition file gathered components |
692d9a4eefc4
Resurrect COMPONENT_NAME and LAYER_NAME output in logs when bld.inf files are gathered from system definition files.
Jon Chatten
parents:
226
diff
changeset
|
254 |
self.layername = layername |
692d9a4eefc4
Resurrect COMPONENT_NAME and LAYER_NAME output in logs when bld.inf files are gathered from system definition files.
Jon Chatten
parents:
226
diff
changeset
|
255 |
self.componentname = componentname |
5 | 256 |
|
257 |
def AddMMP(self, filename): |
|
258 |
self.children.add(Project(filename)) |
|
3 | 259 |
|
260 |
||
5 | 261 |
class Layer(ModelNode): |
268
692d9a4eefc4
Resurrect COMPONENT_NAME and LAYER_NAME output in logs when bld.inf files are gathered from system definition files.
Jon Chatten
parents:
226
diff
changeset
|
262 |
""" Some components that should be built togther |
59
0f7d6c11c675
Environment variables in the log are sorted alphabetically.
Stefan Karlsson <stefan.karlsson@nokia.com>
parents:
29
diff
changeset
|
263 |
e.g. a Layer in the system definition. |
268
692d9a4eefc4
Resurrect COMPONENT_NAME and LAYER_NAME output in logs when bld.inf files are gathered from system definition files.
Jon Chatten
parents:
226
diff
changeset
|
264 |
|
692d9a4eefc4
Resurrect COMPONENT_NAME and LAYER_NAME output in logs when bld.inf files are gathered from system definition files.
Jon Chatten
parents:
226
diff
changeset
|
265 |
Components that come from system definition files can |
692d9a4eefc4
Resurrect COMPONENT_NAME and LAYER_NAME output in logs when bld.inf files are gathered from system definition files.
Jon Chatten
parents:
226
diff
changeset
|
266 |
have extra surrounding metadata that we need to pass |
692d9a4eefc4
Resurrect COMPONENT_NAME and LAYER_NAME output in logs when bld.inf files are gathered from system definition files.
Jon Chatten
parents:
226
diff
changeset
|
267 |
on for use in log output. |
59
0f7d6c11c675
Environment variables in the log are sorted alphabetically.
Stefan Karlsson <stefan.karlsson@nokia.com>
parents:
29
diff
changeset
|
268 |
""" |
5 | 269 |
def __init__(self, name, componentlist=[]): |
270 |
super(Layer,self).__init__(name) |
|
271 |
self.name = name |
|
272 |
||
273 |
for c in componentlist: |
|
268
692d9a4eefc4
Resurrect COMPONENT_NAME and LAYER_NAME output in logs when bld.inf files are gathered from system definition files.
Jon Chatten
parents:
226
diff
changeset
|
274 |
if isinstance(c, raptor_xml.SystemModelComponent): |
692d9a4eefc4
Resurrect COMPONENT_NAME and LAYER_NAME output in logs when bld.inf files are gathered from system definition files.
Jon Chatten
parents:
226
diff
changeset
|
275 |
# this component came from a system_definition.xml |
692d9a4eefc4
Resurrect COMPONENT_NAME and LAYER_NAME output in logs when bld.inf files are gathered from system definition files.
Jon Chatten
parents:
226
diff
changeset
|
276 |
self.children.add(Component(c, c.GetContainerName("layer"), c.GetContainerName("component"))) |
692d9a4eefc4
Resurrect COMPONENT_NAME and LAYER_NAME output in logs when bld.inf files are gathered from system definition files.
Jon Chatten
parents:
226
diff
changeset
|
277 |
else: |
692d9a4eefc4
Resurrect COMPONENT_NAME and LAYER_NAME output in logs when bld.inf files are gathered from system definition files.
Jon Chatten
parents:
226
diff
changeset
|
278 |
# this is a plain old bld.inf file from the command-line |
692d9a4eefc4
Resurrect COMPONENT_NAME and LAYER_NAME output in logs when bld.inf files are gathered from system definition files.
Jon Chatten
parents:
226
diff
changeset
|
279 |
self.children.add(Component(c)) |
5 | 280 |
|
281 |
def unfurl(self, build): |
|
59
0f7d6c11c675
Environment variables in the log are sorted alphabetically.
Stefan Karlsson <stefan.karlsson@nokia.com>
parents:
29
diff
changeset
|
282 |
"""Discover the children of this layer. This involves parsing the component MetaData (bld.infs, mmps). |
5 | 283 |
Takes a raptor object as a parameter (build), together with a list of Configurations. |
284 |
||
285 |
We currently have parsers that work on collections of components/bld.infs and that cannot |
|
59
0f7d6c11c675
Environment variables in the log are sorted alphabetically.
Stefan Karlsson <stefan.karlsson@nokia.com>
parents:
29
diff
changeset
|
286 |
parse at a "finer" level. So one can't 'unfurl' an mmp at the moment. |
5 | 287 |
|
288 |
Returns True if the object was successfully unfurled. |
|
289 |
""" |
|
290 |
||
291 |
# setup all our components |
|
292 |
for c in self.children: |
|
293 |
c.specs = [] |
|
294 |
||
295 |
self.configs = build.buildUnitsToBuild |
|
296 |
||
297 |
||
298 |
metaReader = None |
|
299 |
if len (self.children): |
|
300 |
try: |
|
301 |
# create a MetaReader that is aware of the list of |
|
302 |
# configurations that we are trying to build. |
|
303 |
metaReader = raptor_meta.MetaReader(build, build.buildUnitsToBuild) |
|
304 |
||
305 |
# convert the list of bld.inf files into a specification |
|
306 |
# hierarchy suitable for all the configurations we are using. |
|
307 |
self.specs = list(build.generic_specs) |
|
11
ea23b18a2ff6
Initial implementation of noexport
tnmurphy@4GBL06592.nokia.com
parents:
5
diff
changeset
|
308 |
self.specs.extend(metaReader.ReadBldInfFiles(self.children, doexport = build.doExport, dobuild = not build.doExportOnly)) |
5 | 309 |
|
310 |
except raptor_meta.MetaDataError, e: |
|
311 |
build.Error(e.Text) |
|
312 |
||
313 |
self.unfurled = True |
|
314 |
||
315 |
||
316 |
def meta_realise(self, build): |
|
317 |
"""Generate specs that can be used to "take care of" finding out more |
|
318 |
about this metaunit - i.e. one doesn't want to parse it immediately |
|
59
0f7d6c11c675
Environment variables in the log are sorted alphabetically.
Stefan Karlsson <stefan.karlsson@nokia.com>
parents:
29
diff
changeset
|
319 |
but to create a makefile that will parse it. |
5 | 320 |
In this case it allows bld.infs to be parsed in parallel by make.""" |
321 |
||
3 | 322 |
# insert the start time into the Makefile name? |
323 |
||
5 | 324 |
self.configs = build.buildUnitsToBuild |
3 | 325 |
|
326 |
# Pass certain CLI flags through to the makefile-generating sbs calls |
|
327 |
cli_options = "" |
|
59
0f7d6c11c675
Environment variables in the log are sorted alphabetically.
Stefan Karlsson <stefan.karlsson@nokia.com>
parents:
29
diff
changeset
|
328 |
|
3 | 329 |
if build.debugOutput == True: |
330 |
cli_options += " -d" |
|
59
0f7d6c11c675
Environment variables in the log are sorted alphabetically.
Stefan Karlsson <stefan.karlsson@nokia.com>
parents:
29
diff
changeset
|
331 |
|
3 | 332 |
if build.ignoreOsDetection == True: |
333 |
cli_options += " -i" |
|
59
0f7d6c11c675
Environment variables in the log are sorted alphabetically.
Stefan Karlsson <stefan.karlsson@nokia.com>
parents:
29
diff
changeset
|
334 |
|
3 | 335 |
if build.keepGoing == True: |
336 |
cli_options += " -k" |
|
59
0f7d6c11c675
Environment variables in the log are sorted alphabetically.
Stefan Karlsson <stefan.karlsson@nokia.com>
parents:
29
diff
changeset
|
337 |
|
3 | 338 |
if build.quiet == True: |
339 |
cli_options += " -q" |
|
59
0f7d6c11c675
Environment variables in the log are sorted alphabetically.
Stefan Karlsson <stefan.karlsson@nokia.com>
parents:
29
diff
changeset
|
340 |
|
225
d401dbd3a410
Ensure that parallel parsing sbs calls pass on --no-depend-generate and --no-depend-include (as these influence makefile generation).
Jon Chatten
parents:
219
diff
changeset
|
341 |
if build.noDependInclude == True: |
d401dbd3a410
Ensure that parallel parsing sbs calls pass on --no-depend-generate and --no-depend-include (as these influence makefile generation).
Jon Chatten
parents:
219
diff
changeset
|
342 |
cli_options += " --no-depend-include" |
d401dbd3a410
Ensure that parallel parsing sbs calls pass on --no-depend-generate and --no-depend-include (as these influence makefile generation).
Jon Chatten
parents:
219
diff
changeset
|
343 |
|
d401dbd3a410
Ensure that parallel parsing sbs calls pass on --no-depend-generate and --no-depend-include (as these influence makefile generation).
Jon Chatten
parents:
219
diff
changeset
|
344 |
if build.noDependGenerate == True: |
d401dbd3a410
Ensure that parallel parsing sbs calls pass on --no-depend-generate and --no-depend-include (as these influence makefile generation).
Jon Chatten
parents:
219
diff
changeset
|
345 |
cli_options += " --no-depend-generate" |
d401dbd3a410
Ensure that parallel parsing sbs calls pass on --no-depend-generate and --no-depend-include (as these influence makefile generation).
Jon Chatten
parents:
219
diff
changeset
|
346 |
|
59
0f7d6c11c675
Environment variables in the log are sorted alphabetically.
Stefan Karlsson <stefan.karlsson@nokia.com>
parents:
29
diff
changeset
|
347 |
|
5 | 348 |
nc = len(self.children) |
349 |
number_blocks = build.jobs |
|
3 | 350 |
block_size = (nc / number_blocks) + 1 |
351 |
component_blocks = [] |
|
352 |
spec_nodes = [] |
|
59
0f7d6c11c675
Environment variables in the log are sorted alphabetically.
Stefan Karlsson <stefan.karlsson@nokia.com>
parents:
29
diff
changeset
|
353 |
|
3 | 354 |
b = 0 |
5 | 355 |
childlist = list(self.children) |
3 | 356 |
while b < nc: |
5 | 357 |
component_blocks.append(childlist[b:b+block_size]) |
3 | 358 |
b += block_size |
59
0f7d6c11c675
Environment variables in the log are sorted alphabetically.
Stefan Karlsson <stefan.karlsson@nokia.com>
parents:
29
diff
changeset
|
359 |
|
5 | 360 |
while len(component_blocks[-1]) <= 0: |
3 | 361 |
component_blocks.pop() |
5 | 362 |
number_blocks -= 1 |
59
0f7d6c11c675
Environment variables in the log are sorted alphabetically.
Stefan Karlsson <stefan.karlsson@nokia.com>
parents:
29
diff
changeset
|
363 |
|
5 | 364 |
build.Info("Parallel Parsing: bld.infs split into %d blocks\n", number_blocks) |
59
0f7d6c11c675
Environment variables in the log are sorted alphabetically.
Stefan Karlsson <stefan.karlsson@nokia.com>
parents:
29
diff
changeset
|
365 |
# Cause the binding makefiles to have the toplevel makefile's |
0f7d6c11c675
Environment variables in the log are sorted alphabetically.
Stefan Karlsson <stefan.karlsson@nokia.com>
parents:
29
diff
changeset
|
366 |
# name. The bindee's have __pp appended. |
5 | 367 |
tm = build.topMakefile.Absolute() |
59
0f7d6c11c675
Environment variables in the log are sorted alphabetically.
Stefan Karlsson <stefan.karlsson@nokia.com>
parents:
29
diff
changeset
|
368 |
binding_makefiles = raptor_makefile.MakefileSet(str(tm.Dir()), build.maker.selectors, makefiles=None, filenamebase=str(tm.File())) |
5 | 369 |
build.topMakefile = generic_path.Path(str(build.topMakefile) + "_pp") |
370 |
||
3 | 371 |
loop_number = 0 |
372 |
for block in component_blocks: |
|
373 |
loop_number += 1 |
|
374 |
specNode = raptor_data.Specification("metadata_" + self.name) |
|
375 |
||
5 | 376 |
componentList = " ".join([str(c.bldinf_filename) for c in block]) |
377 |
||
59
0f7d6c11c675
Environment variables in the log are sorted alphabetically.
Stefan Karlsson <stefan.karlsson@nokia.com>
parents:
29
diff
changeset
|
378 |
|
5 | 379 |
configList = " ".join([c.name for c in self.configs if c.name != "build" ]) |
59
0f7d6c11c675
Environment variables in the log are sorted alphabetically.
Stefan Karlsson <stefan.karlsson@nokia.com>
parents:
29
diff
changeset
|
380 |
|
3 | 381 |
makefile_path = str(build.topMakefile) + "_" + str(loop_number) |
382 |
try: |
|
383 |
os.unlink(makefile_path) # until we have dependencies working properly |
|
374
96629a6f26e4
fault tolerant XML groups
Richard Taylor <richard.i.taylor@nokia.com>
parents:
372
diff
changeset
|
384 |
except Exception: |
3 | 385 |
pass |
59
0f7d6c11c675
Environment variables in the log are sorted alphabetically.
Stefan Karlsson <stefan.karlsson@nokia.com>
parents:
29
diff
changeset
|
386 |
|
3 | 387 |
# add some basic data in a component-wide variant |
388 |
var = raptor_data.Variant() |
|
389 |
var.AddOperation(raptor_data.Set("COMPONENT_PATHS", componentList)) |
|
390 |
var.AddOperation(raptor_data.Set("MAKEFILE_PATH", makefile_path)) |
|
391 |
var.AddOperation(raptor_data.Set("CONFIGS", configList)) |
|
392 |
var.AddOperation(raptor_data.Set("CLI_OPTIONS", cli_options)) |
|
11
ea23b18a2ff6
Initial implementation of noexport
tnmurphy@4GBL06592.nokia.com
parents:
5
diff
changeset
|
393 |
|
ea23b18a2ff6
Initial implementation of noexport
tnmurphy@4GBL06592.nokia.com
parents:
5
diff
changeset
|
394 |
|
ea23b18a2ff6
Initial implementation of noexport
tnmurphy@4GBL06592.nokia.com
parents:
5
diff
changeset
|
395 |
# Allow the flm to skip exports. Note: this parameter |
ea23b18a2ff6
Initial implementation of noexport
tnmurphy@4GBL06592.nokia.com
parents:
5
diff
changeset
|
396 |
doexport_str = '1' |
ea23b18a2ff6
Initial implementation of noexport
tnmurphy@4GBL06592.nokia.com
parents:
5
diff
changeset
|
397 |
if not build.doExport: |
ea23b18a2ff6
Initial implementation of noexport
tnmurphy@4GBL06592.nokia.com
parents:
5
diff
changeset
|
398 |
doexport_str = '' |
ea23b18a2ff6
Initial implementation of noexport
tnmurphy@4GBL06592.nokia.com
parents:
5
diff
changeset
|
399 |
var.AddOperation(raptor_data.Set("DOEXPORT", doexport_str )) |
ea23b18a2ff6
Initial implementation of noexport
tnmurphy@4GBL06592.nokia.com
parents:
5
diff
changeset
|
400 |
|
3 | 401 |
# Pass on '-n' (if specified) to the makefile-generating sbs calls |
402 |
if build.noBuild: |
|
403 |
var.AddOperation(raptor_data.Set("NO_BUILD", "1")) |
|
404 |
specNode.AddVariant(var) |
|
59
0f7d6c11c675
Environment variables in the log are sorted alphabetically.
Stefan Karlsson <stefan.karlsson@nokia.com>
parents:
29
diff
changeset
|
405 |
|
3 | 406 |
try: |
407 |
interface = build.cache.FindNamedInterface("build.makefiles") |
|
408 |
specNode.SetInterface(interface) |
|
409 |
except KeyError: |
|
410 |
build.Error("Can't find flm interface 'build.makefiles' ") |
|
59
0f7d6c11c675
Environment variables in the log are sorted alphabetically.
Stefan Karlsson <stefan.karlsson@nokia.com>
parents:
29
diff
changeset
|
411 |
|
3 | 412 |
spec_nodes.append(specNode) |
5 | 413 |
binding_makefiles.addInclude(str(makefile_path)+"_all") |
414 |
||
29
ee00c00df073
Catchup to Perforce WIP with timing, python24
timothy.murphy@nokia.com
parents:
21
diff
changeset
|
415 |
build.InfoDiscovery(object_type = "layers", count = 1) |
ee00c00df073
Catchup to Perforce WIP with timing, python24
timothy.murphy@nokia.com
parents:
21
diff
changeset
|
416 |
build.InfoStartTime(object_type = "layer", task = "parse", |
ee00c00df073
Catchup to Perforce WIP with timing, python24
timothy.murphy@nokia.com
parents:
21
diff
changeset
|
417 |
key = str(build.topMakefile)) |
5 | 418 |
m = self.realise_makefile(build, spec_nodes) |
419 |
m.close() |
|
420 |
gen_result = build.Make(m) |
|
3 | 421 |
|
29
ee00c00df073
Catchup to Perforce WIP with timing, python24
timothy.murphy@nokia.com
parents:
21
diff
changeset
|
422 |
build.InfoEndTime(object_type = "layer", task = "parse", |
ee00c00df073
Catchup to Perforce WIP with timing, python24
timothy.murphy@nokia.com
parents:
21
diff
changeset
|
423 |
key = str(build.topMakefile)) |
ee00c00df073
Catchup to Perforce WIP with timing, python24
timothy.murphy@nokia.com
parents:
21
diff
changeset
|
424 |
build.InfoStartTime(object_type = "layer", task = "build", |
ee00c00df073
Catchup to Perforce WIP with timing, python24
timothy.murphy@nokia.com
parents:
21
diff
changeset
|
425 |
key = str(build.topMakefile)) |
5 | 426 |
build.Debug("Binding Makefile base name is %s ", binding_makefiles.filenamebase) |
427 |
binding_makefiles.close() |
|
428 |
b = build.Make(binding_makefiles) |
|
29
ee00c00df073
Catchup to Perforce WIP with timing, python24
timothy.murphy@nokia.com
parents:
21
diff
changeset
|
429 |
build.InfoEndTime(object_type = "layer", task = "build", |
ee00c00df073
Catchup to Perforce WIP with timing, python24
timothy.murphy@nokia.com
parents:
21
diff
changeset
|
430 |
key = str(build.topMakefile)) |
5 | 431 |
return b |
3 | 432 |
|
433 |
||
5 | 434 |
|
435 |
||
436 |
class BuildCannotProgressException(Exception): |
|
3 | 437 |
pass |
438 |
||
439 |
# raptor module classes |
|
440 |
||
441 |
class Raptor(object): |
|
442 |
"""An instance of a running Raptor program. |
|
443 |
||
444 |
When operated from the command-line there is a single Raptor object |
|
445 |
created by the Main function. When operated by an IDE several Raptor |
|
446 |
objects may be created and operated at the same time.""" |
|
447 |
||
448 |
||
449 |
M_BUILD = 1 |
|
59
0f7d6c11c675
Environment variables in the log are sorted alphabetically.
Stefan Karlsson <stefan.karlsson@nokia.com>
parents:
29
diff
changeset
|
450 |
M_VERSION = 2 |
3 | 451 |
|
452 |
def __init__(self, home = None): |
|
453 |
||
454 |
self.DefaultSetUp(home) |
|
455 |
||
456 |
||
457 |
def DefaultSetUp(self, home = None): |
|
458 |
"revert to the default set-up state" |
|
459 |
self.errorCode = 0 |
|
460 |
self.skipAll = False |
|
461 |
self.summary = True |
|
462 |
self.out = sys.stdout # Just until filters get started. |
|
463 |
||
464 |
# Create a bootstrap output system. |
|
465 |
self.out = filter_list.FilterList() |
|
466 |
||
467 |
if home == None: |
|
468 |
try: |
|
469 |
home = os.environ[env] |
|
470 |
except KeyError: |
|
471 |
home = os.getcwd() |
|
472 |
||
473 |
# make sure the home directory exists |
|
474 |
self.home = generic_path.Path(home).Absolute() |
|
475 |
||
476 |
if not self.home.isDir(): |
|
477 |
self.Error("%s '%s' is not a directory", env, self.home) |
|
478 |
return |
|
479 |
||
480 |
# the set-up file location. |
|
481 |
# use the override "env2/xml2" if it exists |
|
482 |
# else use the primary "env/xml" if it exists |
|
483 |
# else keep the hard-coded defaults. |
|
484 |
self.raptorXML = self.home.Append(xml) |
|
485 |
||
486 |
if env2 in os.environ: |
|
487 |
sbs_init = generic_path.Join(os.environ[env2], xml2) |
|
488 |
if sbs_init.isFile(): |
|
489 |
self.raptorXML = sbs_init |
|
490 |
||
491 |
# things that can be overridden by the set-up file |
|
492 |
for key, value in defaults.items(): |
|
493 |
self.__dict__[key] = value |
|
494 |
||
495 |
# things to initialise |
|
496 |
self.args = [] |
|
497 |
||
5 | 498 |
self.layers = [] |
499 |
self.orderLayers = False |
|
3 | 500 |
self.commandlineComponents = [] |
501 |
||
502 |
self.systemModel = None |
|
503 |
self.systemDefinitionFile = None |
|
504 |
self.systemDefinitionRequestedLayers = [] |
|
505 |
self.systemDefinitionOrderLayers = False |
|
506 |
||
507 |
self.specGroups = {} |
|
508 |
||
509 |
self.configNames = [] |
|
510 |
self.configsToBuild = set() |
|
511 |
self.makeOptions = [] |
|
512 |
self.maker = None |
|
513 |
self.debugOutput = False |
|
514 |
self.doExportOnly = False |
|
11
ea23b18a2ff6
Initial implementation of noexport
tnmurphy@4GBL06592.nokia.com
parents:
5
diff
changeset
|
515 |
self.doExport = True |
3 | 516 |
self.noBuild = False |
517 |
self.noDependInclude = False |
|
219 | 518 |
self.noDependGenerate = False |
3 | 519 |
self.projects = set() |
520 |
||
521 |
self.cache = raptor_cache.Cache(self) |
|
522 |
self.override = {env: str(self.home)} |
|
523 |
self.targets = [] |
|
524 |
self.defaultTargets = [] |
|
525 |
||
526 |
self.doCheck = False |
|
527 |
self.doWhat = False |
|
528 |
self.doParallelParsing = False |
|
529 |
self.mission = Raptor.M_BUILD |
|
530 |
||
531 |
# what platform and filesystem are we running on? |
|
532 |
self.filesystem = raptor_utilities.getOSFileSystem() |
|
533 |
||
537
164e587fef9f
fix: take action on copy tags at the end of build phases.
timothy.murphy@nokia.com
parents:
533
diff
changeset
|
534 |
self.timing = True # Needed by filters such as copy_file to monitor progress |
3 | 535 |
self.toolset = None |
536 |
||
537 |
self.starttime = time.time() |
|
538 |
self.timestring = time.strftime("%Y-%m-%d-%H-%M-%S") |
|
539 |
||
540 |
self.fatalErrorState = False |
|
541 |
||
542 |
def AddConfigList(self, configPathList): |
|
543 |
# this function converts cmd line option into a list |
|
544 |
# and prepends it to default config. |
|
545 |
self.configPath = generic_path.NormalisePathList(configPathList.split(os.pathsep)) + self.configPath |
|
546 |
return True |
|
547 |
||
548 |
def AddConfigName(self, name): |
|
5 | 549 |
if name == "build": |
550 |
traceback.print_stack((sys.stdout)) |
|
551 |
sys.exit(1) |
|
3 | 552 |
self.configNames.append(name) |
553 |
return True |
|
554 |
||
555 |
def RunQuietly(self, TrueOrFalse): |
|
556 |
self.quiet = TrueOrFalse |
|
557 |
return True |
|
558 |
||
559 |
def SetCheck(self, TrueOrFalse): |
|
560 |
self.doCheck = TrueOrFalse |
|
561 |
return True |
|
562 |
||
563 |
def SetWhat(self, TrueOrFalse): |
|
564 |
self.doWhat = TrueOrFalse |
|
565 |
return True |
|
566 |
||
567 |
def SetEnv(self, name, value): |
|
568 |
self.override[name] = value |
|
569 |
||
570 |
def AddTarget(self, target): |
|
571 |
if self.doCheck or self.doWhat: |
|
572 |
self.Warn("ignoring target %s because --what or --check is specified.\n", target) |
|
573 |
else: |
|
574 |
self.targets.append(target) |
|
59
0f7d6c11c675
Environment variables in the log are sorted alphabetically.
Stefan Karlsson <stefan.karlsson@nokia.com>
parents:
29
diff
changeset
|
575 |
|
3 | 576 |
def AddSourceTarget(self, filename): |
577 |
# source targets are sanitised and then added as if they were a "normal" makefile target |
|
578 |
# in addition they have a default, empty, top-level target assigned in order that they can |
|
579 |
# be presented to any generated makefile without error |
|
580 |
sourceTarget = generic_path.Path(filename).Absolute() |
|
581 |
sourceTarget = 'SOURCETARGET_' + raptor_utilities.sanitise(str(sourceTarget)) |
|
582 |
self.AddTarget(sourceTarget) |
|
583 |
self.defaultTargets.append(sourceTarget) |
|
584 |
return True |
|
585 |
||
586 |
def SetSysDefFile(self, filename): |
|
587 |
self.systemDefinitionFile = generic_path.Path(filename) |
|
588 |
return True |
|
589 |
||
590 |
def SetSysDefBase(self, path): |
|
591 |
self.systemDefinitionBase = generic_path.Path(path) |
|
592 |
return True |
|
593 |
||
594 |
def AddSysDefLayer(self, layer): |
|
595 |
self.systemDefinitionRequestedLayers.append(layer) |
|
596 |
return True |
|
597 |
||
598 |
def SetSysDefOrderLayers(self, TrueOrFalse): |
|
599 |
self.systemDefinitionOrderLayers = TrueOrFalse |
|
600 |
return True |
|
601 |
||
602 |
def AddBuildInfoFile(self, filename): |
|
603 |
bldinf = generic_path.Path(filename).Absolute() |
|
604 |
self.commandlineComponents.append(bldinf) |
|
605 |
return True |
|
606 |
||
607 |
def SetTopMakefile(self, filename): |
|
608 |
self.topMakefile = generic_path.Path(filename) |
|
609 |
return True |
|
610 |
||
611 |
def SetDebugOutput(self, TrueOrFalse): |
|
612 |
self.debugOutput = TrueOrFalse |
|
613 |
return True |
|
614 |
||
615 |
def SetExportOnly(self, TrueOrFalse): |
|
616 |
self.doExportOnly = TrueOrFalse |
|
21
a695dd5e4c37
Make --noexport and --export-only exclusive
timothy.murphy@nokia.com
parents:
14
diff
changeset
|
617 |
if not self.doExport: |
a695dd5e4c37
Make --noexport and --export-only exclusive
timothy.murphy@nokia.com
parents:
14
diff
changeset
|
618 |
self.Error("The --noexport and --export-only options are incompatible - won't to do anything useful") |
a695dd5e4c37
Make --noexport and --export-only exclusive
timothy.murphy@nokia.com
parents:
14
diff
changeset
|
619 |
return False |
3 | 620 |
return True |
621 |
||
11
ea23b18a2ff6
Initial implementation of noexport
tnmurphy@4GBL06592.nokia.com
parents:
5
diff
changeset
|
622 |
def SetNoExport(self, TrueOrFalse): |
14 | 623 |
self.doExport = not TrueOrFalse |
21
a695dd5e4c37
Make --noexport and --export-only exclusive
timothy.murphy@nokia.com
parents:
14
diff
changeset
|
624 |
if self.doExportOnly: |
a695dd5e4c37
Make --noexport and --export-only exclusive
timothy.murphy@nokia.com
parents:
14
diff
changeset
|
625 |
self.Error("The --noexport and --export-only options are incompatible - won't to do anything useful") |
a695dd5e4c37
Make --noexport and --export-only exclusive
timothy.murphy@nokia.com
parents:
14
diff
changeset
|
626 |
return False |
11
ea23b18a2ff6
Initial implementation of noexport
tnmurphy@4GBL06592.nokia.com
parents:
5
diff
changeset
|
627 |
return True |
ea23b18a2ff6
Initial implementation of noexport
tnmurphy@4GBL06592.nokia.com
parents:
5
diff
changeset
|
628 |
|
3 | 629 |
def SetNoBuild(self, TrueOrFalse): |
630 |
self.noBuild = TrueOrFalse |
|
631 |
return True |
|
632 |
||
633 |
def SetNoDependInclude(self, TrueOrFalse): |
|
634 |
self.noDependInclude = TrueOrFalse |
|
635 |
return True |
|
59
0f7d6c11c675
Environment variables in the log are sorted alphabetically.
Stefan Karlsson <stefan.karlsson@nokia.com>
parents:
29
diff
changeset
|
636 |
|
219 | 637 |
def SetNoDependGenerate(self, TrueOrFalse): |
638 |
self.noDependGenerate = TrueOrFalse |
|
639 |
return True |
|
640 |
||
3 | 641 |
def SetKeepGoing(self, TrueOrFalse): |
642 |
self.keepGoing = TrueOrFalse |
|
643 |
return True |
|
644 |
||
645 |
def SetLogFileName(self, logfile): |
|
646 |
if logfile == "-": |
|
647 |
self.logFileName = None # stdout |
|
648 |
else: |
|
649 |
self.logFileName = generic_path.Path(logfile) |
|
650 |
return True |
|
651 |
||
652 |
def SetMakeEngine(self, makeEngine): |
|
193
8e61308a207e
don't break sbs_init.xml files with make engine validation changes
timothy.murphy@nokia.com
parents:
191
diff
changeset
|
653 |
self.makeEngine = makeEngine |
3 | 654 |
return True |
655 |
||
656 |
def AddMakeOption(self, makeOption): |
|
657 |
self.makeOptions.append(makeOption) |
|
658 |
return True |
|
659 |
||
660 |
def SetJobs(self, numberOfJobs): |
|
661 |
try: |
|
662 |
self.jobs = int(numberOfJobs) |
|
663 |
except ValueError: |
|
664 |
self.jobs = 0 |
|
665 |
||
666 |
if self.jobs < 1: |
|
667 |
self.Warn("The number of jobs (%s) must be a positive integer\n", numberOfJobs) |
|
668 |
self.jobs = 1 |
|
669 |
return False |
|
670 |
return True |
|
671 |
||
672 |
def SetTries(self, numberOfTries): |
|
673 |
try: |
|
674 |
self.tries = int(numberOfTries) |
|
675 |
except ValueError: |
|
676 |
self.tries = 0 |
|
677 |
||
678 |
if self.tries < 1: |
|
679 |
self.Warn("The number of tries (%s) must be a positive integer\n", numberOfTries) |
|
680 |
self.tries = 1 |
|
681 |
return False |
|
682 |
return True |
|
683 |
||
684 |
def SetToolCheck(self, type): |
|
685 |
type = type.lower() |
|
686 |
toolcheck_types= [ "forced", "on", "off" ] |
|
687 |
if type in toolcheck_types: |
|
688 |
self.toolcheck=type |
|
689 |
else: |
|
690 |
self.Warn("toolcheck option must be one of: %s" % toolcheck_types) |
|
691 |
return False |
|
692 |
||
693 |
return True |
|
59
0f7d6c11c675
Environment variables in the log are sorted alphabetically.
Stefan Karlsson <stefan.karlsson@nokia.com>
parents:
29
diff
changeset
|
694 |
|
29
ee00c00df073
Catchup to Perforce WIP with timing, python24
timothy.murphy@nokia.com
parents:
21
diff
changeset
|
695 |
def SetTiming(self, TrueOrFalse): |
537
164e587fef9f
fix: take action on copy tags at the end of build phases.
timothy.murphy@nokia.com
parents:
533
diff
changeset
|
696 |
self.Info("--timing switch no longer has any effect - build timing is now permanently on") |
29
ee00c00df073
Catchup to Perforce WIP with timing, python24
timothy.murphy@nokia.com
parents:
21
diff
changeset
|
697 |
return True |
3 | 698 |
|
699 |
def SetParallelParsing(self, type): |
|
700 |
type = type.lower() |
|
701 |
if type == "on": |
|
702 |
self.doParallelParsing = True |
|
29
ee00c00df073
Catchup to Perforce WIP with timing, python24
timothy.murphy@nokia.com
parents:
21
diff
changeset
|
703 |
elif type == "slave": |
ee00c00df073
Catchup to Perforce WIP with timing, python24
timothy.murphy@nokia.com
parents:
21
diff
changeset
|
704 |
self.isParallelParsingSlave = True |
3 | 705 |
elif type == "off": |
706 |
self.doParallelParsing = False |
|
707 |
else: |
|
708 |
self.Warn(" parallel parsing option must be either 'on' or 'off' (was %s)" % type) |
|
709 |
return False |
|
710 |
||
711 |
return True |
|
712 |
||
713 |
def AddProject(self, projectName): |
|
714 |
self.projects.add(projectName.lower()) |
|
715 |
return True |
|
716 |
||
717 |
def FilterList(self, value): |
|
718 |
self.filterList = value |
|
719 |
return True |
|
720 |
||
721 |
def IgnoreOsDetection(self, value): |
|
722 |
self.ignoreOsDetection = value |
|
723 |
return True |
|
724 |
||
725 |
def PrintVersion(self,dummy): |
|
726 |
global name |
|
5 | 727 |
print name, "version", raptor_version.fullversion() |
3 | 728 |
self.mission = Raptor.M_VERSION |
729 |
return False |
|
730 |
||
731 |
# worker methods |
|
732 |
||
733 |
def Introduction(self): |
|
734 |
"""Print a header of useful information about Raptor""" |
|
735 |
||
5 | 736 |
self.Info("%s: version %s\n", name, raptor_version.fullversion()) |
3 | 737 |
|
738 |
self.Info("%s %s", env, str(self.home)) |
|
739 |
self.Info("Set-up %s", str(self.raptorXML)) |
|
740 |
self.Info("Command-line-arguments %s", " ".join(self.args)) |
|
741 |
self.Info("Current working directory %s", os.getcwd()) |
|
59
0f7d6c11c675
Environment variables in the log are sorted alphabetically.
Stefan Karlsson <stefan.karlsson@nokia.com>
parents:
29
diff
changeset
|
742 |
|
3 | 743 |
# the inherited environment |
59
0f7d6c11c675
Environment variables in the log are sorted alphabetically.
Stefan Karlsson <stefan.karlsson@nokia.com>
parents:
29
diff
changeset
|
744 |
for e, value in sorted( os.environ.items() ): |
5 | 745 |
self.Info("Environment %s=%s", e, value.replace("]]>", "]]>")) |
3 | 746 |
|
747 |
# and some general debug stuff |
|
748 |
self.Debug("Platform %s", "-".join(hostplatform)) |
|
749 |
self.Debug("Filesystem %s", self.filesystem) |
|
750 |
self.Debug("Python %d.%d.%d", *sys.version_info[:3]) |
|
751 |
self.Debug("Command-line-parser %s", self.CLI) |
|
752 |
||
753 |
for e,value in self.override.items(): |
|
754 |
self.Debug("Override %s = %s", e, value) |
|
755 |
||
756 |
for t in self.targets: |
|
757 |
self.Debug("Target %s", t) |
|
758 |
||
759 |
||
760 |
def ConfigFile(self): |
|
761 |
if not self.raptorXML.isFile(): |
|
762 |
return |
|
763 |
||
764 |
self.cache.Load(self.raptorXML) |
|
765 |
||
766 |
# find the 'defaults.raptor' variant and extract the values |
|
767 |
try: |
|
768 |
var = self.cache.FindNamedVariant("defaults.init") |
|
769 |
evaluator = self.GetEvaluator( None, raptor_data.BuildUnit(var.name,[var]) ) |
|
770 |
||
771 |
for key, value in defaults.items(): |
|
772 |
newValue = evaluator.Resolve(key) |
|
773 |
||
774 |
if newValue != None: |
|
775 |
# got a string for the value |
|
776 |
if type(value) == types.BooleanType: |
|
777 |
newValue = (newValue.lower() != "false") |
|
778 |
elif type(value) == types.IntType: |
|
779 |
newValue = int(newValue) |
|
780 |
elif isinstance(value, generic_path.Path): |
|
781 |
newValue = generic_path.Path(newValue) |
|
782 |
||
783 |
self.__dict__[key] = newValue |
|
784 |
||
785 |
except KeyError: |
|
786 |
# it is OK to not have this but useful to say it wasn't there |
|
787 |
self.Info("No 'defaults.init' configuration found in " + str(self.raptorXML)) |
|
788 |
||
789 |
||
790 |
def CommandLine(self, args): |
|
791 |
# remember the arguments for the log |
|
792 |
self.args = args |
|
793 |
||
794 |
# assuming self.CLI = "raptor_cli" |
|
795 |
more_to_do = raptor_cli.GetArgs(self, args) |
|
796 |
||
797 |
# resolve inter-argument dependencies. |
|
798 |
# --what or --check implies the WHAT target and FilterWhat Filter |
|
799 |
if self.doWhat or self.doCheck: |
|
800 |
self.targets = ["WHAT"] |
|
801 |
self.filterList = "filterwhat" |
|
802 |
||
803 |
else: |
|
804 |
# 1. CLEAN/CLEANEXPORT/REALLYCLEAN needs the FilterClean filter. |
|
805 |
# 2. Targets that clean should not be combined with other targets. |
|
806 |
||
807 |
targets = [x.lower() for x in self.targets] |
|
808 |
||
809 |
CL = "clean" |
|
810 |
CE = "cleanexport" |
|
811 |
RC = "reallyclean" |
|
812 |
||
813 |
is_clean = 0 |
|
814 |
is_suspicious_clean = 0 |
|
815 |
||
816 |
if CL in targets and CE in targets: |
|
817 |
is_clean = 1 |
|
818 |
if len(targets) > 2: |
|
819 |
is_suspicious_clean = 1 |
|
820 |
elif RC in targets or CL in targets or CE in targets: |
|
821 |
is_clean = 1 |
|
822 |
if len(targets) > 1: |
|
823 |
is_suspicious_clean = 1 |
|
824 |
||
825 |
if is_clean: |
|
826 |
self.filterList += ",filterclean" |
|
827 |
if is_suspicious_clean: |
|
828 |
self.Warn('CLEAN, CLEANEXPORT and a REALLYCLEAN should not be combined with other targets as the result is unpredictable.') |
|
533
408bfff46ad7
fix performance: copy resources in the frontend. Helps cluster builds since remote copying is inefficient.
timothy.murphy@nokia.com
parents:
374
diff
changeset
|
829 |
else: |
408bfff46ad7
fix performance: copy resources in the frontend. Helps cluster builds since remote copying is inefficient.
timothy.murphy@nokia.com
parents:
374
diff
changeset
|
830 |
""" Copyfile implements the <copy> tag which is primarily useful with cluster builds. |
408bfff46ad7
fix performance: copy resources in the frontend. Helps cluster builds since remote copying is inefficient.
timothy.murphy@nokia.com
parents:
374
diff
changeset
|
831 |
It allows file copying to occur on the primary build host rather than on the cluster. |
408bfff46ad7
fix performance: copy resources in the frontend. Helps cluster builds since remote copying is inefficient.
timothy.murphy@nokia.com
parents:
374
diff
changeset
|
832 |
This is more efficient. |
408bfff46ad7
fix performance: copy resources in the frontend. Helps cluster builds since remote copying is inefficient.
timothy.murphy@nokia.com
parents:
374
diff
changeset
|
833 |
""" |
408bfff46ad7
fix performance: copy resources in the frontend. Helps cluster builds since remote copying is inefficient.
timothy.murphy@nokia.com
parents:
374
diff
changeset
|
834 |
self.filterList += ",filtercopyfile" |
3 | 835 |
|
836 |
if not more_to_do: |
|
837 |
self.skipAll = True # nothing else to do |
|
838 |
||
839 |
def ProcessConfig(self): |
|
840 |
# this function will perform additional processing of config |
|
841 |
||
842 |
# create list of generic paths |
|
843 |
self.configPath = generic_path.NormalisePathList(self.systemConfig.split(os.pathsep)) |
|
844 |
||
845 |
def LoadCache(self): |
|
846 |
def mkAbsolute(aGenericPath): |
|
847 |
""" internal function to make a generic_path.Path |
|
848 |
absolute if required""" |
|
849 |
if not aGenericPath.isAbsolute(): |
|
850 |
return self.home.Append(aGenericPath) |
|
851 |
else: |
|
852 |
return aGenericPath |
|
59
0f7d6c11c675
Environment variables in the log are sorted alphabetically.
Stefan Karlsson <stefan.karlsson@nokia.com>
parents:
29
diff
changeset
|
853 |
|
3 | 854 |
# make generic paths absolute (if required) |
855 |
self.configPath = map(mkAbsolute, self.configPath) |
|
856 |
self.cache.Load(self.configPath) |
|
857 |
||
858 |
if not self.systemFLM.isAbsolute(): |
|
859 |
self.systemFLM = self.home.Append(self.systemFLM) |
|
860 |
||
861 |
self.cache.Load(self.systemFLM) |
|
862 |
||
863 |
def GetBuildUnitsToBuild(self, configNames): |
|
59
0f7d6c11c675
Environment variables in the log are sorted alphabetically.
Stefan Karlsson <stefan.karlsson@nokia.com>
parents:
29
diff
changeset
|
864 |
"""Return a list of the configuration objects that correspond to the |
3 | 865 |
list of configuration names in the configNames parameter. |
866 |
||
867 |
raptor.GetBuildUnitsToBuild(["armv5", "winscw"]) |
|
868 |
>>> [ config1, config2, ... , configN ] |
|
59
0f7d6c11c675
Environment variables in the log are sorted alphabetically.
Stefan Karlsson <stefan.karlsson@nokia.com>
parents:
29
diff
changeset
|
869 |
""" |
3 | 870 |
|
871 |
if len(configNames) == 0: |
|
872 |
# use default config |
|
873 |
if len(self.defaultConfig) == 0: |
|
874 |
self.Warn("No default configuration name") |
|
875 |
else: |
|
876 |
configNames.append(self.defaultConfig) |
|
877 |
||
374
96629a6f26e4
fault tolerant XML groups
Richard Taylor <richard.i.taylor@nokia.com>
parents:
372
diff
changeset
|
878 |
buildUnitsToBuild = raptor_data.GetBuildUnits(configNames, self.cache, self) |
3 | 879 |
|
880 |
for b in buildUnitsToBuild: |
|
881 |
self.Info("Buildable configuration '%s'", b.name) |
|
882 |
||
883 |
if len(buildUnitsToBuild) == 0: |
|
884 |
self.Error("No build configurations given") |
|
885 |
||
886 |
return buildUnitsToBuild |
|
887 |
||
888 |
def CheckToolset(self, evaluator, configname): |
|
59
0f7d6c11c675
Environment variables in the log are sorted alphabetically.
Stefan Karlsson <stefan.karlsson@nokia.com>
parents:
29
diff
changeset
|
889 |
"""Check the toolset for a particular config, allow other objects access |
3 | 890 |
to the toolset for this build (e.g. the raptor_make class).""" |
891 |
if self.toolset is None: |
|
892 |
if self.toolcheck == 'on': |
|
893 |
self.toolset = raptor_data.ToolSet(log=self) |
|
894 |
elif self.toolcheck == 'forced' : |
|
895 |
self.toolset = raptor_data.ToolSet(log=self, forced=True) |
|
896 |
else: |
|
897 |
return True |
|
898 |
||
899 |
return self.toolset.check(evaluator, configname) |
|
900 |
||
901 |
||
902 |
def CheckConfigs(self, configs): |
|
903 |
""" Tool checking for all the buildable configurations |
|
904 |
NB. We are allowed to use different tool versions for different |
|
905 |
configurations.""" |
|
906 |
||
907 |
tools_ok = True |
|
908 |
for b in configs: |
|
909 |
self.Debug("Tool check for %s", b.name) |
|
910 |
evaluator = self.GetEvaluator(None, b, gathertools=True) |
|
911 |
tools_ok = tools_ok and self.CheckToolset(evaluator, b.name) |
|
912 |
||
913 |
return tools_ok |
|
914 |
||
915 |
||
916 |
||
917 |
def GatherSysModelLayers(self, systemModel, systemDefinitionRequestedLayers): |
|
918 |
"""Return a list of lists of components to be built. |
|
919 |
||
920 |
components = GatherSysModelLayers(self, configurations) |
|
921 |
>>> set("abc/group/bld.inf","def/group/bld.inf, ....") |
|
922 |
""" |
|
923 |
layersToBuild = [] |
|
924 |
||
925 |
if systemModel: |
|
926 |
# We either process all available layers in the system model, or a subset of |
|
927 |
# layers specified on the command line. In both cases, the processing is the same, |
|
928 |
# and can be subject to ordering if explicitly requested. |
|
929 |
systemModel.DumpInfo() |
|
930 |
||
931 |
if systemDefinitionRequestedLayers: |
|
932 |
layersToProcess = systemDefinitionRequestedLayers |
|
933 |
else: |
|
934 |
layersToProcess = systemModel.GetLayerNames() |
|
935 |
||
936 |
for layer in layersToProcess: |
|
937 |
systemModel.DumpLayerInfo(layer) |
|
938 |
||
939 |
if systemModel.IsLayerBuildable(layer): |
|
5 | 940 |
layersToBuild.append(Layer(layer, |
3 | 941 |
systemModel.GetLayerComponents(layer))) |
942 |
||
943 |
return layersToBuild |
|
944 |
||
945 |
||
5 | 946 |
# Add bld.inf or system definition xml to command line layers (depending on preference) |
3 | 947 |
def FindSysDefIn(self, aDir = None): |
948 |
# Find a system definition file |
|
949 |
||
950 |
if aDir is None: |
|
951 |
dir = generic_path.CurrentDir() |
|
952 |
else: |
|
953 |
dir = generic_path.Path(aDir) |
|
954 |
||
955 |
sysDef = dir.Append(self.systemDefinition) |
|
956 |
if not sysDef.isFile(): |
|
957 |
return None |
|
958 |
||
959 |
return sysDef |
|
960 |
||
961 |
||
962 |
def FindComponentIn(self, aDir = None): |
|
59
0f7d6c11c675
Environment variables in the log are sorted alphabetically.
Stefan Karlsson <stefan.karlsson@nokia.com>
parents:
29
diff
changeset
|
963 |
# look for a bld.inf |
3 | 964 |
|
965 |
if aDir is None: |
|
966 |
dir = generic_path.CurrentDir() |
|
967 |
else: |
|
968 |
dir = generic_path.Path(aDir) |
|
969 |
||
970 |
bldInf = dir.Append(self.buildInformation) |
|
971 |
||
972 |
if bldInf.isFile(): |
|
973 |
return bldInf |
|
974 |
||
975 |
return None |
|
976 |
||
977 |
def GenerateGenericSpecs(self, configsToBuild): |
|
978 |
# if a Configuration has any config-wide interfaces |
|
979 |
# then add a Specification node to call each of them. |
|
980 |
configWide = {} |
|
981 |
genericSpecs = [] |
|
982 |
for c in configsToBuild: |
|
983 |
evaluator = self.GetEvaluator(None, c) |
|
984 |
iface = evaluator.Get("INTERFACE.config") |
|
985 |
if iface: |
|
986 |
if iface in configWide: |
|
987 |
# seen it already, so reuse the node |
|
988 |
filter = configWide[iface] |
|
989 |
filter.AddConfigCondition(c.name) |
|
990 |
else: |
|
991 |
# create a new node |
|
5 | 992 |
filter = raptor_data.Filter(name = "config_wide") |
3 | 993 |
filter.AddConfigCondition(c.name) |
994 |
for i in iface.split(): |
|
995 |
spec = raptor_data.Specification(i) |
|
996 |
spec.SetInterface(i) |
|
997 |
filter.AddChildSpecification(spec) |
|
998 |
# remember it, use it |
|
999 |
configWide[iface] = filter |
|
1000 |
genericSpecs.append(filter) |
|
1001 |
||
1002 |
return genericSpecs |
|
1003 |
||
1004 |
||
1005 |
def GetEvaluator(self, specification, configuration, gathertools=False): |
|
1006 |
""" this will perform some caching later """ |
|
5 | 1007 |
return raptor_data.Evaluator(specification, configuration, gathertools=gathertools, cache = self.cache) |
3 | 1008 |
|
1009 |
||
5 | 1010 |
def Make(self, makefileset): |
1011 |
if not self.noBuild and makefileset is not None: |
|
1012 |
if self.maker.Make(makefileset): |
|
1013 |
self.Info("The make-engine exited successfully.") |
|
1014 |
return True |
|
1015 |
else: |
|
1016 |
self.Error("The make-engine exited with errors.") |
|
1017 |
return False |
|
1018 |
else: |
|
1019 |
self.Info("No build performed") |
|
3 | 1020 |
|
1021 |
||
1022 |
||
1023 |
def Report(self): |
|
1024 |
if self.quiet: |
|
1025 |
return |
|
1026 |
||
1027 |
self.endtime = time.time() |
|
1028 |
self.runtime = int(0.5 + self.endtime - self.starttime) |
|
1029 |
self.raptor_params.runtime = self.runtime |
|
1030 |
self.Info("Run time %s seconds" % self.runtime) |
|
1031 |
||
1032 |
def AssertBuildOK(self): |
|
5 | 1033 |
"""Raise a BuildCannotProgressException if no further processing is required |
3 | 1034 |
""" |
1035 |
if self.Skip(): |
|
5 | 1036 |
raise BuildCannotProgressException("") |
3 | 1037 |
|
1038 |
return True |
|
1039 |
||
1040 |
def Skip(self): |
|
1041 |
"""Indicate not to perform operation if: |
|
1042 |
fatalErrorState is set |
|
1043 |
an error code is set but we're not in keepgoing mode |
|
1044 |
""" |
|
1045 |
return self.fatalErrorState or ((self.errorCode != 0) and (not self.keepGoing)) |
|
1046 |
||
1047 |
||
1048 |
# log file open/close |
|
1049 |
||
1050 |
def OpenLog(self): |
|
1051 |
"""Open a log file for the various I/O methods to write to.""" |
|
1052 |
||
1053 |
try: |
|
1054 |
# Find all the raptor plugins and put them into a pluginbox. |
|
1055 |
if not self.systemPlugins.isAbsolute(): |
|
1056 |
self.systemPlugins = self.home.Append(self.systemPlugins) |
|
1057 |
||
1058 |
self.pbox = pluginbox.PluginBox(str(self.systemPlugins)) |
|
1059 |
||
1060 |
self.raptor_params = BuildStats(self) |
|
1061 |
||
1062 |
# Open the requested plugins using the pluginbox |
|
1063 |
self.out.open(self.raptor_params, self.filterList.split(','), self.pbox) |
|
1064 |
||
1065 |
# log header |
|
1066 |
self.out.write("<?xml version=\"1.0\" encoding=\"ISO-8859-1\" ?>\n") |
|
1067 |
||
1068 |
namespace = "http://symbian.com/xml/build/log" |
|
29
ee00c00df073
Catchup to Perforce WIP with timing, python24
timothy.murphy@nokia.com
parents:
21
diff
changeset
|
1069 |
progress_namespace = "http://symbian.com/xml/build/log/progress" |
3 | 1070 |
schema = "http://symbian.com/xml/build/log/1_0.xsd" |
1071 |
||
29
ee00c00df073
Catchup to Perforce WIP with timing, python24
timothy.murphy@nokia.com
parents:
21
diff
changeset
|
1072 |
self.out.write("<buildlog sbs_version=\"%s\" xmlns=\"%s\" xmlns:progress=\"%s\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xsi:schemaLocation=\"%s %s\">\n" |
ee00c00df073
Catchup to Perforce WIP with timing, python24
timothy.murphy@nokia.com
parents:
21
diff
changeset
|
1073 |
% (raptor_version.fullversion(), namespace, progress_namespace, namespace, schema)) |
3 | 1074 |
self.logOpen = True |
1075 |
except Exception,e: |
|
1076 |
self.out = sys.stdout # make sure that we can actually get errors out. |
|
1077 |
self.logOpen = False |
|
9 | 1078 |
self.FatalError("Unable to open the output logs: %s" % str(e)) |
3 | 1079 |
|
1080 |
def CloseLog(self): |
|
1081 |
if self.logOpen: |
|
1082 |
self.out.summary() |
|
1083 |
self.out.write("</buildlog>\n") |
|
1084 |
||
1085 |
if not self.out.close(): |
|
1086 |
self.errorCode = 1 |
|
1087 |
||
1088 |
||
1089 |
def Cleanup(self): |
|
1090 |
# ensure that the toolset cache is flushed. |
|
1091 |
if self.toolset is not None: |
|
1092 |
self.toolset.write() |
|
1093 |
||
1094 |
# I/O methods |
|
1095 |
||
1096 |
@staticmethod |
|
1097 |
def attributeString(dictionary): |
|
1098 |
"turn a dictionary into a string of XML attributes" |
|
1099 |
atts = "" |
|
1100 |
for a,v in dictionary.items(): |
|
1101 |
atts += " " + a + "='" + v + "'" |
|
1102 |
return atts |
|
59
0f7d6c11c675
Environment variables in the log are sorted alphabetically.
Stefan Karlsson <stefan.karlsson@nokia.com>
parents:
29
diff
changeset
|
1103 |
|
3 | 1104 |
def Info(self, format, *extras, **attributes): |
1105 |
"""Send an information message to the configured channel |
|
1106 |
(XML control characters will be escaped) |
|
1107 |
""" |
|
1108 |
self.out.write("<info" + self.attributeString(attributes) + ">" + |
|
1109 |
escape(format % extras) + "</info>\n") |
|
59
0f7d6c11c675
Environment variables in the log are sorted alphabetically.
Stefan Karlsson <stefan.karlsson@nokia.com>
parents:
29
diff
changeset
|
1110 |
|
29
ee00c00df073
Catchup to Perforce WIP with timing, python24
timothy.murphy@nokia.com
parents:
21
diff
changeset
|
1111 |
def InfoDiscovery(self, object_type, count): |
ee00c00df073
Catchup to Perforce WIP with timing, python24
timothy.murphy@nokia.com
parents:
21
diff
changeset
|
1112 |
if self.timing: |
ee00c00df073
Catchup to Perforce WIP with timing, python24
timothy.murphy@nokia.com
parents:
21
diff
changeset
|
1113 |
try: |
ee00c00df073
Catchup to Perforce WIP with timing, python24
timothy.murphy@nokia.com
parents:
21
diff
changeset
|
1114 |
self.out.write(raptor_timing.Timing.discovery_string(object_type = object_type, |
ee00c00df073
Catchup to Perforce WIP with timing, python24
timothy.murphy@nokia.com
parents:
21
diff
changeset
|
1115 |
count = count)) |
ee00c00df073
Catchup to Perforce WIP with timing, python24
timothy.murphy@nokia.com
parents:
21
diff
changeset
|
1116 |
except Exception, exception: |
374
96629a6f26e4
fault tolerant XML groups
Richard Taylor <richard.i.taylor@nokia.com>
parents:
372
diff
changeset
|
1117 |
self.Error(exception.Text, function = "InfoDiscoveryTime") |
59
0f7d6c11c675
Environment variables in the log are sorted alphabetically.
Stefan Karlsson <stefan.karlsson@nokia.com>
parents:
29
diff
changeset
|
1118 |
|
29
ee00c00df073
Catchup to Perforce WIP with timing, python24
timothy.murphy@nokia.com
parents:
21
diff
changeset
|
1119 |
def InfoStartTime(self, object_type, task, key): |
ee00c00df073
Catchup to Perforce WIP with timing, python24
timothy.murphy@nokia.com
parents:
21
diff
changeset
|
1120 |
if self.timing: |
ee00c00df073
Catchup to Perforce WIP with timing, python24
timothy.murphy@nokia.com
parents:
21
diff
changeset
|
1121 |
try: |
ee00c00df073
Catchup to Perforce WIP with timing, python24
timothy.murphy@nokia.com
parents:
21
diff
changeset
|
1122 |
self.out.write(raptor_timing.Timing.start_string(object_type = object_type, |
ee00c00df073
Catchup to Perforce WIP with timing, python24
timothy.murphy@nokia.com
parents:
21
diff
changeset
|
1123 |
task = task, key = key)) |
ee00c00df073
Catchup to Perforce WIP with timing, python24
timothy.murphy@nokia.com
parents:
21
diff
changeset
|
1124 |
except Exception, exception: |
374
96629a6f26e4
fault tolerant XML groups
Richard Taylor <richard.i.taylor@nokia.com>
parents:
372
diff
changeset
|
1125 |
self.Error(exception.Text, function = "InfoStartTime") |
59
0f7d6c11c675
Environment variables in the log are sorted alphabetically.
Stefan Karlsson <stefan.karlsson@nokia.com>
parents:
29
diff
changeset
|
1126 |
|
29
ee00c00df073
Catchup to Perforce WIP with timing, python24
timothy.murphy@nokia.com
parents:
21
diff
changeset
|
1127 |
def InfoEndTime(self, object_type, task, key): |
ee00c00df073
Catchup to Perforce WIP with timing, python24
timothy.murphy@nokia.com
parents:
21
diff
changeset
|
1128 |
if self.timing: |
ee00c00df073
Catchup to Perforce WIP with timing, python24
timothy.murphy@nokia.com
parents:
21
diff
changeset
|
1129 |
try: |
ee00c00df073
Catchup to Perforce WIP with timing, python24
timothy.murphy@nokia.com
parents:
21
diff
changeset
|
1130 |
self.out.write(raptor_timing.Timing.end_string(object_type = object_type, |
ee00c00df073
Catchup to Perforce WIP with timing, python24
timothy.murphy@nokia.com
parents:
21
diff
changeset
|
1131 |
task = task, key = key)) |
ee00c00df073
Catchup to Perforce WIP with timing, python24
timothy.murphy@nokia.com
parents:
21
diff
changeset
|
1132 |
except Exception, exception: |
374
96629a6f26e4
fault tolerant XML groups
Richard Taylor <richard.i.taylor@nokia.com>
parents:
372
diff
changeset
|
1133 |
self.Error(exception.Text, function = "InfoEndTime") |
3 | 1134 |
|
1135 |
def Debug(self, format, *extras, **attributes): |
|
1136 |
"Send a debugging message to the configured channel" |
|
1137 |
||
1138 |
# the debug text is out of our control so wrap it in a CDATA |
|
1139 |
# in case it contains characters special to XML... like <> |
|
1140 |
if self.debugOutput: |
|
1141 |
self.out.write("<debug" + self.attributeString(attributes) + ">" + |
|
1142 |
"><![CDATA[\n" + (format % extras) + "\n]]></debug>\n") |
|
1143 |
||
1144 |
def Warn(self, format, *extras, **attributes): |
|
1145 |
"""Send a warning message to the configured channel |
|
1146 |
(XML control characters will be escaped) |
|
1147 |
""" |
|
59
0f7d6c11c675
Environment variables in the log are sorted alphabetically.
Stefan Karlsson <stefan.karlsson@nokia.com>
parents:
29
diff
changeset
|
1148 |
self.out.write("<warning" + self.attributeString(attributes) + ">" + |
3 | 1149 |
escape(format % extras) + "</warning>\n") |
1150 |
||
1151 |
def FatalError(self, format, *extras, **attributes): |
|
1152 |
"""Send an error message to the configured channel. This implies such a serious |
|
1153 |
error that the entire build must be shut down asap whilst still finishing off |
|
1154 |
correctly whatever housekeeping is possible e.g. producing error reports. |
|
1155 |
Remains quiet if the raptor object is already in a fatal state since there |
|
1156 |
further errors are probably triggered by the first. |
|
1157 |
""" |
|
1158 |
if not self.fatalErrorState: |
|
59
0f7d6c11c675
Environment variables in the log are sorted alphabetically.
Stefan Karlsson <stefan.karlsson@nokia.com>
parents:
29
diff
changeset
|
1159 |
self.out.write("<error" + self.attributeString(attributes) + ">" + |
3 | 1160 |
(format % extras) + "</error>\n") |
1161 |
self.errorCode = 1 |
|
1162 |
self.fatalErrorState = True |
|
1163 |
||
1164 |
def Error(self, format, *extras, **attributes): |
|
1165 |
"""Send an error message to the configured channel |
|
1166 |
(XML control characters will be escaped) |
|
1167 |
""" |
|
59
0f7d6c11c675
Environment variables in the log are sorted alphabetically.
Stefan Karlsson <stefan.karlsson@nokia.com>
parents:
29
diff
changeset
|
1168 |
self.out.write("<error" + self.attributeString(attributes) + ">" + |
3 | 1169 |
escape(format % extras) + "</error>\n") |
1170 |
self.errorCode = 1 |
|
1171 |
||
1172 |
||
1173 |
def PrintXML(self, format, *extras): |
|
1174 |
"Print to configured channel (no newline is added) (assumes valid xml)" |
|
1175 |
if format: |
|
1176 |
self.out.write(format % extras) |
|
1177 |
||
5 | 1178 |
def GetLayersFromCLI(self): |
1179 |
"""Returns the list of layers as specified by the |
|
3 | 1180 |
commandline interface to Raptor e.g. parameters |
1181 |
or the current directory""" |
|
5 | 1182 |
layers=[] |
3 | 1183 |
# Look for bld.infs or sysdefs in the current dir if none were specified |
1184 |
if self.systemDefinitionFile == None and len(self.commandlineComponents) == 0: |
|
1185 |
if not self.preferBuildInfoToSystemDefinition: |
|
1186 |
cwd = os.getcwd() |
|
1187 |
self.systemDefinitionFile = self.FindSysDefIn(cwd) |
|
1188 |
if self.systemDefinitionFile == None: |
|
1189 |
aComponent = self.FindComponentIn(cwd) |
|
1190 |
if aComponent: |
|
5 | 1191 |
layers.append(Layer('default',[aComponent])) |
3 | 1192 |
else: |
1193 |
aComponent = self.FindComponentIn(cwd) |
|
1194 |
if aComponent is None: |
|
1195 |
self.systemDefinitionFile = self.FindSysDefIn(cwd) |
|
1196 |
else: |
|
5 | 1197 |
layers.append(Layer('default',[aComponent])) |
3 | 1198 |
|
5 | 1199 |
if len(layers) <= 0 and self.systemDefinitionFile == None: |
3 | 1200 |
self.Warn("No default bld.inf or system definition file found in current directory (%s)", cwd) |
1201 |
||
1202 |
# If we now have a System Definition to parse then get the layers of components |
|
1203 |
if self.systemDefinitionFile != None: |
|
1204 |
systemModel = raptor_xml.SystemModel(self, self.systemDefinitionFile, self.systemDefinitionBase) |
|
5 | 1205 |
layers = self.GatherSysModelLayers(systemModel, self.systemDefinitionRequestedLayers) |
59
0f7d6c11c675
Environment variables in the log are sorted alphabetically.
Stefan Karlsson <stefan.karlsson@nokia.com>
parents:
29
diff
changeset
|
1206 |
|
3 | 1207 |
# Now get components specified on a commandline - build them after any |
1208 |
# layers in the system definition. |
|
1209 |
if len(self.commandlineComponents) > 0: |
|
5 | 1210 |
layers.append(Layer('commandline',self.commandlineComponents)) |
3 | 1211 |
|
1212 |
# If we aren't building components in order then flatten down |
|
1213 |
# the groups |
|
1214 |
if not self.systemDefinitionOrderLayers: |
|
1215 |
# Flatten the layers into one group of components if |
|
1216 |
# we are not required to build them in order. |
|
5 | 1217 |
newcg = Layer("all") |
1218 |
for cg in layers: |
|
1219 |
for c in cg: |
|
1220 |
newcg.add(c) |
|
1221 |
layers = [newcg] |
|
3 | 1222 |
|
5 | 1223 |
return layers |
3 | 1224 |
|
1225 |
def Build(self): |
|
1226 |
||
1227 |
if self.mission != Raptor.M_BUILD: # help or version requested instead. |
|
1228 |
return 0 |
|
1229 |
||
1230 |
# open the log file |
|
1231 |
self.OpenLog() |
|
1232 |
||
1233 |
||
1234 |
try: |
|
1235 |
# show the command and platform info |
|
1236 |
self.AssertBuildOK() |
|
1237 |
self.Introduction() |
|
1238 |
# establish an object cache |
|
1239 |
self.AssertBuildOK() |
|
59
0f7d6c11c675
Environment variables in the log are sorted alphabetically.
Stefan Karlsson <stefan.karlsson@nokia.com>
parents:
29
diff
changeset
|
1240 |
|
3 | 1241 |
self.LoadCache() |
1242 |
||
1243 |
# find out what configurations to build |
|
1244 |
self.AssertBuildOK() |
|
1245 |
buildUnitsToBuild = self.GetBuildUnitsToBuild(self.configNames) |
|
1246 |
||
374
96629a6f26e4
fault tolerant XML groups
Richard Taylor <richard.i.taylor@nokia.com>
parents:
372
diff
changeset
|
1247 |
if len(buildUnitsToBuild) == 0: |
96629a6f26e4
fault tolerant XML groups
Richard Taylor <richard.i.taylor@nokia.com>
parents:
372
diff
changeset
|
1248 |
raise BuildCannotProgressException("No configurations to build.") |
96629a6f26e4
fault tolerant XML groups
Richard Taylor <richard.i.taylor@nokia.com>
parents:
372
diff
changeset
|
1249 |
|
5 | 1250 |
self.buildUnitsToBuild = buildUnitsToBuild |
1251 |
||
3 | 1252 |
# find out what components to build, and in what way |
5 | 1253 |
layers = [] |
3 | 1254 |
|
1255 |
self.AssertBuildOK() |
|
1256 |
if len(buildUnitsToBuild) >= 0: |
|
5 | 1257 |
layers = self.GetLayersFromCLI() |
3 | 1258 |
|
5 | 1259 |
componentCount = reduce(lambda x,y : x + y, [len(cg) for cg in layers]) |
3 | 1260 |
|
1261 |
if not componentCount > 0: |
|
5 | 1262 |
raise BuildCannotProgressException("No components to build.") |
3 | 1263 |
|
1264 |
# check the configurations (tools versions) |
|
1265 |
self.AssertBuildOK() |
|
1266 |
||
1267 |
if self.toolcheck != 'off': |
|
1268 |
self.CheckConfigs(buildUnitsToBuild) |
|
1269 |
else: |
|
191
3bfc260b6d61
fix: better error messages when an incorrect make engine is specified. Requires that all make engine variants should extend "make_engine".
timothy.murphy@nokia.com
parents:
136
diff
changeset
|
1270 |
self.Info("Not Checking Tool Versions") |
3 | 1271 |
|
1272 |
self.AssertBuildOK() |
|
1273 |
||
5 | 1274 |
# Setup a make engine. |
1275 |
if not self.maker: |
|
191
3bfc260b6d61
fix: better error messages when an incorrect make engine is specified. Requires that all make engine variants should extend "make_engine".
timothy.murphy@nokia.com
parents:
136
diff
changeset
|
1276 |
try: |
193
8e61308a207e
don't break sbs_init.xml files with make engine validation changes
timothy.murphy@nokia.com
parents:
191
diff
changeset
|
1277 |
self.maker = raptor_make.MakeEngine(self, self.makeEngine) |
191
3bfc260b6d61
fix: better error messages when an incorrect make engine is specified. Requires that all make engine variants should extend "make_engine".
timothy.murphy@nokia.com
parents:
136
diff
changeset
|
1278 |
except raptor_make.BadMakeEngineException,e: |
3bfc260b6d61
fix: better error messages when an incorrect make engine is specified. Requires that all make engine variants should extend "make_engine".
timothy.murphy@nokia.com
parents:
136
diff
changeset
|
1279 |
self.Error("Unable to use make engine: %s " % str(e)) |
3bfc260b6d61
fix: better error messages when an incorrect make engine is specified. Requires that all make engine variants should extend "make_engine".
timothy.murphy@nokia.com
parents:
136
diff
changeset
|
1280 |
|
3 | 1281 |
|
5 | 1282 |
self.AssertBuildOK() |
1283 |
||
1284 |
# if self.doParallelParsing and not (len(layers) == 1 and len(layers[0]) == 1): |
|
3 | 1285 |
if self.doParallelParsing: |
1286 |
# Create a Makefile to parse components in parallel and build them |
|
5 | 1287 |
for l in layers: |
1288 |
l.meta_realise(self) |
|
3 | 1289 |
else: |
1290 |
# Parse components serially, creating one set of makefiles |
|
1291 |
# create non-component specs |
|
5 | 1292 |
self.generic_specs = self.GenerateGenericSpecs(buildUnitsToBuild) |
3 | 1293 |
|
1294 |
self.AssertBuildOK() |
|
5 | 1295 |
for l in layers: |
3 | 1296 |
# create specs for a specific group of components |
5 | 1297 |
l.realise(self) |
59
0f7d6c11c675
Environment variables in the log are sorted alphabetically.
Stefan Karlsson <stefan.karlsson@nokia.com>
parents:
29
diff
changeset
|
1298 |
|
5 | 1299 |
except BuildCannotProgressException,b: |
3 | 1300 |
if str(b) != "": |
1301 |
self.Info(str(b)) |
|
1302 |
||
1303 |
# final report |
|
1304 |
if not self.fatalErrorState: |
|
1305 |
self.Report() |
|
1306 |
||
1307 |
self.Cleanup() |
|
1308 |
||
1309 |
# close the log file |
|
1310 |
self.CloseLog() |
|
1311 |
||
1312 |
return self.errorCode |
|
1313 |
||
1314 |
@classmethod |
|
1315 |
def CreateCommandlineBuild(cls, argv): |
|
1316 |
""" Perform a 'typical' build. """ |
|
1317 |
# configure the framework |
|
1318 |
||
1319 |
build = Raptor() |
|
1320 |
build.AssertBuildOK() |
|
1321 |
build.ConfigFile() |
|
1322 |
build.ProcessConfig() |
|
1323 |
build.CommandLine(argv) |
|
1324 |
||
59
0f7d6c11c675
Environment variables in the log are sorted alphabetically.
Stefan Karlsson <stefan.karlsson@nokia.com>
parents:
29
diff
changeset
|
1325 |
return build |
3 | 1326 |
|
1327 |
||
1328 |
||
1329 |
# Class for passing constricted parameters to filters |
|
1330 |
class BuildStats(object): |
|
1331 |
||
1332 |
def __init__(self, raptor_instance): |
|
115
5869e06bf2ac
Cause whatcomp output to use the incoming epocroot value. i.e. if epocroot is relative then so is the what output.
timothy.murphy@nokia.com
parents:
59
diff
changeset
|
1333 |
self.incoming_epocroot = incoming_epocroot |
5869e06bf2ac
Cause whatcomp output to use the incoming epocroot value. i.e. if epocroot is relative then so is the what output.
timothy.murphy@nokia.com
parents:
59
diff
changeset
|
1334 |
self.epocroot = epocroot |
3 | 1335 |
self.logFileName = raptor_instance.logFileName |
1336 |
self.quiet = raptor_instance.quiet |
|
1337 |
self.doCheck = raptor_instance.doCheck |
|
1338 |
self.doWhat = raptor_instance.doWhat |
|
1339 |
self.platform = hostplatform |
|
1340 |
self.skipAll = raptor_instance.fatalErrorState |
|
1341 |
self.timestring = raptor_instance.timestring |
|
1342 |
self.targets = raptor_instance.targets |
|
1343 |
self.runtime = 0 |
|
1344 |
self.name = name |
|
1345 |
||
1346 |
||
1347 |
# raptor module functions |
|
1348 |
||
1349 |
def Main(argv): |
|
1350 |
"""The main entry point for Raptor. |
|
1351 |
||
1352 |
argv is a list of command-line parameters, |
|
1353 |
NOT including the name of the calling script. |
|
1354 |
||
1355 |
The return value is zero for success and non-zero for failure.""" |
|
1356 |
||
1357 |
DisplayBanner() |
|
1358 |
||
1359 |
# object which represents a build |
|
1360 |
b = Raptor.CreateCommandlineBuild(argv) |
|
1361 |
||
5 | 1362 |
return b.Build() |
3 | 1363 |
|
1364 |
||
1365 |
def DisplayBanner(): |
|
1366 |
"""Stuff that needs printing out for every command.""" |
|
1367 |
pass |
|
1368 |
||
1369 |
||
1370 |
||
5 | 1371 |
|
3 | 1372 |
# end of the raptor module |