vlc_threads.h
上传用户:riyaled888
上传日期:2009-03-27
资源大小:7338k
文件大小:7k
源码类别:

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * vlc_threads.h : threads implementation for the VideoLAN client
  3.  * This header provides portable declarations for mutexes & conditions
  4.  *****************************************************************************
  5.  * Copyright (C) 1999, 2002 VideoLAN
  6.  * $Id: vlc_threads.h 6961 2004-03-05 17:34:23Z sam $
  7.  *
  8.  * Authors: Jean-Marc Dressler <polux@via.ecp.fr>
  9.  *          Samuel Hocevar <sam@via.ecp.fr>
  10.  *          Gildas Bazin <gbazin@netcourrier.com>
  11.  *          Christophe Massiot <massiot@via.ecp.fr>
  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., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  26.  *****************************************************************************/
  27. #include <stdio.h>
  28. #if defined(DEBUG) && defined(HAVE_SYS_TIME_H)
  29. #   include <sys/time.h>
  30. #endif
  31. #if defined( PTH_INIT_IN_PTH_H )                                  /* GNU Pth */
  32. #   include <pth.h>
  33. #elif defined( ST_INIT_IN_ST_H )                            /* State threads */
  34. #   include <st.h>
  35. #elif defined( UNDER_CE )
  36.                                                                 /* WinCE API */
  37. #elif defined( WIN32 )
  38. #   include <process.h>                                         /* Win32 API */
  39. #elif defined( HAVE_KERNEL_SCHEDULER_H )                             /* BeOS */
  40. #   include <kernel/OS.h>
  41. #   include <kernel/scheduler.h>
  42. #   include <byteorder.h>
  43. #elif defined( PTHREAD_COND_T_IN_PTHREAD_H )  /* pthreads (like Linux & BSD) */
  44. #   include <pthread.h>
  45. #   ifdef DEBUG
  46.         /* Needed for pthread_cond_timedwait */
  47. #       include <errno.h>
  48. #   endif
  49.     /* This is not prototyped under Linux, though it exists. */
  50.     int pthread_mutexattr_setkind_np( pthread_mutexattr_t *attr, int kind );
  51. #elif defined( HAVE_CTHREADS_H )                                  /* GNUMach */
  52. #   include <cthreads.h>
  53. #else
  54. #   error no threads available on your system !
  55. #endif
  56. /*****************************************************************************
  57.  * Constants
  58.  *****************************************************************************/
  59. /* Thread priorities */
  60. #ifdef SYS_DARWIN
  61. #   define VLC_THREAD_PRIORITY_LOW (-47)
  62. #   define VLC_THREAD_PRIORITY_INPUT 37
  63. #   define VLC_THREAD_PRIORITY_AUDIO 37
  64. #   define VLC_THREAD_PRIORITY_VIDEO (-47)
  65. #   define VLC_THREAD_PRIORITY_OUTPUT 37
  66. #elif defined(SYS_BEOS)
  67. #   define VLC_THREAD_PRIORITY_LOW 5
  68. #   define VLC_THREAD_PRIORITY_INPUT 10
  69. #   define VLC_THREAD_PRIORITY_AUDIO 10
  70. #   define VLC_THREAD_PRIORITY_VIDEO 5
  71. #   define VLC_THREAD_PRIORITY_OUTPUT 15
  72. #elif defined(PTHREAD_COND_T_IN_PTHREAD_H)
  73. #   define VLC_THREAD_PRIORITY_LOW 0
  74. #   define VLC_THREAD_PRIORITY_INPUT 20
  75. #   define VLC_THREAD_PRIORITY_AUDIO 10
  76. #   define VLC_THREAD_PRIORITY_VIDEO 0
  77. #   define VLC_THREAD_PRIORITY_OUTPUT 30
  78. #elif defined(WIN32) || defined(UNDER_CE)
  79. /* Define different priorities for WinNT/2K/XP and Win9x/Me */
  80. #   define VLC_THREAD_PRIORITY_LOW 0
  81. #   define VLC_THREAD_PRIORITY_INPUT 
  82.         (IS_WINNT ? THREAD_PRIORITY_ABOVE_NORMAL : 0)
  83. #   define VLC_THREAD_PRIORITY_AUDIO 
  84.         (IS_WINNT ? THREAD_PRIORITY_HIGHEST : 0)
  85. #   define VLC_THREAD_PRIORITY_VIDEO 
  86.         (IS_WINNT ? 0 : THREAD_PRIORITY_BELOW_NORMAL )
  87. #   define VLC_THREAD_PRIORITY_OUTPUT 
  88.         (IS_WINNT ? THREAD_PRIORITY_ABOVE_NORMAL : 0)
  89. #   define VLC_THREAD_PRIORITY_HIGHEST 
  90.         (IS_WINNT ? THREAD_PRIORITY_TIME_CRITICAL : 0)
  91. #else
  92. #   define VLC_THREAD_PRIORITY_LOW 0
  93. #   define VLC_THREAD_PRIORITY_INPUT 0
  94. #   define VLC_THREAD_PRIORITY_AUDIO 0
  95. #   define VLC_THREAD_PRIORITY_VIDEO 0
  96. #   define VLC_THREAD_PRIORITY_OUTPUT 0
  97. #endif
  98. /*****************************************************************************
  99.  * Type definitions
  100.  *****************************************************************************/
  101. #if defined( PTH_INIT_IN_PTH_H )
  102. typedef pth_t            vlc_thread_t;
  103. typedef struct
  104. {
  105.     pth_mutex_t mutex;
  106.     vlc_object_t * p_this;
  107. } vlc_mutex_t;
  108. typedef struct
  109. {
  110.     pth_cond_t cond;
  111.     vlc_object_t * p_this;
  112. } vlc_cond_t;
  113. #elif defined( ST_INIT_IN_ST_H )
  114. typedef st_thread_t      vlc_thread_t;
  115. typedef struct
  116. {
  117.     st_mutex_t mutex;
  118.     vlc_object_t * p_this;
  119. } vlc_mutex_t;
  120. typedef struct
  121. {
  122.     st_cond_t cond;
  123.     vlc_object_t * p_this;
  124. } vlc_cond_t;
  125. #elif defined( WIN32 ) || defined( UNDER_CE )
  126. typedef HANDLE vlc_thread_t;
  127. typedef BOOL (WINAPI *SIGNALOBJECTANDWAIT) ( HANDLE, HANDLE, DWORD, BOOL );
  128. typedef unsigned (__stdcall *PTHREAD_START) (void *);
  129. typedef struct
  130. {
  131.     /* WinNT/2K/XP implementation */
  132.     HANDLE              mutex;
  133.     /* Win95/98/ME implementation */
  134.     CRITICAL_SECTION    csection;
  135.     vlc_object_t * p_this;
  136. } vlc_mutex_t;
  137. typedef struct
  138. {
  139.     volatile int        i_waiting_threads;
  140.     /* WinNT/2K/XP implementation */
  141.     HANDLE              event;
  142.     SIGNALOBJECTANDWAIT SignalObjectAndWait;
  143.     /* Win95/98/ME implementation */
  144.     HANDLE              semaphore;
  145.     CRITICAL_SECTION    csection;
  146.     int                 i_win9x_cv;
  147.     vlc_object_t * p_this;
  148. } vlc_cond_t;
  149. #elif defined( HAVE_KERNEL_SCHEDULER_H )
  150. /* This is the BeOS implementation of the vlc threads, note that the mutex is
  151.  * not a real mutex and the cond_var is not like a pthread cond_var but it is
  152.  * enough for what wee need */
  153. typedef thread_id vlc_thread_t;
  154. typedef struct
  155. {
  156.     int32_t         init;
  157.     sem_id          lock;
  158.     vlc_object_t * p_this;
  159. } vlc_mutex_t;
  160. typedef struct
  161. {
  162.     int32_t         init;
  163.     thread_id       thread;
  164.     vlc_object_t * p_this;
  165. } vlc_cond_t;
  166. #elif defined( PTHREAD_COND_T_IN_PTHREAD_H )
  167. typedef pthread_t       vlc_thread_t;
  168. typedef struct
  169. {
  170.     pthread_mutex_t mutex;
  171.     vlc_object_t * p_this;
  172. } vlc_mutex_t;
  173. typedef struct
  174. {
  175.     pthread_cond_t cond;
  176.     vlc_object_t * p_this;
  177. } vlc_cond_t;
  178. #elif defined( HAVE_CTHREADS_H )
  179. typedef cthread_t       vlc_thread_t;
  180. /* Those structs are the ones defined in /include/cthreads.h but we need
  181.  * to handle (&foo) where foo is a (mutex_t) while they handle (foo) where
  182.  * foo is a (mutex_t*) */
  183. typedef struct
  184. {
  185.     spin_lock_t held;
  186.     spin_lock_t lock;
  187.     char *name;
  188.     struct cthread_queue queue;
  189.     vlc_object_t * p_this;
  190. } vlc_mutex_t;
  191. typedef struct
  192. {
  193.     spin_lock_t lock;
  194.     struct cthread_queue queue;
  195.     char *name;
  196.     struct cond_imp *implications;
  197.     vlc_object_t * p_this;
  198. } vlc_cond_t;
  199. #endif