CountSemaphore.hxx
上传用户:sy_wanhua
上传日期:2013-07-25
资源大小:3048k
文件大小:6k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

C/C++

  1. #ifndef COUNT_SEMAPHORE_HXX_
  2. #define COUNT_SEMAPHORE_HXX_
  3. /* ====================================================================
  4.  * The Vovida Software License, Version 1.0 
  5.  * 
  6.  * Copyright (c) 2000 Vovida Networks, Inc.  All rights reserved.
  7.  * 
  8.  * Redistribution and use in source and binary forms, with or without
  9.  * modification, are permitted provided that the following conditions
  10.  * are met:
  11.  * 
  12.  * 1. Redistributions of source code must retain the above copyright
  13.  *    notice, this list of conditions and the following disclaimer.
  14.  * 
  15.  * 2. Redistributions in binary form must reproduce the above copyright
  16.  *    notice, this list of conditions and the following disclaimer in
  17.  *    the documentation and/or other materials provided with the
  18.  *    distribution.
  19.  * 
  20.  * 3. The names "VOCAL", "Vovida Open Communication Application Library",
  21.  *    and "Vovida Open Communication Application Library (VOCAL)" must
  22.  *    not be used to endorse or promote products derived from this
  23.  *    software without prior written permission. For written
  24.  *    permission, please contact vocal@vovida.org.
  25.  *
  26.  * 4. Products derived from this software may not be called "VOCAL", nor
  27.  *    may "VOCAL" appear in their name, without prior written
  28.  *    permission of Vovida Networks, Inc.
  29.  * 
  30.  * THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESSED OR IMPLIED
  31.  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  32.  * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND
  33.  * NON-INFRINGEMENT ARE DISCLAIMED.  IN NO EVENT SHALL VOVIDA
  34.  * NETWORKS, INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT DAMAGES
  35.  * IN EXCESS OF $1,000, NOR FOR ANY INDIRECT, INCIDENTAL, SPECIAL,
  36.  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  37.  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
  38.  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
  39.  * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  40.  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
  41.  * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
  42.  * DAMAGE.
  43.  * 
  44.  * ====================================================================
  45.  * 
  46.  * This software consists of voluntary contributions made by Vovida
  47.  * Networks, Inc. and many individuals on behalf of Vovida Networks,
  48.  * Inc.  For more information on Vovida Networks, Inc., please see
  49.  * <http://www.vovida.org/>.
  50.  *
  51.  */
  52. static const char* const CountSemaphore_hxx_Version =
  53.     "$Id: CountSemaphore.hxx,v 1.14 2001/05/25 23:19:53 sprajpat Exp $";
  54. #include "VMutex.h"
  55. #include "global.h"
  56. #include <assert.h>
  57. #if defined(__svr4__) || defined (__SUNPRO_CC) || !defined(__GNUC__)
  58. #define USE_VMUTEX_LOCKING 1
  59. #else
  60. #define USE_VMUTEX_LOCKING 0
  61. #endif
  62. #if USE_VMUTEX_LOCKING
  63. // these macros define the appropriate operators if using VMutex as the basis for
  64. // the reference counting.
  65. #define LOCK() mutex.lock()
  66. #define UNLOCK() mutex.unlock()
  67. #define INC(x) ++x
  68. #define DEC(x) --x
  69. #define DEC_AND_CMP(x,r) --x,r = (x == 0)
  70. #define EXCHANGE(ptr,val) void* tmp; tmp = *ptr,*ptr = val, val = tmp
  71. #else
  72. // these macros define the appropriate operators if using i386 assembly for
  73. // the reference counting.
  74. #define LOCK()
  75. #define UNLOCK()
  76. #define INC(x) 
  77. ({   
  78. asm volatile ("lock; incl %0" : : "m" (x) ); 
  79. })
  80. #define DEC(x) 
  81. ({   
  82. asm volatile ("lock; decl %0" : : "m" (x) ); 
  83. })
  84. #define DEC_AND_CMP(x,r) 
  85. ({   
  86. asm volatile ("lock; decl %1; sete %0 " : "=m" (r) : "m" (x) ); 
  87. })
  88. #define EXCHANGE(ptr,val) 
  89. ({   
  90. asm volatile ("lock; xchg %0,%1" : "=r" (val), "=m" (*ptr) : "m" (*ptr) , "0" (val) ); 
  91. })
  92. #endif
  93. #define INLINE_ inline
  94. /* TODO: 
  95.    fix the name.  It should be called ReferenceCount or something like
  96.    that.  
  97.    figure out why the count is volatile.
  98.    change decrement() to decrementAndCompare() .
  99. */
  100. /** A thread safe reference count.  The implementation is designed to
  101.  * use either VMutex or inline assembly when using GCC (for
  102.  * efficiency).
  103.  */
  104. class CountSemaphore
  105. {
  106.     public:
  107. /// constructor
  108.         INLINE_ explicit CountSemaphore(int value=0)
  109.         :
  110. #if USE_VMUTEX_LOCKING
  111.         mutex(),
  112. #endif
  113.         count(value)
  114.         {}
  115. /** compares the current value in the reference count to
  116.  * value.  returns true if equal.
  117.  * @param value   integer to compare against.
  118.  */
  119.         INLINE_ bool compare(int value)
  120.         {
  121.             return (value == count);
  122.         }
  123. /** increment the reference count by one.  This operation is atomic.
  124.  */
  125.         INLINE_ void increment()
  126.         {
  127.             LOCK();
  128.             INC(count);
  129.             UNLOCK();
  130.         }
  131. /** decrement the reference count by one.  This operation is
  132.  * atomic.  If the reference count now equals 0, decrement
  133.  * returns true.
  134.  */
  135.         INLINE_ bool decrement()
  136.         {
  137.             bool retVal;
  138.             LOCK();
  139.             assert(count > 0);
  140.             DEC_AND_CMP(count, retVal);
  141.             UNLOCK();
  142.             return retVal;
  143.         }
  144.         INLINE_ void exchange(void** ptr, void** val)
  145.         {
  146.             LOCK();
  147.     EXCHANGE(ptr, *val);
  148.             UNLOCK();
  149.         }
  150. INLINE_ int getCount()
  151. {
  152.     return count;
  153. }
  154. bool operator==(int value) const
  155. {
  156.             return (value == count);
  157. }
  158.     private:
  159. /// suppress copying
  160.         CountSemaphore(const CountSemaphore&);
  161. /// suppress copying
  162.         const CountSemaphore& operator=(const CountSemaphore&);
  163. /// suppress comparison
  164.         bool operator==(const CountSemaphore&);
  165. #if USE_VMUTEX_LOCKING
  166.         VMutex mutex;
  167. #endif
  168.         volatile int count; // why is this volatile ?
  169. };
  170. #endif