mirror of
https://git.yoctoproject.org/poky
synced 2026-05-31 00:39:46 +00:00
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 <paul.eggleton@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
0342c4270e
commit
d4c3ace097
@@ -34,18 +34,39 @@ import bb.msg
|
|||||||
|
|
||||||
logger = bb.msg.logger_create('bitbake-diffsigs')
|
logger = bb.msg.logger_create('bitbake-diffsigs')
|
||||||
|
|
||||||
|
def find_siginfo(tinfoil, pn, taskname, sigs=None):
|
||||||
|
result = None
|
||||||
|
tinfoil.set_event_mask(['bb.event.FindSigInfoResult',
|
||||||
|
'logging.LogRecord',
|
||||||
|
'bb.command.CommandCompleted',
|
||||||
|
'bb.command.CommandFailed'])
|
||||||
|
ret = tinfoil.run_command('findSigInfo', pn, taskname, sigs)
|
||||||
|
if ret:
|
||||||
|
while True:
|
||||||
|
event = tinfoil.wait_event(1)
|
||||||
|
if event:
|
||||||
|
if isinstance(event, bb.command.CommandCompleted):
|
||||||
|
break
|
||||||
|
elif isinstance(event, bb.command.CommandFailed):
|
||||||
|
logger.error(str(event))
|
||||||
|
sys.exit(2)
|
||||||
|
elif isinstance(event, bb.event.FindSigInfoResult):
|
||||||
|
result = event.result
|
||||||
|
elif isinstance(event, logging.LogRecord):
|
||||||
|
logger.handle(event)
|
||||||
|
else:
|
||||||
|
logger.error('No result returned from findSigInfo command')
|
||||||
|
sys.exit(2)
|
||||||
|
return result
|
||||||
|
|
||||||
def find_compare_task(bbhandler, pn, taskname, sig1=None, sig2=None, color=False):
|
def find_compare_task(bbhandler, pn, taskname, sig1=None, sig2=None, color=False):
|
||||||
""" Find the most recent signature files for the specified PN/task and compare them """
|
""" Find the most recent signature files for the specified PN/task and compare them """
|
||||||
|
|
||||||
if not hasattr(bb.siggen, 'find_siginfo'):
|
|
||||||
logger.error('Metadata does not support finding signature data files')
|
|
||||||
sys.exit(1)
|
|
||||||
|
|
||||||
if not taskname.startswith('do_'):
|
if not taskname.startswith('do_'):
|
||||||
taskname = 'do_%s' % taskname
|
taskname = 'do_%s' % taskname
|
||||||
|
|
||||||
if sig1 and sig2:
|
if sig1 and sig2:
|
||||||
sigfiles = bb.siggen.find_siginfo(pn, taskname, [sig1, sig2], bbhandler.config_data)
|
sigfiles = find_siginfo(bbhandler, pn, taskname, [sig1, sig2])
|
||||||
if len(sigfiles) == 0:
|
if len(sigfiles) == 0:
|
||||||
logger.error('No sigdata files found matching %s %s matching either %s or %s' % (pn, taskname, sig1, sig2))
|
logger.error('No sigdata files found matching %s %s matching either %s or %s' % (pn, taskname, sig1, sig2))
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
@@ -57,7 +78,7 @@ def find_compare_task(bbhandler, pn, taskname, sig1=None, sig2=None, color=False
|
|||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
latestfiles = [sigfiles[sig1], sigfiles[sig2]]
|
latestfiles = [sigfiles[sig1], sigfiles[sig2]]
|
||||||
else:
|
else:
|
||||||
filedates = bb.siggen.find_siginfo(pn, taskname, None, bbhandler.config_data)
|
filedates = find_siginfo(bbhandler, pn, taskname)
|
||||||
latestfiles = sorted(filedates.keys(), key=lambda f: filedates[f])[-3:]
|
latestfiles = sorted(filedates.keys(), key=lambda f: filedates[f])[-3:]
|
||||||
if not latestfiles:
|
if not latestfiles:
|
||||||
logger.error('No sigdata files found matching %s %s' % (pn, taskname))
|
logger.error('No sigdata files found matching %s %s' % (pn, taskname))
|
||||||
@@ -69,7 +90,7 @@ def find_compare_task(bbhandler, pn, taskname, sig1=None, sig2=None, color=False
|
|||||||
# Define recursion callback
|
# Define recursion callback
|
||||||
def recursecb(key, hash1, hash2):
|
def recursecb(key, hash1, hash2):
|
||||||
hashes = [hash1, hash2]
|
hashes = [hash1, hash2]
|
||||||
hashfiles = bb.siggen.find_siginfo(key, None, hashes, bbhandler.config_data)
|
hashfiles = find_siginfo(bbhandler, key, None, hashes)
|
||||||
|
|
||||||
recout = []
|
recout = []
|
||||||
if len(hashfiles) == 0:
|
if len(hashfiles) == 0:
|
||||||
|
|||||||
@@ -746,3 +746,14 @@ class CommandsAsync:
|
|||||||
command.finishAsyncCommand()
|
command.finishAsyncCommand()
|
||||||
clientComplete.needcache = False
|
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
|
||||||
|
|||||||
@@ -819,3 +819,11 @@ class NetworkTestFailed(Event):
|
|||||||
"""
|
"""
|
||||||
Event to indicate network test has failed
|
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
|
||||||
|
|||||||
Reference in New Issue
Block a user