DOMDeepNodeListPool.c
上传用户:zhuqijet
上传日期:2013-06-25
资源大小:10074k
文件大小:17k
源码类别:

词法分析

开发平台:

Visual C++

  1. /*
  2.  * The Apache Software License, Version 1.1
  3.  *
  4.  * Copyright (c) 2001-2002 The Apache Software Foundation.  All rights
  5.  * reserved.
  6.  *
  7.  * Redistribution and use in source and binary forms, with or without
  8.  * modification, are permitted provided that the following conditions
  9.  * are met:
  10.  *
  11.  * 1. Redistributions of source code must retain the above copyright
  12.  *    notice, this list of conditions and the following disclaimer.
  13.  *
  14.  * 2. Redistributions in binary form must reproduce the above copyright
  15.  *    notice, this list of conditions and the following disclaimer in
  16.  *    the documentation and/or other materials provided with the
  17.  *    distribution.
  18.  *
  19.  * 3. The end-user documentation included with the redistribution,
  20.  *    if any, must include the following acknowledgment:
  21.  *       "This product includes software developed by the
  22.  *        Apache Software Foundation (http://www.apache.org/)."
  23.  *    Alternately, this acknowledgment may appear in the software itself,
  24.  *    if and wherever such third-party acknowledgments normally appear.
  25.  *
  26.  * 4. The names "Xerces" and "Apache Software Foundation" must
  27.  *    not be used to endorse or promote products derived from this
  28.  *    software without prior written permission. For written
  29.  *    permission, please contact apache@apache.org.
  30.  *
  31.  * 5. Products derived from this software may not be called "Apache",
  32.  *    nor may "Apache" appear in their name, without prior written
  33.  *    permission of the Apache Software Foundation.
  34.  *
  35.  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
  36.  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  37.  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  38.  * DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
  39.  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  40.  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  41.  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
  42.  * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  43.  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  44.  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
  45.  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  46.  * SUCH DAMAGE.
  47.  * ====================================================================
  48.  *
  49.  * This software consists of voluntary contributions made by many
  50.  * individuals on behalf of the Apache Software Foundation, and was
  51.  * originally based on software copyright (c) 2001, International
  52.  * Business Machines, Inc., http://www.ibm.com .  For more information
  53.  * on the Apache Software Foundation, please see
  54.  * <http://www.apache.org/>.
  55.  */
  56. /**
  57.  * $Id: DOMDeepNodeListPool.c,v 1.7 2003/05/21 21:08:03 knoaman Exp $
  58.  */
  59. // ---------------------------------------------------------------------------
  60. //  Include
  61. // ---------------------------------------------------------------------------
  62. #include <xercesc/util/XercesDefs.hpp>
  63. #if defined(XERCES_TMPLSINC)
  64. #include <xercesc/dom/impl/DOMDeepNodeListPool.hpp>
  65. #endif
  66. XERCES_CPP_NAMESPACE_BEGIN
  67. // ---------------------------------------------------------------------------
  68. //  DOMDeepNodeListPool: Constructors and Destructor
  69. // ---------------------------------------------------------------------------
  70. template <class TVal>
  71. DOMDeepNodeListPool<TVal>::DOMDeepNodeListPool( const XMLSize_t modulus
  72.                                               , const bool adoptElems
  73.                                               , const XMLSize_t initSize) :
  74.  fAdoptedElems(adoptElems)
  75.     , fBucketList(0)
  76.     , fHashModulus(modulus)
  77.     , fHash(0)
  78.     , fIdPtrs(0)
  79.     , fIdPtrsCount(initSize)
  80.     , fIdCounter(0)
  81.     , fMemoryManager(XMLPlatformUtils::fgMemoryManager)
  82. {
  83.     initialize(modulus);
  84.     // create default hasher
  85.     fHash = new (fMemoryManager) HashPtr();
  86.     //
  87.     //  Allocate the initial id pointers array. We don't have to zero them
  88.     //  out since the fIdCounter value tells us which ones are valid. The
  89.     //  zeroth element is never used (and represents an invalid pool id.)
  90.     //
  91.     if (!fIdPtrsCount)
  92.         fIdPtrsCount = 256;
  93.     fIdPtrs = (TVal**) fMemoryManager->allocate(fIdPtrsCount * sizeof(TVal*));//new TVal*[fIdPtrsCount];
  94.     fIdPtrs[0] = 0;
  95. }
  96. template <class TVal>
  97. DOMDeepNodeListPool<TVal>::DOMDeepNodeListPool( const XMLSize_t modulus
  98.                                               , const bool adoptElems
  99.                                               , HashBase* hash
  100.                                               , const XMLSize_t initSize) :
  101.  fAdoptedElems(adoptElems)
  102.     , fBucketList(0)
  103.     , fHashModulus(modulus)
  104.     , fHash(0)
  105.     , fIdPtrs(0)
  106.     , fIdPtrsCount(initSize)
  107.     , fIdCounter(0)
  108.     , fMemoryManager(XMLPlatformUtils::fgMemoryManager)
  109. {
  110.     initialize(modulus);
  111.     // set hasher
  112.     fHash = hash;
  113.     //
  114.     //  Allocate the initial id pointers array. We don't have to zero them
  115.     //  out since the fIdCounter value tells us which ones are valid. The
  116.     //  zeroth element is never used (and represents an invalid pool id.)
  117.     //
  118.     if (!fIdPtrsCount)
  119.         fIdPtrsCount = 256;
  120.     fIdPtrs = (TVal**) fMemoryManager->allocate(fIdPtrsCount * sizeof(TVal*));//new TVal*[fIdPtrsCount];
  121.     fIdPtrs[0] = 0;
  122. }
  123. template <class TVal>
  124. DOMDeepNodeListPool<TVal>::DOMDeepNodeListPool( const XMLSize_t modulus
  125.                                               , const XMLSize_t initSize) :
  126.  fAdoptedElems(true)
  127.     , fBucketList(0)
  128.     , fHashModulus(modulus)
  129.     , fHash(0)
  130.     , fIdPtrs(0)
  131.     , fIdPtrsCount(initSize)
  132.     , fIdCounter(0)
  133.     , fMemoryManager(XMLPlatformUtils::fgMemoryManager)
  134. {
  135.     initialize(modulus);
  136.     // create default hasher
  137.     fHash = new (fMemoryManager) HashPtr();
  138.     //
  139.     //  Allocate the initial id pointers array. We don't have to zero them
  140.     //  out since the fIdCounter value tells us which ones are valid. The
  141.     //  zeroth element is never used (and represents an invalid pool id.)
  142.     //
  143.     if (!fIdPtrsCount)
  144.         fIdPtrsCount = 256;
  145.     fIdPtrs = (TVal**) fMemoryManager->allocate(fIdPtrsCount * sizeof(TVal*));//new TVal*[fIdPtrsCount];
  146.     fIdPtrs[0] = 0;
  147. }
  148. template <class TVal>
  149. void DOMDeepNodeListPool<TVal>::initialize(const XMLSize_t modulus)
  150. {
  151. if (modulus == 0)
  152.         ThrowXML(IllegalArgumentException, XMLExcepts::HshTbl_ZeroModulus);
  153.     // Allocate the bucket list and zero them
  154.     fBucketList = (DOMDeepNodeListPoolTableBucketElem<TVal>**)
  155.         fMemoryManager->allocate
  156.         (
  157.             fHashModulus * sizeof(DOMDeepNodeListPoolTableBucketElem<TVal>*)
  158.         );//new DOMDeepNodeListPoolTableBucketElem<TVal>*[fHashModulus];
  159.     for (XMLSize_t index = 0; index < fHashModulus; index++)
  160.         fBucketList[index] = 0;
  161. }
  162. template <class TVal> DOMDeepNodeListPool<TVal>::~DOMDeepNodeListPool()
  163. {
  164.     removeAll();
  165.     // Then delete the bucket list & hasher & id pointers list
  166.     fMemoryManager->deallocate(fIdPtrs);//delete [] fIdPtrs;
  167.     fMemoryManager->deallocate(fBucketList);//delete [] fBucketList;
  168.     delete fHash;
  169. }
  170. // ---------------------------------------------------------------------------
  171. //  DOMDeepNodeListPool: Element management
  172. // ---------------------------------------------------------------------------
  173. template <class TVal>
  174. bool DOMDeepNodeListPool<TVal>::isEmpty() const
  175. {
  176.     // Just check the bucket list for non-empty elements
  177.     for (XMLSize_t buckInd = 0; buckInd < fHashModulus; buckInd++)
  178.     {
  179.         if (fBucketList[buckInd] != 0)
  180.             return false;
  181.     }
  182.     return true;
  183. }
  184. template <class TVal>
  185. bool DOMDeepNodeListPool<TVal>::containsKey( const void* const key1
  186.                                            , const XMLCh* const key2
  187.                                            , const XMLCh* const key3) const
  188. {
  189.     XMLSize_t hashVal;
  190.     const DOMDeepNodeListPoolTableBucketElem<TVal>* findIt = findBucketElem(key1, key2, key3, hashVal);
  191.     return (findIt != 0);
  192. }
  193. template <class TVal>
  194. void DOMDeepNodeListPool<TVal>::removeAll()
  195. {
  196.     // Clean up the buckets first
  197.     for (XMLSize_t buckInd = 0; buckInd < fHashModulus; buckInd++)
  198.     {
  199.         // Get the bucket list head for this entry
  200.         DOMDeepNodeListPoolTableBucketElem<TVal>* curElem = fBucketList[buckInd];
  201.         DOMDeepNodeListPoolTableBucketElem<TVal>* nextElem;
  202.         while (curElem)
  203.         {
  204.             // Save the next element before we hose this one
  205.             nextElem = curElem->fNext;
  206.             // If we adopted the data, then delete it too
  207.             //    (Note:  the userdata hash table instance has data type of void *.
  208.             //    This will generate compiler warnings here on some platforms, but they
  209.             //    can be ignored since fAdoptedElements is false.
  210.             if (fAdoptedElems)
  211.                 delete curElem->fData;
  212.             // Then delete the current element and move forward
  213.             fMemoryManager->deallocate(curElem->fKey2);//delete [] curElem->fKey2;
  214.             fMemoryManager->deallocate(curElem->fKey3);//delete [] curElem->fKey3;
  215.             delete curElem;
  216.             curElem = nextElem;
  217.         }
  218.         // Clean out this entry
  219.         fBucketList[buckInd] = 0;
  220.     }
  221.     // Reset the id counter
  222.     fIdCounter = 0;
  223. }
  224. template <class TVal> void DOMDeepNodeListPool<TVal>::cleanup()
  225. {
  226.     removeAll();
  227.     // Then delete the bucket list & hasher & id pointers list
  228.     fMemoryManager->deallocate(fIdPtrs);//delete [] fIdPtrs;
  229.     fMemoryManager->deallocate(fBucketList);//delete [] fBucketList;
  230.     delete fHash;
  231. }
  232. // ---------------------------------------------------------------------------
  233. //  DOMDeepNodeListPool: Getters
  234. // ---------------------------------------------------------------------------
  235. template <class TVal> TVal*
  236. DOMDeepNodeListPool<TVal>::getByKey(const void* const key1, const XMLCh* const key2, const XMLCh* const key3)
  237. {
  238.     XMLSize_t hashVal;
  239.     DOMDeepNodeListPoolTableBucketElem<TVal>* findIt = findBucketElem(key1, key2, key3, hashVal);
  240.     if (!findIt)
  241.         return 0;
  242.     return findIt->fData;
  243. }
  244. template <class TVal> const TVal*
  245. DOMDeepNodeListPool<TVal>::getByKey(const void* const key1, const XMLCh* const key2, const XMLCh* const key3) const
  246. {
  247.     XMLSize_t hashVal;
  248.     const DOMDeepNodeListPoolTableBucketElem<TVal>* findIt = findBucketElem(key1, key2, key3, hashVal);
  249.     if (!findIt)
  250.         return 0;
  251.     return findIt->fData;
  252. }
  253. template <class TVal> TVal*
  254. DOMDeepNodeListPool<TVal>::getById(const XMLSize_t elemId)
  255. {
  256.     // If its either zero or beyond our current id, its an error
  257.     if (!elemId || (elemId > fIdCounter))
  258.         ThrowXML(IllegalArgumentException, XMLExcepts::Pool_InvalidId);
  259.     return fIdPtrs[elemId];
  260. }
  261. template <class TVal> const TVal*
  262. DOMDeepNodeListPool<TVal>::getById(const XMLSize_t elemId) const
  263. {
  264.     // If its either zero or beyond our current id, its an error
  265.     if (!elemId || (elemId > fIdCounter))
  266.         ThrowXML(IllegalArgumentException, XMLExcepts::Pool_InvalidId);
  267.     return fIdPtrs[elemId];
  268. }
  269. // ---------------------------------------------------------------------------
  270. //  DOMDeepNodeListPool: Putters
  271. // ---------------------------------------------------------------------------
  272. template <class TVal> XMLSize_t
  273. DOMDeepNodeListPool<TVal>::put(void* key1, XMLCh* key2, XMLCh* key3, TVal* const valueToAdopt)
  274. {
  275.     // First see if the key exists already
  276.     XMLSize_t hashVal;
  277.     DOMDeepNodeListPoolTableBucketElem<TVal>* newBucket = findBucketElem(key1, key2, key3, hashVal);
  278.     //
  279.     //  If so,then update its value. If not, then we need to add it to
  280.     //  the right bucket
  281.     //
  282.     if (newBucket)
  283.     {
  284.         if (fAdoptedElems)
  285.             delete newBucket->fData;
  286.         fMemoryManager->deallocate(newBucket->fKey2);//delete[] newBucket->fKey2;
  287.         fMemoryManager->deallocate(newBucket->fKey3);//delete[] newBucket->fKey3;
  288.         newBucket->fData = valueToAdopt;
  289.         newBucket->fKey1 = key1;
  290.         newBucket->fKey2 = XMLString::replicate(key2, fMemoryManager);
  291.         newBucket->fKey3 = XMLString::replicate(key3, fMemoryManager);
  292.     }
  293.     else
  294.     {
  295.     // Revisit: the gcc compiler 2.95.x is generating an
  296.     // internal compiler error message. So we use the default
  297.     // memory manager for now.
  298. #if defined (XML_GCC_VERSION) && (XML_GCC_VERSION < 29600)
  299.         newBucket = new DOMDeepNodeListPoolTableBucketElem<TVal>
  300.         (
  301.             key1
  302.             , key2
  303.             , key3
  304.             , valueToAdopt
  305.             , fBucketList[hashVal]
  306.             , fMemoryManager
  307.         );
  308. #else
  309.         newBucket = new (fMemoryManager) DOMDeepNodeListPoolTableBucketElem<TVal>
  310.         (
  311.             key1
  312.             , key2
  313.             , key3
  314.             , valueToAdopt
  315.             , fBucketList[hashVal]
  316.             , fMemoryManager
  317.         );
  318. #endif
  319.         fBucketList[hashVal] = newBucket;
  320.     }
  321.     //
  322.     //  Give this new one the next available id and add to the pointer list.
  323.     //  Expand the list if that is now required.
  324.     //
  325.     if (fIdCounter + 1 == fIdPtrsCount)
  326.     {
  327.         // Create a new count 1.5 times larger and allocate a new array
  328.         XMLSize_t newCount = (XMLSize_t)(fIdPtrsCount * 1.5);
  329.         TVal** newArray = (TVal**) fMemoryManager->allocate
  330.         (
  331.             newCount * sizeof(TVal*)
  332.         );//new TVal*[newCount];
  333.         // Copy over the old contents to the new array
  334.         memcpy(newArray, fIdPtrs, fIdPtrsCount * sizeof(TVal*));
  335.         // Ok, toss the old array and store the new data
  336.         fMemoryManager->deallocate(fIdPtrs); //delete [] fIdPtrs;
  337.         fIdPtrs = newArray;
  338.         fIdPtrsCount = newCount;
  339.     }
  340.     const XMLSize_t retId = ++fIdCounter;
  341.     fIdPtrs[retId] = valueToAdopt;
  342.     // Return the id that we gave to this element
  343.     return retId;
  344. }
  345. // ---------------------------------------------------------------------------
  346. //  DOMDeepNodeListPool: Private methods
  347. // ---------------------------------------------------------------------------
  348. template <class TVal> DOMDeepNodeListPoolTableBucketElem<TVal>* DOMDeepNodeListPool<TVal>::
  349. findBucketElem(const void* const key1, const XMLCh* const key2, const XMLCh* const key3, XMLSize_t& hashVal)
  350. {
  351.     // Hash the key
  352.     hashVal = fHash->getHashVal(key1, fHashModulus);
  353.     if (hashVal > fHashModulus)
  354.         ThrowXML(RuntimeException, XMLExcepts::HshTbl_BadHashFromKey);
  355.     // Search that bucket for the key
  356.     DOMDeepNodeListPoolTableBucketElem<TVal>* curElem = fBucketList[hashVal];
  357.     while (curElem)
  358.     {
  359.         //key2 and key3 are XMLCh*, compareString takes null pointer vs zero len string the same
  360.         //but we need them to be treated as different keys in this case
  361.         if (fHash->equals(key1, curElem->fKey1) && (XMLString::equals(key2, curElem->fKey2)) && (XMLString::equals(key3, curElem->fKey3))) {
  362.             if (!key2 || !curElem->fKey2) {
  363.                 if (key2 || curElem->fKey2) {
  364.                     curElem = curElem->fNext;
  365.                     continue;
  366.                 }
  367.             }
  368.             if (!key3 || !curElem->fKey3) {
  369.                 if (key3 || curElem->fKey3) {
  370.                     curElem = curElem->fNext;
  371.                     continue;
  372.                 }
  373.             }
  374.             return curElem;
  375.         }
  376.         curElem = curElem->fNext;
  377.     }
  378.     return 0;
  379. }
  380. template <class TVal> const DOMDeepNodeListPoolTableBucketElem<TVal>* DOMDeepNodeListPool<TVal>::
  381. findBucketElem(const void* const key1, const XMLCh* const key2, const XMLCh* const key3, XMLSize_t& hashVal) const
  382. {
  383.     // Hash the key
  384.     hashVal = fHash->getHashVal(key1, fHashModulus);
  385.     if (hashVal > fHashModulus)
  386.         ThrowXML(RuntimeException, XMLExcepts::HshTbl_BadHashFromKey);
  387.     // Search that bucket for the key
  388.     const DOMDeepNodeListPoolTableBucketElem<TVal>* curElem = fBucketList[hashVal];
  389.     while (curElem)
  390.     {
  391.         //key2 and key3 are XMLCh*, compareString takes null pointer vs zero len string the same
  392.         //but we need them to be treated as different keys in this case
  393.         if (fHash->equals(key1, curElem->fKey1) && (XMLString::equals(key2, curElem->fKey2)) && (XMLString::equals(key3, curElem->fKey3))) {
  394.             if (!key2 || !curElem->fKey2) {
  395.                 if (key2 || curElem->fKey2) {
  396.                     curElem = curElem->fNext;
  397.                     continue;
  398.                 }
  399.             }
  400.             if (!key3 || !curElem->fKey3) {
  401.                 if (key3 || curElem->fKey3) {
  402.                     curElem = curElem->fNext;
  403.                     continue;
  404.                 }
  405.             }
  406.             return curElem;
  407.         }
  408.         curElem = curElem->fNext;
  409.     }
  410.     return 0;
  411. }
  412. XERCES_CPP_NAMESPACE_END