From: Valentin Popa <valentin.popa@intel.com>
To: bitbake-devel@lists.openembedded.org
Subject: [PATCH 2/2] GUI error dialog for bitbake
Date: Mon, 4 Nov 2013 12:53:13 +0200 [thread overview]
Message-ID: <1383562393-22087-3-git-send-email-valentin.popa@intel.com> (raw)
In-Reply-To: <1383562393-22087-1-git-send-email-valentin.popa@intel.com>
When the user starts HOB, he/she expects to see some GUI.
If bitbake signals an erros before HOB starts the error will
be visible only in console and hob script will terminate.
This patch allows bitbake to report errors inside a GUI dialog
when the user wants to use HOB.
WebHOB starts before bitbake's launch and a common solution
for this problem that applies to both HOB and WebHOB is not so obvious.
Signed-off-by: Valentin Popa <valentin.popa@intel.com>
---
scripts/hob | 9 ++++++-
scripts/show_error_dialog | 63 +++++++++++++++++++++++++++++++++++++++++++++++
2 files changed, 71 insertions(+), 1 deletion(-)
create mode 100755 scripts/show_error_dialog
diff --git a/scripts/hob b/scripts/hob
index 8d33ab1..406765f 100755
--- a/scripts/hob
+++ b/scripts/hob
@@ -1,6 +1,13 @@
#!/usr/bin/env bash
export BB_ENV_EXTRAWHITE="DISABLE_SANITY_CHECKS $BB_ENV_EXTRAWHITE"
-DISABLE_SANITY_CHECKS=1 bitbake -u hob $@
+SAVED_ERRORS="$(mktemp)"
+DISABLE_SANITY_CHECKS=1 bitbake -u hob $@ > $SAVED_ERRORS
ret=$?
+
+if (( $ret == 1 )); then #there is an error and hob didn't start
+ show_error_dialog $SAVED_ERRORS
+fi
+rm $SAVED_ERRORS
+
exit $ret
diff --git a/scripts/show_error_dialog b/scripts/show_error_dialog
new file mode 100755
index 0000000..beb7cb3
--- /dev/null
+++ b/scripts/show_error_dialog
@@ -0,0 +1,63 @@
+#!/usr/bin/env python
+#
+# BitBake graphical error reporting dialog used by hob script
+#
+# Copyright (C) 2013 Intel Corporation
+#
+# Authored by Valentin Popa <valentin.popa@lintel.com>
+# Authored by Andrei Dinu <andrei.adrianx.dinu@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 sys
+import os
+requirements = "FATAL: Gtk+ 2.20.0 or higher & PyGtk 2.21.0 or higher is required"
+try:
+ import gtk
+ import pygtk
+ pygtk.require('2.0') # to be certain we don't have gtk+ 1.x !?!
+ gtkver = gtk.gtk_version
+ pygtkver = gtk.pygtk_version
+ if gtkver < (2, 20, 0) or pygtkver < (2, 21, 0):
+ sys.exit("%s,\nYou have Gtk+ %s and PyGtk %s." % (requirements,
+ ".".join(map(str, gtkver)),
+ ".".join(map(str, pygtkver))))
+except ImportError as exc:
+ sys.exit("%s (%s)." % (requirements, str(exc)))
+
+sys.path.insert(0, os.path.dirname(os.path.dirname(__file__))+"/bitbake/lib")
+
+try:
+ import bb
+except RuntimeError as exc:
+ sys.exit(str(exc))
+
+from bb.ui.crumbs.hig.crumbsmessagedialog import CrumbsMessageDialog
+from bb.ui.crumbs.hobwidget import HobButton
+
+class HobError(gtk.Window):
+
+ def __init__(self, error_log_file):
+ message = open(error_log_file).readlines()
+ label = "<b>Hob found an error</b>"
+ dialog = CrumbsMessageDialog(self, label, gtk.MESSAGE_ERROR, "".join(message))
+ button = dialog.add_button("Close", gtk.RESPONSE_OK)
+ HobButton.style_button(button)
+ button.connect("clicked", lambda w:sys.exit())
+ dialog.run()
+ dialog.destroy()
+
+if __name__ == "__main__":
+ HobError(sys.argv[1])
+
--
1.8.3.2
next prev parent reply other threads:[~2013-11-04 10:52 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-11-04 10:53 [PATCH 0/2] Rebased "HIG compliant message dialogs" Valentin Popa
2013-11-04 10:53 ` [PATCH 1/2] HOB: HIG compliant message dialogs Valentin Popa
2013-11-04 10:53 ` Valentin Popa [this message]
-- strict thread matches above, loose matches on Subject: below --
2013-09-25 11:18 Valentin Popa
2013-09-25 11:18 ` [PATCH 2/2] GUI error dialog for bitbake Valentin Popa
2013-09-27 8:19 ` cristiana.voicu
2013-09-27 10:28 ` Valentin Popa
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1383562393-22087-3-git-send-email-valentin.popa@intel.com \
--to=valentin.popa@intel.com \
--cc=bitbake-devel@lists.openembedded.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox