]> git.sesse.net Git - vlc/blob - bin/vlc.c
Remove the Xlib no-ARGB hack
[vlc] / bin / vlc.c
1 /*****************************************************************************
2  * vlc.c: the VLC player
3  *****************************************************************************
4  * Copyright (C) 1998-2008 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 #ifdef HAVE_CONFIG_H
29 # include "config.h"
30 #endif
31
32 #include <vlc/vlc.h>
33 #include <stdio.h>
34 #include <stdlib.h>
35 #include <locale.h>
36
37 #ifdef __APPLE__
38 #include <string.h>
39 #endif
40
41
42 /* Explicit HACK */
43 extern void LocaleFree (const char *);
44 extern char *FromLocale (const char *);
45 extern void vlc_enable_override (void);
46
47 #include <signal.h>
48 #include <time.h>
49 #include <pthread.h>
50 #include <unistd.h>
51 #include <dlfcn.h>
52
53 /*****************************************************************************
54  * main: parse command line, start interface and spawn threads.
55  *****************************************************************************/
56 int main( int i_argc, const char *ppsz_argv[] )
57 {
58     /* The so-called POSIX-compliant MacOS X reportedly processes SIGPIPE even
59      * if it is blocked in all thread. Also some libraries want SIGPIPE blocked
60      * as they have no clue about signal masks.
61      * Note: this is NOT an excuse for not protecting against SIGPIPE. If
62      * LibVLC runs outside of VLC, we cannot rely on this code snippet. */
63     signal (SIGPIPE, SIG_IGN);
64
65 #ifdef HAVE_PUTENV
66 # ifndef NDEBUG
67     /* Activate malloc checking routines to detect heap corruptions. */
68     putenv( (char*)"MALLOC_CHECK_=2" );
69
70     /* Disable the ugly Gnome crash dialog so that we properly segfault */
71     putenv( (char *)"GNOME_DISABLE_CRASH_DIALOG=1" );
72 # endif
73 #endif
74 #ifdef HAVE_SETENV
75     /* Clear the X.Org startup notification ID. Otherwise the UI might try to
76      * change the environment while the process is multi-threaded. That could
77      * crash. Screw you X.Org. Next time write a thread-safe specification. */
78     unsetenv ("DESKTOP_STARTUP_ID");
79 #endif
80
81 #ifndef ALLOW_RUN_AS_ROOT
82     if (geteuid () == 0)
83     {
84         fprintf (stderr, "VLC is not supposed to be run as root. Sorry.\n"
85         "If you need to use real-time priorities and/or privileged TCP ports\n"
86         "you can use %s-wrapper (make sure it is Set-UID root and\n"
87         "cannot be run by non-trusted users first).\n", ppsz_argv[0]);
88         return 1;
89     }
90 #endif
91
92     setlocale (LC_ALL, "");
93
94 #ifndef __APPLE__
95     /* This clutters OSX GUI error logs */
96     fprintf( stderr, "VLC media player %s (revision %s)\n",
97              libvlc_get_version(), libvlc_get_changeset() );
98 #endif
99
100     /* Synchronously intercepted POSIX signals.
101      *
102      * In a threaded program such as VLC, the only sane way to handle signals
103      * is to block them in all threads but one - this is the only way to
104      * predict which thread will receive them. If any piece of code depends
105      * on delivery of one of this signal it is intrinsically not thread-safe
106      * and MUST NOT be used in VLC, whether we like it or not.
107      * There is only one exception: if the signal is raised with
108      * pthread_kill() - we do not use this in LibVLC but some pthread
109      * implementations use them internally. You should really use conditions
110      * for thread synchronization anyway.
111      *
112      * Signal that request a clean shutdown, and force an unclean shutdown
113      * if they are triggered again 2+ seconds later.
114      * We have to handle SIGTERM cleanly because of daemon mode.
115      * Note that we set the signals after the vlc_create call. */
116     static const int sigs[] = {
117         SIGINT, SIGHUP, SIGQUIT, SIGTERM,
118     /* Signals that cause a no-op:
119      * - SIGPIPE might happen with sockets and would crash VLC. It MUST be
120      *   blocked by any LibVLC-dependent application, not just VLC.
121      * - SIGCHLD comes after exec*() (such as httpd CGI support) and must
122      *   be dequeued to cleanup zombie processes.
123      */
124         SIGPIPE, SIGCHLD
125     };
126
127     sigset_t set;
128     sigemptyset (&set);
129     for (unsigned i = 0; i < sizeof (sigs) / sizeof (sigs[0]); i++)
130         sigaddset (&set, sigs[i]);
131
132     /* Block all these signals */
133     pthread_sigmask (SIG_BLOCK, &set, NULL);
134     sigdelset (&set, SIGPIPE);
135     sigdelset (&set, SIGCHLD);
136
137     /* Note that FromLocale() can be used before libvlc is initialized */
138     const char *argv[i_argc + 3];
139     int argc = 0;
140
141     argv[argc++] = "--no-ignore-config";
142 #ifdef TOP_BUILDDIR
143     argv[argc++] = FromLocale ("--plugin-path="TOP_BUILDDIR"/modules");
144 #endif
145 #ifdef TOP_SRCDIR
146     argv[argc++] = FromLocale ("--data-path="TOP_SRCDIR"/share");
147 #endif
148
149     int i = 1;
150 #ifdef __APPLE__
151     /* When VLC.app is run by double clicking in Mac OS X, the 2nd arg
152      * is the PSN - process serial number (a unique PID-ish thingie)
153      * still ok for real Darwin & when run from command line
154      * for example -psn_0_9306113 */
155     if(i_argc >= 2 && !strncmp( ppsz_argv[1] , "-psn" , 4 ))
156         i = 2;
157 #endif
158     for (; i < i_argc; i++)
159         if ((argv[argc++] = FromLocale (ppsz_argv[i])) == NULL)
160             return 1; // BOOM!
161     argv[argc] = NULL;
162
163     vlc_enable_override ();
164
165     /* Initialize libvlc */
166     libvlc_instance_t *vlc = libvlc_new (argc, argv);
167
168     if (vlc != NULL)
169     {
170         if (libvlc_add_intf (vlc, "signals"))
171             pthread_sigmask (SIG_UNBLOCK, &set, NULL);
172 #if !defined (HAVE_MAEMO)
173         libvlc_add_intf (vlc, "globalhotkeys,none");
174 #endif
175         if (libvlc_add_intf (vlc, NULL) == 0)
176         {
177             libvlc_playlist_play (vlc, -1, 0, NULL);
178             libvlc_wait (vlc);
179         }
180         libvlc_release (vlc);
181     }
182
183     for (int i = 1; i < argc; i++)
184         LocaleFree (argv[i]);
185
186 #ifdef RTLD_NOLOAD
187     /* Avoid crash in KIO scheduler cleanup. */
188     /* This is ugly, but we get way too many crash reports due to this. */
189     if (dlopen ("libkfilemodule.so", RTLD_LAZY|RTLD_LOCAL|RTLD_NOLOAD) != NULL)
190     {
191         fprintf (stderr, "KFile plugin present. Unclean shutdown!\n");
192         _exit (0);
193     }
194 #endif
195     return 0;
196 }