]> git.sesse.net Git - vlc/blob - src/vlc.c
Convert from locale before passing to LibVLC - closes #838
[vlc] / src / vlc.c
1 /*****************************************************************************
2  * vlc.c: the vlc player
3  *****************************************************************************
4  * Copyright (C) 1998-2004 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Vincent Seguin <seguin@via.ecp.fr>
8  *          Samuel Hocevar <sam@zoy.org>
9  *          Gildas Bazin <gbazin@videolan.org>
10  *          Derk-Jan Hartman <hartman at videolan dot org>
11  *          Lots of other people, see the libvlc AUTHORS file
12  *
13  * This program is free software; you can redistribute it and/or modify
14  * it under the terms of the GNU General Public License as published by
15  * the Free Software Foundation; either version 2 of the License, or
16  * (at your option) any later version.
17  *
18  * This program is distributed in the hope that it will be useful,
19  * but WITHOUT ANY WARRANTY; without even the implied warranty of
20  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21  * GNU General Public License for more details.
22  *
23  * You should have received a copy of the GNU General Public License
24  * along with this program; if not, write to the Free Software
25  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
26  *****************************************************************************/
27
28 #include "config.h"
29
30 #include <vlc/vlc.h>
31 #include <stdio.h>                                              /* fprintf() */
32 #include <stdlib.h>                                  /* putenv(), strtol(),  */
33 #include <locale.h>
34
35 /* Explicit HACK */
36 extern void LocaleFree (const char *);
37 extern char *FromLocale (const char *);
38
39
40 /*****************************************************************************
41  * Local prototypes.
42  *****************************************************************************/
43 #ifdef WIN32
44 #include <windows.h>
45 extern void __wgetmainargs(int *argc, wchar_t ***wargv, wchar_t ***wenviron,
46                            int expand_wildcards, int *startupinfo);
47 static inline void Kill(void) { }
48 #else
49
50 # include <signal.h>
51 # include <time.h>
52 # include <pthread.h>
53
54 static void Kill (void);
55 static void *SigHandler (void *set);
56 #endif
57
58 /*****************************************************************************
59  * main: parse command line, start interface and spawn threads.
60  *****************************************************************************/
61 int main( int i_argc, char *ppsz_argv[] )
62 {
63     int i_ret;
64
65     setlocale (LC_ALL, "");
66
67 #ifndef __APPLE__
68     /* This clutters OSX GUI error logs */
69     fprintf( stderr, "VLC media player %s\n", VLC_Version() );
70 #endif
71
72 #ifdef HAVE_PUTENV
73 #   ifdef DEBUG
74     /* Activate malloc checking routines to detect heap corruptions. */
75     putenv( (char*)"MALLOC_CHECK_=2" );
76
77     /* Disable the ugly Gnome crash dialog so that we properly segfault */
78     putenv( (char *)"GNOME_DISABLE_CRASH_DIALOG=1" );
79 #   endif
80
81     /* If the user isn't using VLC_VERBOSE, set it to 0 by default */
82     if( getenv( "VLC_VERBOSE" ) == NULL )
83     {
84         putenv( (char *)"VLC_VERBOSE=0" );
85     }
86 #endif
87
88 #if defined (HAVE_GETEUID) && !defined (SYS_BEOS)
89     /* FIXME: rootwrap (); */
90 #endif
91
92     /* Create a libvlc structure */
93     i_ret = VLC_Create();
94     if( i_ret < 0 )
95     {
96         return -i_ret;
97     }
98
99 #if !defined(WIN32) && !defined(UNDER_CE)
100     /* Synchronously intercepted signals. Thy request a clean shutdown,
101      * and force an unclean shutdown if they are triggered again 2+ seconds
102      * later. We have to handle SIGTERM cleanly because of daemon mode.
103      * Note that we set the signals after the vlc_create call. */
104     static const int sigs[] = { SIGINT, SIGHUP, SIGQUIT, SIGTERM };
105     /* Ignored signals */
106     static const int ignored[] = { SIGALRM, SIGPIPE };
107
108     sigset_t set;
109     pthread_t sigth;
110
111     sigemptyset (&set);
112     for (unsigned i = 0; i < sizeof (sigs) / sizeof (sigs[0]); i++)
113         sigaddset (&set, sigs[i]);
114     for (unsigned i = 0; i < sizeof (ignored) / sizeof (ignored[0]); i++)
115         sigaddset (&set, ignored[i]);
116
117     /* Block all these signals */
118     pthread_sigmask (SIG_BLOCK, &set, NULL);
119
120     for (unsigned i = 0; i < sizeof (ignored) / sizeof (ignored[0]); i++)
121         sigdelset (&set, ignored[i]);
122
123     pthread_create (&sigth, NULL, SigHandler, &set);
124 #endif
125
126 #ifdef WIN32
127     /* Replace argv[1..n] with unicode for Windows NT and above */
128     if( GetVersion() < 0x80000000 )
129     {
130         wchar_t **wargv, **wenvp;
131         int i,i_wargc;
132         int si = { 0 };
133         __wgetmainargs(&i_wargc, &wargv, &wenvp, 0, &si);
134
135         for( i = 1; i < i_wargc; i++ )
136         {
137             int len = WideCharToMultiByte(CP_UTF8, 0, wargv[i], -1, NULL, 0, NULL, NULL);
138             if( len > 0 )
139             {
140                 if( len > 1 ) {
141                     char *utf8arg = (char *)malloc(len);
142                     if( NULL != utf8arg )
143                     {
144                         WideCharToMultiByte(CP_UTF8, 0, wargv[i], -1, utf8arg, len, NULL, NULL);
145                         ppsz_argv[i] = utf8arg;
146                     }
147                     else
148                     {
149                         /* failed!, quit */
150                         return 1;
151                     }
152                 }
153                 else
154                 {
155                     ppsz_argv[i] = strdup ("");
156                 }
157             }
158             else
159             {
160                 /* failed!, quit */
161                 return 1;
162             }
163         }
164     }
165     else
166 #endif
167     {
168         for (int i = 0; i < i_argc; i++)
169             if ((ppsz_argv[i] = FromLocale (ppsz_argv[i])) == NULL)
170                 return 1; // BOOM!
171     }
172
173     /* Initialize libvlc */
174     i_ret = VLC_Init( 0, i_argc, ppsz_argv );
175     if( i_ret < 0 )
176     {
177         VLC_Destroy( 0 );
178         return i_ret == VLC_EEXITSUCCESS ? 0 : -i_ret;
179     }
180
181     i_ret = VLC_AddIntf( 0, NULL, VLC_TRUE, VLC_TRUE );
182
183     /* Finish the threads */
184     VLC_CleanUp( 0 );
185
186     Kill ();
187
188     /* Destroy the libvlc structure */
189     VLC_Destroy( 0 );
190
191     for (int i = 0; i < i_argc; i++)
192         LocaleFree (ppsz_argv[i]);
193
194 #if !defined(WIN32) && !defined(UNDER_CE)
195     pthread_cancel (sigth);
196 # ifdef __APPLE__
197     /* In Mac OS X up to 10.4.8 sigwait (among others) is not a pthread
198      * cancellation point, so we throw a dummy quit signal to end
199      * sigwait() in the sigth thread */
200     pthread_kill (sigth, SIGQUIT);
201 # endif
202     pthread_join (sigth, NULL);
203 #endif
204
205     return -i_ret;
206 }
207
208 #if !defined(WIN32) && !defined(UNDER_CE)
209 /*****************************************************************************
210  * SigHandler: system signal handler
211  *****************************************************************************
212  * This thread receives all handled signals synchronously.
213  * It tries to end the program in a clean way.
214  *****************************************************************************/
215 static void *SigHandler (void *data)
216 {
217     const sigset_t *set = (sigset_t *)data;
218     time_t abort_time = 0;
219
220     for (;;)
221     {
222         int i_signal, state;
223         (void)sigwait (set, &i_signal);
224
225 #ifdef __APPLE__
226         /* In Mac OS X up to 10.4.8 sigwait (among others) is not a pthread
227          * cancellation point */
228         pthread_testcancel();
229 #endif
230
231         /* Once a signal has been trapped, the termination sequence will be
232          * armed and subsequent signals will be ignored to avoid sending
233          * signals to a libvlc structure having been destroyed */
234
235         pthread_setcancelstate (PTHREAD_CANCEL_DISABLE, &state);
236         if (abort_time == 0)
237         {
238             time (&abort_time);
239             abort_time += 2;
240
241             fprintf (stderr, "signal %d received, terminating vlc - do it "
242                             "again in case it gets stuck\n", i_signal);
243
244             /* Acknowledge the signal received */
245             Kill ();
246         }
247         else
248         if (time (NULL) <= abort_time)
249         {
250             /* If user asks again more than 2 seconds later, die badly */
251             pthread_sigmask (SIG_UNBLOCK, set, NULL);
252             fprintf (stderr, "user insisted too much, dying badly\n");
253             abort ();
254         }
255         pthread_setcancelstate (state, NULL);
256     }
257     /* Never reached */
258 }
259
260
261 static void KillOnce (void)
262 {
263         VLC_Die (0);
264 }
265
266 static void Kill (void)
267 {
268     static pthread_once_t once = PTHREAD_ONCE_INIT;
269     pthread_once (&once, KillOnce);
270 }
271
272 #endif
273
274 #if defined(UNDER_CE)
275 #   if defined( _MSC_VER ) && defined( UNDER_CE )
276 #       include "vlc_common.h"
277 #   endif
278 /*****************************************************************************
279  * WinMain: parse command line, start interface and spawn threads. (WinCE only)
280  *****************************************************************************/
281 int WINAPI WinMain( HINSTANCE hInstance, HINSTANCE hPrevInstance,
282                     LPTSTR lpCmdLine, int nCmdShow )
283 {
284     char **argv, psz_cmdline[MAX_PATH];
285     int argc, i_ret;
286
287     WideCharToMultiByte( CP_ACP, 0, lpCmdLine, -1,
288                          psz_cmdline, MAX_PATH, NULL, NULL );
289
290     argv = vlc_parse_cmdline( psz_cmdline, &argc );
291     argv = realloc( argv, (argc + 1) * sizeof(char *) );
292     if( !argv ) return -1;
293
294     if( argc ) memmove( argv + 1, argv, argc * sizeof(char *) );
295     argv[0] = ""; /* Fake program path */
296
297     i_ret = main( argc + 1, argv );
298
299     /* No need to free the argv memory */
300     return i_ret;
301 }
302 #endif