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

词法分析

开发平台:

Visual C++

  1. #ifndef DOMStringPool_HEADER_GUARD_
  2. #define DOMStringPool_HEADER_GUARD_
  3. /*
  4.  * The Apache Software License, Version 1.1
  5.  *
  6.  * Copyright (c) 2001-2002 The Apache Software Foundation.  All rights
  7.  * reserved.
  8.  *
  9.  * Redistribution and use in source and binary forms, with or without
  10.  * modification, are permitted provided that the following conditions
  11.  * are met:
  12.  *
  13.  * 1. Redistributions of source code must retain the above copyright
  14.  *    notice, this list of conditions and the following disclaimer.
  15.  *
  16.  * 2. Redistributions in binary form must reproduce the above copyright
  17.  *    notice, this list of conditions and the following disclaimer in
  18.  *    the documentation and/or other materials provided with the
  19.  *    distribution.
  20.  *
  21.  * 3. The end-user documentation included with the redistribution,
  22.  *    if any, must include the following acknowledgment:
  23.  *       "This product includes software developed by the
  24.  *        Apache Software Foundation (http://www.apache.org/)."
  25.  *    Alternately, this acknowledgment may appear in the software itself,
  26.  *    if and wherever such third-party acknowledgments normally appear.
  27.  *
  28.  * 4. The names "Xerces" and "Apache Software Foundation" must
  29.  *    not be used to endorse or promote products derived from this
  30.  *    software without prior written permission. For written
  31.  *    permission, please contact apache@apache.org.
  32.  *
  33.  * 5. Products derived from this software may not be called "Apache",
  34.  *    nor may "Apache" appear in their name, without prior written
  35.  *    permission of the Apache Software Foundation.
  36.  *
  37.  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
  38.  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  39.  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  40.  * DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
  41.  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  42.  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  43.  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
  44.  * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  45.  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  46.  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
  47.  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  48.  * SUCH DAMAGE.
  49.  * ====================================================================
  50.  *
  51.  * This software consists of voluntary contributions made by many
  52.  * individuals on behalf of the Apache Software Foundation, and was
  53.  * originally based on software copyright (c) 2001, International
  54.  * Business Machines, Inc., http://www.ibm.com .  For more information
  55.  * on the Apache Software Foundation, please see
  56.  * <http://www.apache.org/>.
  57.  */
  58. /*
  59.  * $Id: DOMStringPool.hpp,v 1.4 2003/03/07 18:07:17 tng Exp $
  60.  */
  61. //
  62. //  This file is part of the internal implementation of the C++ XML DOM.
  63. //  It should NOT be included or used directly by application programs.
  64. //
  65. //  Applications should include the file <xercesc/dom/DOM.hpp> for the entire
  66. //  DOM API, or xercesc/dom/DOM*.hpp for individual DOM classes, where the class
  67. //  name is substituded for the *.
  68. //
  69. #include <xercesc/util/XercesDefs.hpp>
  70. XERCES_CPP_NAMESPACE_BEGIN
  71. struct  DOMStringPoolEntry;
  72. class   DOMDocumentImpl;
  73. //
  74. // DOMStringPool is a hash table of XMLCh* Strings.
  75. //  Each DOM Document maintains a DOMStringPool containing a XMLCh* String
  76. //  for each Element tag name and Attribute Name that has been added
  77. //  to the document.  When creating additional elements or attributes,
  78. //  if the name has been seen before, the already existing string
  79. //  will be reused.
  80. //
  81. class DOMStringPool
  82. {
  83. public:
  84.     DOMStringPool(int  hashTableSize, DOMDocumentImpl *doc);
  85.     ~DOMStringPool();
  86.     const XMLCh *getPooledString(const XMLCh *in);
  87. private:
  88.     DOMStringPool(const DOMStringPool &other);      // Copy constructor and assignment
  89.     DOMStringPool& operator = (const DOMStringPool &other); //  of DOMStringPool are not supported.
  90.     DOMDocumentImpl     *fDoc;
  91.     DOMStringPoolEntry **fHashTable;
  92.     int                 fHashTableSize;
  93. };
  94. //
  95. // DOMBuffer is a lightweight text buffer
  96. // The buffer is not nul terminated until some asks to see the raw buffer
  97. // contents. This also avoids overhead during append operations.
  98. class DOMBuffer
  99. {
  100. public :
  101.     // -----------------------------------------------------------------------
  102.     //  Constructors and Destructor
  103.     // -----------------------------------------------------------------------
  104.     DOMBuffer(DOMDocumentImpl *doc, int capacity = 31);
  105.     DOMBuffer(DOMDocumentImpl *doc, const XMLCh* string);
  106.     ~DOMBuffer()
  107.     {
  108.     }
  109.     // -----------------------------------------------------------------------
  110.     //  Buffer Management
  111.     // -----------------------------------------------------------------------
  112.     void append
  113.     (
  114.         const   XMLCh* const    chars
  115.         , const unsigned int    count = 0
  116.     );
  117.     const XMLCh* getRawBuffer() const
  118.     {
  119.         fBuffer[fIndex] = 0;
  120.         return fBuffer;
  121.     }
  122.     void reset()
  123.     {
  124.         fIndex = 0;
  125.         fBuffer[0] = 0;
  126.     }
  127.     void set
  128.     (
  129.         const   XMLCh* const    chars
  130.         , const unsigned int    count = 0
  131.     );
  132.     void chop
  133.     (
  134.         const unsigned int    count
  135.     )
  136.     {
  137.         fBuffer[count] = 0;
  138.         fIndex = count;
  139.     }
  140.     // -----------------------------------------------------------------------
  141.     //  Getters
  142.     // -----------------------------------------------------------------------
  143.     unsigned int getLen() const
  144.     {
  145.         return fIndex;
  146.     }
  147.     // -----------------------------------------------------------------------
  148.     //  Private helpers
  149.     // -----------------------------------------------------------------------
  150.     void expandCapacity(const unsigned int extraNeeded);
  151. private :
  152.     // -----------------------------------------------------------------------
  153.     //  Private data members
  154.     //
  155.     //  fBuffer
  156.     //      The pointer to the buffer data. Its grown as needed. Its always
  157.     //      one larger than fCapacity, to leave room for the null terminator.
  158.     //
  159.     //  fIndex
  160.     //      The current index into the buffer, as characters are appended
  161.     //      to it. If its zero, then the buffer is empty.
  162.     //
  163.     //  fCapacity
  164.     //      The current capacity of the buffer. Its actually always one
  165.     //      larger, to leave room for the null terminator.
  166.     //
  167.     //  fDoc
  168.     //      For allocating memory
  169.     // -----------------------------------------------------------------------
  170.     XMLCh*          fBuffer;
  171.     unsigned int    fIndex;
  172.     unsigned int    fCapacity;
  173.     DOMDocumentImpl* fDoc;
  174. };
  175. XERCES_CPP_NAMESPACE_END
  176. #endif