vlc.c
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:6k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * vlc.c: the VLC player
  3.  *****************************************************************************
  4.  * Copyright (C) 1998-2008 the VideoLAN team
  5.  * $Id: 8917ff4f5284ca86d006dccf885a8be44f56aabe $
  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. #ifdef HAVE_CONFIG_H
  28. # include "config.h"
  29. #endif
  30. #include <vlc/vlc.h>
  31. #include <stdio.h>
  32. #include <stdlib.h>
  33. #include <locale.h>
  34. /* Explicit HACK */
  35. extern void LocaleFree (const char *);
  36. extern char *FromLocale (const char *);
  37. #include <signal.h>
  38. #include <time.h>
  39. #include <pthread.h>
  40. #include <unistd.h>
  41. /*****************************************************************************
  42.  * main: parse command line, start interface and spawn threads.
  43.  *****************************************************************************/
  44. int main( int i_argc, const char *ppsz_argv[] )
  45. {
  46.     int i_ret;
  47. #ifndef ALLOW_RUN_AS_ROOT
  48.     if (geteuid () == 0)
  49.     {
  50.         fprintf (stderr, "VLC is not supposed to be run as root. Sorry.n"
  51.         "If you need to use real-time priorities and/or privileged TCP portsn"
  52.         "you can use %s-wrapper (make sure it is Set-UID root andn"
  53.         "cannot be run by non-trusted users first).n", ppsz_argv[0]);
  54.         return 1;
  55.     }
  56. #endif
  57.     setlocale (LC_ALL, "");
  58. #ifndef __APPLE__
  59.     /* This clutters OSX GUI error logs */
  60.     fprintf( stderr, "VLC media player %sn", libvlc_get_version() );
  61. #endif
  62. #ifdef HAVE_PUTENV
  63. #   ifndef NDEBUG
  64.     /* Activate malloc checking routines to detect heap corruptions. */
  65.     putenv( (char*)"MALLOC_CHECK_=2" );
  66.     /* Disable the ugly Gnome crash dialog so that we properly segfault */
  67.     putenv( (char *)"GNOME_DISABLE_CRASH_DIALOG=1" );
  68. #   endif
  69. #endif
  70.     /* Synchronously intercepted POSIX signals.
  71.      *
  72.      * In a threaded program such as VLC, the only sane way to handle signals
  73.      * is to block them in all thread but one - this is the only way to
  74.      * predict which thread will receive them. If any piece of code depends
  75.      * on delivery of one of this signal it is intrinsically not thread-safe
  76.      * and MUST NOT be used in VLC, whether we like it or not.
  77.      * There is only one exception: if the signal is raised with
  78.      * pthread_kill() - we do not use this in LibVLC but some pthread
  79.      * implementations use them internally. You should really use conditions
  80.      * for thread synchronization anyway.
  81.      *
  82.      * Signal that request a clean shutdown, and force an unclean shutdown
  83.      * if they are triggered again 2+ seconds later.
  84.      * We have to handle SIGTERM cleanly because of daemon mode.
  85.      * Note that we set the signals after the vlc_create call. */
  86.     static const int sigs[] = {
  87.         SIGINT, SIGHUP, SIGQUIT, SIGTERM,
  88.     /* Signals that cause a no-op:
  89.      * - SIGPIPE might happen with sockets and would crash VLC. It MUST be
  90.      *   blocked by any LibVLC-dependent application, not just VLC.
  91.      * - SIGCHLD comes after exec*() (such as httpd CGI support) and must
  92.      *   be dequeued to cleanup zombie processes.
  93.      */
  94.         SIGPIPE, SIGCHLD
  95.     };
  96.     sigset_t set;
  97.     sigemptyset (&set);
  98.     for (unsigned i = 0; i < sizeof (sigs) / sizeof (sigs[0]); i++)
  99.         sigaddset (&set, sigs[i]);
  100.     /* Block all these signals */
  101.     pthread_sigmask (SIG_BLOCK, &set, NULL);
  102.     sigdelset (&set, SIGPIPE);
  103.     sigdelset (&set, SIGCHLD);
  104.     /* Note that FromLocale() can be used before libvlc is initialized */
  105.     const char *argv[i_argc + 3];
  106.     int argc = 0;
  107. #ifdef TOP_BUILDDIR
  108.     argv[argc++] = FromLocale ("--plugin-path="TOP_BUILDDIR"/modules");
  109. #endif
  110. #ifdef TOP_SRCDIR
  111. # ifdef ENABLE_HTTPD
  112.     argv[argc++] = FromLocale ("--http-src="TOP_SRCDIR"/share/http");
  113. # endif
  114. #endif
  115.     for (int i = 1; i < i_argc; i++)
  116.         if ((argv[argc++] = FromLocale (ppsz_argv[i])) == NULL)
  117.             return 1; // BOOM!
  118.     libvlc_exception_t ex, dummy;
  119.     libvlc_exception_init (&ex);
  120.     libvlc_exception_init (&dummy);
  121.     /* Initialize libvlc */
  122.     libvlc_instance_t *vlc = libvlc_new (argc, argv, &ex);
  123.     if (vlc != NULL)
  124.     {
  125.         libvlc_add_intf (vlc, "signals", &ex);
  126.         if (libvlc_exception_raised (&ex))
  127.         {
  128.             libvlc_exception_clear (&ex);
  129.             pthread_sigmask (SIG_UNBLOCK, &set, NULL);
  130.         }
  131.         libvlc_add_intf (vlc, "globalhotkeys,none", &ex);
  132.         libvlc_exception_clear (&ex);
  133.         libvlc_add_intf (vlc, NULL, &ex);
  134.         libvlc_playlist_play (vlc, -1, 0, NULL, &dummy);
  135.         libvlc_wait (vlc);
  136.         libvlc_release (vlc);
  137.     }
  138.     i_ret = libvlc_exception_raised (&ex);
  139.     if( i_ret )
  140.         fprintf( stderr, "%sn", libvlc_exception_get_message( &ex));
  141.     libvlc_exception_clear (&ex);
  142.     libvlc_exception_clear (&dummy);
  143.     for (int i = 0; i < argc; i++)
  144.         LocaleFree (argv[i]);
  145.     return i_ret;
  146. }