diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-09-02 12:30:20 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-09-02 16:01:05 +0100 |
commit | a6709152e9788418e6c9431851437eb8ec4c6b46 (patch) | |
tree | d0c080d06de37c7ecf4b04ec108bc34c5fc09d76 /bitbake | |
parent | d38276f55c1b97251e6847401f84a6f6dac47b87 (diff) | |
download | poky-a6709152e9788418e6c9431851437eb8ec4c6b46.tar.gz |
bitbake: process/knotty: Improve early exception handling
The new server startup code means exceptions can happen when we aren't
setup to show them to the user correctly, leading to ugly tracebacks.
Add in some special case handling of BBHandledException to at least
ensure that common case doesn't traceback and the user sees meaningful
output.
In the future, the logging setup can likely be improved, as can the way
runCommand handles exceptions, they all should likely become real
exceptions again on the UI side.
[YOCTO #14022]
[YOCTO #14033]
(Bitbake rev: 6059d0e77f60ddb679049bd34478f41b1ab7995d)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r-- | bitbake/lib/bb/server/process.py | 7 | ||||
-rw-r--r-- | bitbake/lib/bb/ui/knotty.py | 21 |
2 files changed, 23 insertions, 5 deletions
diff --git a/bitbake/lib/bb/server/process.py b/bitbake/lib/bb/server/process.py index 4d3d1a4308..8699765a31 100644 --- a/bitbake/lib/bb/server/process.py +++ b/bitbake/lib/bb/server/process.py | |||
@@ -365,7 +365,12 @@ class ServerCommunicator(): | |||
365 | logger.info("No reply from server in 30s") | 365 | logger.info("No reply from server in 30s") |
366 | if not self.recv.poll(30): | 366 | if not self.recv.poll(30): |
367 | raise ProcessTimeout("Timeout while waiting for a reply from the bitbake server (60s)") | 367 | raise ProcessTimeout("Timeout while waiting for a reply from the bitbake server (60s)") |
368 | return self.recv.get() | 368 | ret, exc = self.recv.get() |
369 | # Should probably turn all exceptions in exc back into exceptions? | ||
370 | # For now, at least handle BBHandledException | ||
371 | if exc and "BBHandledException" in exc: | ||
372 | raise bb.BBHandledException() | ||
373 | return ret, exc | ||
369 | 374 | ||
370 | def updateFeatureSet(self, featureset): | 375 | def updateFeatureSet(self, featureset): |
371 | _, error = self.runCommand(["setFeatures", featureset]) | 376 | _, error = self.runCommand(["setFeatures", featureset]) |
diff --git a/bitbake/lib/bb/ui/knotty.py b/bitbake/lib/bb/ui/knotty.py index a3507afb7c..a91e4fd15c 100644 --- a/bitbake/lib/bb/ui/knotty.py +++ b/bitbake/lib/bb/ui/knotty.py | |||
@@ -380,14 +380,27 @@ _evt_list = [ "bb.runqueue.runQueueExitWait", "bb.event.LogExecTTY", "logging.Lo | |||
380 | "bb.event.BuildBase", "bb.build.TaskStarted", "bb.build.TaskSucceeded", "bb.build.TaskFailedSilent", | 380 | "bb.event.BuildBase", "bb.build.TaskStarted", "bb.build.TaskSucceeded", "bb.build.TaskFailedSilent", |
381 | "bb.build.TaskProgress", "bb.event.ProcessStarted", "bb.event.ProcessProgress", "bb.event.ProcessFinished"] | 381 | "bb.build.TaskProgress", "bb.event.ProcessStarted", "bb.event.ProcessProgress", "bb.event.ProcessFinished"] |
382 | 382 | ||
383 | def drain_events_errorhandling(eventHandler): | ||
384 | # We don't have logging setup, we do need to show any events we see before exiting | ||
385 | event = True | ||
386 | logger = bb.msg.logger_create('bitbake', sys.stdout) | ||
387 | while event: | ||
388 | event = eventHandler.waitEvent(0) | ||
389 | if isinstance(event, logging.LogRecord): | ||
390 | logger.handle(event) | ||
391 | |||
383 | def main(server, eventHandler, params, tf = TerminalFilter): | 392 | def main(server, eventHandler, params, tf = TerminalFilter): |
384 | 393 | ||
385 | if not params.observe_only: | 394 | try: |
386 | params.updateToServer(server, os.environ.copy()) | 395 | if not params.observe_only: |
396 | params.updateToServer(server, os.environ.copy()) | ||
387 | 397 | ||
388 | includelogs, loglines, consolelogfile, logconfigfile = _log_settings_from_server(server, params.observe_only) | 398 | includelogs, loglines, consolelogfile, logconfigfile = _log_settings_from_server(server, params.observe_only) |
389 | 399 | ||
390 | loglevel, _ = bb.msg.constructLogOptions() | 400 | loglevel, _ = bb.msg.constructLogOptions() |
401 | except bb.BBHandledException: | ||
402 | drain_events_errorhandling(eventHandler) | ||
403 | return 1 | ||
391 | 404 | ||
392 | if params.options.quiet == 0: | 405 | if params.options.quiet == 0: |
393 | console_loglevel = loglevel | 406 | console_loglevel = loglevel |