mirror of
git://git.yoctoproject.org/poky.git
synced 2025-07-19 21:09:03 +02:00

Currently, command.py can return an error message from runCommand, due to being unable to run the command, yet few of our UIs (just hob) can handle it today. This can result in seeing a TypeError with traceback in certain rare circumstances. To resolve this, we need a clean way to get errors back from runCommand, without having to isinstance() the return value. This implements such a thing by making runCommand also return an error (or None if no error occurred). As runCommand now has a method of returning errors, we can also alter the getCmdLineAction bits such that the returned value is just the action, not an additional message. If a sync command wants to return an error, it raises CommandError(message), and the message will be passed to the caller appropriately. Example Usage: result, error = server.runCommand(...) if error: log.error('Unable to run command: %s' % error) return 1 (Bitbake rev: d1002e33e05d45a7e1bd65d79537419a4057e43a) Signed-off-by: Christopher Larson <chris_larson@mentor.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
120 lines
3.7 KiB
Python
120 lines
3.7 KiB
Python
#
|
|
# BitBake Graphical GTK User Interface
|
|
#
|
|
# Copyright (C) 2008 Intel Corporation
|
|
#
|
|
# Authored by Rob Bradford <rob@linux.intel.com>
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License version 2 as
|
|
# published by the Free Software Foundation.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License along
|
|
# with this program; if not, write to the Free Software Foundation, Inc.,
|
|
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
import gobject
|
|
import gtk
|
|
import xmlrpclib
|
|
from bb.ui.crumbs.runningbuild import RunningBuildTreeView, RunningBuild
|
|
from bb.ui.crumbs.progress import ProgressBar
|
|
|
|
import Queue
|
|
|
|
|
|
def event_handle_idle_func (eventHandler, build, pbar):
|
|
|
|
# Consume as many messages as we can in the time available to us
|
|
event = eventHandler.getEvent()
|
|
while event:
|
|
build.handle_event (event, pbar)
|
|
event = eventHandler.getEvent()
|
|
|
|
return True
|
|
|
|
def scroll_tv_cb (model, path, iter, view):
|
|
view.scroll_to_cell (path)
|
|
|
|
|
|
# @todo hook these into the GUI so the user has feedback...
|
|
def running_build_failed_cb (running_build):
|
|
pass
|
|
|
|
|
|
def running_build_succeeded_cb (running_build):
|
|
pass
|
|
|
|
|
|
class MainWindow (gtk.Window):
|
|
def __init__ (self):
|
|
gtk.Window.__init__ (self, gtk.WINDOW_TOPLEVEL)
|
|
|
|
# Setup tree view and the scrolled window
|
|
scrolled_window = gtk.ScrolledWindow ()
|
|
self.add (scrolled_window)
|
|
self.cur_build_tv = RunningBuildTreeView()
|
|
self.connect("delete-event", gtk.main_quit)
|
|
self.set_default_size(640, 480)
|
|
scrolled_window.add (self.cur_build_tv)
|
|
|
|
|
|
def main (server, eventHandler):
|
|
gobject.threads_init()
|
|
gtk.gdk.threads_init()
|
|
|
|
window = MainWindow ()
|
|
window.show_all ()
|
|
pbar = ProgressBar(window)
|
|
pbar.connect("delete-event", gtk.main_quit)
|
|
|
|
# Create the object for the current build
|
|
running_build = RunningBuild ()
|
|
window.cur_build_tv.set_model (running_build.model)
|
|
running_build.model.connect("row-inserted", scroll_tv_cb, window.cur_build_tv)
|
|
running_build.connect ("build-succeeded", running_build_succeeded_cb)
|
|
running_build.connect ("build-failed", running_build_failed_cb)
|
|
|
|
try:
|
|
cmdline, error = server.runCommand(["getCmdLineAction"])
|
|
if err:
|
|
print("Error getting bitbake commandline: %s" % error)
|
|
return 1
|
|
elif 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 error:
|
|
print("Error running command '%s': %s" % (cmdline, error))
|
|
return 1
|
|
elif ret != True:
|
|
print("Error running command '%s': returned %s" % (cmdline, ret))
|
|
return 1
|
|
except xmlrpclib.Fault as x:
|
|
print("XMLRPC Fault getting commandline:\n %s" % x)
|
|
return 1
|
|
|
|
# Use a timeout function for probing the event queue to find out if we
|
|
# have a message waiting for us.
|
|
gobject.timeout_add (100,
|
|
event_handle_idle_func,
|
|
eventHandler,
|
|
running_build,
|
|
pbar)
|
|
|
|
try:
|
|
gtk.main()
|
|
except EnvironmentError as ioerror:
|
|
# ignore interrupted io
|
|
if ioerror.args[0] == 4:
|
|
pass
|
|
except KeyboardInterrupt:
|
|
pass
|
|
finally:
|
|
server.runCommand(["stateStop"])
|
|
|