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

词法分析

开发平台:

Visual C++

  1. /*
  2.  * The Apache Software License, Version 1.1
  3.  *
  4.  * Copyright (c) 1999-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) 1999, 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: StringPool.cpp,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/16 06:01:52  knoaman
  62.  * Partial implementation of the configurable memory manager.
  63.  *
  64.  * Revision 1.3  2003/05/15 19:07:45  knoaman
  65.  * Partial implementation of the configurable memory manager.
  66.  *
  67.  * Revision 1.2  2002/11/04 15:22:04  tng
  68.  * C++ Namespace Support.
  69.  *
  70.  * Revision 1.1.1.1  2002/02/01 22:22:12  peiyongz
  71.  * sane_include
  72.  *
  73.  * Revision 1.6  2001/10/22 15:43:35  tng
  74.  * [Bug 3361] "String pool id was not legal" error in Attributes::getURI().
  75.  *
  76.  * Revision 1.5  2000/07/07 22:16:51  jpolast
  77.  * remove old put(value) function.  use put(key,value) instead.
  78.  *
  79.  * Revision 1.4  2000/05/15 22:31:20  andyh
  80.  * Replace #include<memory.h> with <string.h> everywhere.
  81.  *
  82.  * Revision 1.3  2000/03/02 19:54:46  roddey
  83.  * This checkin includes many changes done while waiting for the
  84.  * 1.1.0 code to be finished. I can't list them all here, but a list is
  85.  * available elsewhere.
  86.  *
  87.  * Revision 1.2  2000/02/06 07:48:04  rahulj
  88.  * Year 2K copyright swat.
  89.  *
  90.  * Revision 1.1.1.1  1999/11/09 01:05:10  twl
  91.  * Initial checkin
  92.  *
  93.  * Revision 1.2  1999/11/08 20:45:14  rahul
  94.  * Swat for adding in Product name and CVS comment log variable.
  95.  *
  96.  */
  97. // ---------------------------------------------------------------------------
  98. //  Includes
  99. // ---------------------------------------------------------------------------
  100. #include <xercesc/util/StringPool.hpp>
  101. XERCES_CPP_NAMESPACE_BEGIN
  102. // ---------------------------------------------------------------------------
  103. //  StringPool::PoolElem: Constructors and Destructor
  104. // ---------------------------------------------------------------------------
  105. XMLStringPool::PoolElem::PoolElem( const   XMLCh* const string
  106.                                  , const unsigned int id
  107.                                  , MemoryManager* const manager) :
  108.     fId(id)
  109.     , fString(0)
  110.     , fMemoryManager(manager)
  111. {
  112.     fString = XMLString::replicate(string, fMemoryManager);
  113. }
  114. XMLStringPool::PoolElem::~PoolElem()
  115. {
  116.     fMemoryManager->deallocate(fString); //delete [] fString;
  117. }
  118. // ---------------------------------------------------------------------------
  119. //  StringPool::PoolElem: Public methods
  120. // ---------------------------------------------------------------------------
  121. void
  122. XMLStringPool::PoolElem::reset(const XMLCh* const string, const unsigned int id)
  123. {
  124.     fId = id;
  125.     fMemoryManager->deallocate(fString);//delete [] fString;
  126.     fString = XMLString::replicate(string, fMemoryManager);
  127. }
  128. // ---------------------------------------------------------------------------
  129. //  XMLStringPool: Constructors and Destructor
  130. // ---------------------------------------------------------------------------
  131. XMLStringPool::XMLStringPool(const  unsigned int  modulus,
  132.                              MemoryManager* const manager) :
  133.     fMemoryManager(manager)
  134.     , fIdMap(0)
  135.     , fHashTable(0)
  136.     , fMapCapacity(64)
  137.     , fCurId(1)
  138. {
  139.     // Create the hash table, passing it the modulus
  140.     fHashTable = new (fMemoryManager) RefHashTableOf<PoolElem>(modulus, fMemoryManager);
  141.     // Do an initial allocation of the id map and zero it all out
  142.     fIdMap = (PoolElem**) fMemoryManager->allocate
  143.     (
  144.         fMapCapacity * sizeof(PoolElem*)
  145.     ); //new PoolElem*[fMapCapacity];
  146.     memset(fIdMap, 0, sizeof(PoolElem*) * fMapCapacity);
  147. }
  148. XMLStringPool::~XMLStringPool()
  149. {
  150.     delete fHashTable;
  151.     fMemoryManager->deallocate(fIdMap); //delete [] fIdMap;
  152. }
  153. // ---------------------------------------------------------------------------
  154. //  XMLStringPool: Pool management methods
  155. // ---------------------------------------------------------------------------
  156. unsigned int XMLStringPool::addOrFind(const XMLCh* const newString)
  157. {
  158.     PoolElem* elemToFind = fHashTable->get(newString);
  159.     if (elemToFind)
  160.         return elemToFind->fId;
  161.     return addNewEntry(newString);
  162. }
  163. bool XMLStringPool::exists(const XMLCh* const newString) const
  164. {
  165.     return fHashTable->containsKey(newString);
  166. }
  167. bool XMLStringPool::exists(const unsigned int id) const
  168. {
  169.     if (!id || (id >= fCurId))
  170.         return false;
  171.     return true;
  172. }
  173. void XMLStringPool::flushAll()
  174. {
  175.     fCurId = 1;
  176.     fHashTable->removeAll();
  177. }
  178. unsigned int XMLStringPool::getId(const XMLCh* const toFind) const
  179. {
  180.     PoolElem* elemToFind = fHashTable->get(toFind);
  181.     if (elemToFind)
  182.         return elemToFind->fId;
  183.     // Not found, so return zero, which is never a legal id
  184.     return 0;
  185. }
  186. const XMLCh* XMLStringPool::getValueForId(const unsigned int id) const
  187. {
  188.     if (!id || (id >= fCurId))
  189.         ThrowXML(IllegalArgumentException, XMLExcepts::StrPool_IllegalId);
  190.     // Just index the id map and return that element's string
  191.     return fIdMap[id]->fString;
  192. }
  193. // ---------------------------------------------------------------------------
  194. //  XMLStringPool: Private helper methods
  195. // ---------------------------------------------------------------------------
  196. unsigned int XMLStringPool::addNewEntry(const XMLCh* const newString)
  197. {
  198.     // See if we need to expand the id map
  199.     if (fCurId == fMapCapacity)
  200.     {
  201.         // Calculate the new capacity, create a temp new map, and zero it
  202.         const unsigned int newCap = (unsigned int)(fMapCapacity * 1.5);
  203.         PoolElem** newMap = (PoolElem**) fMemoryManager->allocate
  204.         (
  205.             newCap * sizeof(PoolElem*)
  206.         ); //new PoolElem*[newCap];
  207.         memset(newMap, 0, sizeof(PoolElem*) * newCap);
  208.         //
  209.         //  Copy over the old elements from the old map. They are just pointers
  210.         //  so we can do it all at once.
  211.         //
  212.         memcpy(newMap, fIdMap, sizeof(PoolElem*) * fMapCapacity);
  213.         // Clean up the old map and store the new info
  214.         fMemoryManager->deallocate(fIdMap); //delete [] fIdMap;
  215.         fIdMap = newMap;
  216.         fMapCapacity = newCap;
  217.     }
  218.     //
  219.     //  Ok, now create a new element and add it to the hash table. Then store
  220.     //  this new element in the id map at the current id index, then bump the
  221.     //  id index.
  222.     //
  223.     PoolElem* newElem = new (fMemoryManager) PoolElem(newString, fCurId, fMemoryManager);
  224.     fHashTable->put((void*)(newElem->getKey()), newElem);
  225.     fIdMap[fCurId] = newElem;
  226.     // Bump the current id and return the id of the new elem we just added
  227.     fCurId++;
  228.     return newElem->fId;
  229. }
  230. XERCES_CPP_NAMESPACE_END