]> git.sesse.net Git - vlc/blob - modules/misc/notify/notify.c
A bit of headers cleanup
[vlc] / modules / misc / notify / notify.c
1 /*****************************************************************************
2  * notify.c : libnotify notification plugin
3  *****************************************************************************
4  * Copyright (C) 2006 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Christophe Mutricy <xtophe -at- videolan -dot- org>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 /*****************************************************************************
25  * Preamble
26  *****************************************************************************/
27 #include <stdlib.h>                                      /* malloc(), free() */
28 #include <errno.h>
29
30 #include <libnotify/notify.h>
31
32 #include <vlc/vlc.h>
33 #include <vlc_interface.h>
34 #include <vlc_playlist.h>
35 #include <vlc_meta.h>
36
37 /*****************************************************************************
38  * Local prototypes
39  *****************************************************************************/
40 static int  Open    ( vlc_object_t * );
41 static void Close   ( vlc_object_t * );
42
43 static int ItemChange( vlc_object_t *, const char *,
44                        vlc_value_t, vlc_value_t, void * );
45 static int Notify( vlc_object_t *, const char * );
46 #define MAX_LENGTH 256
47
48 struct intf_sys_t
49 {
50     vlc_mutex_t     lock;
51 };
52
53 /*****************************************************************************
54  * Module descriptor
55  ****************************************************************************/
56
57 #define APPLICATION_NAME "VLC media player"
58
59 #define TIMEOUT_TEXT N_("Timeout (ms)")
60 #define TIMEOUT_LONGTEXT N_("How long the notification will be displayed ")
61
62 vlc_module_begin();
63     set_category( CAT_INTERFACE );
64     set_subcategory( SUBCAT_INTERFACE_CONTROL );
65     set_shortname( _( "Notify" ) );
66     set_description( _("LibNotify Notification Plugin") );
67
68     add_integer( "notify-timeout", 4000,NULL,
69                 TIMEOUT_TEXT, TIMEOUT_LONGTEXT, VLC_TRUE );
70
71     set_capability( "interface", 0 );
72     set_callbacks( Open, Close );
73 vlc_module_end();
74
75 /*****************************************************************************
76  * Open: initialize and create stuff
77  *****************************************************************************/
78 static int Open( vlc_object_t *p_this )
79 {
80     intf_thread_t   *p_intf = (intf_thread_t *)p_this;
81     playlist_t      *p_playlist;
82     intf_sys_t      *p_sys  = malloc( sizeof( intf_sys_t ) );
83     
84     if( !p_sys )
85     {
86         msg_Err( p_intf, "Out of memory" );
87         return VLC_ENOMEM;
88     }
89
90     if( !notify_init( APPLICATION_NAME ) )
91     {
92         msg_Err( p_intf, "can't find notification daemon" );
93         return VLC_EGENERIC;
94     }
95
96     vlc_mutex_init( p_this, &p_sys->lock );
97
98     p_intf->p_sys = p_sys;
99
100     p_playlist = pl_Yield( p_intf );
101     var_AddCallback( p_playlist, "playlist-current", ItemChange, p_intf );
102     pl_Release( p_intf );
103
104     return VLC_SUCCESS;
105 }
106
107 /*****************************************************************************
108  * Close: destroy interface stuff
109  *****************************************************************************/
110 static void Close( vlc_object_t *p_this )
111 {
112     intf_thread_t   *p_intf = ( intf_thread_t* ) p_this;
113     intf_sys_t      *p_sys  = p_intf->p_sys;
114
115     playlist_t *p_playlist = pl_Yield( p_this );
116     var_DelCallback( p_playlist, "playlist-current", ItemChange, p_this );
117     pl_Release( p_this );
118
119     vlc_mutex_destroy( &p_sys->lock );
120     free( p_sys );
121     notify_uninit();
122 }
123
124 /*****************************************************************************
125  * ItemChange: Playlist item change callback
126  *****************************************************************************/
127 static int ItemChange( vlc_object_t *p_this, const char *psz_var,
128                        vlc_value_t oldval, vlc_value_t newval, void *param )
129 {
130     char                psz_tmp[MAX_LENGTH];
131     char                *psz_title      = NULL;
132     char                *psz_artist     = NULL;
133     char                *psz_album      = NULL;
134     input_thread_t      *p_input        = NULL;
135     playlist_t          * p_playlist    = pl_Yield( p_this );
136     intf_thread_t       *p_intf         = ( intf_thread_t* ) param;
137     intf_sys_t          *p_sys          = p_intf->p_sys;
138
139     p_input = p_playlist->p_input;
140     vlc_object_release( p_playlist );
141
142     if( !p_input ) return VLC_SUCCESS;
143     vlc_object_yield( p_input );
144
145     if( p_input->b_dead || !input_GetItem(p_input)->psz_name )
146     {
147         /* Not playing anything ... */
148         vlc_object_release( p_input );
149         return VLC_SUCCESS;
150     }
151
152     /* Playing something ... */
153     psz_artist = input_GetItem(p_input)->p_meta->psz_artist ?
154                   strdup( input_GetItem(p_input)->p_meta->psz_artist ) :
155                   strdup( _("no artist") );
156     psz_album = input_GetItem(p_input)->p_meta->psz_album ?
157                   strdup( input_GetItem(p_input)->p_meta->psz_album ) :
158                   strdup( _("no album") );
159     psz_title = strdup( input_GetItem(p_input)->psz_name );
160
161     vlc_object_release( p_input );
162
163     if( psz_title == NULL ) psz_title = strdup( N_("(no title)") );
164     snprintf( psz_tmp, MAX_LENGTH, "<b>%s</b>\n%s - %s",
165               psz_title, psz_artist, psz_album );
166     free( psz_title );
167     free( psz_artist );
168     free( psz_album );
169
170     vlc_mutex_lock( &p_sys->lock );
171
172     Notify( p_this, psz_tmp );
173
174     vlc_mutex_unlock( &p_sys->lock );
175
176     return VLC_SUCCESS;
177 }
178
179 static int Notify( vlc_object_t *p_this, const char *psz_temp )
180 {
181     NotifyNotification * notification;
182     notification = notify_notification_new( _("Now Playing"),
183                              psz_temp,
184                              DATA_PATH "/vlc48x48.png",NULL);
185     notify_notification_set_timeout( notification,
186                                      config_GetInt(p_this, "notify-timeout") );
187     notify_notification_set_urgency( notification, NOTIFY_URGENCY_LOW );
188     notify_notification_show( notification, NULL);
189     return VLC_SUCCESS;
190 }
191