blob: 8fa4ab7116b63ee3c79bea20dfadfedb6103211f [file] [log] [blame]
Patrick Williamsc0f7c042017-02-23 20:41:17 -06001#!/usr/bin/env python3
Patrick Williamsc124f4f2015-09-15 14:41:29 -05002#
3# Copyright (C) 2014 Alex Damian
4#
Brad Bishopc342db32019-05-15 21:57:59 -04005# SPDX-License-Identifier: GPL-2.0-only
6#
Patrick Williamsc124f4f2015-09-15 14:41:29 -05007# This file re-uses code spread throughout other Bitbake source files.
8# As such, all other copyrights belong to their own right holders.
9#
Patrick Williamsc124f4f2015-09-15 14:41:29 -050010
Patrick Williamsc0f7c042017-02-23 20:41:17 -060011"""
12This command takes a filename as a single parameter. The filename is read
13as a build eventlog, and the ToasterUI is used to process events in the file
14and log data in the database
15"""
Patrick Williamsc124f4f2015-09-15 14:41:29 -050016
Patrick Williamsc124f4f2015-09-15 14:41:29 -050017import os
Patrick Williamsc0f7c042017-02-23 20:41:17 -060018import sys
19import json
20import pickle
21import codecs
22
23from collections import namedtuple
Patrick Williamsc124f4f2015-09-15 14:41:29 -050024
25# mangle syspath to allow easy import of modules
Patrick Williamsc0f7c042017-02-23 20:41:17 -060026from os.path import join, dirname, abspath
27sys.path.insert(0, join(dirname(dirname(abspath(__file__))), 'lib'))
Patrick Williamsc124f4f2015-09-15 14:41:29 -050028
29import bb.cooker
30from bb.ui import toasterui
Patrick Williamsc124f4f2015-09-15 14:41:29 -050031
Patrick Williamsc0f7c042017-02-23 20:41:17 -060032class EventPlayer:
33 """Emulate a connection to a bitbake server."""
Patrick Williamsc124f4f2015-09-15 14:41:29 -050034
Patrick Williamsc0f7c042017-02-23 20:41:17 -060035 def __init__(self, eventfile, variables):
36 self.eventfile = eventfile
37 self.variables = variables
38 self.eventmask = []
Patrick Williamsc124f4f2015-09-15 14:41:29 -050039
Patrick Williamsc0f7c042017-02-23 20:41:17 -060040 def waitEvent(self, _timeout):
41 """Read event from the file."""
42 line = self.eventfile.readline().strip()
43 if not line:
44 return
45 try:
46 event_str = json.loads(line)['vars'].encode('utf-8')
47 event = pickle.loads(codecs.decode(event_str, 'base64'))
48 event_name = "%s.%s" % (event.__module__, event.__class__.__name__)
49 if event_name not in self.eventmask:
50 return
51 return event
52 except ValueError as err:
53 print("Failed loading ", line)
54 raise err
Patrick Williamsc124f4f2015-09-15 14:41:29 -050055
Patrick Williamsc0f7c042017-02-23 20:41:17 -060056 def runCommand(self, command_line):
57 """Emulate running a command on the server."""
58 name = command_line[0]
59
60 if name == "getVariable":
61 var_name = command_line[1]
62 variable = self.variables.get(var_name)
63 if variable:
64 return variable['v'], None
65 return None, "Missing variable %s" % var_name
66
67 elif name == "getAllKeysWithFlags":
68 dump = {}
69 flaglist = command_line[1]
70 for key, val in self.variables.items():
71 try:
72 if not key.startswith("__"):
73 dump[key] = {
74 'v': val['v'],
75 'history' : val['history'],
76 }
77 for flag in flaglist:
78 dump[key][flag] = val[flag]
79 except Exception as err:
80 print(err)
81 return (dump, None)
82
83 elif name == 'setEventMask':
84 self.eventmask = command_line[-1]
85 return True, None
86
87 else:
88 raise Exception("Command %s not implemented" % command_line[0])
89
90 def getEventHandle(self):
Patrick Williamsc124f4f2015-09-15 14:41:29 -050091 """
Patrick Williamsc0f7c042017-02-23 20:41:17 -060092 This method is called by toasterui.
93 The return value is passed to self.runCommand but not used there.
94 """
95 pass
Patrick Williamsc124f4f2015-09-15 14:41:29 -050096
Patrick Williamsc0f7c042017-02-23 20:41:17 -060097def main(argv):
98 with open(argv[-1]) as eventfile:
99 # load variables from the first line
100 variables = json.loads(eventfile.readline().strip())['allvariables']
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500101
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600102 params = namedtuple('ConfigParams', ['observe_only'])(True)
103 player = EventPlayer(eventfile, variables)
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500104
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600105 return toasterui.main(player, player, params)
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500106
107# run toaster ui on our mock bitbake class
108if __name__ == "__main__":
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600109 if len(sys.argv) != 2:
110 print("Usage: %s <event file>" % os.path.basename(sys.argv[0]))
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500111 sys.exit(1)
112
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600113 sys.exit(main(sys.argv))