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

词法分析

开发平台:

Visual C++

  1. /*
  2.  * The Apache Software License, Version 1.1
  3.  *
  4.  * Copyright (c) 2001-2003 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: RefHash2KeysTableOf.hpp,v $
  58.  * Revision 1.5  2003/05/18 14:02:05  knoaman
  59.  * Memory manager implementation: pass per instance 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:03  tng
  82.  * The "hash" argument clashes with STL hash.  Fixed by Pei Yong Zhang.
  83.  *
  84.  * Revision 1.2  2001/05/11 13:26:28  tng
  85.  * Copyright update.
  86.  *
  87.  * Revision 1.1  2001/02/27 18:24:01  tng
  88.  * Schema: Add utility RefHash2KeysTableOf.
  89.  *
  90.  */
  91. #if !defined(REFHASH2KEYSTABLEOF_HPP)
  92. #define REFHASH2KEYSTABLEOF_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/XMLString.hpp>
  98. #include <xercesc/util/HashXMLCh.hpp>
  99. #include <xercesc/util/PlatformUtils.hpp>
  100. XERCES_CPP_NAMESPACE_BEGIN
  101. // This hash table is similar to RefHashTableOf with an additional integer as key2
  102. //
  103. //  Forward declare the enumerator so he can be our friend. Can you say
  104. //  friend? Sure...
  105. //
  106. template <class TVal> class RefHash2KeysTableOfEnumerator;
  107. template <class TVal> struct RefHash2KeysTableBucketElem;
  108. //
  109. //  This should really be a nested class, but some of the compilers we
  110. //  have to support cannot deal with that!
  111. //
  112. template <class TVal> struct RefHash2KeysTableBucketElem : public XMemory
  113. {
  114.     RefHash2KeysTableBucketElem(void* key1, int key2, TVal* const value, RefHash2KeysTableBucketElem<TVal>* next)
  115. : fData(value), fNext(next), fKey1(key1), fKey2(key2)
  116.         {
  117.         }
  118.     TVal*                           fData;
  119.     RefHash2KeysTableBucketElem<TVal>*   fNext;
  120. void* fKey1;
  121. int fKey2;
  122. };
  123. template <class TVal> class RefHash2KeysTableOf : public XMemory
  124. {
  125. public:
  126.     // -----------------------------------------------------------------------
  127.     //  Constructors and Destructor
  128.     // -----------------------------------------------------------------------
  129. // backwards compatability - default hasher is HashXMLCh
  130.     RefHash2KeysTableOf
  131.     (
  132.         const unsigned int modulus
  133. , MemoryManager* const manager = XMLPlatformUtils::fgMemoryManager
  134.     );
  135. // backwards compatability - default hasher is HashXMLCh
  136.     RefHash2KeysTableOf
  137.     (
  138.         const unsigned int modulus
  139.         , const bool adoptElems
  140.         , MemoryManager* const manager = XMLPlatformUtils::fgMemoryManager
  141.     );
  142. // if a hash function is passed in, it will be deleted when the hashtable is deleted.
  143. // use a new instance of the hasher class for each hashtable, otherwise one hashtable
  144. // may delete the hasher of a different hashtable if both use the same hasher.
  145.     RefHash2KeysTableOf
  146.     (
  147.         const unsigned int modulus
  148.         , const bool adoptElems
  149.         , HashBase* hashBase
  150.         , MemoryManager* const manager = XMLPlatformUtils::fgMemoryManager
  151.     );
  152.     ~RefHash2KeysTableOf();
  153.     // -----------------------------------------------------------------------
  154.     //  Element management
  155.     // -----------------------------------------------------------------------
  156.     bool isEmpty() const;
  157.     bool containsKey(const void* const key1, const int key2) const;
  158.     void removeKey(const void* const key1, const int key2);
  159.     void removeAll();
  160.     // -----------------------------------------------------------------------
  161.     //  Getters
  162.     // -----------------------------------------------------------------------
  163.     TVal* get(const void* const key1, const int key2);
  164.     const TVal* get(const void* const key1, const int key2) const;
  165.     // -----------------------------------------------------------------------
  166.     //  Putters
  167.     // -----------------------------------------------------------------------
  168. void put(void* key1, int key2, TVal* const valueToAdopt);
  169. private :
  170.     // -----------------------------------------------------------------------
  171.     //  Declare our friends
  172.     // -----------------------------------------------------------------------
  173.     friend class RefHash2KeysTableOfEnumerator<TVal>;
  174. private:
  175.     // -----------------------------------------------------------------------
  176.     //  Private methods
  177.     // -----------------------------------------------------------------------
  178.     RefHash2KeysTableBucketElem<TVal>* findBucketElem(const void* const key1, const int key2, unsigned int& hashVal);
  179.     const RefHash2KeysTableBucketElem<TVal>* findBucketElem(const void* const key1, const int key2, unsigned int& hashVal) const;
  180.     void removeBucketElem(const void* const key1, const int key2, unsigned int& hashVal);
  181. void initialize(const unsigned int modulus);
  182.     // -----------------------------------------------------------------------
  183.     //  Data members
  184.     //
  185.     //  fAdoptedElems
  186.     //      Indicates whether the values added are adopted or just referenced.
  187.     //      If adopted, then they are deleted when they are removed from the
  188.     //      hash table.
  189.     //
  190.     //  fBucketList
  191.     //      This is the array that contains the heads of all of the list
  192.     //      buckets, one for each possible hash value.
  193.     //
  194.     //  fHashModulus
  195.     //      The modulus used for this hash table, to hash the keys. This is
  196.     //      also the number of elements in the bucket list.
  197. //
  198. //  fHash
  199. //      The hasher for the key1 data type.
  200.     // -----------------------------------------------------------------------
  201.     MemoryManager*                      fMemoryManager;
  202.     bool                                fAdoptedElems;
  203.     RefHash2KeysTableBucketElem<TVal>** fBucketList;
  204.     unsigned int                        fHashModulus;
  205. HashBase* fHash;
  206. };
  207. //
  208. //  An enumerator for a value array. It derives from the basic enumerator
  209. //  class, so that value vectors can be generically enumerated.
  210. //
  211. template <class TVal> class RefHash2KeysTableOfEnumerator : public XMLEnumerator<TVal>
  212. {
  213. public :
  214.     // -----------------------------------------------------------------------
  215.     //  Constructors and Destructor
  216.     // -----------------------------------------------------------------------
  217.     RefHash2KeysTableOfEnumerator(RefHash2KeysTableOf<TVal>* const toEnum, const bool adopt = false);
  218.     virtual ~RefHash2KeysTableOfEnumerator();
  219.     // -----------------------------------------------------------------------
  220.     //  Enum interface
  221.     // -----------------------------------------------------------------------
  222.     bool hasMoreElements() const;
  223.     TVal& nextElement();
  224.     void Reset();
  225. private :
  226.     // -----------------------------------------------------------------------
  227.     //  Private methods
  228.     // -----------------------------------------------------------------------
  229.     void findNext();
  230.     // -----------------------------------------------------------------------
  231.     //  Data Members
  232.     //
  233.     //  fAdopted
  234.     //      Indicates whether we have adopted the passed vector. If so then
  235.     //      we delete the vector when we are destroyed.
  236.     //
  237.     //  fCurElem
  238.     //      This is the current bucket bucket element that we are on.
  239.     //
  240.     //  fCurHash
  241.     //      The is the current hash buck that we are working on. Once we hit
  242.     //      the end of the bucket that fCurElem is in, then we have to start
  243.     //      working this one up to the next non-empty bucket.
  244.     //
  245.     //  fToEnum
  246.     //      The value array being enumerated.
  247.     // -----------------------------------------------------------------------
  248.     bool                                  fAdopted;
  249.     RefHash2KeysTableBucketElem<TVal>*         fCurElem;
  250.     unsigned int                          fCurHash;
  251.     RefHash2KeysTableOf<TVal>*                 fToEnum;
  252. };
  253. XERCES_CPP_NAMESPACE_END
  254. #if !defined(XERCES_TMPLSINC)
  255. #include <xercesc/util/RefHash2KeysTableOf.c>
  256. #endif
  257. #endif