From: Richard Purdie Date: Tue, 21 Aug 2012 16:25:07 +0000 (+0000) Subject: bitbake: event/ast: Use better_exec instead of simple_exec X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=21773a997a2a8ece3b9549c5940468c5a889ac40;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git bitbake: event/ast: Use better_exec instead of simple_exec This improves the stacktraces dumped by bitbake when for example anonymous python functions fail. Also default to passing code strings to better_exec to match the behaviour of simple_exec to aid the transition. (Bitbake rev: 7e8205929ae953731a6854ea80b197847cff5771) Signed-off-by: Richard Purdie --- diff --git a/bitbake/lib/bb/event.py b/bitbake/lib/bb/event.py index 20923b5f082..fa179d8a11f 100644 --- a/bitbake/lib/bb/event.py +++ b/bitbake/lib/bb/event.py @@ -175,7 +175,7 @@ def register(name, handler): _handlers[name] = noop return env = {} - bb.utils.simple_exec(code, env) + bb.utils.better_exec(code, env) func = bb.utils.better_eval(name, env) _handlers[name] = func else: diff --git a/bitbake/lib/bb/parse/ast.py b/bitbake/lib/bb/parse/ast.py index 86f94636b9e..b88d5f5b39d 100644 --- a/bitbake/lib/bb/parse/ast.py +++ b/bitbake/lib/bb/parse/ast.py @@ -320,7 +320,7 @@ def finalize(fn, d, variant = None): code = [] for funcname in d.getVar("__BBANONFUNCS") or []: code.append("%s(d)" % funcname) - bb.utils.simple_exec("\n".join(code), {"d": d}) + bb.utils.better_exec("\n".join(code), {"d": d}) bb.data.update_data(d) tasklist = d.getVar('__BBTASKS') or [] diff --git a/bitbake/lib/bb/utils.py b/bitbake/lib/bb/utils.py index ee4ef73bfc8..44a42a0136b 100644 --- a/bitbake/lib/bb/utils.py +++ b/bitbake/lib/bb/utils.py @@ -218,13 +218,15 @@ def better_compile(text, file, realfile, mode = "exec"): raise -def better_exec(code, context, text, realfile = ""): +def better_exec(code, context, text = None, realfile = "", data = None): """ Similiar to better_compile, better_exec will print the lines that are responsible for the error. """ import bb.parse + if not text: + text = code if not hasattr(code, "co_filename"): code = better_compile(code, realfile, realfile) try: