growl.m
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:12k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * growl.m : growl notification plugin
  3.  *****************************************************************************
  4.  * VLC specific code:
  5.  * 
  6.  * Copyright © 2008 the VideoLAN team
  7.  * $Id: 68e27541b2039fe216f988254571ff47047bf76f $
  8.  *
  9.  * Authors: Rafaël Carré <funman@videolanorg>
  10.  *
  11.  * This program is free software; you can redistribute it and/or modify
  12.  * it under the terms of the GNU General Public License as published by
  13.  * the Free Software Foundation; either version 2 of the License, or
  14.  * (at your option) any later version.
  15.  *
  16.  * This program is distributed in the hope that it will be useful,
  17.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  18.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  19.  * GNU General Public License for more details.
  20.  *
  21.  * You should have received a copy of the GNU General Public License
  22.  * along with this program; if not, write to the Free Software
  23.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  24.  *
  25.  * Growl specific code, ripped from growlnotify:
  26.  *
  27.  * Copyright (c) The Growl Project, 2004-2005
  28.  * All rights reserved.
  29.  *
  30.  * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
  31.  *
  32.  * 1. Redistributions of source code must retain the above copyright
  33.  notice, this list of conditions and the following disclaimer.
  34.  * 2. Redistributions in binary form must reproduce the above copyright
  35.  notice, this list of conditions and the following disclaimer in the
  36.  documentation and/or other materials provided with the distribution.
  37.  * 3. Neither the name of Growl nor the names of its contributors
  38.  may be used to endorse or promote products derived from this software
  39.  without specific prior written permission.
  40.  *
  41.  * 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.
  42.  *
  43.  *****************************************************************************/
  44. /*****************************************************************************
  45.  * Preamble
  46.  *****************************************************************************/
  47. #ifdef HAVE_CONFIG_H
  48. # include "config.h"
  49. #endif
  50. #import <Foundation/Foundation.h>
  51. #import <Growl/GrowlDefines.h>
  52. #include <vlc_common.h>
  53. #include <vlc_plugin.h>
  54. #include <vlc_playlist.h>
  55. #include <vlc_meta.h>
  56. #include <vlc_interface.h>
  57. #include <vlc_url.h>
  58. /*****************************************************************************
  59.  * intf_sys_t
  60.  *****************************************************************************/
  61. struct intf_sys_t
  62. {
  63.     CFDataRef           default_icon;
  64.     NSAutoreleasePool   *p_pool;
  65.     CFStringRef         app_name;
  66.     CFStringRef         notification_type;
  67. };
  68. /*****************************************************************************
  69.  * Local prototypes
  70.  *****************************************************************************/
  71. static int  Open    ( vlc_object_t * );
  72. static void Close   ( vlc_object_t * );
  73. static int ItemChange( vlc_object_t *, const char *,
  74.                        vlc_value_t, vlc_value_t, void * );
  75. static void RegisterToGrowl( vlc_object_t * );
  76. static void NotifyToGrowl( intf_thread_t *, const char *, CFDataRef );
  77. static CFDataRef readFile(const char *);
  78. /*****************************************************************************
  79.  * Module descriptor
  80.  ****************************************************************************/
  81. vlc_module_begin ()
  82.     set_category( CAT_INTERFACE )
  83.     set_subcategory( SUBCAT_INTERFACE_CONTROL )
  84.     set_shortname( "Growl" )
  85.     set_description( N_("Growl Notification Plugin") )
  86.     set_capability( "interface", 0 )
  87.     set_callbacks( Open, Close )
  88. vlc_module_end ()
  89. /*****************************************************************************
  90.  * Open: initialize and create stuff
  91.  *****************************************************************************/
  92. static int Open( vlc_object_t *p_this )
  93. {
  94.     intf_thread_t *p_intf = (intf_thread_t *)p_this;
  95.     intf_sys_t    *p_sys;
  96.     p_sys = p_intf->p_sys = calloc( 1, sizeof(intf_sys_t) );
  97.     if( !p_sys )
  98.         return VLC_ENOMEM;
  99.     p_sys->p_pool = [[NSAutoreleasePool alloc] init];
  100.     p_sys->app_name = CFSTR( "VLC media player" );
  101.     p_sys->notification_type = CFSTR( "New input playing" );
  102.     const char *data_path = config_GetDataDir ();
  103.     char buf[strlen (data_path) + sizeof ("/vlc48x48.png")];
  104.     snprintf (buf, sizeof (buf), "%s/vlc48x48.png", data_path);
  105.     p_sys->default_icon = (CFDataRef) readFile( buf );
  106.     playlist_t *p_playlist = pl_Hold( p_intf );
  107.     var_AddCallback( p_playlist, "item-current", ItemChange, p_intf );
  108.     pl_Release( p_intf );
  109.     RegisterToGrowl( p_this );
  110.     return VLC_SUCCESS;
  111. }
  112. /*****************************************************************************
  113.  * Close: destroy interface stuff
  114.  *****************************************************************************/
  115. static void Close( vlc_object_t *p_this )
  116. {
  117.     intf_sys_t *p_sys = ((intf_thread_t*)p_this)->p_sys;
  118.     CFRelease( p_sys->default_icon );
  119.     CFRelease( p_sys->app_name );
  120.     CFRelease( p_sys->notification_type );
  121.     [p_sys->p_pool release];
  122.     free( p_sys );
  123.     playlist_t *p_playlist = pl_Hold( p_this );
  124.     var_DelCallback( p_playlist, "item-current", ItemChange, p_this );
  125.     pl_Release( p_this );
  126. }
  127. /*****************************************************************************
  128.  * ItemChange: Playlist item change callback
  129.  *****************************************************************************/
  130. static int ItemChange( vlc_object_t *p_this, const char *psz_var,
  131.                        vlc_value_t oldval, vlc_value_t newval, void *param )
  132. {
  133.     VLC_UNUSED(psz_var); VLC_UNUSED(oldval); VLC_UNUSED(newval);
  134.     intf_thread_t *p_intf   = (intf_thread_t*)param;
  135.     char *psz_tmp           = NULL;
  136.     char *psz_title         = NULL;
  137.     char *psz_artist        = NULL;
  138.     char *psz_album         = NULL;
  139.     input_thread_t *p_input;
  140.     p_input = playlist_CurrentInput( (playlist_t*)p_this );
  141.     if( !p_input ) return VLC_SUCCESS;
  142.     char *psz_name = input_item_GetName( input_GetItem( p_input ) );
  143.     if( p_input->b_dead || !psz_name )
  144.     {
  145.         /* Not playing anything ... */
  146.         free( psz_name );
  147.         vlc_object_release( p_input );
  148.         return VLC_SUCCESS;
  149.     }
  150.     free( psz_name );
  151.     /* Playing something ... */
  152.     input_item_t *p_item = input_GetItem( p_input );
  153.     psz_title = input_item_GetTitleFbName( p_item );
  154.     if( EMPTY_STR( psz_title ) )
  155.     {
  156.         free( psz_title );
  157.         vlc_object_release( p_input );
  158.         return VLC_SUCCESS;
  159.     }
  160.     psz_artist = input_item_GetArtist( p_item );
  161.     if( EMPTY_STR( psz_artist ) ) FREENULL( psz_artist );
  162.     psz_album = input_item_GetAlbum( p_item ) ;
  163.     if( EMPTY_STR( psz_album ) ) FREENULL( psz_album );
  164.     int i_ret;
  165.     if( psz_artist && psz_album )
  166.         i_ret = asprintf( &psz_tmp, "%sn%s [%s]",
  167.                 psz_title, psz_artist, psz_album );
  168.     else if( psz_artist )
  169.         i_ret = asprintf( &psz_tmp, "%sn%s", psz_title, psz_artist );
  170.     else
  171.         i_ret = asprintf( &psz_tmp, "%s", psz_title );
  172.     if( i_ret == -1 )
  173.     {
  174.         free( psz_title );
  175.         free( psz_artist );
  176.         free( psz_album );
  177.         vlc_object_release( p_input );
  178.         return VLC_ENOMEM;
  179.     }
  180.     char *psz_arturl = input_item_GetArtURL( p_item );
  181.     CFDataRef art = NULL;
  182.     if( psz_arturl && !strncmp( psz_arturl, "file://", 7 ) &&
  183.                     decode_URI( psz_arturl + 7 ) )
  184.         art = (CFDataRef) readFile( psz_arturl + 7 );
  185.     free( psz_title );
  186.     free( psz_artist );
  187.     free( psz_album );
  188.     free( psz_arturl );
  189.     NotifyToGrowl( p_intf, psz_tmp, art );
  190.     if( art ) CFRelease( art );
  191.     free( psz_tmp );
  192.     vlc_object_release( p_input );
  193.     return VLC_SUCCESS;
  194. }
  195. /*****************************************************************************
  196.  * RegisterToGrowl
  197.  *****************************************************************************/
  198. static void RegisterToGrowl( vlc_object_t *p_this )
  199. {
  200.     intf_sys_t *p_sys = ((intf_thread_t *)p_this)->p_sys;
  201.     CFArrayRef defaultAndAllNotifications = CFArrayCreate(
  202.         kCFAllocatorDefault, (const void **)&(p_sys->notification_type), 1,
  203.         &kCFTypeArrayCallBacks );
  204.     
  205.     CFTypeRef registerKeys[4] = {
  206.         GROWL_APP_NAME,
  207.         GROWL_NOTIFICATIONS_ALL,
  208.         GROWL_NOTIFICATIONS_DEFAULT,
  209.         GROWL_APP_ICON
  210.     };
  211.     CFTypeRef registerValues[4] = {
  212.         p_sys->app_name,
  213.         defaultAndAllNotifications,
  214.         defaultAndAllNotifications,
  215.         p_sys->default_icon
  216.     };
  217.     CFDictionaryRef registerInfo = CFDictionaryCreate(
  218.         kCFAllocatorDefault, registerKeys, registerValues, 4,
  219.         &kCFTypeDictionaryKeyCallBacks, &kCFTypeDictionaryValueCallBacks );
  220.     CFRelease( defaultAndAllNotifications );
  221.     CFNotificationCenterPostNotificationWithOptions(
  222.         CFNotificationCenterGetDistributedCenter(),
  223.         (CFStringRef)GROWL_APP_REGISTRATION, NULL, registerInfo,
  224.         kCFNotificationPostToAllSessions );
  225.     CFRelease( registerInfo );
  226. }
  227. static void NotifyToGrowl( intf_thread_t *p_intf, const char *psz_desc, CFDataRef art )
  228. {
  229.     intf_sys_t *p_sys = p_intf->p_sys;
  230.     CFStringRef title = CFStringCreateWithCString( kCFAllocatorDefault, _("Now playing"), kCFStringEncodingUTF8 );
  231.     CFStringRef desc = CFStringCreateWithCString( kCFAllocatorDefault, psz_desc, kCFStringEncodingUTF8 );
  232.     CFMutableDictionaryRef notificationInfo = CFDictionaryCreateMutable(
  233.         kCFAllocatorDefault, 5, &kCFTypeDictionaryKeyCallBacks,
  234.         &kCFTypeDictionaryValueCallBacks);
  235.     CFDictionarySetValue( notificationInfo, GROWL_NOTIFICATION_NAME, p_sys->notification_type );
  236.     CFDictionarySetValue( notificationInfo, GROWL_APP_NAME, p_sys->app_name );
  237.     CFDictionarySetValue( notificationInfo, GROWL_NOTIFICATION_TITLE, title );
  238.     CFDictionarySetValue( notificationInfo, GROWL_NOTIFICATION_DESCRIPTION, desc );
  239.     CFDictionarySetValue( notificationInfo, GROWL_NOTIFICATION_ICON, 
  240.         art ? art : p_sys->default_icon );
  241.     CFRelease( title );
  242.     CFRelease( desc );
  243.     CFNotificationCenterPostNotificationWithOptions(
  244.         CFNotificationCenterGetDistributedCenter(),
  245.         (CFStringRef)GROWL_NOTIFICATION, NULL, notificationInfo,
  246.         kCFNotificationPostToAllSessions );
  247.     CFRelease( notificationInfo );
  248. }
  249. /* Ripped from CFGrowlAdditions.c 
  250.  * Strangely, this function does exist in Growl shared library, but is not
  251.  * defined in public header files */
  252. static CFDataRef readFile(const char *filename)
  253. {
  254.     CFDataRef data;
  255.     // read the file into a CFDataRef
  256.     FILE *fp = fopen(filename, "r");
  257.     if( !fp )
  258.     return NULL;
  259.     fseek(fp, 0, SEEK_END);
  260.     long dataLength = ftell(fp);
  261.     fseek(fp, 0, SEEK_SET);
  262.     unsigned char *fileData = malloc(dataLength);
  263.     fread(fileData, 1, dataLength, fp);
  264.     fclose(fp);
  265.     return CFDataCreateWithBytesNoCopy(kCFAllocatorDefault, fileData,
  266.         dataLength, kCFAllocatorMalloc);
  267. }