]> git.sesse.net Git - vlc/blob - modules/notify/growl.m
c3bf25f6c05a209908396b19758664901455122f
[vlc] / modules / notify / growl.m
1 /*****************************************************************************
2  * growl.m : growl notification plugin
3  *****************************************************************************
4  * VLC specific code:
5  *
6  * Copyright © 2008,2011,2012 the VideoLAN team
7  * $Id$
8  *
9  * Authors: Rafaël Carré <funman@videolanorg>
10  *          Felix Paul Kühne <fkuehne@videolan.org
11  *
12  * This program is free software; you can redistribute it and/or modify
13  * it under the terms of the GNU General Public License as published by
14  * the Free Software Foundation; either version 2 of the License, or
15  * (at your option) any later version.
16  *
17  * This program is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20  * GNU General Public License for more details.
21  *
22  * You should have received a copy of the GNU General Public License
23  * along with this program; if not, write to the Free Software
24  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
25  *
26  * Growl specific code, ripped from growlnotify:
27  *
28  * Copyright (c) The Growl Project, 2004-2005
29  * All rights reserved.
30  *
31  * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
32  *
33  * 1. Redistributions of source code must retain the above copyright
34  notice, this list of conditions and the following disclaimer.
35  * 2. Redistributions in binary form must reproduce the above copyright
36  notice, this list of conditions and the following disclaimer in the
37  documentation and/or other materials provided with the distribution.
38  * 3. Neither the name of Growl nor the names of its contributors
39  may be used to endorse or promote products derived from this software
40  without specific prior written permission.
41  *
42  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
43  *
44  *****************************************************************************/
45
46 /*****************************************************************************
47  * Preamble
48  *****************************************************************************/
49
50 #ifdef HAVE_CONFIG_H
51 # include "config.h"
52 #endif
53
54 #import <Foundation/Foundation.h>
55 #import <Growl/Growl.h>
56
57 #include <vlc_common.h>
58 #include <vlc_plugin.h>
59 #include <vlc_playlist.h>
60 #include <vlc_meta.h>
61 #include <vlc_interface.h>
62 #include <vlc_url.h>
63
64
65 /*****************************************************************************
66  * intf_sys_t, VLCGrowlDelegate
67  *****************************************************************************/
68 @interface VLCGrowlDelegate : NSObject <GrowlApplicationBridgeDelegate>
69 {
70     NSString *o_applicationName;
71     NSString *o_notificationType;
72     NSMutableDictionary *o_registrationDictionary;
73 }
74
75 - (void)registerToGrowl;
76 - (void)notifyWithDescription: (const char *)psz_desc
77                        artUrl: (const char *)psz_arturl;
78 @end
79
80 struct intf_sys_t
81 {
82     VLCGrowlDelegate *o_growl_delegate;
83     int             i_id;
84     int             i_item_changes;
85 };
86
87 /*****************************************************************************
88  * Local prototypes
89  *****************************************************************************/
90 static int  Open    ( vlc_object_t * );
91 static void Close   ( vlc_object_t * );
92
93 static int ItemChange( vlc_object_t *, const char *,
94                       vlc_value_t, vlc_value_t, void * );
95
96 /*****************************************************************************
97  * Module descriptor
98  ****************************************************************************/
99
100 vlc_module_begin ()
101 set_category( CAT_INTERFACE )
102 set_subcategory( SUBCAT_INTERFACE_CONTROL )
103 set_shortname( "Growl" )
104 set_description( N_("Growl Notification Plugin") )
105 set_capability( "interface", 0 )
106 set_callbacks( Open, Close )
107 vlc_module_end ()
108
109 /*****************************************************************************
110  * Open: initialize and create stuff
111  *****************************************************************************/
112 static int Open( vlc_object_t *p_this )
113 {
114     intf_thread_t *p_intf = (intf_thread_t *)p_this;
115     playlist_t *p_playlist;
116     intf_sys_t    *p_sys;
117
118     p_sys = p_intf->p_sys = calloc( 1, sizeof(intf_sys_t) );
119     if( !p_sys )
120         return VLC_ENOMEM;
121
122     p_sys->o_growl_delegate = [[VLCGrowlDelegate alloc] init];
123     if( !p_sys->o_growl_delegate )
124       return VLC_ENOMEM;
125
126     p_playlist = pl_Get( p_intf );
127     var_AddCallback( p_playlist, "item-change", ItemChange, p_intf );
128     var_AddCallback( p_playlist, "item-current", ItemChange, p_intf );
129
130     [p_sys->o_growl_delegate registerToGrowl];
131     return VLC_SUCCESS;
132 }
133
134 /*****************************************************************************
135  * Close: destroy interface stuff
136  *****************************************************************************/
137 static void Close( vlc_object_t *p_this )
138 {
139     intf_thread_t *p_intf = (intf_thread_t *)p_this;
140     playlist_t *p_playlist = pl_Get( p_this );
141     intf_sys_t *p_sys = p_intf->p_sys;
142
143     var_DelCallback( p_playlist, "item-change", ItemChange, p_intf );
144     var_DelCallback( p_playlist, "item-current", ItemChange, p_intf );
145
146     [p_sys->o_growl_delegate release];
147     free( p_sys );
148 }
149
150 /*****************************************************************************
151  * ItemChange: Playlist item change callback
152  *****************************************************************************/
153 static int ItemChange( vlc_object_t *p_this, const char *psz_var,
154                       vlc_value_t oldval, vlc_value_t newval, void *param )
155 {
156     VLC_UNUSED(oldval);
157
158     intf_thread_t *p_intf = (intf_thread_t *)param;
159     char *psz_tmp           = NULL;
160     char *psz_title         = NULL;
161     char *psz_artist        = NULL;
162     char *psz_album         = NULL;
163     input_item_t *p_item = newval.p_address;
164
165     bool b_is_item_current = !strcmp( "item-current", psz_var );
166
167     /* Don't update each time an item has been preparsed */
168     if( b_is_item_current )
169     { /* stores the current input item id */
170         if( p_intf->p_sys->i_id != p_item->i_id )
171         {
172             p_intf->p_sys->i_id = p_item->i_id;
173             p_intf->p_sys->i_item_changes = 0;
174         }
175         return VLC_SUCCESS;
176     }
177     /* ignore items which weren't pre-parsed yet */
178     else if( !input_item_IsPreparsed(p_item) )
179         return VLC_SUCCESS;
180     else
181     {   /* "item-change" */
182         
183         if( p_item->i_id != p_intf->p_sys->i_id )
184             return VLC_SUCCESS;
185
186         /* Some variable bitrate inputs call "item-change" callbacks each time
187          * their length is updated, that is several times per second.
188          * We'll limit the number of changes to 1 per input. */
189         if( p_intf->p_sys->i_item_changes > 0 )
190             return VLC_SUCCESS;
191
192         p_intf->p_sys->i_item_changes++;
193     }
194
195     /* Playing something ... */
196     if( input_item_GetNowPlaying( p_item ) )
197         psz_title = input_item_GetNowPlaying( p_item );
198     else
199         psz_title = input_item_GetTitleFbName( p_item );
200     if( EMPTY_STR( psz_title ) )
201     {
202         free( psz_title );
203         return VLC_SUCCESS;
204     }
205
206     psz_artist = input_item_GetArtist( p_item );
207     if( EMPTY_STR( psz_artist ) ) FREENULL( psz_artist );
208     psz_album = input_item_GetAlbum( p_item ) ;
209     if( EMPTY_STR( psz_album ) ) FREENULL( psz_album );
210
211     int i_ret;
212     if( psz_artist && psz_album )
213         i_ret = asprintf( &psz_tmp, "%s\n%s [%s]",
214                          psz_title, psz_artist, psz_album );
215     else if( psz_artist )
216         i_ret = asprintf( &psz_tmp, "%s\n%s", psz_title, psz_artist );
217     else
218         i_ret = asprintf(&psz_tmp, "%s", psz_title );
219
220     if( i_ret == -1 )
221     {
222         free( psz_title );
223         free( psz_artist );
224         free( psz_album );
225         return VLC_ENOMEM;
226     }
227
228     char *psz_arturl = input_item_GetArtURL( p_item );
229     if( psz_arturl )
230     {
231         char *psz = make_path( psz_arturl );
232         free( psz_arturl );
233         psz_arturl = psz;
234     }
235
236     [p_intf->p_sys->o_growl_delegate notifyWithDescription: psz_tmp artUrl: psz_arturl];
237
238     free( psz_title );
239     free( psz_artist );
240     free( psz_album );
241     free( psz_arturl );
242     free( psz_tmp );
243
244     return VLC_SUCCESS;
245 }
246
247 /*****************************************************************************
248  * VLCGrowlDelegate
249  *****************************************************************************/
250 @implementation VLCGrowlDelegate
251
252 - (id)init
253 {
254     if( !( self = [super init] ) )
255         return nil;
256
257     o_applicationName = nil;
258     o_notificationType = nil;
259     o_registrationDictionary = nil;
260
261     return self;
262 }
263
264 - (void)dealloc
265 {
266     [o_applicationName release];
267     [o_notificationType release];
268     [o_registrationDictionary release];
269     [super dealloc];
270 }
271
272 - (void)registerToGrowl
273 {
274     o_applicationName = [[NSString alloc] initWithUTF8String: _( "VLC media player" )];
275     o_notificationType = [[NSString alloc] initWithUTF8String: _( "New input playing" )];
276
277     NSAutoreleasePool *o_pool = [[NSAutoreleasePool alloc] init];
278     NSArray *o_defaultAndAllNotifications = [NSArray arrayWithObject: o_notificationType];
279
280     o_registrationDictionary = [[NSMutableDictionary alloc] init];
281     [o_registrationDictionary setObject: o_defaultAndAllNotifications
282                                  forKey: GROWL_NOTIFICATIONS_ALL];
283     [o_registrationDictionary setObject: o_defaultAndAllNotifications
284                                  forKey: GROWL_NOTIFICATIONS_DEFAULT];
285
286     [GrowlApplicationBridge setGrowlDelegate: self];
287     [o_pool drain];
288 }
289
290 - (void)notifyWithDescription: (const char *)psz_desc artUrl: (const char *)psz_arturl
291 {
292     NSAutoreleasePool *o_pool = [[NSAutoreleasePool alloc] init];
293     NSData *o_art = nil;
294
295     if( psz_arturl )
296         o_art = [NSData dataWithContentsOfFile: [NSString stringWithUTF8String: psz_arturl]];
297
298     [GrowlApplicationBridge notifyWithTitle: [NSString stringWithUTF8String: _( "Now playing" )]
299                                 description: [NSString stringWithUTF8String: psz_desc]
300                            notificationName: o_notificationType
301                                    iconData: o_art
302                                    priority: 0
303                                    isSticky: NO
304                                clickContext: nil];
305     [o_pool drain];
306 }
307
308 /*****************************************************************************
309  * Delegate methods
310  *****************************************************************************/
311 - (NSDictionary *)registrationDictionaryForGrowl
312 {
313     return o_registrationDictionary;
314 }
315
316 - (NSString *)applicationNameForGrowl
317 {
318     return o_applicationName;
319 }
320 @end