]> git.sesse.net Git - vlc/blob - src/interface/main.c
. this is a coding style patch which removes all "foo(bar){" constructions
[vlc] / src / interface / main.c
1 /*****************************************************************************
2  * main.c: main vlc source
3  * Includes the main() function for vlc. Parses command line, start interface
4  * and spawn threads.
5  *****************************************************************************
6  * Copyright (C) 1998, 1999, 2000 VideoLAN
7  *
8  * Authors:
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  * 
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
23  *****************************************************************************/
24
25 /*****************************************************************************
26  * Preamble
27  *****************************************************************************/
28 #include "defs.h"
29
30 #include <signal.h>                               /* SIGHUP, SIGINT, SIGKILL */
31 #include <stdio.h>                                              /* sprintf() */
32
33 #ifdef HAVE_GETOPT_H
34 #include <getopt.h>                                              /* getopt() */
35 #endif
36
37 #include <errno.h>                                                 /* ENOMEM */
38 #include <stdlib.h>                                  /* getenv(), strtol(),  */
39 #include <string.h>                                            /* strerror() */
40
41 #include "config.h"
42 #include "debug.h"
43 #include "common.h"
44 #include "threads.h"
45 #include "mtime.h"
46 #include "tests.h"                                              /* TestMMX() */
47 #include "plugins.h"
48 #include "playlist.h"
49 #include "stream_control.h"
50 #include "input_ext-intf.h"
51
52 #include "intf_msg.h"
53 #include "interface.h"
54
55 #include "audio_output.h"
56
57 #ifdef SYS_BEOS
58 #include "beos_specific.h"
59 #endif
60
61 #include "main.h"
62
63 /*****************************************************************************
64  * Command line options constants. If something is changed here, be sure that
65  * GetConfiguration and Usage are also changed.
66  *****************************************************************************/
67
68 /* Long options return values - note that values corresponding to short options
69  * chars, and in general any regular char, should be avoided */
70 #define OPT_NOAUDIO             150
71 #define OPT_AOUT                151
72 #define OPT_STEREO              152
73 #define OPT_MONO                153
74
75 #define OPT_NOVIDEO             160
76 #define OPT_VOUT                161
77 #define OPT_DISPLAY             162
78 #define OPT_WIDTH               163
79 #define OPT_HEIGHT              164
80 #define OPT_COLOR               165
81 #define OPT_YUV                 166
82
83 #define OPT_VLANS               170
84 #define OPT_SERVER              171
85 #define OPT_PORT                172
86 #define OPT_BROADCAST           173
87
88 #define OPT_SYNCHRO             180
89
90 #define OPT_WARNING             190
91
92 /* Usage fashion */
93 #define USAGE                     0
94 #define SHORT_HELP                1
95 #define LONG_HELP                 2
96
97 /* Long options */
98 #ifdef HAVE_GETOPT_H
99 static const struct option longopts[] =
100 {
101     /*  name,               has_arg,    flag,   val */
102
103     /* General/common options */
104     {   "help",             0,          0,      'h' },
105     {   "longhelp",         0,          0,      'H' },
106     {   "version",          0,          0,      'v' },
107
108     /* Audio options */
109     {   "noaudio",          0,          0,      OPT_NOAUDIO },
110     {   "aout",             1,          0,      OPT_AOUT },
111     {   "stereo",           0,          0,      OPT_STEREO },
112     {   "mono",             0,          0,      OPT_MONO },
113
114     /* Video options */
115     {   "novideo",          0,          0,      OPT_NOVIDEO },
116     {   "vout",             1,          0,      OPT_VOUT },
117     {   "display",          1,          0,      OPT_DISPLAY },
118     {   "width",            1,          0,      OPT_WIDTH },
119     {   "height",           1,          0,      OPT_HEIGHT },
120     {   "grayscale",        0,          0,      'g' },
121     {   "color",            0,          0,      OPT_COLOR },
122     {   "yuv",              1,          0,      OPT_YUV },
123
124     /* DVD options */
125     {   "dvdaudio",         1,          0,      'a' },
126     {   "dvdchannel",       1,          0,      'c' },
127     {   "dvdsubtitle",      1,          0,      's' },
128     
129     /* Input options */
130     {   "vlans",            0,          0,      OPT_VLANS },
131     {   "server",           1,          0,      OPT_SERVER },
132     {   "port",             1,          0,      OPT_PORT },
133     {   "broadcast",        0,          0,      OPT_BROADCAST },
134
135     /* Synchro options */
136     {   "synchro",          1,          0,      OPT_SYNCHRO },
137
138     /* Interface messages */
139     {   "warning",          1,          0,      OPT_WARNING },
140     {   0,                  0,          0,      0 }
141 };
142
143 /* Short options */
144 static const char *psz_shortopts = "hHvga:s:c:";
145 #endif
146
147
148 /*****************************************************************************
149  * Global variable program_data - this is the one and only, see main.h
150  *****************************************************************************/
151 main_t *p_main;
152
153 /*****************************************************************************
154  * Local prototypes
155  *****************************************************************************/
156 static void SetDefaultConfiguration ( void );
157 static int  GetConfiguration        ( int i_argc, char *ppsz_argv[],
158                                       char *ppsz_env[] );
159 static void Usage                   ( int i_fashion );
160 static void Version                 ( void );
161
162 static void InitSignalHandler       ( void );
163 static void SimpleSignalHandler     ( int i_signal );
164 static void FatalSignalHandler      ( int i_signal );
165 #ifdef HAVE_MMX
166        int  TestMMX                 ( void );
167 #endif
168
169 /*****************************************************************************
170  * main: parse command line, start interface and spawn threads
171  *****************************************************************************
172  * Steps during program execution are:
173  *      -configuration parsing and messages interface initialization
174  *      -opening of audio output device and some global modules
175  *      -execution of interface, which exit on error or on user request
176  *      -closing of audio output device and some global modules
177  * On error, the spawned threads are canceled, and the open devices closed.
178  *****************************************************************************/
179 int main( int i_argc, char *ppsz_argv[], char *ppsz_env[] )
180 {
181     main_t  main_data;                      /* root of all data - see main.h */
182
183     p_main = &main_data;                       /* set up the global variable */
184
185     /*
186      * System specific initialization code
187      */
188 #ifdef SYS_BEOS
189     beos_Create();
190 #endif
191
192     /*
193      * Test if our code is likely to run on this CPU 
194      */
195 #ifdef HAVE_MMX
196     if( !TestMMX() )
197     {
198         fprintf( stderr, "Sorry, this program needs an MMX processor. "
199                          "Please run the non-MMX version.\n" );
200         return( 1 );
201     }
202 #endif
203
204     /*
205      * Initialize messages interface
206      */
207     p_main->p_msg = intf_MsgCreate();
208     if( !p_main->p_msg )                         /* start messages interface */
209     {
210         fprintf( stderr, "error: can't initialize messages interface (%s)\n",
211                  strerror(errno) );
212         return( errno );
213     }
214
215     /*
216      * Set signal handling policy up for all the threads that will be created
217      */
218     InitSignalHandler();                 /* prepare signals for interception */
219
220     /*
221      * Read configuration
222      */
223     if( GetConfiguration( i_argc, ppsz_argv, ppsz_env ) )  /* parse cmd line */
224     {
225         intf_MsgDestroy();
226         return( errno );
227     }
228
229     /*
230      * Initialize playlist and get commandline files
231      */
232     p_main->p_playlist = playlist_Create( );
233     if( !p_main->p_playlist )
234     {
235         intf_Msg( "Playlist initialization failed" );
236         intf_MsgDestroy();
237         return( errno );
238     }
239     playlist_Init( p_main->p_playlist, optind );
240
241     /*
242      * Initialize plugin bank
243      */
244     p_main->p_bank = bank_Create( );
245     if( !p_main->p_bank )
246     {
247         intf_Msg( "Plugin bank initialization failed" );
248         playlist_Destroy( p_main->p_playlist );
249         intf_MsgDestroy();
250         return( errno );
251     }
252     bank_Init( p_main->p_bank );
253
254     /*
255      * Initialize shared resources and libraries
256      */
257     /* FIXME: no VLANs */
258 #if 0
259     if( p_main->b_vlans && input_VlanCreate() )
260     {
261         /* On error during vlans initialization, switch off vlans */
262         intf_Msg( "Virtual LANs initialization failed : "
263                   "vlans management is deactivated" );
264         p_main->b_vlans = 0;
265     }
266 #endif
267
268     /*
269      * Open audio device and start aout thread
270      */
271     if( p_main->b_audio )
272     {
273         p_main->p_aout = aout_CreateThread( NULL );
274         if( p_main->p_aout == NULL )
275         {
276             /* On error during audio initialization, switch off audio */
277             intf_Msg( "Audio initialization failed : audio is deactivated" );
278             p_main->b_audio = 0;
279         }
280     }
281
282     /*
283      * Run interface
284      */
285     p_main->p_intf = intf_Create();
286     if( p_main->p_intf != NULL )
287     {
288         /*
289          * This is the main loop
290          */
291         intf_Run( p_main->p_intf );
292
293         intf_Destroy( p_main->p_intf );
294     }
295
296     /*
297      * Close audio device
298      */
299     if( p_main->b_audio )
300     {
301         aout_DestroyThread( p_main->p_aout, NULL );
302     }
303
304     /*
305      * Free shared resources and libraries
306      */
307     /* FIXME */
308 #if 0
309     if( p_main->b_vlans )
310     {
311         input_VlanDestroy();
312     }
313 #endif
314
315     /*
316      * Free plugin bank
317      */
318     bank_Destroy( p_main->p_bank );
319
320     /*
321      * Free playlist
322      */
323     playlist_Destroy( p_main->p_playlist );
324
325 #ifdef SYS_BEOS
326     /*
327      * System specific cleaning code
328      */
329     beos_Destroy();
330 #endif
331
332     /*
333      * Terminate messages interface and program
334      */
335     intf_Msg( "Program terminated." );
336     intf_MsgDestroy();
337
338     return( 0 );
339 }
340
341 /*****************************************************************************
342  * main_GetIntVariable: get the int value of an environment variable
343  *****************************************************************************
344  * This function is used to read some default parameters in modules.
345  *****************************************************************************/
346 int main_GetIntVariable( char *psz_name, int i_default )
347 {
348     char *      psz_env;                                /* environment value */
349     char *      psz_end;                             /* end of parsing index */
350     long int    i_value;                                            /* value */
351
352     psz_env = getenv( psz_name );
353     if( psz_env )
354     {
355         i_value = strtol( psz_env, &psz_end, 0 );
356         if( (*psz_env != '\0') && (*psz_end == '\0') )
357         {
358             return( i_value );
359         }
360     }
361     return( i_default );
362 }
363
364 /*****************************************************************************
365  * main_GetPszVariable: get the string value of an environment variable
366  *****************************************************************************
367  * This function is used to read some default parameters in modules.
368  *****************************************************************************/
369 char * main_GetPszVariable( char *psz_name, char *psz_default )
370 {
371     char *psz_env;
372
373     psz_env = getenv( psz_name );
374     if( psz_env )
375     {
376         return( psz_env );
377     }
378     return( psz_default );
379 }
380
381 /*****************************************************************************
382  * main_PutPszVariable: set the string value of an environment variable
383  *****************************************************************************
384  * This function is used to set some default parameters in modules. The use of
385  * this function will cause some memory leak: since some systems use the pointer
386  * passed to putenv to store the environment string, it can't be freed.
387  *****************************************************************************/
388 void main_PutPszVariable( char *psz_name, char *psz_value )
389 {
390     char *psz_env;
391
392     psz_env = malloc( strlen(psz_name) + strlen(psz_value) + 2 );
393     if( psz_env == NULL )
394     {
395         intf_ErrMsg( "intf error: cannot create psz_env (%s)",
396                      strerror(ENOMEM) );
397     }
398     else
399     {
400         sprintf( psz_env, "%s=%s", psz_name, psz_value );
401         if( putenv( psz_env ) )
402         {
403             intf_ErrMsg( "intf error: cannot putenv (%s)", strerror(errno) );
404         }
405     }
406 }
407
408 /*****************************************************************************
409  * main_PutIntVariable: set the integer value of an environment variable
410  *****************************************************************************
411  * This function is used to set some default parameters in modules. The use of
412  * this function will cause some memory leak: since some systems use the pointer
413  * passed to putenv to store the environment string, it can't be freed.
414  *****************************************************************************/
415 void main_PutIntVariable( char *psz_name, int i_value )
416 {
417     char psz_value[ 256 ];                               /* buffer for value */
418
419     sprintf( psz_value, "%d", i_value );
420     main_PutPszVariable( psz_name, psz_value );
421 }
422
423 /* following functions are local */
424
425 /*****************************************************************************
426  * SetDefaultConfiguration: set default options
427  *****************************************************************************
428  * This function is called by GetConfiguration before command line is parsed.
429  * It sets all the default values required later by the program. At this stage,
430  * most structure are not yet allocated, so initialization must be done using
431  * environment.
432  *****************************************************************************/
433 static void SetDefaultConfiguration( void )
434 {
435     /*
436      * All features are activated by default except vlans
437      */
438     p_main->b_audio  = 1;
439     p_main->b_video  = 1;
440     p_main->b_vlans  = 0;
441 }
442
443 /*****************************************************************************
444  * GetConfiguration: parse command line
445  *****************************************************************************
446  * Parse command line and configuration file for configuration. If the inline
447  * help is requested, the function Usage() is called and the function returns
448  * -1 (causing main() to exit). The messages interface is initialized at this
449  * stage, but most structures are not allocated, so only environment should
450  * be used.
451  *****************************************************************************/
452 static int GetConfiguration( int i_argc, char *ppsz_argv[], char *ppsz_env[] )
453 {
454     int c, i_opt;
455     char * p_pointer;
456
457     /* Set default configuration and copy arguments */
458     p_main->i_argc    = i_argc;
459     p_main->ppsz_argv = ppsz_argv;
460     p_main->ppsz_env  = ppsz_env;
461     SetDefaultConfiguration();
462
463     intf_MsgImm( COPYRIGHT_MESSAGE );
464
465     /* Get the executable name (similar to the basename command) */
466     p_main->psz_arg0 = p_pointer = ppsz_argv[ 0 ];
467     while( *p_pointer )
468     {
469         if( *p_pointer == '/' )
470         {
471             p_main->psz_arg0 = ++p_pointer;
472         }
473         else
474         {
475             ++p_pointer;
476         }
477     }
478
479     /* Parse command line options */
480 #ifdef HAVE_GETOPT_H
481     opterr = 0;
482     while( ( c = getopt_long( i_argc, ppsz_argv, psz_shortopts, longopts, 0 ) ) != EOF )
483     {
484         switch( c )
485         {
486         /* General/common options */
487         case 'h':                                              /* -h, --help */
488             Usage( SHORT_HELP );
489             return( -1 );
490             break;
491         case 'H':                                          /* -H, --longhelp */
492             Usage( LONG_HELP );
493             return( -1 );
494             break;
495         case 'v':                                           /* -v, --version */
496             Version();
497             return( -1 );
498             break;
499
500         /* Audio options */
501         case OPT_NOAUDIO:                                       /* --noaudio */
502             p_main->b_audio = 0;
503             break;
504         case OPT_AOUT:                                             /* --aout */
505             main_PutPszVariable( AOUT_METHOD_VAR, optarg );
506             break;
507         case OPT_STEREO:                                         /* --stereo */
508             main_PutIntVariable( AOUT_STEREO_VAR, 1 );
509             break;
510         case OPT_MONO:                                             /* --mono */
511             main_PutIntVariable( AOUT_STEREO_VAR, 0 );
512             break;
513
514         /* Video options */
515         case OPT_NOVIDEO:                                       /* --novideo */
516             p_main->b_video = 0;
517             break;
518         case OPT_VOUT:                                             /* --vout */
519             main_PutPszVariable( VOUT_METHOD_VAR, optarg );
520             break;
521         case OPT_DISPLAY:                                       /* --display */
522             main_PutPszVariable( VOUT_DISPLAY_VAR, optarg );
523             break;
524         case OPT_WIDTH:                                           /* --width */
525             main_PutPszVariable( VOUT_WIDTH_VAR, optarg );
526             break;
527         case OPT_HEIGHT:                                         /* --height */
528             main_PutPszVariable( VOUT_HEIGHT_VAR, optarg );
529             break;
530
531         case 'g':                                         /* -g, --grayscale */
532             main_PutIntVariable( VOUT_GRAYSCALE_VAR, 1 );
533             break;
534         case OPT_COLOR:                                           /* --color */
535             main_PutIntVariable( VOUT_GRAYSCALE_VAR, 0 );
536             break;
537         case OPT_YUV:                                               /* --yuv */
538             main_PutPszVariable( YUV_METHOD_VAR, optarg );
539             break;
540
541         /* DVD options */
542         case 'a':
543             if ( ! strcmp(optarg, "ac3") )
544                 main_PutIntVariable( INPUT_DVD_AUDIO_VAR, REQUESTED_AC3 );
545             else if ( ! strcmp(optarg, "lpcm") )
546                 main_PutIntVariable( INPUT_DVD_AUDIO_VAR, REQUESTED_LPCM );
547             else if ( ! strcmp(optarg, "off") )
548                 main_PutIntVariable( INPUT_DVD_AUDIO_VAR, REQUESTED_NOAUDIO );
549             else
550                 main_PutIntVariable( INPUT_DVD_AUDIO_VAR, REQUESTED_MPEG );
551             break;
552         case 'c':
553             main_PutIntVariable( INPUT_DVD_CHANNEL_VAR, atoi(optarg) );
554             break;
555         case 's':
556             main_PutIntVariable( INPUT_DVD_SUBTITLE_VAR, atoi(optarg) );
557             break;
558
559         /* Input options */
560         case OPT_VLANS:                                           /* --vlans */
561             p_main->b_vlans = 1;
562             break;
563         case OPT_SERVER:                                         /* --server */
564             main_PutPszVariable( INPUT_SERVER_VAR, optarg );
565             break;
566         case OPT_PORT:                                             /* --port */
567             main_PutPszVariable( INPUT_PORT_VAR, optarg );
568             break;
569         case OPT_BROADCAST:                                   /* --broadcast */
570             main_PutIntVariable( INPUT_BROADCAST_VAR, 1 );
571             break;
572
573         /* Synchro options */
574         case OPT_SYNCHRO:                                      
575             main_PutPszVariable( VPAR_SYNCHRO_VAR, optarg );
576             break;
577
578         /* Interface warning messages level */
579         case OPT_WARNING:                                       /* --warning */
580             main_PutIntVariable( INTF_WARNING_VAR, atoi(optarg) );
581             break;
582             
583         /* Internal error: unknown option */
584         case '?':
585         default:
586             intf_ErrMsg( "intf error: unknown option `%s'", ppsz_argv[optind - 1] );
587             Usage( USAGE );
588             return( EINVAL );
589             break;
590         }
591     }
592 #endif
593
594     /* Parse command line parameters - no check is made for these options */
595     for( i_opt = optind; i_opt < i_argc; i_opt++ )
596     {
597         putenv( ppsz_argv[ i_opt ] );
598     }
599     return( 0 );
600 }
601
602 /*****************************************************************************
603  * Usage: print program usage
604  *****************************************************************************
605  * Print a short inline help. Message interface is initialized at this stage.
606  *****************************************************************************/
607 static void Usage( int i_fashion )
608 {
609     /* Usage */
610     intf_Msg( "Usage: %s [options] [parameters] [file]...",
611               p_main->psz_arg0 );
612
613     if( i_fashion == USAGE )
614     {
615         intf_Msg( "Try `%s --help' for more information.",
616                   p_main->psz_arg0 );
617         return;
618     }
619
620     /* Options */
621     intf_Msg( "\nOptions:"
622               "\n      --noaudio                  \tdisable audio"
623               "\n      --aout <plugin>            \taudio output method"
624               "\n      --stereo, --mono           \tstereo/mono audio"
625               "\n"
626               "\n      --novideo                  \tdisable video"
627               "\n      --vout <plugin>            \tvideo output method"
628               "\n      --display <display>        \tdisplay string"
629               "\n      --width <w>, --height <h>  \tdisplay dimensions"
630               "\n  -g, --grayscale                \tgrayscale output"
631               "\n      --color                    \tcolor output"
632               "\n"
633               "\n  -a, --dvdaudio <type>          \tchoose DVD audio type"
634               "\n  -c, --dvdchannel <channel>     \tchoose DVD audio channel"
635               "\n  -s, --dvdsubtitle <channel>    \tchoose DVD subtitle channel"
636               "\n"
637               "\n      --vlans                    \tenable vlans"
638               "\n      --server <host>            \tvideo server address"
639               "\n      --port <port>              \tvideo server port"
640               "\n      --broadcast                \tlisten to a broadcast"
641               "\n"
642               "\n      --synchro <type>           \tforce synchro algorithm"
643               "\n"
644               "\n      --warning <level>          \tdisplay warning messages"
645               "\n"
646               "\n  -h, --help                     \tprint help and exit"
647               "\n  -H, --longhelp                 \tprint long help and exit"
648               "\n  -v, --version                  \toutput version information and exit" );
649
650     if( i_fashion == SHORT_HELP )
651         return;
652
653     /* Interface parameters */
654     intf_Msg( "\nInterface parameters:\n"
655               "\n  " INTF_INIT_SCRIPT_VAR "=<filename>               \tinitialization script"
656               "\n  " INTF_CHANNELS_VAR "=<filename>            \tchannels list"
657               "\n  " INTF_WARNING_VAR "=<level>                \twarning level" );
658
659     /* Audio parameters */
660     intf_Msg( "\nAudio parameters:"
661               "\n  " AOUT_METHOD_VAR "=<method name>        \taudio method"
662               "\n  " AOUT_DSP_VAR "=<filename>              \tdsp device path"
663               "\n  " AOUT_STEREO_VAR "={1|0}                \tstereo or mono output"
664               "\n  " AOUT_RATE_VAR "=<rate>             \toutput rate" );
665
666     /* Video parameters */
667     intf_Msg( "\nVideo parameters:"
668               "\n  " VOUT_METHOD_VAR "=<method name>        \tdisplay method"
669               "\n  " VOUT_DISPLAY_VAR "=<display name>      \tdisplay used"
670               "\n  " VOUT_WIDTH_VAR "=<width>               \tdisplay width"
671               "\n  " VOUT_HEIGHT_VAR "=<height>             \tdislay height"
672               "\n  " VOUT_FB_DEV_VAR "=<filename>           \tframebuffer device path"
673               "\n  " VOUT_GRAYSCALE_VAR "={1|0}             \tgrayscale or color output" );
674
675     /* DVD parameters */
676     intf_Msg( "\nDVD parameters:"
677               "\n  " INPUT_DVD_AUDIO_VAR "={ac3|lpcm|mpeg|off} \taudio type"
678               "\n  " INPUT_DVD_CHANNEL_VAR "=[0-15]            \taudio channel"
679               "\n  " INPUT_DVD_SUBTITLE_VAR "=[0-31]           \tsubtitle channel" );
680
681     /* Input parameters */
682     intf_Msg( "\nInput parameters:\n"
683               "\n  " INPUT_SERVER_VAR "=<hostname>          \tvideo server"
684               "\n  " INPUT_PORT_VAR "=<port>            \tvideo server port"
685               "\n  " INPUT_IFACE_VAR "=<interface>          \tnetwork interface"
686               "\n  " INPUT_BROADCAST_VAR "={1|0}            \tbroadcast mode"
687               "\n  " INPUT_VLAN_SERVER_VAR "=<hostname>     \tvlan server"
688               "\n  " INPUT_VLAN_PORT_VAR "=<port>           \tvlan server port" );
689
690     /* Synchro parameters */
691     intf_Msg( "\nSynchro parameters:"
692               "\n  " VPAR_SYNCHRO_VAR "={I|I+|IP|IP+|IPB}   \tsynchro algorithm");
693 }
694
695 /*****************************************************************************
696  * Version: print complete program version
697  *****************************************************************************
698  * Print complete program version and build number.
699  *****************************************************************************/
700 static void Version( void )
701 {
702     intf_Msg( VERSION_MESSAGE
703               "This program comes with NO WARRANTY, to the extent permitted by law.\n"
704               "You may redistribute it under the terms of the GNU General Public License;\n"
705               "see the file named COPYING for details.\n"
706               "Written by the VideoLAN team at Ecole Centrale, Paris." );
707
708 }
709
710 /*****************************************************************************
711  * InitSignalHandler: system signal handler initialization
712  *****************************************************************************
713  * Set the signal handlers. SIGTERM is not intercepted, because we need at
714  * at least a method to kill the program when all other methods failed, and
715  * when we don't want to use SIGKILL.
716  *****************************************************************************/
717 static void InitSignalHandler( void )
718 {
719     /* Termination signals */
720     signal( SIGHUP,  FatalSignalHandler );
721     signal( SIGINT,  FatalSignalHandler );
722     signal( SIGQUIT, FatalSignalHandler );
723
724     /* Other signals */
725     signal( SIGALRM, SimpleSignalHandler );
726     signal( SIGPIPE, SimpleSignalHandler );
727 }
728
729
730 /*****************************************************************************
731  * SimpleSignalHandler: system signal handler
732  *****************************************************************************
733  * This function is called when a non fatal signal is received by the program.
734  *****************************************************************************/
735 static void SimpleSignalHandler( int i_signal )
736 {
737     /* Acknowledge the signal received */
738     intf_WarnMsg(0, "intf: ignoring signal %d", i_signal );
739 }
740
741
742 /*****************************************************************************
743  * FatalSignalHandler: system signal handler
744  *****************************************************************************
745  * This function is called when a fatal signal is received by the program.
746  * It tries to end the program in a clean way.
747  *****************************************************************************/
748 static void FatalSignalHandler( int i_signal )
749 {
750     /* Once a signal has been trapped, the termination sequence will be armed and
751      * following signals will be ignored to avoid sending messages to an interface
752      * having been destroyed */
753     signal( SIGHUP,  SIG_IGN );
754     signal( SIGINT,  SIG_IGN );
755     signal( SIGQUIT, SIG_IGN );
756
757     /* Acknowledge the signal received */
758     intf_ErrMsgImm("intf error: signal %d received, exiting", i_signal );
759
760     /* Try to terminate everything - this is done by requesting the end of the
761      * interface thread */
762     p_main->p_intf->b_die = 1;
763 }
764