audiobargraph_a: fix counter wrapping
[vlc/gmpfix.git] / modules / control / win_msg.c
blob167ecac62830c8c80837c32e41d585c7be698ec0
1 /*****************************************************************************
2 * ntservice.c: Windows NT/2K/XP service interface
3 *****************************************************************************
4 * Copyright (C) 2001-2004, 2010 VLC authors and VideoLAN
6 * Authors: Samuel Hocevar <sam@zoy.org>
7 * Gildas Bazin <gbazin@videolan.org>
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.
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.
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 *****************************************************************************/
24 #ifdef HAVE_CONFIG_H
25 # include "config.h"
26 #endif
28 #include <vlc_common.h>
29 #include <vlc_plugin.h>
30 #include <vlc_interface.h>
31 #include <vlc_playlist.h>
32 #include <vlc_url.h> // FIXME: move URL generation to calling process
34 #include <windows.h>
36 struct intf_sys_t
38 HWND window;
39 HANDLE ready;
40 vlc_thread_t thread;
43 /* Must be same as in src/win32/specific.c */
44 typedef struct
46 int argc;
47 int enqueue;
48 char data[];
49 } vlc_ipc_data_t;
51 static LRESULT CALLBACK WMCOPYWNDPROC(HWND hwnd, UINT uMsg,
52 WPARAM wParam, LPARAM lParam)
54 if( uMsg == WM_QUIT )
56 PostQuitMessage( 0 );
58 else if( uMsg == WM_COPYDATA )
60 COPYDATASTRUCT *pwm_data = (COPYDATASTRUCT*)lParam;
62 intf_thread_t *intf = (intf_thread_t *)(uintptr_t)
63 GetWindowLongPtr( hwnd, GWLP_USERDATA );
64 if( intf == NULL )
65 return 0; /* XXX: is this even possible? */
67 /* Add files to the playlist */
68 if( pwm_data->lpData )
70 char **ppsz_argv;
71 vlc_ipc_data_t *p_data = (vlc_ipc_data_t *)pwm_data->lpData;
72 size_t i_data = 0;
73 int i_argc = p_data->argc, i_opt, i_options;
75 ppsz_argv = (char **)malloc( i_argc * sizeof(char *) );
76 for( i_opt = 0; i_opt < i_argc; i_opt++ )
78 ppsz_argv[i_opt] = p_data->data + i_data + sizeof(size_t);
79 i_data += sizeof(size_t) + *((size_t *)(p_data->data + i_data));
82 for( i_opt = 0; i_opt < i_argc; i_opt++ )
84 i_options = 0;
86 /* Count the input options */
87 while( i_opt + i_options + 1 < i_argc &&
88 *ppsz_argv[ i_opt + i_options + 1 ] == ':' )
90 i_options++;
93 #warning URI conversion must be done in calling process instead!
94 /* FIXME: This breaks relative paths if calling vlc.exe is
95 * started from a different working directory. */
96 char *psz_URI = NULL;
97 if( strstr( ppsz_argv[i_opt], "://" ) == NULL )
98 psz_URI = vlc_path2uri( ppsz_argv[i_opt], NULL );
99 playlist_AddExt( pl_Get(intf),
100 (psz_URI != NULL) ? psz_URI : ppsz_argv[i_opt],
101 NULL, PLAYLIST_APPEND |
102 ( ( i_opt || p_data->enqueue ) ? 0 : PLAYLIST_GO ),
103 PLAYLIST_END, -1,
104 i_options,
105 (char const **)( i_options ? &ppsz_argv[i_opt+1] : NULL ),
106 VLC_INPUT_OPTION_TRUSTED,
107 true, pl_Unlocked );
109 i_opt += i_options;
110 free( psz_URI );
113 free( ppsz_argv );
117 return DefWindowProc( hwnd, uMsg, wParam, lParam );
120 static void *HelperThread(void *data)
122 intf_thread_t *intf = data;
123 intf_sys_t *sys = intf->p_sys;
125 HWND ipcwindow =
126 CreateWindow(L"STATIC", /* name of window class */
127 L"VLC ipc " TEXT(VERSION), /* window title bar text */
128 0, /* window style */
129 0, /* default X coordinate */
130 0, /* default Y coordinate */
131 0, /* window width */
132 0, /* window height */
133 NULL, /* no parent window */
134 NULL, /* no menu in this window */
135 GetModuleHandle(NULL), /* handle of this program instance */
136 NULL) ; /* sent to WM_CREATE */
138 SetWindowLongPtr(ipcwindow, GWLP_WNDPROC, (LRESULT)WMCOPYWNDPROC);
139 SetWindowLongPtr(ipcwindow, GWLP_USERDATA, (uintptr_t)data);
141 sys->window = ipcwindow;
142 /* Signal the creation of the thread and events queue */
143 SetEvent(sys->ready);
145 MSG message;
146 while (GetMessage(&message, NULL, 0, 0))
148 TranslateMessage(&message);
149 DispatchMessage(&message);
152 return NULL;
155 static int Open(vlc_object_t *obj)
157 intf_thread_t *intf = (intf_thread_t *)obj;
158 intf_sys_t *sys = malloc(sizeof (*sys));
159 if (unlikely(sys == NULL))
160 return VLC_ENOMEM;
162 intf->p_sys = sys;
164 /* Run the helper thread */
165 sys->ready = CreateEvent(NULL, FALSE, FALSE, NULL);
167 if (vlc_clone(&sys->thread, HelperThread, intf, VLC_THREAD_PRIORITY_LOW))
169 free(sys);
170 msg_Err(intf, "one instance mode DISABLED "
171 "(IPC helper thread couldn't be created)");
172 return VLC_ENOMEM;
175 WaitForSingleObject(sys->ready, INFINITE);
176 CloseHandle(sys->ready);
178 return VLC_SUCCESS;
181 static void Close(vlc_object_t *obj)
183 intf_thread_t *intf = (intf_thread_t *)obj;
184 intf_sys_t *sys = intf->p_sys;
186 SendMessage(sys->window, WM_QUIT, 0, 0);
187 vlc_join(sys->thread, NULL);
188 free(sys);
191 vlc_module_begin()
192 set_shortname(N_("WinMsg"))
193 set_description(N_("Windows messages interface"))
194 set_category(CAT_INTERFACE)
195 set_subcategory(SUBCAT_INTERFACE_CONTROL)
196 set_capability("interface", 0)
197 set_callbacks(Open, Close)
198 vlc_module_end()