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

Symbian

开发平台:

C/C++

  1. /* ***** BEGIN LICENSE BLOCK ***** 
  2.  * Version: RCSL 1.0/RPSL 1.0 
  3.  *  
  4.  * Portions Copyright (c) 1995-2002 RealNetworks, Inc. All Rights Reserved. 
  5.  *      
  6.  * The contents of this file, and the files included with this file, are 
  7.  * subject to the current version of the RealNetworks Public Source License 
  8.  * Version 1.0 (the "RPSL") available at 
  9.  * http://www.helixcommunity.org/content/rpsl unless you have licensed 
  10.  * the file under the RealNetworks Community Source License Version 1.0 
  11.  * (the "RCSL") available at http://www.helixcommunity.org/content/rcsl, 
  12.  * in which case the RCSL will apply. You may also obtain the license terms 
  13.  * directly from RealNetworks.  You may not use this file except in 
  14.  * compliance with the RPSL or, if you have a valid RCSL with RealNetworks 
  15.  * applicable to this file, the RCSL.  Please see the applicable RPSL or 
  16.  * RCSL for the rights, obligations and limitations governing use of the 
  17.  * contents of the file.  
  18.  *  
  19.  * This file is part of the Helix DNA Technology. RealNetworks is the 
  20.  * developer of the Original Code and owns the copyrights in the portions 
  21.  * it created. 
  22.  *  
  23.  * This file, and the files included with this file, is distributed and made 
  24.  * available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER 
  25.  * EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS ALL SUCH WARRANTIES, 
  26.  * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, FITNESS 
  27.  * FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. 
  28.  * 
  29.  * Technology Compatibility Kit Test Suite(s) Location: 
  30.  *    http://www.helixcommunity.org/content/tck 
  31.  * 
  32.  * Contributor(s): 
  33.  *  
  34.  * ***** END LICENSE BLOCK ***** */ 
  35. // include
  36. #include "hxtypes.h"
  37. #include "hxcom.h"
  38. // hxmisc
  39. #include "baseobj.h"
  40. #include "unkimp.h"
  41. // hxcont
  42. #include "hxmap.h"
  43. // pxcomlib
  44. #include "pxmapmgr.h"
  45. // hxdebug
  46. #include "hxheap.h"
  47. #ifdef _DEBUG
  48. #undef HX_THIS_FILE
  49. static char HX_THIS_FILE[] = __FILE__;
  50. #endif
  51. PXMapManager::PXMapManager()
  52. {
  53.     m_lRefCount    = 0;
  54.     m_ulNextHandle = 1;
  55.     m_pMap         = NULL;
  56.     m_pIterator    = NULL;
  57. }
  58. PXMapManager::~PXMapManager()
  59. {
  60.     HX_DELETE(m_pMap);
  61. }
  62. STDMETHODIMP PXMapManager::QueryInterface(REFIID riid, void** ppvObj)
  63. {
  64.     HX_RESULT retVal = HXR_OK;
  65.     if (IsEqualIID(riid, IID_IUnknown))
  66.     {
  67.         AddRef();
  68.         *ppvObj = (IUnknown *) this;
  69.     }
  70.     else
  71.     {
  72.         *ppvObj = NULL;
  73.         retVal  = HXR_NOINTERFACE;
  74.     }
  75.     return retVal;
  76. }
  77. STDMETHODIMP_(UINT32) PXMapManager::AddRef()
  78. {
  79.     return InterlockedIncrement(&m_lRefCount);
  80. }
  81. STDMETHODIMP_(UINT32) PXMapManager::Release()
  82. {
  83.     
  84.     if (InterlockedDecrement(&m_lRefCount) > 0)
  85.         return m_lRefCount;
  86.     delete this;
  87.     return 0;
  88. }
  89. STDMETHODIMP_(BOOL) PXMapManager::IsEntryPresent(UINT32 ulHandle)
  90. {
  91.     BOOL bRet = FALSE;
  92.     if (m_pMap)
  93.     {
  94.         void* pVoid = NULL;
  95.         bRet        = m_pMap->Lookup((LONG32) ulHandle, pVoid);
  96.     }
  97.     return bRet;
  98. }
  99. STDMETHODIMP PXMapManager::AddEntry(void* pEntry, REF(UINT32) rulHandle)
  100. {
  101.     HX_RESULT retVal = HXR_OK;
  102.     if (pEntry)
  103.     {
  104.         // Create a map if we don't already have one
  105.         if (!m_pMap)
  106.         {
  107.             m_pMap = new CHXMapLongToObj();
  108.             if (!m_pMap)
  109.             {
  110.                 retVal = HXR_OUTOFMEMORY;
  111.             }
  112.         }
  113.         if (SUCCEEDED(retVal))
  114.         {
  115.             // Make sure we don't already have a map entry
  116.             // for this handle
  117.             void* pVoid    = NULL;
  118.             BOOL  bPresent = m_pMap->Lookup((LONG32) m_ulNextHandle, pVoid);
  119.             if (!bPresent)
  120.             {
  121.                 // There's no current entry, so we can add this
  122.                 // to the map.
  123.                 m_pMap->SetAt((LONG32) m_ulNextHandle, pEntry);
  124.                 // Set the outgoing session handle
  125.                 rulHandle      = m_ulNextHandle;
  126.                 // Increment the session handle
  127.                 m_ulNextHandle = (m_ulNextHandle == 0x7FFFFFFF ? 1 : m_ulNextHandle + 1);
  128.             }
  129.             else
  130.             {
  131.                 retVal = HXR_FAIL;
  132.             }
  133.         }
  134.     }
  135.     else
  136.     {
  137.         retVal = HXR_INVALID_PARAMETER;
  138.     }
  139.     return retVal;
  140. }
  141. STDMETHODIMP PXMapManager::DeleteEntry(UINT32 ulHandle, void** ppEntry)
  142. {
  143.     HX_RESULT retVal = HXR_OK;
  144.     if (ppEntry && m_pMap)
  145.     {
  146.         void* pVoid    = NULL;
  147.         BOOL  bPresent = m_pMap->Lookup((LONG32) ulHandle, pVoid);
  148.         if (bPresent)
  149.         {
  150.             // Get the entry
  151.             *ppEntry = pVoid;
  152.             // Remove it from the map
  153.             m_pMap->RemoveKey((LONG32) ulHandle);
  154.         }
  155.     }
  156.     return retVal;
  157. }
  158. STDMETHODIMP PXMapManager::DeleteAllEntries()
  159. {
  160.     HX_RESULT retVal = HXR_OK;
  161.     if (m_pMap)
  162.     {
  163.         m_pMap->RemoveAll();
  164.     }
  165.     return retVal;
  166. }
  167. STDMETHODIMP PXMapManager::GetEntry(UINT32 ulHandle, void** ppEntry)
  168. {
  169.     HX_RESULT retVal = HXR_FAIL;
  170.     if (m_pMap && ppEntry)
  171.     {
  172.         void* pVoid    = NULL;
  173.         BOOL  bPresent = m_pMap->Lookup((LONG32) ulHandle, pVoid);
  174.         if (bPresent)
  175.         {
  176.             // Get the entry
  177.             *ppEntry = pVoid;
  178.             // Make the return value ok
  179.             retVal = HXR_OK;
  180.         }
  181.     }
  182.     return retVal;
  183. }
  184. STDMETHODIMP PXMapManager::GetFirstEntry(REF(UINT32) rulHandle, void** ppEntry)
  185. {
  186.     HX_RESULT retVal = HXR_FAIL;
  187.     if (m_pMap && ppEntry)
  188.     {
  189.         m_pIterator = m_pMap->GetStartPosition();
  190.         if (m_pIterator)
  191.         {
  192.             // Get the object pointer at the current position
  193.             // and advance to the next position
  194.             LONG32 lKey     = 0;
  195.             void*  pElement = NULL;
  196.             m_pMap->GetNextAssoc(m_pIterator, lKey, pElement);
  197.             if (pElement)
  198.             {
  199.                 rulHandle = (UINT32) lKey;
  200.                 *ppEntry  = pElement;
  201.                 retVal    = HXR_OK;
  202.             }
  203.         }
  204.     }
  205.     return retVal;
  206. }
  207. STDMETHODIMP PXMapManager::GetNextEntry(REF(UINT32) rulHandle, void** ppEntry)
  208. {
  209.     HX_RESULT retVal = HXR_FAIL;
  210.     if (m_pMap && ppEntry)
  211.     {
  212.         if (m_pIterator)
  213.         {
  214.             // Get the object pointer at the current position
  215.             // and advance to the next position
  216.             LONG32 lKey     = 0;
  217.             void*  pElement = NULL;
  218.             m_pMap->GetNextAssoc(m_pIterator, lKey, pElement);
  219.             if (pElement)
  220.             {
  221.                 rulHandle = (UINT32) lKey;
  222.                 *ppEntry  = pElement;
  223.                 retVal    = HXR_OK;
  224.             }
  225.         }
  226.     }
  227.     return retVal;
  228. }