From 4320386deb54866d643edeb29dd9567821f1cb26 Mon Sep 17 00:00:00 2001 From: Holger Freyther Date: Mon, 18 May 2009 19:56:36 +0200 Subject: bitbake: [parser] Move the finalise into the ast as well Signed-off-by: Richard Purdie --- bitbake/lib/bb/parse/parse_py/BBHandler.py | 45 ++---------------------------- 1 file changed, 2 insertions(+), 43 deletions(-) (limited to 'bitbake/lib/bb/parse/parse_py/BBHandler.py') diff --git a/bitbake/lib/bb/parse/parse_py/BBHandler.py b/bitbake/lib/bb/parse/parse_py/BBHandler.py index 46413c5dc3..bb868d1c57 100644 --- a/bitbake/lib/bb/parse/parse_py/BBHandler.py +++ b/bitbake/lib/bb/parse/parse_py/BBHandler.py @@ -75,47 +75,6 @@ def inherit(statements, files, d): include(statements, fn, file, d, "inherit") __inherit_cache = data.getVar('__inherit_cache', d) or [] - -def finalise(fn, d): - data.expandKeys(d) - data.update_data(d) - anonqueue = data.getVar("__anonqueue", d, 1) or [] - body = [x['content'] for x in anonqueue] - flag = { 'python' : 1, 'func' : 1 } - data.setVar("__anonfunc", "\n".join(body), d) - data.setVarFlags("__anonfunc", flag, d) - from bb import build - try: - t = data.getVar('T', d) - data.setVar('T', '${TMPDIR}/anonfunc/', d) - anonfuncs = data.getVar('__BBANONFUNCS', d) or [] - code = "" - for f in anonfuncs: - code = code + " %s(d)\n" % f - data.setVar("__anonfunc", code, d) - build.exec_func("__anonfunc", d) - data.delVar('T', d) - if t: - data.setVar('T', t, d) - except Exception, e: - bb.msg.debug(1, bb.msg.domain.Parsing, "Exception when executing anonymous function: %s" % e) - raise - data.delVar("__anonqueue", d) - data.delVar("__anonfunc", d) - data.update_data(d) - - all_handlers = {} - for var in data.getVar('__BBHANDLERS', d) or []: - # try to add the handler - handler = data.getVar(var,d) - bb.event.register(var, handler) - - tasklist = data.getVar('__BBTASKS', d) or [] - bb.build.add_tasks(tasklist, d) - - bb.event.fire(bb.event.RecipeParsed(fn), d) - - def handle(fn, d, include, statements): global __func_start_regexp__, __inherit_regexp__, __export_func_regexp__, __addtask_regexp__, __addhandler_regexp__, __infunc__, __body__, __residue__ __body__ = [] @@ -174,7 +133,7 @@ def handle(fn, d, include, statements): else: based = d try: - finalise(fn, based) + ast.finalise(fn, based) except bb.parse.SkipPackage: bb.data.setVar("__SKIPPED", True, based) darray = {"": based} @@ -185,7 +144,7 @@ def handle(fn, d, include, statements): data.setVar('PN', pn + '-' + cls, based) inherit(statements, [cls], based) try: - finalise(fn, based) + ast.finalise(fn, based) except bb.parse.SkipPackage: bb.data.setVar("__SKIPPED", True, based) darray[cls] = based -- cgit v1.2.3-54-g00ecf