From: Robert Yang <liezhi.yang@windriver.com>
To: <bitbake-devel@lists.openembedded.org>
Subject: Re: [PATCH 0/1] bitbake: runqueue/cooker: catch hashvalidate error
Date: Wed, 1 Jul 2015 11:24:33 +0800 [thread overview]
Message-ID: <55935D71.1020105@windriver.com> (raw)
In-Reply-To: <cover.1428655392.git.liezhi.yang@windriver.com>
Hi RP,
I rebased the code and put on:
git://git.pokylinux.org/poky-contrib rbt/hx
Do you have any comments, please ?
Author: Hongxu Jia <hongxu.jia@windriver.com>
Date: Wed Aug 27 11:32:35 2014 +0800
bitbake: runqueue/cooker: catch hashvalidate error in RunQueueExecuteScenequeue
We need to catch the failure of self.rq.hashvalidate which invoked
in RunQueueExecuteScenequeue, and exit in a normal build. So we
raise bb.BBHandledException for this specific error.
Tweak execute_runqueue's exception process order. So the build will
exit peacefully while the above failure occurs.
(LOCAL REV: NOT UPSTREAM) -- Sent to bitbake-devel on 20140827
Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
diff --git a/bitbake/lib/bb/cooker.py b/bitbake/lib/bb/cooker.py
index f31bca6..304cd27 100644
--- a/bitbake/lib/bb/cooker.py
+++ b/bitbake/lib/bb/cooker.py
@@ -1298,7 +1298,7 @@ class BBCooker:
except runqueue.TaskFailure as exc:
failures += len(exc.args)
retval = False
- except SystemExit as exc:
+ except (SystemExit, bb.BBHandledException) as exc:
self.command.finishAsyncCommand()
return False
@@ -1331,7 +1331,7 @@ class BBCooker:
except runqueue.TaskFailure as exc:
failures += len(exc.args)
retval = False
- except SystemExit as exc:
+ except (SystemExit, bb.BBHandledException) as exc:
self.command.finishAsyncCommand()
return False
diff --git a/bitbake/lib/bb/runqueue.py b/bitbake/lib/bb/runqueue.py
index 17a55d3..bd9f3b5 100644
--- a/bitbake/lib/bb/runqueue.py
+++ b/bitbake/lib/bb/runqueue.py
@@ -1103,8 +1103,9 @@ class RunQueue:
pass
self.state = runQueueComplete
raise
- except:
- logger.error("An uncaught exception occured in runqueue, please see
the failure below:")
+ except BaseException as e:
+ if not isinstance(e, (SystemExit, bb.BBHandledException)):
+ logger.error("An uncaught exception occured in runqueue, please
see the failure below:")
try:
self.teardown_workers()
except:
@@ -1841,7 +1842,11 @@ class RunQueueExecuteScenequeue(RunQueueExecute):
sq_task.append(task)
call = self.rq.hashvalidate + "(sq_fn, sq_task, sq_hash,
sq_hashfn, d)"
locs = { "sq_fn" : sq_fn, "sq_task" : sq_taskname, "sq_hash" :
sq_hash, "sq_hashfn" : sq_hashfn, "d" : self.cooker.expanded_data }
- valid = bb.utils.better_eval(call, locs)
+ try:
+ valid = bb.utils.better_eval(call, locs)
+ except Exception as e:
+ logger.error("Hash validation failed in
RunQueueExecuteScenequeue %s" % str(e))
+ raise bb.BBHandledException()
valid_new = stamppresent
for v in valid:
@@ -2027,7 +2032,6 @@ class TaskFailure(Exception):
def __init__(self, x):
self.args = x
-
class runQueueExitWait(bb.event.Event):
"""
Event when waiting for task processes to exit
// Robert
On 04/10/2015 04:44 PM, Robert Yang wrote:
> *** BLURB HERE ***
> The following changes since commit 6ebeae9b2011050c318a764e980bc47e51cc2d74:
>
> tiff: remove extra dev and dbg from PACKAGES (2015-04-10 01:24:01 -0700)
>
> are available in the git repository at:
>
> git://git.pokylinux.org/poky-contrib rbt/hx
> http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=rbt/hx
>
> Hongxu Jia (1):
> bitbake: runqueue/cooker: catch hashvalidate error in
> RunQueueExecuteScenequeue
>
> bitbake/lib/bb/cooker.py | 4 ++--
> bitbake/lib/bb/runqueue.py | 14 ++++++++------
> 2 files changed, 10 insertions(+), 8 deletions(-)
>
prev parent reply other threads:[~2015-07-01 3:24 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-04-10 8:44 [PATCH 0/1] bitbake: runqueue/cooker: catch hashvalidate error Robert Yang
2015-04-10 8:44 ` [PATCH 1/1] bitbake: runqueue/cooker: catch hashvalidate error in RunQueueExecuteScenequeue Robert Yang
2015-07-01 3:24 ` Robert Yang [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=55935D71.1020105@windriver.com \
--to=liezhi.yang@windriver.com \
--cc=bitbake-devel@lists.openembedded.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox