| 1 |
|
|---|
| 2 |
|
|---|
| 3 |
|
|---|
| 4 |
|
|---|
| 5 |
|
|---|
| 6 |
|
|---|
| 7 |
|
|---|
| 8 |
|
|---|
| 9 |
|
|---|
| 10 |
|
|---|
| 11 |
|
|---|
| 12 |
|
|---|
| 13 |
|
|---|
| 14 |
|
|---|
| 15 |
|
|---|
| 16 |
|
|---|
| 17 |
|
|---|
| 18 |
|
|---|
| 19 |
|
|---|
| 20 |
|
|---|
| 21 |
|
|---|
| 22 |
|
|---|
| 23 |
|
|---|
| 24 |
|
|---|
| 25 |
|
|---|
| 26 |
|
|---|
| 27 |
#ifdef HAVE_CONFIG_H |
|---|
| 28 |
# include "config.h" |
|---|
| 29 |
#endif |
|---|
| 30 |
|
|---|
| 31 |
#include <vlc_common.h> |
|---|
| 32 |
#include <vlc_plugin.h> |
|---|
| 33 |
#include <vlc_interface.h> |
|---|
| 34 |
#include <vlc_playlist.h> |
|---|
| 35 |
#include <vlc_meta.h> |
|---|
| 36 |
|
|---|
| 37 |
#include <errno.h> |
|---|
| 38 |
#include <gdk-pixbuf/gdk-pixbuf.h> |
|---|
| 39 |
#include <libnotify/notify.h> |
|---|
| 40 |
|
|---|
| 41 |
|
|---|
| 42 |
|
|---|
| 43 |
|
|---|
| 44 |
static int Open ( vlc_object_t * ); |
|---|
| 45 |
static void Close ( vlc_object_t * ); |
|---|
| 46 |
|
|---|
| 47 |
static int ItemChange( vlc_object_t *, const char *, |
|---|
| 48 |
vlc_value_t, vlc_value_t, void * ); |
|---|
| 49 |
static int Notify( vlc_object_t *, const char *, GdkPixbuf *, intf_thread_t * ); |
|---|
| 50 |
#define MAX_LENGTH 256 |
|---|
| 51 |
|
|---|
| 52 |
struct intf_sys_t |
|---|
| 53 |
{ |
|---|
| 54 |
NotifyNotification *notification; |
|---|
| 55 |
vlc_mutex_t lock; |
|---|
| 56 |
}; |
|---|
| 57 |
|
|---|
| 58 |
|
|---|
| 59 |
|
|---|
| 60 |
|
|---|
| 61 |
|
|---|
| 62 |
#define APPLICATION_NAME "VLC media player" |
|---|
| 63 |
|
|---|
| 64 |
#define TIMEOUT_TEXT N_("Timeout (ms)") |
|---|
| 65 |
#define TIMEOUT_LONGTEXT N_("How long the notification will be displayed ") |
|---|
| 66 |
|
|---|
| 67 |
vlc_module_begin(); |
|---|
| 68 |
set_category( CAT_INTERFACE ); |
|---|
| 69 |
set_subcategory( SUBCAT_INTERFACE_CONTROL ); |
|---|
| 70 |
set_shortname( N_( "Notify" ) ); |
|---|
| 71 |
set_description( N_("LibNotify Notification Plugin") ); |
|---|
| 72 |
|
|---|
| 73 |
add_integer( "notify-timeout", 4000,NULL, |
|---|
| 74 |
TIMEOUT_TEXT, TIMEOUT_LONGTEXT, true ); |
|---|
| 75 |
|
|---|
| 76 |
set_capability( "interface", 0 ); |
|---|
| 77 |
set_callbacks( Open, Close ); |
|---|
| 78 |
vlc_module_end(); |
|---|
| 79 |
|
|---|
| 80 |
|
|---|
| 81 |
|
|---|
| 82 |
|
|---|
| 83 |
static int Open( vlc_object_t *p_this ) |
|---|
| 84 |
{ |
|---|
| 85 |
intf_thread_t *p_intf = (intf_thread_t *)p_this; |
|---|
| 86 |
playlist_t *p_playlist; |
|---|
| 87 |
intf_sys_t *p_sys = malloc( sizeof( intf_sys_t ) ); |
|---|
| 88 |
|
|---|
| 89 |
if( !p_sys ) |
|---|
| 90 |
{ |
|---|
| 91 |
msg_Err( p_intf, "Out of memory" ); |
|---|
| 92 |
return VLC_ENOMEM; |
|---|
| 93 |
} |
|---|
| 94 |
|
|---|
| 95 |
if( !notify_init( APPLICATION_NAME ) ) |
|---|
| 96 |
{ |
|---|
| 97 |
msg_Err( p_intf, "can't find notification daemon" ); |
|---|
| 98 |
return VLC_EGENERIC; |
|---|
| 99 |
} |
|---|
| 100 |
|
|---|
| 101 |
vlc_mutex_init( &p_sys->lock ); |
|---|
| 102 |
|
|---|
| 103 |
p_intf->p_sys = p_sys; |
|---|
| 104 |
|
|---|
| 105 |
p_intf->p_sys->notification = NULL; |
|---|
| 106 |
|
|---|
| 107 |
p_playlist = pl_Hold( p_intf ); |
|---|
| 108 |
var_AddCallback( p_playlist, "playlist-current", ItemChange, p_intf ); |
|---|
| 109 |
pl_Release( p_intf ); |
|---|
| 110 |
|
|---|
| 111 |
return VLC_SUCCESS; |
|---|
| 112 |
} |
|---|
| 113 |
|
|---|
| 114 |
|
|---|
| 115 |
|
|---|
| 116 |
|
|---|
| 117 |
static void Close( vlc_object_t *p_this ) |
|---|
| 118 |
{ |
|---|
| 119 |
intf_thread_t *p_intf = ( intf_thread_t* ) p_this; |
|---|
| 120 |
intf_sys_t *p_sys = p_intf->p_sys; |
|---|
| 121 |
|
|---|
| 122 |
playlist_t *p_playlist = pl_Hold( p_this ); |
|---|
| 123 |
var_DelCallback( p_playlist, "playlist-current", ItemChange, p_this ); |
|---|
| 124 |
pl_Release( p_this ); |
|---|
| 125 |
|
|---|
| 126 |
if( p_intf->p_sys->notification ) |
|---|
| 127 |
g_object_unref( p_intf->p_sys->notification ); |
|---|
| 128 |
|
|---|
| 129 |
vlc_mutex_destroy( &p_sys->lock ); |
|---|
| 130 |
free( p_sys ); |
|---|
| 131 |
notify_uninit(); |
|---|
| 132 |
} |
|---|
| 133 |
|
|---|
| 134 |
|
|---|
| 135 |
|
|---|
| 136 |
|
|---|
| 137 |
static int ItemChange( vlc_object_t *p_this, const char *psz_var, |
|---|
| 138 |
vlc_value_t oldval, vlc_value_t newval, void *param ) |
|---|
| 139 |
{ |
|---|
| 140 |
VLC_UNUSED(psz_var); VLC_UNUSED(oldval); VLC_UNUSED(newval); |
|---|
| 141 |
char psz_tmp[MAX_LENGTH]; |
|---|
| 142 |
char psz_notify[MAX_LENGTH]; |
|---|
| 143 |
char *psz_title = NULL; |
|---|
| 144 |
char *psz_artist = NULL; |
|---|
| 145 |
char *psz_album = NULL; |
|---|
| 146 |
char *psz_arturl = NULL; |
|---|
| 147 |
input_thread_t *p_input = playlist_CurrentInput( |
|---|
| 148 |
(playlist_t*) p_this ); |
|---|
| 149 |
intf_thread_t *p_intf = ( intf_thread_t* ) param; |
|---|
| 150 |
intf_sys_t *p_sys = p_intf->p_sys; |
|---|
| 151 |
|
|---|
| 152 |
if( !p_input ) return VLC_SUCCESS; |
|---|
| 153 |
|
|---|
| 154 |
if( p_input->b_dead ) |
|---|
| 155 |
{ |
|---|
| 156 |
|
|---|
| 157 |
vlc_object_release( p_input ); |
|---|
| 158 |
return VLC_SUCCESS; |
|---|
| 159 |
} |
|---|
| 160 |
|
|---|
| 161 |
msleep( 1000*4 ); |
|---|
| 162 |
|
|---|
| 163 |
|
|---|
| 164 |
psz_artist = input_item_GetArtist( input_GetItem( p_input ) ); |
|---|
| 165 |
psz_album = input_item_GetAlbum( input_GetItem( p_input ) ) ; |
|---|
| 166 |
psz_title = input_item_GetTitle( input_GetItem( p_input ) ); |
|---|
| 167 |
if( ( psz_title == NULL ) || EMPTY_STR( psz_title ) ) |
|---|
| 168 |
{ |
|---|
| 169 |
free( psz_title ); |
|---|
| 170 |
psz_title = input_item_GetName( input_GetItem( p_input ) ); |
|---|
| 171 |
} |
|---|
| 172 |
if( ( psz_title == NULL ) || EMPTY_STR( psz_title ) ) |
|---|
| 173 |
{ |
|---|
| 174 |
free( psz_title ); |
|---|
| 175 |
free( psz_artist ); |
|---|
| 176 |
free( psz_album ); |
|---|
| 177 |
vlc_object_release( p_input ); |
|---|
| 178 |
return VLC_SUCCESS; |
|---|
| 179 |
} |
|---|
| 180 |
if( EMPTY_STR( psz_artist ) ) |
|---|
| 181 |
{ |
|---|
| 182 |
free( psz_artist ); |
|---|
| 183 |
psz_artist = NULL; |
|---|
| 184 |
} |
|---|
| 185 |
if( EMPTY_STR( psz_album ) ) |
|---|
| 186 |
{ |
|---|
| 187 |
free( psz_album ); |
|---|
| 188 |
psz_album = NULL; |
|---|
| 189 |
} |
|---|
| 190 |
|
|---|
| 191 |
vlc_object_release( p_input ); |
|---|
| 192 |
|
|---|
| 193 |
if( psz_artist && psz_album ) |
|---|
| 194 |
snprintf( psz_tmp, MAX_LENGTH, "<b>%s</b>\n%s\n[%s]", |
|---|
| 195 |
psz_title, psz_artist, psz_album ); |
|---|
| 196 |
else if( psz_artist ) |
|---|
| 197 |
snprintf( psz_tmp, MAX_LENGTH, "<b>%s</b>\n%s", |
|---|
| 198 |
psz_title, psz_artist ); |
|---|
| 199 |
else |
|---|
| 200 |
snprintf( psz_tmp, MAX_LENGTH, "<b>%s</b>", psz_title ); |
|---|
| 201 |
|
|---|
| 202 |
free( psz_title ); |
|---|
| 203 |
free( psz_artist ); |
|---|
| 204 |
free( psz_album ); |
|---|
| 205 |
|
|---|
| 206 |
GdkPixbuf *pix = NULL; |
|---|
| 207 |
GError *p_error = NULL; |
|---|
| 208 |
|
|---|
| 209 |
psz_arturl = input_item_GetArtURL( input_GetItem( p_input ) ); |
|---|
| 210 |
if( psz_arturl && !strncmp( psz_arturl, "file://", 7 ) && |
|---|
| 211 |
strlen( psz_arturl ) > 7 ) |
|---|
| 212 |
{ |
|---|
| 213 |
gboolean b = TRUE; |
|---|
| 214 |
pix = gdk_pixbuf_new_from_file_at_scale( |
|---|
| 215 |
(psz_arturl + 7), 72, 72, b, &p_error ); |
|---|
| 216 |
free( psz_arturl ); |
|---|
| 217 |
} |
|---|
| 218 |
else |
|---|
| 219 |
{ |
|---|
| 220 |
const char *data_path = config_GetDataDir (); |
|---|
| 221 |
char buf[strlen (data_path) + sizeof ("/vlc48x48.png")]; |
|---|
| 222 |
|
|---|
| 223 |
snprintf (buf, sizeof (buf), "%s/vlc48x48.png", data_path); |
|---|
| 224 |
pix = gdk_pixbuf_new_from_file( buf, &p_error ); |
|---|
| 225 |
} |
|---|
| 226 |
|
|---|
| 227 |
|
|---|
| 228 |
|
|---|
| 229 |
int i_notify, i_len, i; |
|---|
| 230 |
i_len = strlen( psz_tmp ); |
|---|
| 231 |
i_notify = 0; |
|---|
| 232 |
for( i = 0; ( ( i < i_len ) && ( i_notify < ( MAX_LENGTH - 5 ) ) ); i++ ) |
|---|
| 233 |
{ |
|---|
| 234 |
|
|---|
| 235 |
|
|---|
| 236 |
if( psz_tmp[i] != '&' ) |
|---|
| 237 |
psz_notify[i_notify] = psz_tmp[i]; |
|---|
| 238 |
else |
|---|
| 239 |
{ |
|---|
| 240 |
snprintf( psz_notify + i_notify, 6, "&" ); |
|---|
| 241 |
i_notify += 4; |
|---|
| 242 |
} |
|---|
| 243 |
i_notify++; |
|---|
| 244 |
} |
|---|
| 245 |
psz_notify[i_notify] = '\0'; |
|---|
| 246 |
|
|---|
| 247 |
vlc_mutex_lock( &p_sys->lock ); |
|---|
| 248 |
|
|---|
| 249 |
Notify( p_this, psz_notify, pix, p_intf ); |
|---|
| 250 |
|
|---|
| 251 |
vlc_mutex_unlock( &p_sys->lock ); |
|---|
| 252 |
|
|---|
| 253 |
return VLC_SUCCESS; |
|---|
| 254 |
} |
|---|
| 255 |
|
|---|
| 256 |
static void Next( NotifyNotification *notification, gchar *psz, gpointer p ) |
|---|
| 257 |
{ |
|---|
| 258 |
VLC_UNUSED(psz); |
|---|
| 259 |
notify_notification_close (notification, NULL); |
|---|
| 260 |
playlist_t *p_playlist = pl_Hold( ((vlc_object_t*) p) ); |
|---|
| 261 |
playlist_Next( p_playlist ); |
|---|
| 262 |
pl_Release( ((vlc_object_t*) p) ); |
|---|
| 263 |
} |
|---|
| 264 |
|
|---|
| 265 |
static void Prev( NotifyNotification *notification, gchar *psz, gpointer p ) |
|---|
| 266 |
{ |
|---|
| 267 |
VLC_UNUSED(psz); |
|---|
| 268 |
notify_notification_close (notification, NULL); |
|---|
| 269 |
playlist_t *p_playlist = pl_Hold( ((vlc_object_t*) p) ); |
|---|
| 270 |
playlist_Prev( p_playlist ); |
|---|
| 271 |
pl_Release( ((vlc_object_t*) p) ); |
|---|
| 272 |
} |
|---|
| 273 |
|
|---|
| 274 |
static int Notify( vlc_object_t *p_this, const char *psz_temp, GdkPixbuf *pix, |
|---|
| 275 |
intf_thread_t *p_intf ) |
|---|
| 276 |
{ |
|---|
| 277 |
NotifyNotification * notification; |
|---|
| 278 |
GError *p_error = NULL; |
|---|
| 279 |
|
|---|
| 280 |
|
|---|
| 281 |
if( p_intf->p_sys->notification ) |
|---|
| 282 |
{ |
|---|
| 283 |
notify_notification_close( p_intf->p_sys->notification, &p_error ); |
|---|
| 284 |
g_object_unref( p_intf->p_sys->notification ); |
|---|
| 285 |
} |
|---|
| 286 |
|
|---|
| 287 |
notification = notify_notification_new( _("Now Playing"), |
|---|
| 288 |
psz_temp, NULL, NULL); |
|---|
| 289 |
notify_notification_set_timeout( notification, |
|---|
| 290 |
config_GetInt(p_this, "notify-timeout") ); |
|---|
| 291 |
notify_notification_set_urgency( notification, NOTIFY_URGENCY_LOW ); |
|---|
| 292 |
if( pix ) |
|---|
| 293 |
{ |
|---|
| 294 |
notify_notification_set_icon_from_pixbuf( notification, pix ); |
|---|
| 295 |
gdk_pixbuf_unref( pix ); |
|---|
| 296 |
} |
|---|
| 297 |
|
|---|
| 298 |
|
|---|
| 299 |
notify_notification_add_action( notification, "previous", _("Previous"), Prev, |
|---|
| 300 |
(gpointer*) p_intf, NULL ); |
|---|
| 301 |
notify_notification_add_action( notification, "next", _("Next"), Next, |
|---|
| 302 |
(gpointer*) p_intf, NULL ); |
|---|
| 303 |
|
|---|
| 304 |
notify_notification_show( notification, NULL); |
|---|
| 305 |
|
|---|
| 306 |
|
|---|
| 307 |
p_intf->p_sys->notification = notification; |
|---|
| 308 |
return VLC_SUCCESS; |
|---|
| 309 |
} |
|---|
| 310 |
|
|---|