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

xml/soap/webservice

开发平台:

C/C++

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