summaryrefslogtreecommitdiffstats
path: root/lib/bb/event.py
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2015-06-19 09:27:14 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-06-19 22:43:48 +0100
commit44ac81e5281fb62ad00e2f79a9d754118ea62526 (patch)
tree7ef4948e80db578b51aba0547a3c6f6d61004c1d /lib/bb/event.py
parent659ef95c9b8aced3c4ded81c48bcc0fbde4d429f (diff)
downloadbitbake-contrib-44ac81e5281fb62ad00e2f79a9d754118ea62526.tar.gz
event: Inject 'd' into event handlers
To quote Chris Larson: """ e.data.getVar() gets a bit old in a large event handler, and it means a simple handler has to be modified if switching between an event handler (e.g. RecipeParsed) and anonymous python. I think it would make sense to restore the 'd' convention here to align with python elsewhere. It'd just be a convenience, d==e.data, to avoid the common pattern of setting it at the top of the event handler. """ I couldn't find a way to inject 'd' via locals/globals due to the use of a function parameter so this left __builtins__ as the only way I could find to make this work. [YOCTO #7668] Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'lib/bb/event.py')
-rw-r--r--lib/bb/event.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/bb/event.py b/lib/bb/event.py
index ba0de11cd..f0391b856 100644
--- a/lib/bb/event.py
+++ b/lib/bb/event.py
@@ -72,6 +72,7 @@ _eventfilter = None
def execute_handler(name, handler, event, d):
event.data = d
+ __builtins__['d'] = d
try:
ret = handler(event)
except (bb.parse.SkipRecipe, bb.BBHandledException):
@@ -87,6 +88,7 @@ def execute_handler(name, handler, event, d):
raise
finally:
del event.data
+ del __builtins__['d']
def fire_class_handlers(event, d):
if isinstance(event, logging.LogRecord):