pxmapmgr.cpp
上传用户:dangjiwu
上传日期:2013-07-19
资源大小:42019k
文件大小:7k
源码类别:

Symbian

开发平台:

Visual C++

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