]> git.sesse.net Git - vlc/blob - modules/misc/notify/notify.c
Album art support in libnotify popups
[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 <errno.h>
28
29 #include <gdk-pixbuf/gdk-pixbuf.h>
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 *, GdkPixbuf * );
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     char                *psz_arturl     = NULL;
135     input_thread_t      *p_input        = NULL;
136     playlist_t          * p_playlist    = pl_Yield( p_this );
137     intf_thread_t       *p_intf         = ( intf_thread_t* ) param;
138     intf_sys_t          *p_sys          = p_intf->p_sys;
139
140     p_input = p_playlist->p_input;
141     vlc_object_release( p_playlist );
142
143     if( !p_input ) return VLC_SUCCESS;
144     vlc_object_yield( p_input );
145
146     if( p_input->b_dead || !input_GetItem(p_input)->psz_name )
147     {
148         /* Not playing anything ... */
149         vlc_object_release( p_input );
150         return VLC_SUCCESS;
151     }
152
153     /* Playing something ... */
154     psz_artist = input_item_GetArtist( input_GetItem( p_input ) );
155     if( psz_artist == NULL ) psz_artist = strdup( _("no artist") );
156     psz_album = input_item_GetAlbum( input_GetItem( p_input ) ) ;
157     if( psz_album == NULL ) psz_album = strdup( _("no album") );
158     psz_title = input_item_GetTitle( input_GetItem( p_input ) );
159     if( psz_title == NULL )
160         psz_title = input_item_GetName( input_GetItem( p_input ) );
161
162     vlc_object_release( p_input );
163
164     if( psz_title == NULL ) psz_title = strdup( N_("(no title)") );
165     snprintf( psz_tmp, MAX_LENGTH, "<b>%s</b>\n%s - %s",
166               psz_title, psz_artist, psz_album );
167     free( psz_title );
168     free( psz_artist );
169     free( psz_album );
170
171     GdkPixbuf *pix = NULL;
172     GError *p_error = NULL;
173
174     psz_arturl = input_item_GetArtURL( input_GetItem( p_input ) );
175     if( psz_arturl && !strncmp( psz_arturl, "file://", 7 ) &&
176                 strlen( psz_arturl ) > 7 )
177     { /* scale the art to show it in notify popup */
178         gboolean b = TRUE;
179         pix = gdk_pixbuf_new_from_file_at_scale(
180                 (psz_arturl + 7), 72, 72, b, &p_error );
181         free( psz_arturl );
182     }
183     else /* else we show state-of-the art logo */
184         pix = gdk_pixbuf_new_from_file( DATA_PATH "/vlc48x48.png", &p_error );
185
186     vlc_mutex_lock( &p_sys->lock );
187
188     Notify( p_this, psz_tmp, pix );
189
190     vlc_mutex_unlock( &p_sys->lock );
191
192     return VLC_SUCCESS;
193 }
194
195 static int Notify( vlc_object_t *p_this, const char *psz_temp, GdkPixbuf *pix )
196 {
197     NotifyNotification * notification;
198     notification = notify_notification_new( _("Now Playing"),
199             psz_temp, NULL, NULL);
200     notify_notification_set_timeout( notification,
201                                      config_GetInt(p_this, "notify-timeout") );
202     notify_notification_set_urgency( notification, NOTIFY_URGENCY_LOW );
203     if( pix )
204         notify_notification_set_icon_from_pixbuf( notification, pix );
205         
206     notify_notification_show( notification, NULL);
207     return VLC_SUCCESS;
208 }
209