]> git.sesse.net Git - vlc/blob - modules/misc/notify/notify.c
77247e004076453b9712ee821ee84f4eafd5f0a1
[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/intf.h>
34 #include <vlc_meta.h>
35
36 /*****************************************************************************
37  * Local prototypes
38  *****************************************************************************/
39 static int  Open    ( vlc_object_t * );
40 static void Close   ( vlc_object_t * );
41
42 static int ItemChange( vlc_object_t *, const char *,
43                        vlc_value_t, vlc_value_t, void * );
44 static int Notify( vlc_object_t *, const char * );
45 #define MAX_LENGTH 256
46
47 /*****************************************************************************
48  * Module descriptor
49  ****************************************************************************/
50
51 #define APPLICATION_NAME "VLC media player"
52
53 #define TIMEOUT_TEXT N_("Timeout (ms)")
54 #define TIMEOUT_LONGTEXT N_("How long the notification will be displayed ")
55
56 vlc_module_begin();
57     set_category( CAT_INTERFACE );
58     set_subcategory( SUBCAT_INTERFACE_CONTROL );
59     set_shortname( N_( "Notify" ) );
60     set_description( _("LibNotify Notification Plugin") );
61
62     add_integer( "notify-timeout", 4000,NULL,
63                 TIMEOUT_TEXT, TIMEOUT_LONGTEXT, VLC_TRUE );
64
65     set_capability( "interface", 0 );
66     set_callbacks( Open, Close );
67 vlc_module_end();
68
69 /*****************************************************************************
70  * Open: initialize and create stuff
71  *****************************************************************************/
72 static int Open( vlc_object_t *p_this )
73 {
74     intf_thread_t *p_intf = (intf_thread_t *)p_this;
75     playlist_t *p_playlist;
76
77     if( !notify_init( APPLICATION_NAME ) )
78     {
79         msg_Err( p_intf, "can't find notification daemon" );
80         return VLC_EGENERIC;
81     }
82
83     p_playlist = pl_Yield( p_intf );
84     var_AddCallback( p_playlist, "playlist-current", ItemChange, p_intf );
85     pl_Release( p_intf );
86
87     return VLC_SUCCESS;
88 }
89
90 /*****************************************************************************
91  * Close: destroy interface stuff
92  *****************************************************************************/
93 static void Close( vlc_object_t *p_this )
94 {
95     playlist_t *p_playlist = pl_Yield( p_this );
96     var_DelCallback( p_playlist, "playlist-current", ItemChange, p_this );
97     pl_Release( p_this );
98
99     notify_uninit();
100 }
101
102 /*****************************************************************************
103  * ItemChange: Playlist item change callback
104  *****************************************************************************/
105 static int ItemChange( vlc_object_t *p_this, const char *psz_var,
106                        vlc_value_t oldval, vlc_value_t newval, void *param )
107 {
108     char psz_tmp[MAX_LENGTH];
109     char *psz_title = NULL;
110     char *psz_artist = NULL;
111     char *psz_album = NULL;
112     input_thread_t *p_input=NULL;
113     playlist_t * p_playlist = pl_Yield( p_this );
114
115     p_input = p_playlist->p_input;
116     vlc_object_release( p_playlist );
117
118     if( !p_input ) return VLC_SUCCESS;
119     vlc_object_yield( p_input );
120
121     if( p_input->b_dead || !p_input->input.p_item->psz_name )
122     {
123         /* Not playing anything ... */
124         vlc_object_release( p_input );
125         return VLC_SUCCESS;
126     }
127
128     /* Playing something ... */
129     psz_artist = p_input->input.p_item->p_meta->psz_artist ?
130                   strdup( p_input->input.p_item->p_meta->psz_artist ) :
131                   strdup( _("no artist") );
132     psz_album = p_input->input.p_item->p_meta->psz_album ?
133                   strdup( p_input->input.p_item->p_meta->psz_album ) :
134                   strdup( _("no album") );
135     psz_title = strdup( p_input->input.p_item->psz_name );
136     if( psz_title == NULL ) psz_title = strdup( N_("(no title)") );
137     snprintf( psz_tmp, MAX_LENGTH, "<b>%s</b>\n%s - %s",
138               psz_title, psz_artist, psz_album );
139     free( psz_title );
140     free( psz_artist );
141     free( psz_album );
142
143     Notify( p_this, psz_tmp );
144
145     vlc_object_release( p_input );
146     return VLC_SUCCESS;
147 }
148
149 static int Notify( vlc_object_t *p_this, const char *psz_temp )
150 {
151     NotifyNotification * notification;
152     notification = notify_notification_new( _("Now Playing"),
153                              psz_temp,
154                              DATA_PATH "/vlc128x128.png",NULL);
155     notify_notification_set_timeout( notification,
156                                      config_GetInt(p_this, "notify-timeout") );
157     notify_notification_set_urgency( notification, NOTIFY_URGENCY_LOW );
158     notify_notification_show( notification, NULL);
159     return VLC_SUCCESS;
160 }
161