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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * signals.c : signals handler module for vlc
  3.  *****************************************************************************
  4.  * Copyright (C) 2008 Rémi Denis-Courmont
  5.  *
  6.  * This program is free software; you can redistribute it and/or modify
  7.  * it under the terms of the GNU General Public License as published by
  8.  * the Free Software Foundation; either version 2 of the License, or
  9.  * (at your option) any later version.
  10.  *
  11.  * This program is distributed in the hope that it will be useful,
  12.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.  * GNU General Public License for more details.
  15.  *
  16.  * You should have received a copy of the GNU General Public License
  17.  * along with this program; if not, write to the Free Software
  18.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  19.  *****************************************************************************/
  20. #ifdef HAVE_CONFIG_H
  21. # include "config.h"
  22. #endif
  23. #include <signal.h>
  24. #include <time.h>
  25. #include <vlc_common.h>
  26. #include <vlc_plugin.h>
  27. #include <vlc_interface.h>
  28. static int  Open (vlc_object_t *);
  29. static void Close (vlc_object_t *);
  30. static void *SigThread (void *);
  31. vlc_module_begin ()
  32.     set_shortname (N_("Signals"))
  33.     set_category (CAT_INTERFACE)
  34.     set_subcategory (SUBCAT_INTERFACE_CONTROL)
  35.     set_description (N_("POSIX signals handling interface"))
  36.     set_capability ("interface", 0)
  37.     set_callbacks (Open, Close)
  38. vlc_module_end ()
  39. struct intf_sys_t
  40. {
  41.     vlc_thread_t    thread;
  42. };
  43. static int Open (vlc_object_t *obj)
  44. {
  45.     intf_thread_t *intf = (intf_thread_t *)obj;
  46.     intf_sys_t *p_sys = malloc (sizeof (*p_sys));
  47.     if (p_sys == NULL)
  48.         return VLC_ENOMEM;
  49.     intf->p_sys = p_sys;
  50.     if (vlc_clone (&p_sys->thread, SigThread, obj, VLC_THREAD_PRIORITY_LOW))
  51.     {
  52.         free (p_sys);
  53.         intf->p_sys = NULL;
  54.         return VLC_ENOMEM;
  55.     }
  56.     intf->pf_run = NULL;
  57.     return 0;
  58. }
  59. static void Close (vlc_object_t *obj)
  60. {
  61.     intf_thread_t *intf = (intf_thread_t *)obj;
  62.     intf_sys_t *p_sys = intf->p_sys;
  63.     vlc_cancel (p_sys->thread);
  64. #ifdef __APPLE__
  65.    /* In Mac OS X up to 10.5 sigwait (among others) is not a pthread
  66.     * cancellation point, so we throw a dummy quit signal to end
  67.     * sigwait() in the sigth thread */
  68.     pthread_kill (p_sys->thread, SIGQUIT);
  69. # endif
  70.     vlc_join (p_sys->thread, NULL);
  71.     free (p_sys);
  72. }
  73. static bool ignored (int signum)
  74. {
  75.     struct sigaction sa;
  76.     if (sigaction (signum, NULL, &sa))
  77.         return false;
  78.     return ((sa.sa_flags & SA_SIGINFO)
  79.             ? (void *)sa.sa_sigaction : (void *)sa.sa_handler) == SIG_IGN;
  80. }
  81. static void *SigThread (void *data)
  82. {
  83.     intf_thread_t *obj = data;
  84.     sigset_t set;
  85.     int signum;
  86.     sigemptyset (&set);
  87.     if (!ignored (SIGHUP)) /* <- needed to handle nohup properly */
  88.         sigaddset (&set, SIGHUP);
  89.     sigaddset (&set, SIGINT);
  90.     sigaddset (&set, SIGQUIT);
  91.     sigaddset (&set, SIGTERM);
  92.     sigaddset (&set, SIGCHLD);
  93.     do
  94.     {
  95.         while (sigwait (&set, &signum));
  96. #ifdef __APPLE__
  97.         /* In Mac OS X up to 10.5 sigwait (among others) is not a pthread
  98.          * cancellation point */
  99.         vlc_testcancel();
  100. #endif
  101.     }
  102.     while (signum == SIGCHLD);
  103.     msg_Err (obj, "Caught %s signal, exiting...", strsignal (signum));
  104.     libvlc_Quit (obj->p_libvlc);
  105.     /* After 3 seconds, fallback to normal signal handling */
  106.     msleep (3 * CLOCK_FREQ);
  107.     pthread_sigmask (SIG_UNBLOCK, &set, NULL);
  108.     for (;;)
  109.         pause ();
  110. }