]> git.sesse.net Git - vlc/blob - modules/misc/screensaver.c
166e0daa8fd28647f19b9fd1eacfe59bf7e0ade1
[vlc] / modules / misc / screensaver.c
1 /*****************************************************************************
2  * screensaver.c : disable screen savers when VLC is playing
3  *****************************************************************************
4  * Copyright (C) 2006 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Sam Hocevar <sam@zoy.org>
8  *          Benjamin Pracht <bigben AT videolan DOT org>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23  *****************************************************************************/
24
25 /*****************************************************************************
26  * Preamble
27  *****************************************************************************/
28
29 #include <vlc/vlc.h>
30 #include <vlc_input.h>
31 #include <vlc_interface.h>
32 #include <vlc_aout.h>
33 #include <vlc_vout.h>
34
35 #ifdef HAVE_DBUS
36
37 #define DBUS_API_SUBJECT_TO_CHANGE
38 #include <dbus/dbus.h>
39
40 #define GS_SERVICE   "org.gnome.ScreenSaver"
41 #define GS_PATH      "/org/gnome/ScreenSaver"
42 #define GS_INTERFACE "org.gnome.ScreenSaver"
43
44 #endif
45
46 /* this is for dbus < 0.3 */
47 #ifndef HAVE_DBUS_1
48 #define dbus_bus_name_has_owner(connection, name, err) dbus_bus_service_exists(connection, name, err)
49 #endif
50
51 /*****************************************************************************
52  * Local prototypes
53  *****************************************************************************/
54 static int  Activate     ( vlc_object_t * );
55 static void  Deactivate   ( vlc_object_t * );
56
57 static void Run          ( intf_thread_t *p_intf );
58
59 #ifdef HAVE_DBUS
60
61 static DBusConnection * dbus_init( intf_thread_t *p_intf );
62 static void poke_screensaver( intf_thread_t *p_intf,
63                               DBusConnection *p_connection );
64 static void screensaver_send_message_void ( intf_thread_t *p_intf,
65                                        DBusConnection *p_connection,
66                                        const char *psz_name );
67 static vlc_bool_t screensaver_is_running( DBusConnection *p_connection );
68
69
70 struct intf_sys_t
71 {
72     DBusConnection *p_connection;
73 };
74
75 #endif
76
77 /*****************************************************************************
78  * Module descriptor
79  *****************************************************************************/
80 vlc_module_begin();
81     set_description( _("X Screensaver disabler") );
82     set_capability( "interface", 0 );
83     set_callbacks( Activate, Deactivate );
84 vlc_module_end();
85
86 /*****************************************************************************
87  * Activate: initialize and create stuff
88  *****************************************************************************/
89 static int Activate( vlc_object_t *p_this )
90 {
91     intf_thread_t *p_intf = (intf_thread_t*)p_this;
92
93     p_intf->pf_run = Run;
94
95 #ifdef HAVE_DBUS
96     p_intf->p_sys = (intf_sys_t *)malloc( sizeof( intf_sys_t ) );
97     if( !p_intf->p_sys ) return VLC_ENOMEM;
98 #endif
99
100     return VLC_SUCCESS;
101 }
102
103 /*****************************************************************************
104  * Deactivate: uninitialize and cleanup
105  *****************************************************************************/
106 static void Deactivate( vlc_object_t *p_this )
107 {
108 #ifdef HAVE_DBUS
109     intf_thread_t *p_intf = (intf_thread_t*)p_this;
110
111     if( p_intf->p_sys->p_connection )
112     {
113 #  ifdef HAVE_DBUS_2
114         dbus_connection_unref( p_intf->p_sys->p_connection );
115 #  else
116         dbus_connection_disconnect( p_intf->p_sys->p_connection );
117 #  endif
118     }
119
120     if( p_intf->p_sys )
121     {
122         free( p_intf->p_sys );
123         p_intf->p_sys = NULL;
124     }
125 #endif
126 }
127
128
129 /*****************************************************************************
130  * Run: main thread
131  *****************************************************************************
132  * This part of the module is in a separate thread so that we do not have
133  * too much system() overhead.
134  *****************************************************************************/
135 static void Run( intf_thread_t *p_intf )
136 {
137     vlc_bool_t b_quit = VLC_FALSE;
138
139 #ifdef HAVE_DBUS
140     p_intf->p_sys->p_connection = dbus_init( p_intf );
141 #endif
142
143     while( !b_quit )
144     {
145         /* Check screensaver every 30 seconds */
146         vlc_mutex_lock( &p_intf->object_lock );
147         vlc_cond_timedwait( &p_intf->object_wait, &p_intf->object_lock,
148                             mdate() + 30000000 );
149         b_quit = p_intf->b_die;
150         vlc_mutex_unlock( &p_intf->object_lock );
151
152         vlc_object_t *p_vout;
153         p_vout = vlc_object_find( p_intf, VLC_OBJECT_VOUT, FIND_ANYWHERE );
154
155         /* If there is a video output, disable xscreensaver */
156         if( p_vout )
157         {
158             input_thread_t *p_input;
159             p_input = vlc_object_find( p_vout, VLC_OBJECT_INPUT, FIND_PARENT );
160             vlc_object_release( p_vout );
161             if( p_input )
162             {
163                 if( PLAYING_S == p_input->i_state )
164                 {
165                     /* http://www.jwz.org/xscreensaver/faq.html#dvd */
166                     system( "xscreensaver-command -deactivate >&- 2>&- &" );
167
168                     /* If we have dbus support, let's communicate directly
169                        with gnome-screensave else, run
170                        gnome-screensaver-command */
171 #ifdef HAVE_DBUS
172                     poke_screensaver( p_intf, p_intf->p_sys->p_connection );
173 #else
174                     system( "gnome-screensaver-command --poke >&- 2>&- &" );
175 #endif
176                     /* FIXME: add support for other screensavers */
177                 }
178                 vlc_object_release( p_input );
179             }
180         }
181     }
182 }
183
184 #ifdef HAVE_DBUS
185
186 static DBusConnection * dbus_init( intf_thread_t *p_intf )
187 {
188     DBusError dbus_error;
189
190     dbus_error_init (&dbus_error);
191     DBusConnection * p_connection = dbus_bus_get( DBUS_BUS_SESSION, &dbus_error );
192
193     if ( !p_connection )
194     {
195         msg_Warn( p_intf, "failed to connect to the D-BUS daemon: %s",
196                           dbus_error.message);
197         dbus_error_free( &dbus_error );
198         return NULL;
199     }
200
201     return p_connection;
202 }
203
204 static void poke_screensaver( intf_thread_t *p_intf,
205                               DBusConnection *p_connection )
206 {
207     if( screensaver_is_running( p_connection ) )
208     {
209 #   ifdef SCREENSAVER_DEBUG
210         msg_Dbg( p_intf, "found a running gnome-screensaver instance" );
211 #   endif
212         /* gnome-screensaver changed it's D-Bus interface, so we need both */
213         screensaver_send_message_void( p_intf, p_connection, "Poke" );
214         screensaver_send_message_void( p_intf, p_connection,
215                 "SimulateUserActivity" );
216     }
217 #   ifdef SCREENSAVER_DEBUG
218     else
219     {
220         msg_Dbg( p_intf, "found no running gnome-screensaver instance" );
221     }
222 #   endif
223 }
224
225 static void screensaver_send_message_void ( intf_thread_t *p_intf,
226                                        DBusConnection *p_connection,
227                                        const char *psz_name )
228 {
229     DBusMessage *p_message;
230
231     if( !p_connection || !psz_name ) return;
232
233     p_message = dbus_message_new_method_call( GS_SERVICE, GS_PATH,
234                                               GS_INTERFACE, psz_name );
235     if( p_message == NULL )
236     {
237         msg_Err( p_intf, "DBUS initialization failed: message initialization" );
238         return;
239     }
240
241     if( !dbus_connection_send( p_connection, p_message, NULL ) )
242     {
243         msg_Err( p_intf, "DBUS communication failed" );
244     }
245
246     dbus_connection_flush( p_connection );
247
248     dbus_message_unref( p_message );
249 }
250
251 static vlc_bool_t screensaver_is_running( DBusConnection *p_connection )
252 {
253     DBusError error;
254     vlc_bool_t b_return;
255
256     if( !p_connection ) return VLC_FALSE;
257
258     dbus_error_init( &error );
259     b_return = dbus_bus_name_has_owner( p_connection, GS_SERVICE, &error );
260     if( dbus_error_is_set( &error ) ) dbus_error_free (&error);
261
262     return b_return;
263 }
264
265 #endif
266