IDDeepNodeListPool.c
上传用户:huihehuasu
上传日期:2007-01-10
资源大小:6948k
文件大小:15k
源码类别:

xml/soap/webservice

开发平台:

C/C++

  1. /*
  2.  * The Apache Software License, Version 1.1
  3.  *
  4.  * Copyright (c) 2001 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.  * $Log: IDDeepNodeListPool.c,v $
  58.  * Revision 1.1  2001/06/04 14:55:32  tng
  59.  * IDOM: Add IRange and IDeepNodeList Support.
  60.  *
  61.  */
  62. // ---------------------------------------------------------------------------
  63. //  Include
  64. // ---------------------------------------------------------------------------
  65. #if defined(XERCES_TMPLSINC)
  66. #include <idom/IDDeepNodeListPool.hpp>
  67. #endif
  68. // ---------------------------------------------------------------------------
  69. //  IDDeepNodeListPool: Constructors and Destructor
  70. // ---------------------------------------------------------------------------
  71. template <class TVal> IDDeepNodeListPool<TVal>::IDDeepNodeListPool(
  72.               const unsigned int modulus
  73.             , const bool adoptElems
  74.             , const unsigned int    initSize) :
  75.  fAdoptedElems(adoptElems)
  76.     , fBucketList(0)
  77.     , fHashModulus(modulus)
  78.     , fIdPtrs(0)
  79.     , fIdPtrsCount(initSize)
  80.     , fIdCounter(0)
  81. {
  82.     initialize(modulus);
  83.     // create default hasher
  84.     fHash = new HashPtr();
  85.     //
  86.     //  Allocate the initial id pointers array. We don't have to zero them
  87.     //  out since the fIdCounter value tells us which ones are valid. The
  88.     //  zeroth element is never used (and represents an invalid pool id.)
  89.     //
  90.     if (!fIdPtrsCount)
  91.         fIdPtrsCount = 256;
  92.     fIdPtrs = new TVal*[fIdPtrsCount];
  93.     fIdPtrs[0] = 0;
  94. }
  95. template <class TVal> IDDeepNodeListPool<TVal>::IDDeepNodeListPool(
  96.               const unsigned int modulus
  97.             , const bool adoptElems
  98.             , HashBase* hash
  99.             , const unsigned int    initSize) :
  100.  fAdoptedElems(adoptElems)
  101.     , fBucketList(0)
  102.     , fHashModulus(modulus)
  103.     , fIdPtrs(0)
  104.     , fIdPtrsCount(initSize)
  105.     , fIdCounter(0)
  106. {
  107.     initialize(modulus);
  108.     // set hasher
  109.     fHash = hash;
  110.     //
  111.     //  Allocate the initial id pointers array. We don't have to zero them
  112.     //  out since the fIdCounter value tells us which ones are valid. The
  113.     //  zeroth element is never used (and represents an invalid pool id.)
  114.     //
  115.     if (!fIdPtrsCount)
  116.         fIdPtrsCount = 256;
  117.     fIdPtrs = new TVal*[fIdPtrsCount];
  118.     fIdPtrs[0] = 0;
  119. }
  120. template <class TVal> IDDeepNodeListPool<TVal>::IDDeepNodeListPool(const unsigned int modulus
  121.             , const unsigned int    initSize) :
  122.  fAdoptedElems(true)
  123.     , fBucketList(0)
  124.     , fHashModulus(modulus)
  125.     , fIdPtrs(0)
  126.     , fIdPtrsCount(initSize)
  127.     , fIdCounter(0)
  128. {
  129.     initialize(modulus);
  130.     // create default hasher
  131.     fHash = new HashPtr();
  132.     //
  133.     //  Allocate the initial id pointers array. We don't have to zero them
  134.     //  out since the fIdCounter value tells us which ones are valid. The
  135.     //  zeroth element is never used (and represents an invalid pool id.)
  136.     //
  137.     if (!fIdPtrsCount)
  138.         fIdPtrsCount = 256;
  139.     fIdPtrs = new TVal*[fIdPtrsCount];
  140.     fIdPtrs[0] = 0;
  141. }
  142. template <class TVal> void IDDeepNodeListPool<TVal>::initialize(const unsigned int modulus)
  143. {
  144. if (modulus == 0)
  145.         ThrowXML(IllegalArgumentException, XMLExcepts::HshTbl_ZeroModulus);
  146.     // Allocate the bucket list and zero them
  147.     fBucketList = new IDDeepNodeListPoolTableBucketElem<TVal>*[fHashModulus];
  148.     for (unsigned int index = 0; index < fHashModulus; index++)
  149.         fBucketList[index] = 0;
  150. }
  151. template <class TVal> IDDeepNodeListPool<TVal>::~IDDeepNodeListPool()
  152. {
  153.     removeAll();
  154.     // Then delete the bucket list & hasher & id pointers list
  155.     delete [] fIdPtrs;
  156.     delete [] fBucketList;
  157.     delete fHash;
  158. }
  159. // ---------------------------------------------------------------------------
  160. //  IDDeepNodeListPool: Element management
  161. // ---------------------------------------------------------------------------
  162. template <class TVal> bool IDDeepNodeListPool<TVal>::isEmpty() const
  163. {
  164.     // Just check the bucket list for non-empty elements
  165.     for (unsigned int buckInd = 0; buckInd < fHashModulus; buckInd++)
  166.     {
  167.         if (fBucketList[buckInd] != 0)
  168.             return false;
  169.     }
  170.     return true;
  171. }
  172. template <class TVal> bool IDDeepNodeListPool<TVal>::
  173. containsKey(const void* const key1, const XMLCh* const key2, const XMLCh* const key3) const
  174. {
  175.     unsigned int hashVal;
  176.     const IDDeepNodeListPoolTableBucketElem<TVal>* findIt = findBucketElem(key1, key2, key3, hashVal);
  177.     return (findIt != 0);
  178. }
  179. template <class TVal> void IDDeepNodeListPool<TVal>::removeAll()
  180. {
  181.     // Clean up the buckets first
  182.     for (unsigned int buckInd = 0; buckInd < fHashModulus; buckInd++)
  183.     {
  184.         // Get the bucket list head for this entry
  185.         IDDeepNodeListPoolTableBucketElem<TVal>* curElem = fBucketList[buckInd];
  186.         IDDeepNodeListPoolTableBucketElem<TVal>* nextElem;
  187.         while (curElem)
  188.         {
  189.             // Save the next element before we hose this one
  190.             nextElem = curElem->fNext;
  191.             // If we adopted the data, then delete it too
  192.             //    (Note:  the userdata hash table instance has data type of void *.
  193.             //    This will generate compiler warnings here on some platforms, but they
  194.             //    can be ignored since fAdoptedElements is false.
  195.             if (fAdoptedElems)
  196.                 delete curElem->fData;
  197.             // Then delete the current element and move forward
  198.             delete[] curElem->fKey2;
  199.             delete[] curElem->fKey3;
  200.             delete curElem;
  201.             curElem = nextElem;
  202.         }
  203.         // Clean out this entry
  204.         fBucketList[buckInd] = 0;
  205.     }
  206.     // Reset the id counter
  207.     fIdCounter = 0;
  208. }
  209. // ---------------------------------------------------------------------------
  210. //  IDDeepNodeListPool: Getters
  211. // ---------------------------------------------------------------------------
  212. template <class TVal> TVal*
  213. IDDeepNodeListPool<TVal>::getByKey(const void* const key1, const XMLCh* const key2, const XMLCh* const key3)
  214. {
  215.     unsigned int hashVal;
  216.     IDDeepNodeListPoolTableBucketElem<TVal>* findIt = findBucketElem(key1, key2, key3, hashVal);
  217.     if (!findIt)
  218.         return 0;
  219.     return findIt->fData;
  220. }
  221. template <class TVal> const TVal*
  222. IDDeepNodeListPool<TVal>::getByKey(const void* const key1, const XMLCh* const key2, const XMLCh* const key3) const
  223. {
  224.     unsigned int hashVal;
  225.     const IDDeepNodeListPoolTableBucketElem<TVal>* findIt = findBucketElem(key1, key2, key3, hashVal);
  226.     if (!findIt)
  227.         return 0;
  228.     return findIt->fData;
  229. }
  230. template <class TVal> TVal*
  231. IDDeepNodeListPool<TVal>::getById(const unsigned int elemId)
  232. {
  233.     // If its either zero or beyond our current id, its an error
  234.     if (!elemId || (elemId > fIdCounter))
  235.         ThrowXML(IllegalArgumentException, XMLExcepts::Pool_InvalidId);
  236.     return fIdPtrs[elemId];
  237. }
  238. template <class TVal> const TVal*
  239. IDDeepNodeListPool<TVal>::getById(const unsigned int elemId) const
  240. {
  241.     // If its either zero or beyond our current id, its an error
  242.     if (!elemId || (elemId > fIdCounter))
  243.         ThrowXML(IllegalArgumentException, XMLExcepts::Pool_InvalidId);
  244.     return fIdPtrs[elemId];
  245. }
  246. // ---------------------------------------------------------------------------
  247. //  IDDeepNodeListPool: Putters
  248. // ---------------------------------------------------------------------------
  249. template <class TVal> unsigned int
  250. IDDeepNodeListPool<TVal>::put(void* key1, XMLCh* key2, XMLCh* key3, TVal* const valueToAdopt)
  251. {
  252.     // First see if the key exists already
  253.     unsigned int hashVal;
  254.     IDDeepNodeListPoolTableBucketElem<TVal>* newBucket = findBucketElem(key1, key2, key3, hashVal);
  255.     //
  256.     //  If so,then update its value. If not, then we need to add it to
  257.     //  the right bucket
  258.     //
  259.     if (newBucket)
  260.     {
  261.         if (fAdoptedElems)
  262.             delete newBucket->fData;
  263.         delete[] newBucket->fKey2;
  264.         delete[] newBucket->fKey3;
  265.         newBucket->fData = valueToAdopt;
  266.         newBucket->fKey1 = key1;
  267.         newBucket->fKey2 = key2;
  268.         newBucket->fKey3 = key3;
  269.     }
  270.      else
  271.     {
  272.         newBucket = new IDDeepNodeListPoolTableBucketElem<TVal>(key1, key2, key3, valueToAdopt, fBucketList[hashVal]);
  273.         fBucketList[hashVal] = newBucket;
  274.     }
  275.     //
  276.     //  Give this new one the next available id and add to the pointer list.
  277.     //  Expand the list if that is now required.
  278.     //
  279.     if (fIdCounter + 1 == fIdPtrsCount)
  280.     {
  281.         // Create a new count 1.5 times larger and allocate a new array
  282.         unsigned int newCount = (unsigned int)(fIdPtrsCount * 1.5);
  283.         TVal** newArray = new TVal*[newCount];
  284.         // Copy over the old contents to the new array
  285.         memcpy(newArray, fIdPtrs, fIdPtrsCount * sizeof(TVal*));
  286.         // Ok, toss the old array and store the new data
  287.         delete [] fIdPtrs;
  288.         fIdPtrs = newArray;
  289.         fIdPtrsCount = newCount;
  290.     }
  291.     const unsigned int retId = ++fIdCounter;
  292.     fIdPtrs[retId] = valueToAdopt;
  293.     // Return the id that we gave to this element
  294.     return retId;
  295. }
  296. // ---------------------------------------------------------------------------
  297. //  IDDeepNodeListPool: Private methods
  298. // ---------------------------------------------------------------------------
  299. template <class TVal> IDDeepNodeListPoolTableBucketElem<TVal>* IDDeepNodeListPool<TVal>::
  300. findBucketElem(const void* const key1, const XMLCh* const key2, const XMLCh* const key3, unsigned int& hashVal)
  301. {
  302.     // Hash the key
  303.     hashVal = fHash->getHashVal(key1, fHashModulus);
  304.     if (hashVal > fHashModulus)
  305.         ThrowXML(RuntimeException, XMLExcepts::HshTbl_BadHashFromKey);
  306.     // Search that bucket for the key
  307.     IDDeepNodeListPoolTableBucketElem<TVal>* curElem = fBucketList[hashVal];
  308.     while (curElem)
  309.     {
  310. if (fHash->equals(key1, curElem->fKey1) && (!XMLString::compareString(key2, curElem->fKey2)) && (!XMLString::compareString(key3, curElem->fKey3)))
  311.             return curElem;
  312.         curElem = curElem->fNext;
  313.     }
  314.     return 0;
  315. }
  316. template <class TVal> const IDDeepNodeListPoolTableBucketElem<TVal>* IDDeepNodeListPool<TVal>::
  317. findBucketElem(const void* const key1, const XMLCh* const key2, const XMLCh* const key3, unsigned int& hashVal) const
  318. {
  319.     // Hash the key
  320.     hashVal = fHash->getHashVal(key1, fHashModulus);
  321.     if (hashVal > fHashModulus)
  322.         ThrowXML(RuntimeException, XMLExcepts::HshTbl_BadHashFromKey);
  323.     // Search that bucket for the key
  324.     const IDDeepNodeListPoolTableBucketElem<TVal>* curElem = fBucketList[hashVal];
  325.     while (curElem)
  326.     {
  327.         if (fHash->equals(key1, curElem->fKey1) && (!XMLString::compareString(key2, curElem->fKey2)) && (!XMLString::compareString(key3, curElem->fKey3)))
  328.             return curElem;
  329.         curElem = curElem->fNext;
  330.     }
  331.     return 0;
  332. }
  333. // ---------------------------------------------------------------------------
  334. //  IDDeepNodeListPoolEnumerator: Constructors and Destructor
  335. // ---------------------------------------------------------------------------
  336. template <class TVal> IDDeepNodeListPoolEnumerator<TVal>::
  337. IDDeepNodeListPoolEnumerator(IDDeepNodeListPool<TVal>* const toEnum, const bool adopt)
  338. : fAdoptedElems(adopt), fCurIndex(0), fToEnum(toEnum)
  339. {
  340.     //
  341.     //  Find the next available bucket element in the pool. We use the id
  342.     //  array since its very easy to enumerator through by just maintaining
  343.     //  an index. If the id counter is zero, then its empty and we leave the
  344.     //  current index to zero.
  345.     //
  346.     if (toEnum->fIdCounter)
  347.         fCurIndex = 1;
  348. }
  349. template <class TVal> IDDeepNodeListPoolEnumerator<TVal>::~IDDeepNodeListPoolEnumerator()
  350. {
  351.     if (fAdoptedElems)
  352.         delete fToEnum;
  353. }
  354. // ---------------------------------------------------------------------------
  355. //  IDDeepNodeListPoolEnumerator: Enum interface
  356. // ---------------------------------------------------------------------------
  357. template <class TVal> bool IDDeepNodeListPoolEnumerator<TVal>::hasMoreElements() const
  358. {
  359.     // If our index is zero or past the end, then we are done
  360.     if (!fCurIndex || (fCurIndex > fToEnum->fIdCounter))
  361.         return false;
  362.     return true;
  363. }
  364. template <class TVal> TVal& IDDeepNodeListPoolEnumerator<TVal>::nextElement()
  365. {
  366.     // If our index is zero or past the end, then we are done
  367.     if (!fCurIndex || (fCurIndex > fToEnum->fIdCounter))
  368.         ThrowXML(NoSuchElementException, XMLExcepts::Enum_NoMoreElements);
  369.     // Return the current element and bump the index
  370.     return *fToEnum->fIdPtrs[fCurIndex++];
  371. }
  372. template <class TVal> void IDDeepNodeListPoolEnumerator<TVal>::Reset()
  373. {
  374.     fCurIndex = 0;
  375. }