shell: Set the DPMS state if the screensaver fails to launch or dies
authorAnder Conselvan de Oliveira <ander.conselvan.de.oliveira@intel.com>
Fri, 15 Feb 2013 16:44:19 +0000 (18:44 +0200)
committerKristian Høgsberg <krh@bitplanet.net>
Mon, 18 Feb 2013 22:39:40 +0000 (17:39 -0500)
The lock hook in desktop-shell only changes the DPMS state the second
time it is called, because during the first time it launches the
screensaver and wakes the compositor again when the screensaver surface
is configured. However, if the screensaver fails to launch, the output
is left in an enabled state, even thought there's no content being
displayed on the screen.

Fix this by disabling the outputs when the screensaver dies if the
shell is still locked.

https://bugs.freedesktop.org/show_bug.cgi?id=60084

src/shell.c

index b3289fb..8f86782 100644 (file)
@@ -2098,7 +2098,16 @@ static const struct wl_shell_interface shell_implementation = {
 static void
 handle_screensaver_sigchld(struct weston_process *proc, int status)
 {
+       struct desktop_shell *shell =
+               container_of(proc, struct desktop_shell, screensaver.process);
+       struct weston_output *output;
+
        proc->pid = 0;
+
+       if (shell->locked)
+               wl_list_for_each(output, &shell->compositor->output_list, link)
+                       if (output->set_dpms)
+                               output->set_dpms(output, WESTON_DPMS_STANDBY);
 }
 
 static void