blob: 06bad495acfd35541b5d36b31ae72848c7835016 [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001#
2# Copyright (C) 2003, 2004 Chris Larson
3# Copyright (C) 2003, 2004 Phil Blundell
4# Copyright (C) 2003 - 2005 Michael 'Mickey' Lauer
5# Copyright (C) 2005 Holger Hans Peter Freyther
6# Copyright (C) 2005 ROAD GmbH
7# Copyright (C) 2006 Richard Purdie
8#
Brad Bishopc342db32019-05-15 21:57:59 -04009# SPDX-License-Identifier: GPL-2.0-only
Patrick Williamsc124f4f2015-09-15 14:41:29 -050010#
Patrick Williamsc124f4f2015-09-15 14:41:29 -050011
12import os
13import sys
14import logging
15import optparse
16import warnings
Patrick Williamsc0f7c042017-02-23 20:41:17 -060017import fcntl
Brad Bishopd7bf8c12018-02-25 22:55:05 -050018import time
19import traceback
Patrick Williamsc124f4f2015-09-15 14:41:29 -050020
21import bb
22from bb import event
23import bb.msg
24from bb import cooker
25from bb import ui
26from bb import server
27from bb import cookerdata
28
Brad Bishopd7bf8c12018-02-25 22:55:05 -050029import bb.server.process
30import bb.server.xmlrpcclient
31
Patrick Williamsc124f4f2015-09-15 14:41:29 -050032logger = logging.getLogger("BitBake")
33
34class BBMainException(Exception):
35 pass
36
Brad Bishopd7bf8c12018-02-25 22:55:05 -050037class BBMainFatal(bb.BBHandledException):
38 pass
39
Patrick Williamsc124f4f2015-09-15 14:41:29 -050040def present_options(optionlist):
41 if len(optionlist) > 1:
42 return ' or '.join([', '.join(optionlist[:-1]), optionlist[-1]])
43 else:
44 return optionlist[0]
45
46class BitbakeHelpFormatter(optparse.IndentedHelpFormatter):
47 def format_option(self, option):
48 # We need to do this here rather than in the text we supply to
49 # add_option() because we don't want to call list_extension_modules()
50 # on every execution (since it imports all of the modules)
51 # Note also that we modify option.help rather than the returned text
52 # - this is so that we don't have to re-format the text ourselves
53 if option.dest == 'ui':
54 valid_uis = list_extension_modules(bb.ui, 'main')
55 option.help = option.help.replace('@CHOICES@', present_options(valid_uis))
Patrick Williamsc124f4f2015-09-15 14:41:29 -050056
57 return optparse.IndentedHelpFormatter.format_option(self, option)
58
59def list_extension_modules(pkg, checkattr):
60 """
61 Lists extension modules in a specific Python package
62 (e.g. UIs, servers). NOTE: Calling this function will import all of the
63 submodules of the specified module in order to check for the specified
64 attribute; this can have unusual side-effects. As a result, this should
65 only be called when displaying help text or error messages.
66 Parameters:
67 pkg: previously imported Python package to list
68 checkattr: attribute to look for in module to determine if it's valid
69 as the type of extension you are looking for
70 """
71 import pkgutil
72 pkgdir = os.path.dirname(pkg.__file__)
73
74 modules = []
75 for _, modulename, _ in pkgutil.iter_modules([pkgdir]):
76 if os.path.isdir(os.path.join(pkgdir, modulename)):
77 # ignore directories
78 continue
79 try:
80 module = __import__(pkg.__name__, fromlist=[modulename])
81 except:
82 # If we can't import it, it's not valid
83 continue
84 module_if = getattr(module, modulename)
85 if getattr(module_if, 'hidden_extension', False):
86 continue
87 if not checkattr or hasattr(module_if, checkattr):
88 modules.append(modulename)
89 return modules
90
91def import_extension_module(pkg, modulename, checkattr):
92 try:
93 # Dynamically load the UI based on the ui name. Although we
94 # suggest a fixed set this allows you to have flexibility in which
95 # ones are available.
Patrick Williamsc0f7c042017-02-23 20:41:17 -060096 module = __import__(pkg.__name__, fromlist=[modulename])
Patrick Williamsc124f4f2015-09-15 14:41:29 -050097 return getattr(module, modulename)
98 except AttributeError:
Patrick Williamsc0f7c042017-02-23 20:41:17 -060099 modules = present_options(list_extension_modules(pkg, checkattr))
100 raise BBMainException('FATAL: Unable to import extension module "%s" from %s. '
101 'Valid extension modules: %s' % (modulename, pkg.__name__, modules))
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500102
103# Display bitbake/OE warnings via the BitBake.Warnings logger, ignoring others"""
104warnlog = logging.getLogger("BitBake.Warnings")
105_warnings_showwarning = warnings.showwarning
106def _showwarning(message, category, filename, lineno, file=None, line=None):
107 if file is not None:
108 if _warnings_showwarning is not None:
109 _warnings_showwarning(message, category, filename, lineno, file, line)
110 else:
111 s = warnings.formatwarning(message, category, filename, lineno)
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600112 warnlog.warning(s)
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500113
114warnings.showwarning = _showwarning
115warnings.filterwarnings("ignore")
116warnings.filterwarnings("default", module="(<string>$|(oe|bb)\.)")
117warnings.filterwarnings("ignore", category=PendingDeprecationWarning)
118warnings.filterwarnings("ignore", category=ImportWarning)
119warnings.filterwarnings("ignore", category=DeprecationWarning, module="<string>$")
120warnings.filterwarnings("ignore", message="With-statements now directly support multiple context managers")
121
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500122
Andrew Geissler6ce62a22020-11-30 19:58:47 -0600123def create_bitbake_parser():
124 parser = optparse.OptionParser(
125 formatter=BitbakeHelpFormatter(),
126 version="BitBake Build Tool Core version %s" % bb.__version__,
127 usage="""%prog [options] [recipename/target recipe:do_task ...]
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500128
129 Executes the specified task (default is 'build') for a given set of target recipes (.bb files).
130 It is assumed there is a conf/bblayers.conf available in cwd or in BBPATH which
131 will provide the layer, BBFILES and other configuration information.""")
132
Andrew Geissler6ce62a22020-11-30 19:58:47 -0600133 parser.add_option("-b", "--buildfile", action="store", dest="buildfile", default=None,
134 help="Execute tasks from a specific .bb recipe directly. WARNING: Does "
135 "not handle any dependencies from other recipes.")
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500136
Andrew Geissler6ce62a22020-11-30 19:58:47 -0600137 parser.add_option("-k", "--continue", action="store_false", dest="abort", default=True,
138 help="Continue as much as possible after an error. While the target that "
139 "failed and anything depending on it cannot be built, as much as "
140 "possible will be built before stopping.")
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500141
Andrew Geissler6ce62a22020-11-30 19:58:47 -0600142 parser.add_option("-f", "--force", action="store_true", dest="force", default=False,
143 help="Force the specified targets/task to run (invalidating any "
144 "existing stamp file).")
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500145
Andrew Geissler6ce62a22020-11-30 19:58:47 -0600146 parser.add_option("-c", "--cmd", action="store", dest="cmd",
147 help="Specify the task to execute. The exact options available "
148 "depend on the metadata. Some examples might be 'compile'"
149 " or 'populate_sysroot' or 'listtasks' may give a list of "
150 "the tasks available.")
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500151
Andrew Geissler6ce62a22020-11-30 19:58:47 -0600152 parser.add_option("-C", "--clear-stamp", action="store", dest="invalidate_stamp",
153 help="Invalidate the stamp for the specified task such as 'compile' "
154 "and then run the default task for the specified target(s).")
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500155
Andrew Geissler6ce62a22020-11-30 19:58:47 -0600156 parser.add_option("-r", "--read", action="append", dest="prefile", default=[],
157 help="Read the specified file before bitbake.conf.")
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500158
Andrew Geissler6ce62a22020-11-30 19:58:47 -0600159 parser.add_option("-R", "--postread", action="append", dest="postfile", default=[],
160 help="Read the specified file after bitbake.conf.")
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500161
Andrew Geissler6ce62a22020-11-30 19:58:47 -0600162 parser.add_option("-v", "--verbose", action="store_true", dest="verbose", default=False,
163 help="Enable tracing of shell tasks (with 'set -x'). "
164 "Also print bb.note(...) messages to stdout (in "
165 "addition to writing them to ${T}/log.do_<task>).")
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500166
Andrew Geissler6ce62a22020-11-30 19:58:47 -0600167 parser.add_option("-D", "--debug", action="count", dest="debug", default=0,
168 help="Increase the debug level. You can specify this "
169 "more than once. -D sets the debug level to 1, "
170 "where only bb.debug(1, ...) messages are printed "
171 "to stdout; -DD sets the debug level to 2, where "
172 "both bb.debug(1, ...) and bb.debug(2, ...) "
173 "messages are printed; etc. Without -D, no debug "
174 "messages are printed. Note that -D only affects "
175 "output to stdout. All debug messages are written "
176 "to ${T}/log.do_taskname, regardless of the debug "
177 "level.")
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500178
Andrew Geissler6ce62a22020-11-30 19:58:47 -0600179 parser.add_option("-q", "--quiet", action="count", dest="quiet", default=0,
180 help="Output less log message data to the terminal. You can specify this more than once.")
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500181
Andrew Geissler6ce62a22020-11-30 19:58:47 -0600182 parser.add_option("-n", "--dry-run", action="store_true", dest="dry_run", default=False,
183 help="Don't execute, just go through the motions.")
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500184
Andrew Geissler6ce62a22020-11-30 19:58:47 -0600185 parser.add_option("-S", "--dump-signatures", action="append", dest="dump_signatures",
186 default=[], metavar="SIGNATURE_HANDLER",
187 help="Dump out the signature construction information, with no task "
188 "execution. The SIGNATURE_HANDLER parameter is passed to the "
189 "handler. Two common values are none and printdiff but the handler "
190 "may define more/less. none means only dump the signature, printdiff"
191 " means compare the dumped signature with the cached one.")
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500192
Andrew Geissler6ce62a22020-11-30 19:58:47 -0600193 parser.add_option("-p", "--parse-only", action="store_true",
194 dest="parse_only", default=False,
195 help="Quit after parsing the BB recipes.")
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500196
Andrew Geissler6ce62a22020-11-30 19:58:47 -0600197 parser.add_option("-s", "--show-versions", action="store_true",
198 dest="show_versions", default=False,
199 help="Show current and preferred versions of all recipes.")
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500200
Andrew Geissler6ce62a22020-11-30 19:58:47 -0600201 parser.add_option("-e", "--environment", action="store_true",
202 dest="show_environment", default=False,
203 help="Show the global or per-recipe environment complete with information"
204 " about where variables were set/changed.")
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500205
Andrew Geissler6ce62a22020-11-30 19:58:47 -0600206 parser.add_option("-g", "--graphviz", action="store_true", dest="dot_graph", default=False,
207 help="Save dependency tree information for the specified "
208 "targets in the dot syntax.")
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500209
Andrew Geissler6ce62a22020-11-30 19:58:47 -0600210 parser.add_option("-I", "--ignore-deps", action="append",
211 dest="extra_assume_provided", default=[],
212 help="Assume these dependencies don't exist and are already provided "
213 "(equivalent to ASSUME_PROVIDED). Useful to make dependency "
214 "graphs more appealing")
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500215
Andrew Geissler6ce62a22020-11-30 19:58:47 -0600216 parser.add_option("-l", "--log-domains", action="append", dest="debug_domains", default=[],
217 help="Show debug logging for the specified logging domains")
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500218
Andrew Geissler6ce62a22020-11-30 19:58:47 -0600219 parser.add_option("-P", "--profile", action="store_true", dest="profile", default=False,
220 help="Profile the command and save reports.")
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500221
Andrew Geissler6ce62a22020-11-30 19:58:47 -0600222 # @CHOICES@ is substituted out by BitbakeHelpFormatter above
223 parser.add_option("-u", "--ui", action="store", dest="ui",
224 default=os.environ.get('BITBAKE_UI', 'knotty'),
225 help="The user interface to use (@CHOICES@ - default %default).")
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500226
Andrew Geissler6ce62a22020-11-30 19:58:47 -0600227 parser.add_option("", "--token", action="store", dest="xmlrpctoken",
228 default=os.environ.get("BBTOKEN"),
229 help="Specify the connection token to be used when connecting "
230 "to a remote server.")
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500231
Andrew Geissler6ce62a22020-11-30 19:58:47 -0600232 parser.add_option("", "--revisions-changed", action="store_true",
233 dest="revisions_changed", default=False,
234 help="Set the exit code depending on whether upstream floating "
235 "revisions have changed or not.")
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500236
Andrew Geissler6ce62a22020-11-30 19:58:47 -0600237 parser.add_option("", "--server-only", action="store_true",
238 dest="server_only", default=False,
239 help="Run bitbake without a UI, only starting a server "
240 "(cooker) process.")
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500241
Andrew Geissler6ce62a22020-11-30 19:58:47 -0600242 parser.add_option("-B", "--bind", action="store", dest="bind", default=False,
243 help="The name/address for the bitbake xmlrpc server to bind to.")
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500244
Andrew Geissler6ce62a22020-11-30 19:58:47 -0600245 parser.add_option("-T", "--idle-timeout", type=float, dest="server_timeout",
246 default=os.getenv("BB_SERVER_TIMEOUT"),
247 help="Set timeout to unload bitbake server due to inactivity, "
248 "set to -1 means no unload, "
249 "default: Environment variable BB_SERVER_TIMEOUT.")
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500250
Andrew Geissler6ce62a22020-11-30 19:58:47 -0600251 parser.add_option("", "--no-setscene", action="store_true",
252 dest="nosetscene", default=False,
253 help="Do not run any setscene tasks. sstate will be ignored and "
254 "everything needed, built.")
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500255
Andrew Geissler6ce62a22020-11-30 19:58:47 -0600256 parser.add_option("", "--skip-setscene", action="store_true",
257 dest="skipsetscene", default=False,
258 help="Skip setscene tasks if they would be executed. Tasks previously "
259 "restored from sstate will be kept, unlike --no-setscene")
Brad Bishop96ff1982019-08-19 13:50:42 -0400260
Andrew Geissler6ce62a22020-11-30 19:58:47 -0600261 parser.add_option("", "--setscene-only", action="store_true",
262 dest="setsceneonly", default=False,
263 help="Only run setscene tasks, don't run any real tasks.")
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500264
Andrew Geissler6ce62a22020-11-30 19:58:47 -0600265 parser.add_option("", "--remote-server", action="store", dest="remote_server",
266 default=os.environ.get("BBSERVER"),
267 help="Connect to the specified server.")
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500268
Andrew Geissler6ce62a22020-11-30 19:58:47 -0600269 parser.add_option("-m", "--kill-server", action="store_true",
270 dest="kill_server", default=False,
271 help="Terminate any running bitbake server.")
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600272
Andrew Geissler6ce62a22020-11-30 19:58:47 -0600273 parser.add_option("", "--observe-only", action="store_true",
274 dest="observe_only", default=False,
275 help="Connect to a server as an observing-only client.")
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600276
Andrew Geissler6ce62a22020-11-30 19:58:47 -0600277 parser.add_option("", "--status-only", action="store_true",
278 dest="status_only", default=False,
279 help="Check the status of the remote bitbake server.")
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600280
Andrew Geissler6ce62a22020-11-30 19:58:47 -0600281 parser.add_option("-w", "--write-log", action="store", dest="writeeventlog",
282 default=os.environ.get("BBEVENTLOG"),
283 help="Writes the event log of the build to a bitbake event json file. "
284 "Use '' (empty string) to assign the name automatically.")
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500285
Andrew Geissler6ce62a22020-11-30 19:58:47 -0600286 parser.add_option("", "--runall", action="append", dest="runall",
287 help="Run the specified task for any recipe in the taskgraph of the specified target (even if it wouldn't otherwise have run).")
Brad Bishop316dfdd2018-06-25 12:45:53 -0400288
Andrew Geissler6ce62a22020-11-30 19:58:47 -0600289 parser.add_option("", "--runonly", action="append", dest="runonly",
290 help="Run only the specified task within the taskgraph of the specified targets (and any task dependencies those tasks may have).")
291 return parser
Brad Bishop316dfdd2018-06-25 12:45:53 -0400292
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500293
Andrew Geissler6ce62a22020-11-30 19:58:47 -0600294class BitBakeConfigParameters(cookerdata.ConfigParameters):
295 def parseCommandLine(self, argv=sys.argv):
296 parser = create_bitbake_parser()
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500297 options, targets = parser.parse_args(argv)
298
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600299 if options.quiet and options.verbose:
300 parser.error("options --quiet and --verbose are mutually exclusive")
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500301
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600302 if options.quiet and options.debug:
303 parser.error("options --quiet and --debug are mutually exclusive")
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500304
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600305 # use configuration files from environment variables
306 if "BBPRECONF" in os.environ:
307 options.prefile.append(os.environ["BBPRECONF"])
308
309 if "BBPOSTCONF" in os.environ:
310 options.postfile.append(os.environ["BBPOSTCONF"])
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500311
312 # fill in proper log name if not supplied
313 if options.writeeventlog is not None and len(options.writeeventlog) == 0:
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600314 from datetime import datetime
315 eventlog = "bitbake_eventlog_%s.json" % datetime.now().strftime("%Y%m%d%H%M%S")
316 options.writeeventlog = eventlog
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500317
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500318 if options.bind:
319 try:
320 #Checking that the port is a number and is a ':' delimited value
321 (host, port) = options.bind.split(':')
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600322 port = int(port)
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500323 except (ValueError,IndexError):
324 raise BBMainException("FATAL: Malformed host:port bind parameter")
325 options.xmlrpcinterface = (host, port)
326 else:
327 options.xmlrpcinterface = (None, 0)
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500328
329 return options, targets[1:]
330
331
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500332def bitbake_main(configParams, configuration):
333
334 # Python multiprocessing requires /dev/shm on Linux
335 if sys.platform.startswith('linux') and not os.access('/dev/shm', os.W_OK | os.X_OK):
336 raise BBMainException("FATAL: /dev/shm does not exist or is not writable")
337
338 # Unbuffer stdout to avoid log truncation in the event
339 # of an unorderly exit as well as to provide timely
340 # updates to log files for use with tail
341 try:
342 if sys.stdout.name == '<stdout>':
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600343 # Reopen with O_SYNC (unbuffered)
344 fl = fcntl.fcntl(sys.stdout.fileno(), fcntl.F_GETFL)
345 fl |= os.O_SYNC
346 fcntl.fcntl(sys.stdout.fileno(), fcntl.F_SETFL, fl)
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500347 except:
348 pass
349
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500350 if configParams.server_only and configParams.remote_server:
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500351 raise BBMainException("FATAL: The '--server-only' option conflicts with %s.\n" %
352 ("the BBSERVER environment variable" if "BBSERVER" in os.environ \
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600353 else "the '--remote-server' option"))
354
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500355 if configParams.observe_only and not (configParams.remote_server or configParams.bind):
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500356 raise BBMainException("FATAL: '--observe-only' can only be used by UI clients "
357 "connecting to a server.\n")
358
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500359 if "BBDEBUG" in os.environ:
360 level = int(os.environ["BBDEBUG"])
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500361 if level > configParams.debug:
362 configParams.debug = level
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500363
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500364 bb.msg.init_msgconfig(configParams.verbose, configParams.debug,
365 configParams.debug_domains)
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500366
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500367 server_connection, ui_module = setup_bitbake(configParams)
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500368 # No server connection
369 if server_connection is None:
370 if configParams.status_only:
371 return 1
372 if configParams.kill_server:
373 return 0
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500374
375 if not configParams.server_only:
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500376 if configParams.status_only:
377 server_connection.terminate()
378 return 0
379
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500380 try:
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500381 for event in bb.event.ui_queue:
382 server_connection.events.queue_event(event)
383 bb.event.ui_queue = []
384
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600385 return ui_module.main(server_connection.connection, server_connection.events,
386 configParams)
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500387 finally:
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500388 server_connection.terminate()
389 else:
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500390 return 0
391
392 return 1
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500393
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500394def setup_bitbake(configParams, extrafeatures=None):
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500395 # Ensure logging messages get sent to the UI as events
396 handler = bb.event.LogHandler()
397 if not configParams.status_only:
398 # In status only mode there are no logs and no UI
399 logger.addHandler(handler)
400
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500401 if configParams.server_only:
402 featureset = []
403 ui_module = None
404 else:
405 ui_module = import_extension_module(bb.ui, configParams.ui, 'main')
406 # Collect the feature set for the UI
407 featureset = getattr(ui_module, "featureSet", [])
408
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500409 if extrafeatures:
410 for feature in extrafeatures:
411 if not feature in featureset:
412 featureset.append(feature)
413
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500414 server_connection = None
415
Brad Bishop6ef32652018-10-09 18:59:25 +0100416 # Clear away any spurious environment variables while we stoke up the cooker
417 # (done after import_extension_module() above since for example import gi triggers env var usage)
418 cleanedvars = bb.utils.clean_environment()
419
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500420 if configParams.remote_server:
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500421 # Connect to a remote XMLRPC server
422 server_connection = bb.server.xmlrpcclient.connectXMLRPC(configParams.remote_server, featureset,
423 configParams.observe_only, configParams.xmlrpctoken)
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500424 else:
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500425 retries = 8
426 while retries:
427 try:
428 topdir, lock = lockBitbake()
429 sockname = topdir + "/bitbake.sock"
430 if lock:
431 if configParams.status_only or configParams.kill_server:
432 logger.info("bitbake server is not running.")
433 lock.close()
434 return None, None
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500435 # we start a server with a given featureset
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500436 logger.info("Starting bitbake server...")
437 # Clear the event queue since we already displayed messages
438 bb.event.ui_queue = []
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500439 server = bb.server.process.BitBakeServer(lock, sockname, featureset, configParams.server_timeout, configParams.xmlrpcinterface)
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500440
441 else:
442 logger.info("Reconnecting to bitbake server...")
443 if not os.path.exists(sockname):
Brad Bishope2d5b612018-11-23 10:55:50 +1300444 logger.info("Previous bitbake instance shutting down?, waiting to retry...")
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500445 i = 0
446 lock = None
447 # Wait for 5s or until we can get the lock
448 while not lock and i < 50:
449 time.sleep(0.1)
450 _, lock = lockBitbake()
451 i += 1
452 if lock:
453 bb.utils.unlockfile(lock)
454 raise bb.server.process.ProcessTimeout("Bitbake still shutting down as socket exists but no lock?")
455 if not configParams.server_only:
Brad Bishop96ff1982019-08-19 13:50:42 -0400456 server_connection = bb.server.process.connectProcessServer(sockname, featureset)
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500457
458 if server_connection or configParams.server_only:
459 break
460 except BBMainFatal:
461 raise
Andrew Geissler4c19ea12020-10-27 13:52:24 -0500462 except (Exception, bb.server.process.ProcessTimeout, SystemExit) as e:
463 # SystemExit does not inherit from the Exception class, needs to be included explicitly
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500464 if not retries:
465 raise
466 retries -= 1
Brad Bishop19323692019-04-05 15:28:33 -0400467 tryno = 8 - retries
Andrew Geissler4c19ea12020-10-27 13:52:24 -0500468 if isinstance(e, (bb.server.process.ProcessTimeout, BrokenPipeError, EOFError, SystemExit)):
Brad Bishop19323692019-04-05 15:28:33 -0400469 logger.info("Retrying server connection (#%d)..." % tryno)
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500470 else:
Brad Bishop19323692019-04-05 15:28:33 -0400471 logger.info("Retrying server connection (#%d)... (%s)" % (tryno, traceback.format_exc()))
Andrew Geissler6ce62a22020-11-30 19:58:47 -0600472
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500473 if not retries:
Brad Bishop96ff1982019-08-19 13:50:42 -0400474 bb.fatal("Unable to connect to bitbake server, or start one (server startup failures would be in bitbake-cookerdaemon.log).")
475 bb.event.print_ui_queue()
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500476 if retries < 5:
477 time.sleep(5)
478
479 if configParams.kill_server:
480 server_connection.connection.terminateServer()
481 server_connection.terminate()
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500482 bb.event.ui_queue = []
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500483 logger.info("Terminated bitbake server.")
484 return None, None
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500485
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500486 # Restore the environment in case the UI needs it
487 for k in cleanedvars:
488 os.environ[k] = cleanedvars[k]
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500489
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500490 logger.removeHandler(handler)
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500491
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500492 return server_connection, ui_module
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500493
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500494def lockBitbake():
495 topdir = bb.cookerdata.findTopdir()
496 if not topdir:
Brad Bishop15ae2502019-06-18 21:44:24 -0400497 bb.error("Unable to find conf/bblayers.conf or conf/bitbake.conf. BBPATH is unset and/or not in a build directory?")
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500498 raise BBMainFatal
499 lockfile = topdir + "/bitbake.lock"
500 return topdir, bb.utils.lockfile(lockfile, False, False)
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500501