atomicops.cpp
上传用户:zhongxx05
上传日期:2007-06-06
资源大小:33641k
文件大小:5k
源码类别:

Symbian

开发平台:

C/C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: atomicops.cpp,v 1.1 2003/05/22 00:18:41 dcollins Exp $
  3.  *
  4.  * Portions Copyright (c) 1995-2003 RealNetworks, Inc. All Rights Reserved.
  5.  *
  6.  * The contents of this file, and the files included with this file,
  7.  * are subject to the current version of the RealNetworks Public
  8.  * Source License (the "RPSL") available at
  9.  * http://www.helixcommunity.org/content/rpsl unless you have licensed
  10.  * the file under the current version of the RealNetworks Community
  11.  * Source License (the "RCSL") available at
  12.  * http://www.helixcommunity.org/content/rcsl, in which case the RCSL
  13.  * will apply. You may also obtain the license terms directly from
  14.  * RealNetworks.  You may not use this file except in compliance with
  15.  * the RPSL or, if you have a valid RCSL with RealNetworks applicable
  16.  * to this file, the RCSL.  Please see the applicable RPSL or RCSL for
  17.  * the rights, obligations and limitations governing use of the
  18.  * contents of the file.
  19.  *
  20.  * This file is part of the Helix DNA Technology. RealNetworks is the
  21.  * developer of the Original Code and owns the copyrights in the
  22.  * portions it created.
  23.  *
  24.  * This file, and the files included with this file, is distributed
  25.  * and made available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY
  26.  * KIND, EITHER EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS
  27.  * ALL SUCH WARRANTIES, INCLUDING WITHOUT LIMITATION, ANY WARRANTIES
  28.  * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, QUIET
  29.  * ENJOYMENT OR NON-INFRINGEMENT.
  30.  *
  31.  * Technology Compatibility Kit Test Suite(s) Location:
  32.  *    http://www.helixcommunity.org/content/tck
  33.  *
  34.  * Contributor(s):
  35.  *
  36.  * ***** END LICENSE BLOCK ***** */
  37. #if !defined (HXATOMIC_MUTEX_POOL_SIZE)
  38. #define HXATOMIC_MUTEX_POOL_SIZE 256 // must  be a power of 2
  39. #endif
  40. #include "hxtypes.h"
  41. #include "atomicbase.h"
  42. #include "microsleep.h"
  43. #include "hxcom.h"
  44. #include "hxmutexlock.h"
  45. #include "hxassert.h"
  46. HXAtomic g_AtomicOps;
  47. HXAtomic::HXAtomic()
  48.     : m_pLocks(0)
  49. {
  50. }
  51. HXAtomic::~HXAtomic()
  52. {
  53.     HX_DELETE(m_pLocks);
  54. }
  55. void
  56. HXAtomic::Lock(HX_MUTEX pLock)
  57. {
  58.     while (_HXMutexSetBit((pLock)))
  59.     {
  60.         /*spin - this is fine since the locks are held so briefly */
  61.     }
  62. };
  63. void
  64. HXAtomic::Unlock(HX_MUTEX pLock)
  65. {
  66.     _HXMutexClearBit((pLock));
  67. };
  68. void
  69. HXAtomic::InitLockPool()
  70. {
  71.     HX_ASSERT(!m_pLocks);
  72.     HX_MUTEX* pLocks = new HX_MUTEX[HXATOMIC_MUTEX_POOL_SIZE];
  73.     for (int i=0; i < HXATOMIC_MUTEX_POOL_SIZE; ++i)
  74.     {
  75.         pLocks[i] = HXMutexCreate();
  76.     }
  77.     m_pLocks = pLocks;
  78. };
  79. INT32
  80. HXAtomic::_AddRetINT32(INT32* pNum, INT32 nNum)
  81. {
  82.     register INT32 nRet;
  83.     if (m_pLocks)
  84.     {
  85.         register int nIndex = ((UINT32)(PTR_INT)pNum >> 4) & (HXATOMIC_MUTEX_POOL_SIZE - 1);
  86.         register HX_MUTEX pLock = (HX_MUTEX) m_pLocks[nIndex];
  87.         Lock(pLock);
  88.         nRet = *pNum;
  89.         nRet += nNum;
  90.         *pNum = nRet;
  91.         Unlock(pLock);
  92.         return nRet;
  93.     }
  94.     // locks are not defined, so just do it -- (non-threadsafe!)
  95.     nRet = *pNum;
  96.     nRet += nNum;
  97.     *pNum = nRet;
  98.     return nRet;
  99. };
  100. UINT32
  101. HXAtomic::_AddRetUINT32(UINT32* pNum, UINT32 ulNum)
  102. {
  103.     register UINT32 ulRet;
  104.     if (m_pLocks)
  105.     {
  106.         register int nIndex = ((UINT32)(PTR_INT)pNum >> 4) & (HXATOMIC_MUTEX_POOL_SIZE - 1);
  107.         register HX_MUTEX pLock = (HX_MUTEX) m_pLocks[nIndex];
  108.         Lock(pLock);
  109.         ulRet = *pNum;
  110.         ulRet += ulNum;
  111.         *pNum = ulRet;
  112.         Unlock(pLock);
  113.         return ulRet;
  114.     }
  115.     // locks are not defined, so just do it -- (non-threadsafe!)
  116.     ulRet = *pNum;
  117.     ulRet += ulNum;
  118.     *pNum = ulRet;
  119.     return ulRet;
  120. };
  121. INT32
  122. HXAtomic::_SubRetINT32(INT32* pNum, INT32 nNum)
  123. {
  124.     register INT32 nRet;
  125.     if (m_pLocks)
  126.     {
  127.         register int nIndex = ((UINT32)(PTR_INT)pNum >> 4) & (HXATOMIC_MUTEX_POOL_SIZE - 1);
  128.         register HX_MUTEX pLock = (HX_MUTEX) m_pLocks[nIndex];
  129.         Lock(pLock);
  130.         nRet = *pNum;
  131.         nRet -= nNum;
  132.         *pNum = nRet;
  133.         Unlock(pLock);
  134.         return nRet;
  135.     }
  136.     // locks are not defined, so just do it -- (non-threadsafe!)
  137.     nRet = *pNum;
  138.     nRet -= nNum;
  139.     *pNum = nRet;
  140.     return nRet;
  141. };
  142. UINT32
  143. HXAtomic::_SubRetUINT32(UINT32* pNum, UINT32 ulNum)
  144. {
  145.     register UINT32 ulRet;
  146.     if (m_pLocks)
  147.     {
  148.         register int nIndex = ((UINT32)(PTR_INT)pNum >> 4) & (HXATOMIC_MUTEX_POOL_SIZE - 1);
  149.         register HX_MUTEX pLock = (HX_MUTEX) m_pLocks[nIndex];
  150.         Lock(pLock);
  151.         ulRet = *pNum;
  152.         ulRet -= ulNum;
  153.         *pNum = ulRet;
  154.         Unlock(pLock);
  155.         return ulRet;
  156.     }
  157.     // locks are not defined, so just do it -- (non-threadsafe!)
  158.     ulRet = *pNum;
  159.     ulRet -= ulNum;
  160.     *pNum = ulRet;
  161.     return ulRet;
  162. };