]> git.sesse.net Git - vlc/blob - modules/misc/notify/msn.c
fix typo
[vlc] / modules / misc / notify / msn.c
1 /*****************************************************************************
2  * msn.c : msn title plugin
3  *****************************************************************************
4  * Copyright (C) 2005 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Antoine Cellerier <dionoea -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
28 #ifdef HAVE_CONFIG_H
29 # include "config.h"
30 #endif
31
32 #include <vlc_common.h>
33 #include <vlc_plugin.h>
34 #include <vlc_interface.h>
35 #include <vlc_meta.h>
36 #include <vlc_playlist.h>
37 #include <vlc_strings.h>
38
39 /*****************************************************************************
40  * intf_sys_t: description and status of log interface
41  *****************************************************************************/
42 struct intf_sys_t
43 {
44     char *psz_format;
45 };
46
47 /*****************************************************************************
48  * Local prototypes
49  *****************************************************************************/
50 static int  Open    ( vlc_object_t * );
51 static void Close   ( vlc_object_t * );
52
53 static int ItemChange( vlc_object_t *, const char *,
54                        vlc_value_t, vlc_value_t, void * );
55 static int SendToMSN( const char * psz_msg );
56
57 #define MSN_MAX_LENGTH 256
58
59 /*****************************************************************************
60  * Module descriptor
61  *****************************************************************************
62  * This module should be used on windows with MSN (i think that you need to
63  * have MSN 7 or newer) to "advertise" what you are playing in VLC.
64  * You need to enable the "What I'm Listening To" option in MSN.
65  *****************************************************************************/
66 #define FORMAT_DEFAULT "{0} - {1}"
67 #define FORMAT_TEXT N_("Title format string")
68 #define FORMAT_LONGTEXT N_("Format of the string to send to MSN " \
69 "{0} Artist, {1} Title, {2} Album. Defaults to \"Artist - Title\" ({0} - {1}).")
70
71 vlc_module_begin ()
72     set_category( CAT_INTERFACE )
73     set_subcategory( SUBCAT_INTERFACE_CONTROL )
74     set_shortname( "MSN" )
75     set_description( N_("MSN Now-Playing") )
76
77     add_string( "msn-format", FORMAT_DEFAULT, NULL,
78                 FORMAT_TEXT, FORMAT_LONGTEXT, false )
79
80     set_capability( "interface", 0 )
81     set_callbacks( Open, Close )
82 vlc_module_end ()
83
84 /*****************************************************************************
85  * Open: initialize and create stuff
86  *****************************************************************************/
87 static int Open( vlc_object_t *p_this )
88 {
89     intf_thread_t *p_intf = (intf_thread_t *)p_this;
90     playlist_t *p_playlist;
91
92     p_intf->p_sys = malloc( sizeof( intf_sys_t ) );
93     if( !p_intf->p_sys )
94         return VLC_ENOMEM;
95
96     p_intf->p_sys->psz_format = config_GetPsz( p_intf, "msn-format" );
97     if( !p_intf->p_sys->psz_format )
98     {
99         msg_Dbg( p_intf, "no format provided" );
100         p_intf->p_sys->psz_format = strdup( FORMAT_DEFAULT );
101     }
102     msg_Dbg( p_intf, "using format: %s", p_intf->p_sys->psz_format );
103
104     p_playlist = pl_Hold( p_intf );
105     var_AddCallback( p_playlist, "item-change", ItemChange, p_intf );
106     var_AddCallback( p_playlist, "playlist-current", ItemChange, p_intf );
107     pl_Release( p_intf );
108
109     return VLC_SUCCESS;
110 }
111
112 /*****************************************************************************
113  * Close: destroy interface stuff
114  *****************************************************************************/
115 static void Close( vlc_object_t *p_this )
116 {
117     intf_thread_t *p_intf = (intf_thread_t *)p_this;
118     playlist_t *p_playlist = pl_Hold( p_this );
119
120     /* clear the MSN stuff ... else it looks like we're still playing
121      * something although VLC (or the MSN plugin) is closed */
122     SendToMSN( "\\0Music\\01\\0\\0\\0\\0\\0\\0\\0" );
123
124     var_DelCallback( p_playlist, "item-change", ItemChange, p_intf );
125     var_DelCallback( p_playlist, "playlist-current", ItemChange, p_intf );
126     pl_Release( p_this );
127
128     /* Destroy structure */
129     free( p_intf->p_sys->psz_format );
130     free( p_intf->p_sys );
131 }
132
133 /*****************************************************************************
134  * ItemChange: Playlist item change callback
135  *****************************************************************************/
136 static int ItemChange( vlc_object_t *p_this, const char *psz_var,
137                        vlc_value_t oldval, vlc_value_t newval, void *param )
138 {
139     (void)psz_var;    (void)oldval;    (void)newval;
140     intf_thread_t *p_intf = (intf_thread_t *)param;
141     char psz_tmp[MSN_MAX_LENGTH];
142     char *psz_title = NULL;
143     char *psz_artist = NULL;
144     char *psz_album = NULL;
145     char *psz_buf = NULL;
146     input_thread_t *p_input =  playlist_CurrentInput( (playlist_t *) p_this );
147
148     if( !p_input ) return VLC_SUCCESS;
149
150     if( p_input->b_dead || !input_GetItem(p_input)->psz_name )
151     {
152         /* Not playing anything ... */
153         SendToMSN( "\\0Music\\01\\0\\0\\0\\0\\0\\0\\0" );
154         vlc_object_release( p_input );
155         return VLC_SUCCESS;
156     }
157
158     /* Playing something ... */
159     psz_artist = input_item_GetArtist( input_GetItem( p_input ) );
160     psz_album = input_item_GetAlbum( input_GetItem( p_input ) );
161     psz_title = input_item_GetTitle( input_GetItem( p_input ) );
162     if( !psz_artist ) psz_artist = strdup( "" );
163     if( !psz_album ) psz_album = strdup( "" );
164     if( !psz_title )
165         psz_title = input_item_GetName( input_GetItem( p_input ) );
166
167     psz_buf = str_format_meta( p_this, p_intf->p_sys->psz_format );
168
169     snprintf( psz_tmp,
170               MSN_MAX_LENGTH,
171               "\\0Music\\01\\0%s\\0%s\\0%s\\0%s\\0\\0\\0",
172               psz_buf,
173               psz_artist,
174               psz_title,
175               psz_album );
176     free( psz_buf );
177     free( psz_title );
178     free( psz_artist );
179     free( psz_album );
180
181     SendToMSN( (const char*)psz_tmp );
182     vlc_object_release( p_input );
183
184     return VLC_SUCCESS;
185 }
186
187 /*****************************************************************************
188  * SendToMSN
189  *****************************************************************************/
190 static int SendToMSN( const char *psz_msg )
191 {
192     COPYDATASTRUCT msndata;
193     HWND msnui = NULL;
194
195     wchar_t buffer[MSN_MAX_LENGTH];
196
197     mbstowcs( buffer, psz_msg, MSN_MAX_LENGTH );
198
199     msndata.dwData = 0x547;
200     msndata.lpData = &buffer;
201     msndata.cbData = (lstrlenW(buffer)*2)+2;
202
203     while( ( msnui = FindWindowEx( NULL, msnui, "MsnMsgrUIManager", NULL ) ) )
204     {
205         SendMessage(msnui, WM_COPYDATA, (WPARAM)NULL, (LPARAM)&msndata);
206     }
207
208     return VLC_SUCCESS;
209 }