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

词法分析

开发平台:

Visual C++

  1. /*
  2.  * The Apache Software License, Version 1.1
  3.  *
  4.  * Copyright (c) 1999-2002 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. #include "DOMString.hpp"
  57. #include "AttrImpl.hpp"
  58. #include "NodeIDMap.hpp"
  59. #include <xercesc/util/XMLString.hpp>
  60. #include <xercesc/util/RuntimeException.hpp>
  61. #include <stdio.h>
  62. XERCES_CPP_NAMESPACE_BEGIN
  63. static const int gPrimes[] = {997, 9973, 99991, 999983, 0 };  // To do - add a few more.
  64. static const float gMaxFill = 0.8f;   // The maximum fraction of the total
  65.                                     // table entries to consume before exanding.
  66. NodeIDMap::NodeIDMap(int initialSize,
  67.                      MemoryManager* const manager)
  68. : fMemoryManager(manager)
  69. {
  70.     for (fSizeIndex = 0; gPrimes[fSizeIndex] < initialSize; fSizeIndex++)
  71.     {
  72.         if (gPrimes[fSizeIndex] == 0)
  73.         {
  74.             // We need a bigger size than the largest available one.
  75.             //   Big trouble.
  76.             fSizeIndex--;
  77.             ThrowXML(RuntimeException, XMLExcepts::NodeIDMap_GrowErr);
  78.         }
  79.     }
  80.     fSize = gPrimes[fSizeIndex];
  81.     fNumEntries = 0;
  82.     fMaxEntries = (unsigned long)(float(fSize) * gMaxFill);
  83.     fTable = (AttrImpl**) manager->allocate(fSize * sizeof(AttrImpl*));// new AttrImpl *[fSize];
  84.     unsigned int i;
  85.     for (i=0; i<fSize; i++)
  86.         fTable[i] = 0;
  87. };
  88. NodeIDMap::~NodeIDMap()
  89. {
  90.     // delete[] fTable;
  91.     fMemoryManager->deallocate(fTable);//fTable = 0;
  92. };
  93. void NodeIDMap::add(AttrImpl *attr)
  94. {
  95. //
  96. //  If the table is getting too full, grow it.  We arbitrarily limit
  97. //   the table to 80 full, which should limit the average number of
  98. //   rehashes to a reasonable value.
  99. //
  100. if (fNumEntries >= fMaxEntries)
  101. growTable();
  102.     fNumEntries++;
  103. //
  104. // Hash the value string from the ID attribute being added to the table
  105. //      0 < Initial hash value < table size.
  106. //      An initial hash of zero would cause the rehash to fail.
  107. //
  108. DOMString id=attr->getValue();
  109. unsigned int initalHash = XMLString::hashN(id.rawBuffer(), id.length(), fSize-1);
  110. initalHash++;
  111. unsigned int currentHash = initalHash;
  112. //
  113. // Loop looking for an empty slot for this ID.
  114. //   Don't even bother checking to see if the ID is already there -
  115. //   the table is only filled by the parser from valid documents, which
  116. //   can not have duplicates.  Behavior of invalid docs is not defined.
  117. //
  118.     while (true)
  119. {
  120. AttrImpl *tableSlot = fTable[currentHash];
  121. if (tableSlot == 0 ||
  122. tableSlot == (AttrImpl *)-1)
  123. break;
  124. currentHash += initalHash;  // rehash
  125.         if (currentHash >= fSize)
  126.             currentHash = currentHash % fSize;
  127.     }
  128.     //
  129.     // We've found our slot.  Stick the pointer to the attr into it.
  130.     //
  131.     fTable[currentHash] = attr;
  132. };
  133. void NodeIDMap::remove(AttrImpl *attr)
  134. {
  135.     //
  136. // Hash the value string from the ID attribute being added to the table
  137. //      0 < Initial hash value < table size.
  138. //      An initial hash of zero would cause the rehash to fail.
  139. //
  140. DOMString id=attr->getValue();
  141. unsigned int initalHash = XMLString::hashN(id.rawBuffer(), id.length(), fSize-1);
  142. initalHash++;
  143. unsigned int currentHash = initalHash;
  144. //
  145. // Loop looking for a slot pointing to an attr with this id.
  146.     //
  147.     while (true)
  148. {
  149. AttrImpl *tableSlot = fTable[currentHash];
  150. if (tableSlot == 0)
  151.         {
  152.             // There is no matching entry in the table
  153.             return;
  154.         }
  155.         if (tableSlot == attr)
  156.         {
  157.             //  Found the attribute.  Set the slot to -1 to indicate
  158.             //   that it was once used, meaning that lookups, while never
  159.             //   matching here, can not stop either, but must rehash again
  160.             //   and continue searching.
  161.             fTable[currentHash] = (AttrImpl *)-1;
  162.             return;
  163.         }
  164.         currentHash += initalHash;  // rehash.
  165.         if (currentHash >= fSize)
  166.             currentHash = currentHash % fSize;
  167.     }
  168. };
  169. AttrImpl *NodeIDMap::find(const DOMString &id)
  170. {
  171.     //
  172.     //  Get the hashcode for the supplied string.
  173.     //
  174. unsigned int initalHash = XMLString::hashN(id.rawBuffer(), id.length(), fSize-1);
  175. initalHash++;
  176. unsigned int currentHash = initalHash;
  177. //
  178. // Loop looking for a slot pointing to an attr with this id.
  179.     //
  180.     while (true)
  181. {
  182. AttrImpl *tableSlot = fTable[currentHash];
  183. if (tableSlot == 0)
  184.         {
  185.             // There is no matching entry in the table
  186.             return 0;
  187.         }
  188.         if ((tableSlot != (AttrImpl *)-1) && tableSlot->getValue().equals(id))
  189.             return tableSlot;
  190.         currentHash += initalHash;  // rehash
  191.         if (currentHash >= fSize)
  192.             currentHash = currentHash % fSize;
  193.     }
  194.     return 0;  // Never gets here, but keeps some compilers happy.
  195. };
  196. //
  197. //  Grow the table to the next larger size.
  198. //      It has gotten too full for efficient operation.
  199. //     (We never fill it all the way)
  200. //
  201. void NodeIDMap::growTable()
  202. {
  203.     AttrImpl     **oldTable = fTable;
  204.     unsigned int oldSize  = fSize;
  205.     //
  206.     //  Figure the new table size.
  207.     //
  208. #if defined(XERCES_DEBUG)
  209.     fprintf(stderr, "growing...n");
  210. #endif
  211.     fSizeIndex++;
  212.     fSize = gPrimes[fSizeIndex];
  213.     if (fSize == 0)
  214.     {
  215.         // We need to grow bigger than the largest available size.
  216.         //   Big trouble.
  217.         fSizeIndex--;
  218.         ThrowXML(RuntimeException, XMLExcepts::NodeIDMap_GrowErr);
  219.     }
  220.     //
  221.     //  Allocate the new table.
  222.     //
  223.     fTable = (AttrImpl**) fMemoryManager->allocate(fSize * sizeof(AttrImpl*));//new AttrImpl *[fSize];
  224.     unsigned int i;
  225.     for (i=0; i<fSize; i++)
  226.         fTable[i] = 0;
  227.     fMaxEntries = (unsigned long)(float(fSize) * gMaxFill);
  228.     //
  229.     // Move entries over from the old table to the new one.
  230.     //
  231.     for (i=0; i<oldSize; i++)
  232.     {
  233.         if ((oldTable[i] != 0)  &&  (oldTable[i] != (AttrImpl *)-1))
  234.             add(oldTable[i]);
  235.     }
  236.     fMemoryManager->deallocate(oldTable);//delete [] oldTable;
  237. };
  238. XERCES_CPP_NAMESPACE_END