XMLBuffer.hpp
上传用户: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: XMLBuffer.hpp,v $
  58.  * Revision 1.5  2003/05/16 21:36:55  knoaman
  59.  * Memory manager implementation: Modify constructors to pass in the memory manager.
  60.  *
  61.  * Revision 1.4  2003/05/15 18:26:07  knoaman
  62.  * Partial implementation of the configurable memory manager.
  63.  *
  64.  * Revision 1.3  2002/11/04 15:00:21  tng
  65.  * C++ Namespace Support.
  66.  *
  67.  * Revision 1.2  2002/08/21 18:54:52  tng
  68.  * [Bug 11869] Add the const modifier (XMLBuffer.hpp).
  69.  *
  70.  * Revision 1.1.1.1  2002/02/01 22:21:51  peiyongz
  71.  * sane_include
  72.  *
  73.  * Revision 1.6  2001/06/27 20:29:09  tng
  74.  * [Bug 2365] Huge performance problem with the parser in XMLScanner::sendCharData() .  By David Bertoni.
  75.  *
  76.  * Revision 1.5  2000/03/02 19:54:24  roddey
  77.  * This checkin includes many changes done while waiting for the
  78.  * 1.1.0 code to be finished. I can't list them all here, but a list is
  79.  * available elsewhere.
  80.  *
  81.  * Revision 1.4  2000/02/24 20:00:22  abagchi
  82.  * Swat for removing Log from API docs
  83.  *
  84.  * Revision 1.3  2000/02/15 01:21:30  roddey
  85.  * Some initial documentation improvements. More to come...
  86.  *
  87.  * Revision 1.2  2000/02/06 07:47:47  rahulj
  88.  * Year 2K copyright swat.
  89.  *
  90.  * Revision 1.1.1.1  1999/11/09 01:08:29  twl
  91.  * Initial checkin
  92.  *
  93.  * Revision 1.2  1999/11/08 20:44:36  rahul
  94.  * Swat for adding in Product name and CVS comment log variable.
  95.  *
  96.  */
  97. #if !defined(XMLBUFFER_HPP)
  98. #define XMLBUFFER_HPP
  99. #include <xercesc/util/XMemory.hpp>
  100. #include <xercesc/util/PlatformUtils.hpp>
  101. #include <xercesc/framework/MemoryManager.hpp>
  102. XERCES_CPP_NAMESPACE_BEGIN
  103. /**
  104.  *  XMLBuffer is a lightweight, expandable Unicode text buffer. Since XML is
  105.  *  inherently theoretically unbounded in terms of the sizes of things, we
  106.  *  very often need to have expandable buffers. The primary concern here is
  107.  *  that appends of characters and other buffers or strings be very fast, so
  108.  *  it always maintains the current buffer size.
  109.  *
  110.  *  The buffer is not nul terminated until some asks to see the raw buffer
  111.  *  contents. This also avoids overhead during append operations.
  112.  */
  113.  class XMLPARSER_EXPORT XMLBuffer : public XMemory
  114. {
  115. public :
  116.     // -----------------------------------------------------------------------
  117.     //  Constructors and Destructor
  118.     // -----------------------------------------------------------------------
  119.     /** @name Constructor */
  120.     //@{
  121.     XMLBuffer(int capacity = 1023
  122.               , MemoryManager* const manager = XMLPlatformUtils::fgMemoryManager) :
  123.         fUsed(false)
  124.         , fIndex(0)
  125.         , fCapacity(capacity)
  126.         , fMemoryManager(manager)
  127.         , fBuffer(0)
  128.     {
  129.         // Buffer is one larger than capacity, to allow for zero term
  130.         fBuffer = (XMLCh*) manager->allocate((capacity+1) * sizeof(XMLCh)); //new XMLCh[fCapacity+1];
  131.         // Keep it null terminated
  132.         fBuffer[0] = XMLCh(0);
  133.     }
  134.     //@}
  135.     /** @name Destructor */
  136.     //@{
  137.     ~XMLBuffer()
  138.     {
  139.         fMemoryManager->deallocate(fBuffer); //delete [] fBuffer;
  140.     }
  141.     //@}
  142.     // -----------------------------------------------------------------------
  143.     //  Buffer Management
  144.     // -----------------------------------------------------------------------
  145.     void append(const XMLCh toAppend)
  146.     {
  147.         if (fIndex == fCapacity)
  148.             expand();
  149.         // Put in char and bump the index
  150.         fBuffer[fIndex++] = toAppend;
  151.     }
  152.     void append
  153.     (
  154.         const   XMLCh* const    chars
  155.         , const unsigned int    count = 0
  156.     );
  157.     const XMLCh* getRawBuffer() const
  158.     {
  159.         fBuffer[fIndex] = 0;
  160.         return fBuffer;
  161.     }
  162.     XMLCh* getRawBuffer()
  163.     {
  164.         fBuffer[fIndex] = 0;
  165.         return fBuffer;
  166.     }
  167.     void reset()
  168.     {
  169.         fIndex = 0;
  170.         fBuffer[0] = 0;
  171.     }
  172.     void set
  173.     (
  174.         const   XMLCh* const    chars
  175.         , const unsigned int    count = 0
  176.     );
  177.     // -----------------------------------------------------------------------
  178.     //  Getters
  179.     // -----------------------------------------------------------------------
  180.     bool getInUse() const
  181.     {
  182.         return fUsed;
  183.     }
  184.     unsigned int getLen() const
  185.     {
  186.         return fIndex;
  187.     }
  188.     bool isEmpty() const
  189.     {
  190.         return (fIndex == 0);
  191.     }
  192.     // -----------------------------------------------------------------------
  193.     //  Setters
  194.     // -----------------------------------------------------------------------
  195.     void setInUse(const bool newValue)
  196.     {
  197.         fUsed = newValue;
  198.     }
  199. private :
  200.     // -----------------------------------------------------------------------
  201.     //  Declare our friends
  202.     // -----------------------------------------------------------------------
  203.     friend class XMLBufBid;
  204.     // -----------------------------------------------------------------------
  205.     //  Private helpers
  206.     // -----------------------------------------------------------------------
  207.     void expand();
  208.     void insureCapacity(const unsigned int extraNeeded);
  209.     // -----------------------------------------------------------------------
  210.     //  Private data members
  211.     //
  212.     //  fBuffer
  213.     //      The pointer to the buffer data. Its grown as needed. Its always
  214.     //      one larger than fCapacity, to leave room for the null terminator.
  215.     //
  216.     //  fIndex
  217.     //      The current index into the buffer, as characters are appended
  218.     //      to it. If its zero, then the buffer is empty.
  219.     //
  220.     //  fCapacity
  221.     //      The current capacity of the buffer. Its actually always one
  222.     //      larger, to leave room for the null terminator.
  223.     //
  224.     //  fUsed
  225.     //      Indicates whether this buffer is in use or not.
  226.     // -----------------------------------------------------------------------
  227.     bool            fUsed;
  228.     unsigned int    fIndex;
  229.     unsigned int    fCapacity;
  230.     MemoryManager*  fMemoryManager;
  231.     XMLCh*          fBuffer;
  232. };
  233. XERCES_CPP_NAMESPACE_END
  234. #endif