From d4c3ace09790a18e240c4aea655e41ecee786e1b Mon Sep 17 00:00:00 2001 From: Paul Eggleton Date: Thu, 27 Jul 2017 14:51:49 +0200 Subject: bitbake: bitbake-diffsigs: fix regression after recent server changes We were bridging the gap between the server and UI here by calling a bb.siggen.find_siginfo, a function defined and set on that module from the metadata. This worked from the UI side before but since the recent server changes is no longer accessible. Create a new command so this can execute on the server side and return the result by way of a new event. (We're still running compare_sigfiles() on the signature generator but that isn't quite the same thing and does still work.) Fixes [YOCTO #11844]. (Bitbake rev: fdcea991baa4f83d9c98d468d7b49c8c388a4a15) Signed-off-by: Paul Eggleton Signed-off-by: Richard Purdie --- bitbake/lib/bb/command.py | 11 +++++++++++ bitbake/lib/bb/event.py | 8 ++++++++ 2 files changed, 19 insertions(+) (limited to 'bitbake/lib') diff --git a/bitbake/lib/bb/command.py b/bitbake/lib/bb/command.py index 0e0a35af69..c44c7a6a5e 100644 --- a/bitbake/lib/bb/command.py +++ b/bitbake/lib/bb/command.py @@ -746,3 +746,14 @@ class CommandsAsync: command.finishAsyncCommand() clientComplete.needcache = False + def findSigInfo(self, command, params): + """ + Find signature info files via the signature generator + """ + pn = params[0] + taskname = params[1] + sigs = params[2] + res = bb.siggen.find_siginfo(pn, taskname, sigs, command.cooker.data) + bb.event.fire(bb.event.FindSigInfoResult(res), command.cooker.data) + command.finishAsyncCommand() + findSigInfo.needcache = False diff --git a/bitbake/lib/bb/event.py b/bitbake/lib/bb/event.py index 59cca61424..3827dcfba4 100644 --- a/bitbake/lib/bb/event.py +++ b/bitbake/lib/bb/event.py @@ -819,3 +819,11 @@ class NetworkTestFailed(Event): """ Event to indicate network test has failed """ + +class FindSigInfoResult(Event): + """ + Event to return results from findSigInfo command + """ + def __init__(self, result): + Event.__init__(self) + self.result = result -- cgit v1.2.3-54-g00ecf