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

词法分析

开发平台:

Visual 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: RefHash3KeysIdPool.hpp,v $
  58.  * Revision 1.5  2003/05/16 06:01:52  knoaman
  59.  * Partial implementation of the configurable memory manager.
  60.  *
  61.  * Revision 1.4  2003/05/15 19:04:35  knoaman
  62.  * Partial implementation of the configurable memory manager.
  63.  *
  64.  * Revision 1.3  2002/11/04 15:22:04  tng
  65.  * C++ Namespace Support.
  66.  *
  67.  * Revision 1.2  2002/06/12 17:15:12  tng
  68.  * Remove redundant include header file.
  69.  *
  70.  * Revision 1.1.1.1  2002/02/01 22:22:12  peiyongz
  71.  * sane_include
  72.  *
  73.  * Revision 1.4  2001/12/22 01:06:08  jasons
  74.  * Made the destructors virtual for:
  75.  *
  76.  * * ~RefHash2KeysTableOfEnumerator
  77.  * * ~RefHash3KeysIdPoolEnumerator
  78.  *
  79.  * This fixes bug #5514
  80.  *
  81.  * Revision 1.3  2001/06/04 13:45:04  tng
  82.  * The "hash" argument clashes with STL hash.  Fixed by Pei Yong Zhang.
  83.  *
  84.  * Revision 1.2  2001/05/11 13:26:29  tng
  85.  * Copyright update.
  86.  *
  87.  * Revision 1.1  2001/03/21 21:56:12  tng
  88.  * Schema: Add Schema Grammar, Schema Validator, and split the DTDValidator into DTDValidator, DTDScanner, and DTDGrammar.
  89.  *
  90.  */
  91. #if !defined(REFHASH3KEYSIDPOOL_HPP)
  92. #define REFHASH3KEYSIDPOOL_HPP
  93. #include <xercesc/util/HashBase.hpp>
  94. #include <xercesc/util/IllegalArgumentException.hpp>
  95. #include <xercesc/util/NoSuchElementException.hpp>
  96. #include <xercesc/util/RuntimeException.hpp>
  97. #include <xercesc/util/PlatformUtils.hpp>
  98. #include <xercesc/util/XMLString.hpp>
  99. #include <xercesc/util/HashXMLCh.hpp>
  100. XERCES_CPP_NAMESPACE_BEGIN
  101. // This hash table is a combination of RefHash2KeyTableOf (with an additional integer as key3)
  102. // and NameIdPool with an id as index
  103. //
  104. //  Forward declare the enumerator so he can be our friend. Can you say
  105. //  friend? Sure...
  106. //
  107. template <class TVal> class RefHash3KeysIdPoolEnumerator;
  108. template <class TVal> struct RefHash3KeysTableBucketElem;
  109. //
  110. //  This should really be a nested class, but some of the compilers we
  111. //  have to support cannot deal with that!
  112. //
  113. template <class TVal> struct RefHash3KeysTableBucketElem : public XMemory
  114. {
  115.     RefHash3KeysTableBucketElem(
  116.               void* key1
  117.               , int key2
  118.               , int key3
  119.               , TVal* const value
  120.               , RefHash3KeysTableBucketElem<TVal>* next) :
  121. fData(value)
  122.     , fNext(next)
  123.     , fKey1(key1)
  124.     , fKey2(key2)
  125.     , fKey3(key3)
  126.     {
  127.     }
  128.     TVal*  fData;
  129.     RefHash3KeysTableBucketElem<TVal>*   fNext;
  130.     void*  fKey1;
  131.     int    fKey2;
  132.     int    fKey3;
  133. };
  134. template <class TVal> class RefHash3KeysIdPool : public XMemory
  135. {
  136. public:
  137.     // -----------------------------------------------------------------------
  138.     //  Constructors and Destructor
  139.     // -----------------------------------------------------------------------
  140.     // backwards compatability - default hasher is HashXMLCh
  141.     RefHash3KeysIdPool
  142.     (
  143.           const unsigned int   modulus
  144.         , const unsigned int   initSize = 128
  145.         , MemoryManager* const manager = XMLPlatformUtils::fgMemoryManager
  146.     );
  147.     // backwards compatability - default hasher is HashXMLCh
  148.     RefHash3KeysIdPool
  149.     (
  150.           const unsigned int   modulus
  151.         , const bool           adoptElems
  152.         , const unsigned int   initSize = 128
  153.         , MemoryManager* const manager = XMLPlatformUtils::fgMemoryManager
  154.     );
  155.     // if a hash function is passed in, it will be deleted when the hashtable is deleted.
  156.     // use a new instance of the hasher class for each hashtable, otherwise one hashtable
  157.     // may delete the hasher of a different hashtable if both use the same hasher.
  158.     RefHash3KeysIdPool
  159.     (
  160.           const unsigned int   modulus
  161.         , const bool           adoptElems
  162.         , HashBase* hashBase
  163.         , const unsigned int initSize = 128
  164.         , MemoryManager* const manager = XMLPlatformUtils::fgMemoryManager
  165.     );
  166.     ~RefHash3KeysIdPool();
  167.     // -----------------------------------------------------------------------
  168.     //  Element management
  169.     // -----------------------------------------------------------------------
  170.     bool isEmpty() const;
  171.     bool containsKey(const void* const key1, const int key2, const int key3) const;
  172.     void removeAll();
  173.     // -----------------------------------------------------------------------
  174.     //  Getters
  175.     // -----------------------------------------------------------------------
  176.     TVal* getByKey(const void* const key1, const int key2, const int key3);
  177.     const TVal* getByKey(const void* const key1, const int key2, const int key3) const;
  178.     TVal* getById(const unsigned elemId);
  179.     const TVal* getById(const unsigned elemId) const;
  180.     // -----------------------------------------------------------------------
  181.     //  Putters
  182.     // -----------------------------------------------------------------------
  183. unsigned int put(void* key1, int key2, int key3, TVal* const valueToAdopt);
  184. private :
  185.     // -----------------------------------------------------------------------
  186.     //  Declare our friends
  187.     // -----------------------------------------------------------------------
  188.     friend class RefHash3KeysIdPoolEnumerator<TVal>;
  189. private:
  190.     // -----------------------------------------------------------------------
  191.     //  Private methods
  192.     // -----------------------------------------------------------------------
  193.     RefHash3KeysTableBucketElem<TVal>* findBucketElem(const void* const key1, const int key2, const int key3, unsigned int& hashVal);
  194.     const RefHash3KeysTableBucketElem<TVal>* findBucketElem(const void* const key1, const int key2, const int key3, unsigned int& hashVal) const;
  195.     void initialize(const unsigned int modulus);
  196.     // -----------------------------------------------------------------------
  197.     //  Data members
  198.     //
  199.     //  fAdoptedElems
  200.     //      Indicates whether the values added are adopted or just referenced.
  201.     //      If adopted, then they are deleted when they are removed from the
  202.     //      hash table.
  203.     //
  204.     //  fBucketList
  205.     //      This is the array that contains the heads of all of the list
  206.     //      buckets, one for each possible hash value.
  207.     //
  208.     //  fHashModulus
  209.     //      The modulus used for this hash table, to hash the keys. This is
  210.     //      also the number of elements in the bucket list.
  211.     //
  212.     //  fHash
  213.     //      The hasher for the key1 data type.
  214.     //
  215.     //  fIdPtrs
  216.     //  fIdPtrsCount
  217.     //      This is the array of pointers to the bucket elements in order of
  218.     //      their assigned ids. So taking id N and referencing this array
  219.     //      gives you the element with that id. The count field indicates
  220.     //      the current size of this list. When fIdCounter+1 reaches this
  221.     //      value the list must be expanded.
  222.     //
  223.     //  fIdCounter
  224.     //      This is used to give out unique ids to added elements. It starts
  225.     //      at zero (which means empty), and is bumped up for each newly added
  226.     //      element. So the first element is 1, the next is 2, etc... This
  227.     //      means that this value is set to the top index of the fIdPtrs array.
  228.     // -----------------------------------------------------------------------
  229.     MemoryManager*                      fMemoryManager;
  230.     bool                                fAdoptedElems;
  231.     RefHash3KeysTableBucketElem<TVal>** fBucketList;
  232.     unsigned int                        fHashModulus;
  233.     HashBase*                           fHash;
  234.     TVal**                              fIdPtrs;
  235.     unsigned int                        fIdPtrsCount;
  236.     unsigned int                        fIdCounter;
  237. };
  238. //
  239. //  An enumerator for a value array. It derives from the basic enumerator
  240. //  class, so that value vectors can be generically enumerated.
  241. //
  242. template <class TVal> class RefHash3KeysIdPoolEnumerator : public XMLEnumerator<TVal>
  243. {
  244. public :
  245.     // -----------------------------------------------------------------------
  246.     //  Constructors and Destructor
  247.     // -----------------------------------------------------------------------
  248.     RefHash3KeysIdPoolEnumerator(RefHash3KeysIdPool<TVal>* const toEnum, const bool adopt = false);
  249.     virtual ~RefHash3KeysIdPoolEnumerator();
  250.     // -----------------------------------------------------------------------
  251.     //  Enum interface
  252.     // -----------------------------------------------------------------------
  253.     bool hasMoreElements() const;
  254.     TVal& nextElement();
  255.     void Reset();
  256. private :
  257.     // -----------------------------------------------------------------------
  258.     //  Data Members
  259.     //  fAdoptedElems
  260.     //      Indicates whether the values added are adopted or just referenced.
  261.     //      If adopted, then they are deleted when they are removed from the
  262.     //      hash table
  263.     //
  264.     //  fCurIndex
  265.     //      This is the current index into the pool's id mapping array. This
  266.     //      is now we enumerate it.
  267.     //
  268.     //  fToEnum
  269.     //      The name id pool that is being enumerated.
  270.     // -----------------------------------------------------------------------
  271.     bool                       fAdoptedElems;
  272.     unsigned int               fCurIndex;
  273.     RefHash3KeysIdPool<TVal>*  fToEnum;
  274. };
  275. XERCES_CPP_NAMESPACE_END
  276. #if !defined(XERCES_TMPLSINC)
  277. #include <xercesc/util/RefHash3KeysIdPool.c>
  278. #endif
  279. #endif