diff options
author | Jon Lund Steffensen <jonlst@gmail.com> | 2014-12-18 21:31:52 -0500 |
---|---|---|
committer | Jon Lund Steffensen <jonlst@gmail.com> | 2014-12-18 21:31:52 -0500 |
commit | c1524cad84376fa946bd05a8a7030be9cccc79bc (patch) | |
tree | edb52788601143f00437f3a94692fc2a4730f5cd /src/redshift-gtk/statusicon.py | |
parent | Merge pull request #140 from jonls/osx-support (diff) | |
download | redshift-ng-c1524cad84376fa946bd05a8a7030be9cccc79bc.tar.gz redshift-ng-c1524cad84376fa946bd05a8a7030be9cccc79bc.tar.bz2 redshift-ng-c1524cad84376fa946bd05a8a7030be9cccc79bc.tar.xz |
redshift-gtk: Show errors from child process in a dialog
This dialog is shown whenever the child process exits with a
non-zero status. The error output from stderr of the child
process is buffered in redshift-gtk in case the child exits
unexpectedly.
Diffstat (limited to 'src/redshift-gtk/statusicon.py')
-rw-r--r-- | src/redshift-gtk/statusicon.py | 23 |
1 files changed, 19 insertions, 4 deletions
diff --git a/src/redshift-gtk/statusicon.py b/src/redshift-gtk/statusicon.py index c4cc70e..36fef9e 100644 --- a/src/redshift-gtk/statusicon.py +++ b/src/redshift-gtk/statusicon.py @@ -172,6 +172,7 @@ class RedshiftStatusIcon(object): self.input_buffer = InputBuffer() self.error_buffer = InputBuffer() + self.errors = '' # Set non blocking fcntl.fcntl(self.process[2], fcntl.F_SETFL, @@ -294,7 +295,7 @@ class RedshiftStatusIcon(object): def child_toggle_status(self): os.kill(self.process[0], signal.SIGUSR1) - def child_cb(self, pid, cond, data=None): + def child_cb(self, pid, status, data=None): # Empty stdout and stderr for f, dest in ((self.process[2], sys.stdout), (self.process[3], sys.stderr)): @@ -302,9 +303,23 @@ class RedshiftStatusIcon(object): buf = os.read(f, 256).decode('utf-8') if buf == '': break - print(buf, end='', file=dest) + if dest is sys.stderr: + self.errors += buf - sys.exit(-1) + # Check exit status of child + show_errors = False + try: + GLib.spawn_check_exit_status(status) + Gtk.main_quit() + except GLib.GError: + show_errors = True + + if show_errors: + error_dialog = Gtk.MessageDialog(None, Gtk.DialogFlags.MODAL, Gtk.MessageType.ERROR, + Gtk.ButtonsType.CLOSE, '') + error_dialog.set_markup('<b>Failed to run Redshift</b>\n<i>' + self.errors + '</i>') + error_dialog.run() + sys.exit(-1) def child_key_change_cb(self, key, value): if key == 'Status': @@ -337,7 +352,7 @@ class RedshiftStatusIcon(object): if stdout: self.child_stdout_line_cb(first) else: - print(first, file=sys.stderr) + self.errors += first + '\n' return True |