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