Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1 | # |
| 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 Bishop | c342db3 | 2019-05-15 21:57:59 -0400 | [diff] [blame] | 9 | # SPDX-License-Identifier: GPL-2.0-only |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 10 | # |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 11 | |
| 12 | import os |
| 13 | import sys |
| 14 | import logging |
| 15 | import optparse |
| 16 | import warnings |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 17 | import fcntl |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 18 | import time |
| 19 | import traceback |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 20 | |
| 21 | import bb |
| 22 | from bb import event |
| 23 | import bb.msg |
| 24 | from bb import cooker |
| 25 | from bb import ui |
| 26 | from bb import server |
| 27 | from bb import cookerdata |
| 28 | |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 29 | import bb.server.process |
| 30 | import bb.server.xmlrpcclient |
| 31 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 32 | logger = logging.getLogger("BitBake") |
| 33 | |
| 34 | class BBMainException(Exception): |
| 35 | pass |
| 36 | |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 37 | class BBMainFatal(bb.BBHandledException): |
| 38 | pass |
| 39 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 40 | def present_options(optionlist): |
| 41 | if len(optionlist) > 1: |
| 42 | return ' or '.join([', '.join(optionlist[:-1]), optionlist[-1]]) |
| 43 | else: |
| 44 | return optionlist[0] |
| 45 | |
| 46 | class 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 Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 56 | |
| 57 | return optparse.IndentedHelpFormatter.format_option(self, option) |
| 58 | |
| 59 | def 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 | |
| 91 | def 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 Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 96 | module = __import__(pkg.__name__, fromlist=[modulename]) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 97 | return getattr(module, modulename) |
| 98 | except AttributeError: |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 99 | 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 Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 102 | |
| 103 | # Display bitbake/OE warnings via the BitBake.Warnings logger, ignoring others""" |
| 104 | warnlog = logging.getLogger("BitBake.Warnings") |
| 105 | _warnings_showwarning = warnings.showwarning |
| 106 | def _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 Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 112 | warnlog.warning(s) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 113 | |
| 114 | warnings.showwarning = _showwarning |
| 115 | warnings.filterwarnings("ignore") |
| 116 | warnings.filterwarnings("default", module="(<string>$|(oe|bb)\.)") |
| 117 | warnings.filterwarnings("ignore", category=PendingDeprecationWarning) |
| 118 | warnings.filterwarnings("ignore", category=ImportWarning) |
| 119 | warnings.filterwarnings("ignore", category=DeprecationWarning, module="<string>$") |
| 120 | warnings.filterwarnings("ignore", message="With-statements now directly support multiple context managers") |
| 121 | |
| 122 | class BitBakeConfigParameters(cookerdata.ConfigParameters): |
| 123 | |
| 124 | def parseCommandLine(self, argv=sys.argv): |
| 125 | parser = optparse.OptionParser( |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 126 | formatter=BitbakeHelpFormatter(), |
| 127 | version="BitBake Build Tool Core version %s" % bb.__version__, |
| 128 | usage="""%prog [options] [recipename/target recipe:do_task ...] |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 129 | |
| 130 | Executes the specified task (default is 'build') for a given set of target recipes (.bb files). |
| 131 | It is assumed there is a conf/bblayers.conf available in cwd or in BBPATH which |
| 132 | will provide the layer, BBFILES and other configuration information.""") |
| 133 | |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 134 | parser.add_option("-b", "--buildfile", action="store", dest="buildfile", default=None, |
| 135 | help="Execute tasks from a specific .bb recipe directly. WARNING: Does " |
| 136 | "not handle any dependencies from other recipes.") |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 137 | |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 138 | parser.add_option("-k", "--continue", action="store_false", dest="abort", default=True, |
| 139 | help="Continue as much as possible after an error. While the target that " |
| 140 | "failed and anything depending on it cannot be built, as much as " |
| 141 | "possible will be built before stopping.") |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 142 | |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 143 | parser.add_option("-f", "--force", action="store_true", dest="force", default=False, |
| 144 | help="Force the specified targets/task to run (invalidating any " |
| 145 | "existing stamp file).") |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 146 | |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 147 | parser.add_option("-c", "--cmd", action="store", dest="cmd", |
| 148 | help="Specify the task to execute. The exact options available " |
| 149 | "depend on the metadata. Some examples might be 'compile'" |
| 150 | " or 'populate_sysroot' or 'listtasks' may give a list of " |
| 151 | "the tasks available.") |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 152 | |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 153 | parser.add_option("-C", "--clear-stamp", action="store", dest="invalidate_stamp", |
| 154 | help="Invalidate the stamp for the specified task such as 'compile' " |
| 155 | "and then run the default task for the specified target(s).") |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 156 | |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 157 | parser.add_option("-r", "--read", action="append", dest="prefile", default=[], |
| 158 | help="Read the specified file before bitbake.conf.") |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 159 | |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 160 | parser.add_option("-R", "--postread", action="append", dest="postfile", default=[], |
| 161 | help="Read the specified file after bitbake.conf.") |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 162 | |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 163 | parser.add_option("-v", "--verbose", action="store_true", dest="verbose", default=False, |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 164 | help="Enable tracing of shell tasks (with 'set -x'). " |
| 165 | "Also print bb.note(...) messages to stdout (in " |
| 166 | "addition to writing them to ${T}/log.do_<task>).") |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 167 | |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 168 | parser.add_option("-D", "--debug", action="count", dest="debug", default=0, |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 169 | help="Increase the debug level. You can specify this " |
| 170 | "more than once. -D sets the debug level to 1, " |
| 171 | "where only bb.debug(1, ...) messages are printed " |
| 172 | "to stdout; -DD sets the debug level to 2, where " |
| 173 | "both bb.debug(1, ...) and bb.debug(2, ...) " |
| 174 | "messages are printed; etc. Without -D, no debug " |
| 175 | "messages are printed. Note that -D only affects " |
| 176 | "output to stdout. All debug messages are written " |
| 177 | "to ${T}/log.do_taskname, regardless of the debug " |
| 178 | "level.") |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 179 | |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 180 | parser.add_option("-q", "--quiet", action="count", dest="quiet", default=0, |
| 181 | help="Output less log message data to the terminal. You can specify this more than once.") |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 182 | |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 183 | parser.add_option("-n", "--dry-run", action="store_true", dest="dry_run", default=False, |
| 184 | help="Don't execute, just go through the motions.") |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 185 | |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 186 | parser.add_option("-S", "--dump-signatures", action="append", dest="dump_signatures", |
| 187 | default=[], metavar="SIGNATURE_HANDLER", |
| 188 | help="Dump out the signature construction information, with no task " |
| 189 | "execution. The SIGNATURE_HANDLER parameter is passed to the " |
| 190 | "handler. Two common values are none and printdiff but the handler " |
| 191 | "may define more/less. none means only dump the signature, printdiff" |
| 192 | " means compare the dumped signature with the cached one.") |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 193 | |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 194 | parser.add_option("-p", "--parse-only", action="store_true", |
| 195 | dest="parse_only", default=False, |
| 196 | help="Quit after parsing the BB recipes.") |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 197 | |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 198 | parser.add_option("-s", "--show-versions", action="store_true", |
| 199 | dest="show_versions", default=False, |
| 200 | help="Show current and preferred versions of all recipes.") |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 201 | |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 202 | parser.add_option("-e", "--environment", action="store_true", |
| 203 | dest="show_environment", default=False, |
| 204 | help="Show the global or per-recipe environment complete with information" |
| 205 | " about where variables were set/changed.") |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 206 | |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 207 | parser.add_option("-g", "--graphviz", action="store_true", dest="dot_graph", default=False, |
| 208 | help="Save dependency tree information for the specified " |
| 209 | "targets in the dot syntax.") |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 210 | |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 211 | parser.add_option("-I", "--ignore-deps", action="append", |
| 212 | dest="extra_assume_provided", default=[], |
| 213 | help="Assume these dependencies don't exist and are already provided " |
| 214 | "(equivalent to ASSUME_PROVIDED). Useful to make dependency " |
| 215 | "graphs more appealing") |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 216 | |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 217 | parser.add_option("-l", "--log-domains", action="append", dest="debug_domains", default=[], |
| 218 | help="Show debug logging for the specified logging domains") |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 219 | |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 220 | parser.add_option("-P", "--profile", action="store_true", dest="profile", default=False, |
| 221 | help="Profile the command and save reports.") |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 222 | |
| 223 | # @CHOICES@ is substituted out by BitbakeHelpFormatter above |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 224 | parser.add_option("-u", "--ui", action="store", dest="ui", |
| 225 | default=os.environ.get('BITBAKE_UI', 'knotty'), |
| 226 | help="The user interface to use (@CHOICES@ - default %default).") |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 227 | |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 228 | parser.add_option("", "--token", action="store", dest="xmlrpctoken", |
| 229 | default=os.environ.get("BBTOKEN"), |
| 230 | help="Specify the connection token to be used when connecting " |
| 231 | "to a remote server.") |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 232 | |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 233 | parser.add_option("", "--revisions-changed", action="store_true", |
| 234 | dest="revisions_changed", default=False, |
| 235 | help="Set the exit code depending on whether upstream floating " |
| 236 | "revisions have changed or not.") |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 237 | |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 238 | parser.add_option("", "--server-only", action="store_true", |
| 239 | dest="server_only", default=False, |
| 240 | help="Run bitbake without a UI, only starting a server " |
| 241 | "(cooker) process.") |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 242 | |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 243 | parser.add_option("-B", "--bind", action="store", dest="bind", default=False, |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 244 | help="The name/address for the bitbake xmlrpc server to bind to.") |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 245 | |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 246 | parser.add_option("-T", "--idle-timeout", type=float, dest="server_timeout", |
| 247 | default=os.getenv("BB_SERVER_TIMEOUT"), |
| 248 | help="Set timeout to unload bitbake server due to inactivity, " |
| 249 | "set to -1 means no unload, " |
| 250 | "default: Environment variable BB_SERVER_TIMEOUT.") |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 251 | |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 252 | parser.add_option("", "--no-setscene", action="store_true", |
| 253 | dest="nosetscene", default=False, |
| 254 | help="Do not run any setscene tasks. sstate will be ignored and " |
| 255 | "everything needed, built.") |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 256 | |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 257 | parser.add_option("", "--skip-setscene", action="store_true", |
| 258 | dest="skipsetscene", default=False, |
| 259 | help="Skip setscene tasks if they would be executed. Tasks previously " |
| 260 | "restored from sstate will be kept, unlike --no-setscene") |
| 261 | |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 262 | parser.add_option("", "--setscene-only", action="store_true", |
| 263 | dest="setsceneonly", default=False, |
| 264 | help="Only run setscene tasks, don't run any real tasks.") |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 265 | |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 266 | parser.add_option("", "--remote-server", action="store", dest="remote_server", |
| 267 | default=os.environ.get("BBSERVER"), |
| 268 | help="Connect to the specified server.") |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 269 | |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 270 | parser.add_option("-m", "--kill-server", action="store_true", |
| 271 | dest="kill_server", default=False, |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 272 | help="Terminate any running bitbake server.") |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 273 | |
| 274 | parser.add_option("", "--observe-only", action="store_true", |
| 275 | dest="observe_only", default=False, |
| 276 | help="Connect to a server as an observing-only client.") |
| 277 | |
| 278 | parser.add_option("", "--status-only", action="store_true", |
| 279 | dest="status_only", default=False, |
| 280 | help="Check the status of the remote bitbake server.") |
| 281 | |
| 282 | parser.add_option("-w", "--write-log", action="store", dest="writeeventlog", |
| 283 | default=os.environ.get("BBEVENTLOG"), |
| 284 | help="Writes the event log of the build to a bitbake event json file. " |
| 285 | "Use '' (empty string) to assign the name automatically.") |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 286 | |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 287 | parser.add_option("", "--runall", action="append", dest="runall", |
| 288 | help="Run the specified task for any recipe in the taskgraph of the specified target (even if it wouldn't otherwise have run).") |
| 289 | |
| 290 | parser.add_option("", "--runonly", action="append", dest="runonly", |
| 291 | help="Run only the specified task within the taskgraph of the specified targets (and any task dependencies those tasks may have).") |
| 292 | |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 293 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 294 | options, targets = parser.parse_args(argv) |
| 295 | |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 296 | if options.quiet and options.verbose: |
| 297 | parser.error("options --quiet and --verbose are mutually exclusive") |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 298 | |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 299 | if options.quiet and options.debug: |
| 300 | parser.error("options --quiet and --debug are mutually exclusive") |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 301 | |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 302 | # use configuration files from environment variables |
| 303 | if "BBPRECONF" in os.environ: |
| 304 | options.prefile.append(os.environ["BBPRECONF"]) |
| 305 | |
| 306 | if "BBPOSTCONF" in os.environ: |
| 307 | options.postfile.append(os.environ["BBPOSTCONF"]) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 308 | |
| 309 | # fill in proper log name if not supplied |
| 310 | if options.writeeventlog is not None and len(options.writeeventlog) == 0: |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 311 | from datetime import datetime |
| 312 | eventlog = "bitbake_eventlog_%s.json" % datetime.now().strftime("%Y%m%d%H%M%S") |
| 313 | options.writeeventlog = eventlog |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 314 | |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 315 | if options.bind: |
| 316 | try: |
| 317 | #Checking that the port is a number and is a ':' delimited value |
| 318 | (host, port) = options.bind.split(':') |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 319 | port = int(port) |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 320 | except (ValueError,IndexError): |
| 321 | raise BBMainException("FATAL: Malformed host:port bind parameter") |
| 322 | options.xmlrpcinterface = (host, port) |
| 323 | else: |
| 324 | options.xmlrpcinterface = (None, 0) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 325 | |
| 326 | return options, targets[1:] |
| 327 | |
| 328 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 329 | def bitbake_main(configParams, configuration): |
| 330 | |
| 331 | # Python multiprocessing requires /dev/shm on Linux |
| 332 | if sys.platform.startswith('linux') and not os.access('/dev/shm', os.W_OK | os.X_OK): |
| 333 | raise BBMainException("FATAL: /dev/shm does not exist or is not writable") |
| 334 | |
| 335 | # Unbuffer stdout to avoid log truncation in the event |
| 336 | # of an unorderly exit as well as to provide timely |
| 337 | # updates to log files for use with tail |
| 338 | try: |
| 339 | if sys.stdout.name == '<stdout>': |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 340 | # Reopen with O_SYNC (unbuffered) |
| 341 | fl = fcntl.fcntl(sys.stdout.fileno(), fcntl.F_GETFL) |
| 342 | fl |= os.O_SYNC |
| 343 | fcntl.fcntl(sys.stdout.fileno(), fcntl.F_SETFL, fl) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 344 | except: |
| 345 | pass |
| 346 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 347 | configuration.setConfigParameters(configParams) |
| 348 | |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 349 | if configParams.server_only and configParams.remote_server: |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 350 | raise BBMainException("FATAL: The '--server-only' option conflicts with %s.\n" % |
| 351 | ("the BBSERVER environment variable" if "BBSERVER" in os.environ \ |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 352 | else "the '--remote-server' option")) |
| 353 | |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 354 | if configParams.observe_only and not (configParams.remote_server or configParams.bind): |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 355 | raise BBMainException("FATAL: '--observe-only' can only be used by UI clients " |
| 356 | "connecting to a server.\n") |
| 357 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 358 | if "BBDEBUG" in os.environ: |
| 359 | level = int(os.environ["BBDEBUG"]) |
| 360 | if level > configuration.debug: |
| 361 | configuration.debug = level |
| 362 | |
| 363 | bb.msg.init_msgconfig(configParams.verbose, configuration.debug, |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 364 | configuration.debug_domains) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 365 | |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 366 | server_connection, ui_module = setup_bitbake(configParams, configuration) |
| 367 | # No server connection |
| 368 | if server_connection is None: |
| 369 | if configParams.status_only: |
| 370 | return 1 |
| 371 | if configParams.kill_server: |
| 372 | return 0 |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 373 | |
| 374 | if not configParams.server_only: |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 375 | if configParams.status_only: |
| 376 | server_connection.terminate() |
| 377 | return 0 |
| 378 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 379 | try: |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 380 | for event in bb.event.ui_queue: |
| 381 | server_connection.events.queue_event(event) |
| 382 | bb.event.ui_queue = [] |
| 383 | |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 384 | return ui_module.main(server_connection.connection, server_connection.events, |
| 385 | configParams) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 386 | finally: |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 387 | server_connection.terminate() |
| 388 | else: |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 389 | return 0 |
| 390 | |
| 391 | return 1 |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 392 | |
| 393 | def setup_bitbake(configParams, configuration, extrafeatures=None): |
| 394 | # Ensure logging messages get sent to the UI as events |
| 395 | handler = bb.event.LogHandler() |
| 396 | if not configParams.status_only: |
| 397 | # In status only mode there are no logs and no UI |
| 398 | logger.addHandler(handler) |
| 399 | |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 400 | if configParams.server_only: |
| 401 | featureset = [] |
| 402 | ui_module = None |
| 403 | else: |
| 404 | ui_module = import_extension_module(bb.ui, configParams.ui, 'main') |
| 405 | # Collect the feature set for the UI |
| 406 | featureset = getattr(ui_module, "featureSet", []) |
| 407 | |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 408 | if extrafeatures: |
| 409 | for feature in extrafeatures: |
| 410 | if not feature in featureset: |
| 411 | featureset.append(feature) |
| 412 | |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 413 | server_connection = None |
| 414 | |
Brad Bishop | 6ef3265 | 2018-10-09 18:59:25 +0100 | [diff] [blame] | 415 | # Clear away any spurious environment variables while we stoke up the cooker |
| 416 | # (done after import_extension_module() above since for example import gi triggers env var usage) |
| 417 | cleanedvars = bb.utils.clean_environment() |
| 418 | |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 419 | if configParams.remote_server: |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 420 | # Connect to a remote XMLRPC server |
| 421 | server_connection = bb.server.xmlrpcclient.connectXMLRPC(configParams.remote_server, featureset, |
| 422 | configParams.observe_only, configParams.xmlrpctoken) |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 423 | else: |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 424 | retries = 8 |
| 425 | while retries: |
| 426 | try: |
| 427 | topdir, lock = lockBitbake() |
| 428 | sockname = topdir + "/bitbake.sock" |
| 429 | if lock: |
| 430 | if configParams.status_only or configParams.kill_server: |
| 431 | logger.info("bitbake server is not running.") |
| 432 | lock.close() |
| 433 | return None, None |
| 434 | # we start a server with a given configuration |
| 435 | logger.info("Starting bitbake server...") |
| 436 | # Clear the event queue since we already displayed messages |
| 437 | bb.event.ui_queue = [] |
| 438 | server = bb.server.process.BitBakeServer(lock, sockname, configuration, featureset) |
| 439 | |
| 440 | else: |
| 441 | logger.info("Reconnecting to bitbake server...") |
| 442 | if not os.path.exists(sockname): |
Brad Bishop | e2d5b61 | 2018-11-23 10:55:50 +1300 | [diff] [blame] | 443 | logger.info("Previous bitbake instance shutting down?, waiting to retry...") |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 444 | i = 0 |
| 445 | lock = None |
| 446 | # Wait for 5s or until we can get the lock |
| 447 | while not lock and i < 50: |
| 448 | time.sleep(0.1) |
| 449 | _, lock = lockBitbake() |
| 450 | i += 1 |
| 451 | if lock: |
| 452 | bb.utils.unlockfile(lock) |
| 453 | raise bb.server.process.ProcessTimeout("Bitbake still shutting down as socket exists but no lock?") |
| 454 | if not configParams.server_only: |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 455 | server_connection = bb.server.process.connectProcessServer(sockname, featureset) |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 456 | |
| 457 | if server_connection or configParams.server_only: |
| 458 | break |
| 459 | except BBMainFatal: |
| 460 | raise |
| 461 | except (Exception, bb.server.process.ProcessTimeout) as e: |
| 462 | if not retries: |
| 463 | raise |
| 464 | retries -= 1 |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 465 | tryno = 8 - retries |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 466 | if isinstance(e, (bb.server.process.ProcessTimeout, BrokenPipeError, EOFError)): |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 467 | logger.info("Retrying server connection (#%d)..." % tryno) |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 468 | else: |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 469 | logger.info("Retrying server connection (#%d)... (%s)" % (tryno, traceback.format_exc())) |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 470 | if not retries: |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 471 | bb.fatal("Unable to connect to bitbake server, or start one (server startup failures would be in bitbake-cookerdaemon.log).") |
| 472 | bb.event.print_ui_queue() |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 473 | if retries < 5: |
| 474 | time.sleep(5) |
| 475 | |
| 476 | if configParams.kill_server: |
| 477 | server_connection.connection.terminateServer() |
| 478 | server_connection.terminate() |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 479 | bb.event.ui_queue = [] |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 480 | logger.info("Terminated bitbake server.") |
| 481 | return None, None |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 482 | |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 483 | # Restore the environment in case the UI needs it |
| 484 | for k in cleanedvars: |
| 485 | os.environ[k] = cleanedvars[k] |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 486 | |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 487 | logger.removeHandler(handler) |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 488 | |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 489 | return server_connection, ui_module |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 490 | |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 491 | def lockBitbake(): |
| 492 | topdir = bb.cookerdata.findTopdir() |
| 493 | if not topdir: |
Brad Bishop | 15ae250 | 2019-06-18 21:44:24 -0400 | [diff] [blame] | 494 | bb.error("Unable to find conf/bblayers.conf or conf/bitbake.conf. BBPATH is unset and/or not in a build directory?") |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 495 | raise BBMainFatal |
| 496 | lockfile = topdir + "/bitbake.lock" |
| 497 | return topdir, bb.utils.lockfile(lockfile, False, False) |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 498 | |