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