summaryrefslogtreecommitdiffstats
path: root/lib/bb/ui/uihelper.py
diff options
context:
space:
mode:
authorRichard Purdie <rpurdie@linux.intel.com>2007-08-18 14:55:45 +0000
committerRichard Purdie <rpurdie@linux.intel.com>2007-08-18 14:55:45 +0000
commit8b11b43dcf17f0e3bc1c0a24c869cd421d301b2c (patch)
tree62ca83adb5c34a72b65246face72d773025e6321 /lib/bb/ui/uihelper.py
parenta3cf76b9969853774a4b76f0780ba46f363e0321 (diff)
downloadbitbake-8b11b43dcf17f0e3bc1c0a24c869cd421d301b2c.tar.gz
Add the start of several UI modules
Diffstat (limited to 'lib/bb/ui/uihelper.py')
-rw-r--r--lib/bb/ui/uihelper.py39
1 files changed, 39 insertions, 0 deletions
diff --git a/lib/bb/ui/uihelper.py b/lib/bb/ui/uihelper.py
new file mode 100644
index 000000000..0532ce93e
--- /dev/null
+++ b/lib/bb/ui/uihelper.py
@@ -0,0 +1,39 @@
+# ex:ts=4:sw=4:sts=4:et
+# -*- tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*-
+#
+# Copyright (C) 2006 - 2007 Michael 'Mickey' Lauer
+# Copyright (C) 2006 - 2007 Richard Purdie
+#
+# 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.
+
+class BBUIHelper:
+ def __init__(self):
+ self.running_tasks = {}
+
+ def eventHandler(self, event):
+ if event[0].startswith('bb.build.TaskStarted'):
+ self.running_tasks["%s %s\n" % (event[1]['_package'], event[1]['_task'])] = ""
+ if event[0].startswith('bb.build.TaskSucceeded'):
+ del self.running_tasks["%s %s\n" % (event[1]['_package'], event[1]['_task'])]
+ if event[0].startswith('bb.runqueue.runQueueTaskCompleted'):
+ a = 1
+ if event[0].startswith('bb.runqueue.runQueueTaskStarted'):
+ a = 1
+ if event[0].startswith('bb.runqueue.runQueueTaskFailed'):
+ a = 1
+ if event[0].startswith('bb.runqueue.runQueueExitWait'):
+ a = 1
+
+ def getTasks(self):
+ return self.running_tasks