summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2013-05-20 22:54:41 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-05-21 00:05:44 +0100
commit2dbbb1d51dafd4451fef8fe16f095bcd4b8f1177 (patch)
tree5844419d58be603ed648880f4113827158bfb02b
parent35bd5997e8d8e74bc36019030cc10c560a8134f9 (diff)
downloadbitbake-2dbbb1d51dafd4451fef8fe16f095bcd4b8f1177.tar.gz
cooker: Move commandline parsing back into the UI/cookerdata
Building up a set of actions for the server is tricky since we depend upon the commandline but fall back to values from the datastore. We should be able to build a datastore without a commandline and vice versa. Ultimately the UI should send the commands to the server. This patch amounts to code rearranging, moving the heavy lifting to the UI, though a helper in the configuration option. This will need further cleanup/tweaking but this should be the only update needed to the UIs. The code now queries the server for any missing data should it need to. This code allows various knowledge of configuration variables to move to the UI side only, partcularly pkgs_to_build but also all the command specifiers. It should also be possible to move cmd eventually, I'm just unsure if any callers call the commands expecting this to default to something sane right now. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rwxr-xr-xbin/bitbake3
-rw-r--r--lib/bb/command.py20
-rw-r--r--lib/bb/cooker.py47
-rw-r--r--lib/bb/cookerdata.py57
-rw-r--r--lib/bb/ui/depexp.py16
-rw-r--r--lib/bb/ui/goggle.py14
-rwxr-xr-xlib/bb/ui/hob.py3
-rw-r--r--lib/bb/ui/knotty.py19
-rw-r--r--lib/bb/ui/ncurses.py14
9 files changed, 104 insertions, 89 deletions
diff --git a/bin/bitbake b/bin/bitbake
index 7087d2d94..c87e5b398 100755
--- a/bin/bitbake
+++ b/bin/bitbake
@@ -238,7 +238,6 @@ def main():
try:
configuration.setServerRegIdleCallback(server.getServerIdleCB())
cooker = bb.cooker.BBCooker(configuration)
- cooker.parseCommandLine()
server.addcooker(cooker)
server.saveConnectionDetails()
@@ -272,7 +271,7 @@ def main():
os.environ[k] = cleanedvars[k]
try:
- return server.launchUI(ui_main, server_connection.connection, server_connection.events)
+ return server.launchUI(ui_main, server_connection.connection, server_connection.events, configParams)
finally:
bb.event.ui_queue = []
server_connection.terminate()
diff --git a/lib/bb/command.py b/lib/bb/command.py
index 8577df6e0..29d31d598 100644
--- a/lib/bb/command.py
+++ b/lib/bb/command.py
@@ -143,18 +143,6 @@ class CommandsSync:
"""
command.cooker.stop()
- def getCmdLineAction(self, command, params):
- """
- Get any command parsed from the commandline
- """
- cmd_action = command.cooker.commandlineAction
- if cmd_action is None:
- return None
- elif 'msg' in cmd_action and cmd_action['msg']:
- raise CommandError(cmd_action['msg'])
- else:
- return cmd_action['action']
-
def getVariable(self, command, params):
"""
Read the value of a variable from configuration.data
@@ -174,6 +162,14 @@ class CommandsSync:
value = str(params[1])
command.cooker.configuration.data.setVar(varname, value)
+ def setConfig(self, command, params):
+ """
+ Set the value of variable in configuration
+ """
+ varname = params[0]
+ value = str(params[1])
+ setattr(command.cooker.configuration, varname, value)
+
def enableDataTracking(self, command, params):
"""
Enable history tracking for variables
diff --git a/lib/bb/cooker.py b/lib/bb/cooker.py
index 1a2c01639..ca544558f 100644
--- a/lib/bb/cooker.py
+++ b/lib/bb/cooker.py
@@ -147,10 +147,6 @@ class BBCooker:
if not self.lock:
bb.fatal("Only one copy of bitbake should be run against a build directory")
- bbpkgs = self.configuration.data.getVar('BBPKGS', True)
- if bbpkgs and len(self.configuration.pkgs_to_build) == 0:
- self.configuration.pkgs_to_build.extend(bbpkgs.split())
-
#
# Special updated configuration we use for firing events
#
@@ -175,7 +171,7 @@ class BBCooker:
def initConfigurationData(self):
self.configuration.data = bb.data.init()
- if self.configuration.show_environment:
+ if self.configuration.tracking:
self.configuration.data.enableTracking()
if not self.configuration.server_register_idlecallback:
@@ -203,9 +199,6 @@ class BBCooker:
logger.exception("Error parsing configuration files")
sys.exit(1)
- if not self.configuration.cmd:
- self.configuration.cmd = self.configuration.data.getVar("BB_DEFAULT_TASK", True) or "build"
-
def saveConfigurationVar(self, var, val, default_file):
replaced = False
@@ -309,44 +302,6 @@ class BBCooker:
self.handleCollections( self.configuration.data.getVar("BBFILE_COLLECTIONS", True) )
- def parseCommandLine(self):
- # Parse any commandline into actions
- self.commandlineAction = {'action':None, 'msg':None}
- if self.configuration.show_environment:
- if 'world' in self.configuration.pkgs_to_build:
- self.commandlineAction['msg'] = "'world' is not a valid target for --environment."
- elif 'universe' in self.configuration.pkgs_to_build:
- self.commandlineAction['msg'] = "'universe' is not a valid target for --environment."
- elif len(self.configuration.pkgs_to_build) > 1:
- self.commandlineAction['msg'] = "Only one target can be used with the --environment option."
- elif self.configuration.buildfile and len(self.configuration.pkgs_to_build) > 0:
- self.commandlineAction['msg'] = "No target should be used with the --environment and --buildfile options."
- elif len(self.configuration.pkgs_to_build) > 0:
- self.commandlineAction['action'] = ["showEnvironmentTarget", self.configuration.pkgs_to_build]
- self.configuration.data.setVar("BB_CONSOLELOG", None)
- else:
- self.commandlineAction['action'] = ["showEnvironment", self.configuration.buildfile]
- self.configuration.data.setVar("BB_CONSOLELOG", None)
- elif self.configuration.buildfile is not None:
- self.commandlineAction['action'] = ["buildFile", self.configuration.buildfile, self.configuration.cmd]
- elif self.configuration.revisions_changed:
- self.commandlineAction['action'] = ["compareRevisions"]
- elif self.configuration.show_versions:
- self.commandlineAction['action'] = ["showVersions"]
- elif self.configuration.parse_only:
- self.commandlineAction['action'] = ["parseFiles"]
- elif self.configuration.dot_graph:
- if self.configuration.pkgs_to_build:
- self.commandlineAction['action'] = ["generateDotGraph", self.configuration.pkgs_to_build, self.configuration.cmd]
- else:
- self.commandlineAction['msg'] = "Please specify a package name for dependency graph generation."
- else:
- if self.configuration.pkgs_to_build:
- self.commandlineAction['action'] = ["buildTargets", self.configuration.pkgs_to_build, self.configuration.cmd]
- else:
- #self.commandlineAction['msg'] = "Nothing to do. Use 'bitbake world' to build everything, or run 'bitbake --help' for usage information."
- self.commandlineAction = None
-
def runCommands(self, server, data, abort):
"""
Run any queued asynchronous command
diff --git a/lib/bb/cookerdata.py b/lib/bb/cookerdata.py
index 2c3275ac6..3c2469ef8 100644
--- a/lib/bb/cookerdata.py
+++ b/lib/bb/cookerdata.py
@@ -50,6 +50,61 @@ class ConfigParameters(object):
def parseEnvironment(self):
return os.environ.copy()
+ def updateFromServer(self, server):
+ if not self.options.cmd:
+ defaulttask, error = server.runCommand(["getVariable", "BB_DEFAULT_TASK"])
+ if error:
+ raise Exception("Unable to get the value of BB_DEFAULT_TASK from the server: %s" % error)
+ self.options.cmd = defaulttask or "build"
+ _, error = server.runCommand(["setConfig", "cmd", self.options.cmd])
+ if error:
+ raise Exception("Unable to set configuration option 'cmd' on the server: %s" % error)
+
+ if not self.options.pkgs_to_build:
+ bbpkgs, error = server.runCommand(["getVariable", "BBPKGS"])
+ if error:
+ raise Exception("Unable to get the value of BBPKGS from the server: %s" % error)
+ if bbpkgs:
+ self.options.pkgs_to_build.extend(bbpkgs.split())
+
+ def parseActions(self):
+ # Parse any commandline into actions
+ action = {'action':None, 'msg':None}
+ if self.options.show_environment:
+ if 'world' in self.options.pkgs_to_build:
+ action['msg'] = "'world' is not a valid target for --environment."
+ elif 'universe' in self.options.pkgs_to_build:
+ action['msg'] = "'universe' is not a valid target for --environment."
+ elif len(self.options.pkgs_to_build) > 1:
+ action['msg'] = "Only one target can be used with the --environment option."
+ elif self.options.buildfile and len(self.options.pkgs_to_build) > 0:
+ action['msg'] = "No target should be used with the --environment and --buildfile options."
+ elif len(self.options.pkgs_to_build) > 0:
+ action['action'] = ["showEnvironmentTarget", self.options.pkgs_to_build]
+ else:
+ action['action'] = ["showEnvironment", self.options.buildfile]
+ elif self.options.buildfile is not None:
+ action['action'] = ["buildFile", self.options.buildfile, self.options.cmd]
+ elif self.options.revisions_changed:
+ action['action'] = ["compareRevisions"]
+ elif self.options.show_versions:
+ action['action'] = ["showVersions"]
+ elif self.options.parse_only:
+ action['action'] = ["parseFiles"]
+ elif self.options.dot_graph:
+ if self.options.pkgs_to_build:
+ action['action'] = ["generateDotGraph", self.options.pkgs_to_build, self.options.cmd]
+ else:
+ action['msg'] = "Please specify a package name for dependency graph generation."
+ else:
+ if self.options.pkgs_to_build:
+ action['action'] = ["buildTargets", self.options.pkgs_to_build, self.options.cmd]
+ else:
+ #action['msg'] = "Nothing to do. Use 'bitbake world' to build everything, or run 'bitbake --help' for usage information."
+ action = None
+ self.options.initialaction = action
+ return action
+
class CookerConfiguration(object):
"""
Manages build options and configurations for one run
@@ -61,7 +116,7 @@ class CookerConfiguration(object):
self.prefile = []
self.postfile = []
self.debug = 0
- self.pkgs_to_build = []
+ self.cmd = None
def setConfigParameters(self, parameters):
self.params = parameters
diff --git a/lib/bb/ui/depexp.py b/lib/bb/ui/depexp.py
index 85910f692..885c31aea 100644
--- a/lib/bb/ui/depexp.py
+++ b/lib/bb/ui/depexp.py
@@ -196,16 +196,18 @@ class gtkthread(threading.Thread):
gtkthread.quit.set()
-def main(server, eventHandler):
+def main(server, eventHandler, params):
try:
- cmdline, error = server.runCommand(["getCmdLineAction"])
- if error:
- print("Error getting bitbake commandline: %s" % error)
- return 1
- elif not cmdline:
+ params.updateFromServer(server)
+ cmdline = params.parseActions()
+ if not cmdline:
print("Nothing to do. Use 'bitbake world' to build everything, or run 'bitbake --help' for usage information.")
return 1
- elif not cmdline or cmdline[0] != "generateDotGraph":
+ if 'msg' in cmdline and cmdline['msg']:
+ logger.error(cmdline['msg'])
+ return 1
+ cmdline = cmdline['action']
+ if not cmdline or cmdline[0] != "generateDotGraph":
print("This UI is only compatible with the -g option")
return 1
ret, error = server.runCommand(["generateDepTreeEvent", cmdline[1], cmdline[2]])
diff --git a/lib/bb/ui/goggle.py b/lib/bb/ui/goggle.py
index e8a54ab29..16faba4c2 100644
--- a/lib/bb/ui/goggle.py
+++ b/lib/bb/ui/goggle.py
@@ -63,7 +63,7 @@ class MainWindow (gtk.Window):
scrolled_window.add (self.cur_build_tv)
-def main (server, eventHandler):
+def main (server, eventHandler, params):
gobject.threads_init()
gtk.gdk.threads_init()
@@ -80,13 +80,15 @@ def main (server, eventHandler):
running_build.connect ("build-failed", running_build_failed_cb)
try:
- cmdline, error = server.runCommand(["getCmdLineAction"])
- if error:
- print("Error getting bitbake commandline: %s" % error)
- return 1
- elif not cmdline:
+ params.updateFromServer(server)
+ cmdline = params.parseActions()
+ if not cmdline:
print("Nothing to do. Use 'bitbake world' to build everything, or run 'bitbake --help' for usage information.")
return 1
+ if 'msg' in cmdline and cmdline['msg']:
+ logger.error(cmdline['msg'])
+ return 1
+ cmdline = cmdline['action']
ret, error = server.runCommand(cmdline)
if error:
print("Error running command '%s': %s" % (cmdline, error))
diff --git a/lib/bb/ui/hob.py b/lib/bb/ui/hob.py
index 55bd84cca..2c75cb8fd 100755
--- a/lib/bb/ui/hob.py
+++ b/lib/bb/ui/hob.py
@@ -58,7 +58,8 @@ def event_handle_idle_func(eventHandler, hobHandler):
event = eventHandler.getEvent()
return True
-def main (server = None, eventHandler = None):
+def main (server, eventHandler, params):
+ params.updateFromServer(server)
gobject.threads_init()
# That indicates whether the Hob and the bitbake server are
diff --git a/lib/bb/ui/knotty.py b/lib/bb/ui/knotty.py
index 6ea7d8694..389c3cc64 100644
--- a/lib/bb/ui/knotty.py
+++ b/lib/bb/ui/knotty.py
@@ -216,7 +216,7 @@ class TerminalFilter(object):
fd = sys.stdin.fileno()
self.termios.tcsetattr(fd, self.termios.TCSADRAIN, self.stdinbackup)
-def main(server, eventHandler, tf = TerminalFilter):
+def main(server, eventHandler, params, tf = TerminalFilter):
# Get values of variables which control our output
includelogs, error = server.runCommand(["getVariable", "BBINCLUDELOGS"])
@@ -245,7 +245,8 @@ def main(server, eventHandler, tf = TerminalFilter):
bb.msg.addDefaultlogFilter(console)
console.setFormatter(format)
logger.addHandler(console)
- if consolelogfile:
+
+ if consolelogfile and not params.options.show_environment:
bb.utils.mkdirhier(os.path.dirname(consolelogfile))
conlogformat = bb.msg.BBLogFormatter(format_str)
consolelog = logging.FileHandler(consolelogfile)
@@ -254,14 +255,16 @@ def main(server, eventHandler, tf = TerminalFilter):
logger.addHandler(consolelog)
try:
- cmdline, error = server.runCommand(["getCmdLineAction"])
- if error:
- logger.error("Unable to get bitbake commandline arguments: %s" % error)
- return 1
- elif not cmdline:
+ params.updateFromServer(server)
+ cmdline = params.parseActions()
+ if not cmdline:
print("Nothing to do. Use 'bitbake world' to build everything, or run 'bitbake --help' for usage information.")
return 1
- ret, error = server.runCommand(cmdline)
+ if 'msg' in cmdline and cmdline['msg']:
+ logger.error(cmdline['msg'])
+ return 1
+
+ ret, error = server.runCommand(cmdline['action'])
if error:
logger.error("Command '%s' failed: %s" % (cmdline, error))
return 1
diff --git a/lib/bb/ui/ncurses.py b/lib/bb/ui/ncurses.py
index 98647fc3e..c45ffd63a 100644
--- a/lib/bb/ui/ncurses.py
+++ b/lib/bb/ui/ncurses.py
@@ -196,7 +196,7 @@ class NCursesUI:
# t.start()
#-------------------------------------------------------------------------#
- def main(self, stdscr, server, eventHandler):
+ def main(self, stdscr, server, eventHandler, params):
#-------------------------------------------------------------------------#
height, width = stdscr.getmaxyx()
@@ -236,13 +236,15 @@ class NCursesUI:
shutdown = 0
try:
- cmdline, error = server.runCommand(["getCmdLineAction"])
+ params.updateFromServer(server)
+ cmdline = params.parseActions()
if not cmdline:
print("Nothing to do. Use 'bitbake world' to build everything, or run 'bitbake --help' for usage information.")
- return
- elif error:
- print("Error getting bitbake commandline: %s" % error)
- return
+ return 1
+ if 'msg' in cmdline and cmdline['msg']:
+ logger.error(cmdline['msg'])
+ return 1
+ cmdline = cmdline['action']
ret, error = server.runCommand(cmdline)
if error:
print("Error running command '%s': %s" % (cmdline, error))