]> git.sesse.net Git - vlc/blob - src/vlc.c
- added controlled symbol export support for win32. Now, all visible symbols in libvl...
[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 <stdio.h>                                              /* fprintf() */
31 #include <stdlib.h>                                  /* putenv(), strtol(),  */
32 #ifdef HAVE_SIGNAL_H
33 #   include <signal.h>                            /* SIGHUP, SIGINT, SIGKILL */
34 #endif
35 #ifdef HAVE_TIME_H
36 #   include <time.h>                                               /* time() */
37 #endif
38
39 #include <vlc/vlc.h>
40
41 /*****************************************************************************
42  * Local prototypes.
43  *****************************************************************************/
44 #if !defined(WIN32) && !defined(UNDER_CE)
45 static void SigHandler  ( int i_signal );
46 #endif
47
48 extern void rootwrap( void );
49
50 /*****************************************************************************
51  * main: parse command line, start interface and spawn threads.
52  *****************************************************************************/
53 int main( int i_argc, char *ppsz_argv[] )
54 {
55     int i_ret;
56
57 #ifndef __APPLE__
58     /* This clutters OSX GUI error logs */
59     fprintf( stderr, "VLC media player %s\n", VLC_Version() );
60 #endif
61
62 #ifdef HAVE_PUTENV
63 #   ifdef DEBUG
64     /* Activate malloc checking routines to detect heap corruptions. */
65     putenv( (char*)"MALLOC_CHECK_=2" );
66
67     /* Disable the ugly Gnome crash dialog so that we properly segfault */
68     putenv( (char *)"GNOME_DISABLE_CRASH_DIALOG=1" );
69 #   endif
70
71     /* If the user isn't using VLC_VERBOSE, set it to 0 by default */
72     if( getenv( "VLC_VERBOSE" ) == NULL )
73     {
74         putenv( (char *)"VLC_VERBOSE=0" );
75     }
76 #endif
77
78 #if defined (HAVE_GETEUID) && !defined (SYS_BEOS)
79      rootwrap ();
80 #endif
81
82     /* Create a libvlc structure */
83     i_ret = VLC_Create();
84     if( i_ret < 0 )
85     {
86         return i_ret;
87     }
88
89 #if !defined(WIN32) && !defined(UNDER_CE)
90     /* Set the signal handlers. SIGTERM is not intercepted, because we need at
91      * least one method to kill the program when all other methods failed, and
92      * when we don't want to use SIGKILL.
93      * Note that we set the signals after the vlc_create call. */
94     signal( SIGINT,  SigHandler );
95     signal( SIGHUP,  SigHandler );
96     signal( SIGQUIT, SigHandler );
97
98     /* Other signals */
99     signal( SIGALRM, SIG_IGN );
100     signal( SIGPIPE, SIG_IGN );
101 #endif
102
103     /* Initialize libvlc */
104     i_ret = VLC_Init( 0, i_argc, ppsz_argv );
105     if( i_ret < 0 )
106     {
107         VLC_Destroy( 0 );
108         return i_ret == VLC_EEXITSUCCESS ? 0 : i_ret;
109     }
110
111     i_ret = VLC_AddIntf( 0, NULL, VLC_TRUE, VLC_TRUE );
112
113     /* Finish the threads */
114     VLC_CleanUp( 0 );
115
116     /* Destroy the libvlc structure */
117     VLC_Destroy( 0 );
118
119     return i_ret;
120 }
121
122 #if !defined(WIN32) && !defined(UNDER_CE)
123 /*****************************************************************************
124  * SigHandler: system signal handler
125  *****************************************************************************
126  * This function is called when a fatal signal is received by the program.
127  * It tries to end the program in a clean way.
128  *****************************************************************************/
129 static void SigHandler( int i_signal )
130 {
131     static time_t abort_time = 0;
132     static volatile vlc_bool_t b_die = VLC_FALSE;
133
134     /* Once a signal has been trapped, the termination sequence will be
135      * armed and subsequent signals will be ignored to avoid sending signals
136      * to a libvlc structure having been destroyed */
137
138     if( !b_die )
139     {
140         b_die = VLC_TRUE;
141         abort_time = time( NULL );
142
143         fprintf( stderr, "signal %d received, terminating vlc - do it "
144                          "again in case it gets stuck\n", i_signal );
145
146         /* Acknowledge the signal received */
147         VLC_Die( 0 );
148     }
149     else if( time( NULL ) > abort_time + 2 )
150     {
151         /* If user asks again 1 or 2 seconds later, die badly */
152         signal( SIGINT,  SIG_DFL );
153         signal( SIGHUP,  SIG_DFL );
154         signal( SIGQUIT, SIG_DFL );
155         signal( SIGALRM, SIG_DFL );
156         signal( SIGPIPE, SIG_DFL );
157
158         fprintf( stderr, "user insisted too much, dying badly\n" );
159
160         abort();
161     }
162 }
163 #endif
164
165 #if defined(UNDER_CE)
166 #   if defined( _MSC_VER ) && defined( UNDER_CE )
167 #       include "vlc_common.h"
168 #   endif
169 /*****************************************************************************
170  * WinMain: parse command line, start interface and spawn threads. (WinCE only)
171  *****************************************************************************/
172 int WINAPI WinMain( HINSTANCE hInstance, HINSTANCE hPrevInstance,
173                     LPTSTR lpCmdLine, int nCmdShow )
174 {
175     char **argv, psz_cmdline[MAX_PATH];
176     int argc, i_ret;
177
178     WideCharToMultiByte( CP_ACP, 0, lpCmdLine, -1,
179                          psz_cmdline, MAX_PATH, NULL, NULL );
180
181     argv = vlc_parse_cmdline( psz_cmdline, &argc );
182     argv = realloc( argv, (argc + 1) * sizeof(char *) );
183     if( !argv ) return -1;
184
185     if( argc ) memmove( argv + 1, argv, argc * sizeof(char *) );
186     argv[0] = ""; /* Fake program path */
187
188     i_ret = main( argc + 1, argv );
189
190     /* No need to free the argv memory */
191     return i_ret;
192 }
193 #endif