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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * vlc_gcrypt.h: VLC thread support for gcrypt
  3.  *****************************************************************************
  4.  * Copyright (C) 2004-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. /**
  21.  * file
  22.  * This file implements gcrypt support functions in vlc
  23.  */
  24. #ifdef LIBVLC_USE_PTHREAD
  25. /**
  26.  * If possible, use gcrypt-provided thread implementation. This is so that
  27.  * other non-VLC components (inside the process) can also use gcrypt safely.
  28.  */
  29. GCRY_THREAD_OPTION_PTHREAD_IMPL;
  30. # define gcry_threads_vlc gcry_threads_pthread
  31. #else
  32. /**
  33.  * gcrypt thread option VLC implementation
  34.  */
  35. static int gcry_vlc_mutex_init( void **p_sys )
  36. {
  37.     int i_val;
  38.     vlc_mutex_t *p_lock = (vlc_mutex_t *)malloc( sizeof( vlc_mutex_t ) );
  39.     if( p_lock == NULL)
  40.         return ENOMEM;
  41.     i_val = vlc_mutex_init( p_lock );
  42.     if( i_val )
  43.         free( p_lock );
  44.     else
  45.         *p_sys = p_lock;
  46.     return i_val;
  47. }
  48. static int gcry_vlc_mutex_destroy( void **p_sys )
  49. {
  50.     vlc_mutex_t *p_lock = (vlc_mutex_t *)*p_sys;
  51.     vlc_mutex_destroy( p_lock );
  52.     free( p_lock );
  53.     return VLC_SUCCESS;
  54. }
  55. static int gcry_vlc_mutex_lock( void **p_sys )
  56. {
  57.     vlc_mutex_lock( (vlc_mutex_t *)*p_sys );
  58.     return VLC_SUCCESS;
  59. }
  60. static int gcry_vlc_mutex_unlock( void **lock )
  61. {
  62.     vlc_mutex_unlock( (vlc_mutex_t *)*lock );
  63.     return VLC_SUCCESS;
  64. }
  65. static const struct gcry_thread_cbs gcry_threads_vlc =
  66. {
  67.     GCRY_THREAD_OPTION_USER,
  68.     NULL,
  69.     gcry_vlc_mutex_init,
  70.     gcry_vlc_mutex_destroy,
  71.     gcry_vlc_mutex_lock,
  72.     gcry_vlc_mutex_unlock
  73. };
  74. #endif
  75. /**
  76.  * Initializes gcrypt with proper locking.
  77.  */
  78. static inline void vlc_gcrypt_init (void)
  79. {
  80.     /* This would need a process-wide static mutex with all libraries linking
  81.      * to a given instance of libgcrypt. We cannot do this as we have different
  82.      * plugins linking with gcrypt, and some underlying libraries may use it
  83.      * behind our back. Only way is to always link gcrypt statically (ouch!) or
  84.      * have upstream gcrypt provide one shared object per threading system. */
  85.     static vlc_mutex_t lock = VLC_STATIC_MUTEX;
  86.     static bool done = false;
  87.     vlc_mutex_lock (&lock);
  88.     if (!done)
  89.     {
  90.         gcry_control (GCRYCTL_SET_THREAD_CBS, &gcry_threads_vlc);
  91.         done = true;
  92.     }
  93.     vlc_mutex_unlock (&lock);
  94. }