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

词法分析

开发平台:

Visual C++

  1. /*
  2.  * The Apache Software License, Version 1.1
  3.  *
  4.  * Copyright (c) 1999-2000 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: XMLBufferMgr.hpp,v $
  58.  * Revision 1.6  2003/05/16 21:36:55  knoaman
  59.  * Memory manager implementation: Modify constructors to pass in the memory manager.
  60.  *
  61.  * Revision 1.5  2003/05/15 18:26:07  knoaman
  62.  * Partial implementation of the configurable memory manager.
  63.  *
  64.  * Revision 1.4  2002/12/04 02:32:43  knoaman
  65.  * #include cleanup.
  66.  *
  67.  * Revision 1.3  2002/11/04 15:00:21  tng
  68.  * C++ Namespace Support.
  69.  *
  70.  * Revision 1.2  2002/08/21 18:54:52  tng
  71.  * [Bug 11869] Add the const modifier (XMLBuffer.hpp).
  72.  *
  73.  * Revision 1.1.1.1  2002/02/01 22:21:51  peiyongz
  74.  * sane_include
  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:23  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:30  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(XMLBUFFERMGR_HPP)
  98. #define XMLBUFFERMGR_HPP
  99. #include <xercesc/framework/XMLBuffer.hpp>
  100. XERCES_CPP_NAMESPACE_BEGIN
  101. class XMLBufBid;
  102. /**
  103.  *  There are many places where XMLBuffer objects are needed. In order to
  104.  *  avoid either constantly creating and destroying them or maintaining a
  105.  *  fixed set and worrying about accidental reuse, a buffer manager can
  106.  *  provide a pool of buffers which can be temporarily used and then put
  107.  *  back into the pool. This provides a good compromise between performance
  108.  *  and easier maintenance.
  109.  */
  110. class XMLPARSER_EXPORT XMLBufferMgr : public XMemory
  111. {
  112. public :
  113.     // -----------------------------------------------------------------------
  114.     //  Constructors and Destructor
  115.     // -----------------------------------------------------------------------
  116.     /** @name Constructor */
  117.     //@{
  118.     XMLBufferMgr(MemoryManager* const manager = XMLPlatformUtils::fgMemoryManager);
  119.     //@}
  120.     /** @name Destructor */
  121.     //@{
  122.     ~XMLBufferMgr();
  123.     //@}
  124.     // -----------------------------------------------------------------------
  125.     //  Buffer management
  126.     // -----------------------------------------------------------------------
  127.     XMLBuffer& bidOnBuffer();
  128.     void releaseBuffer(XMLBuffer& toRelease);
  129. private :
  130.     // -----------------------------------------------------------------------
  131.     //  Private data members
  132.     //
  133.     //  fBufCount
  134.     //      The count of buffers that have been allocated so far.
  135.     //
  136.     //  fBufList;
  137.     //      The list of pointers to buffers that are loaned out. There will
  138.     //      never be a lot of them, so a flat list is good enough.
  139.     // -----------------------------------------------------------------------
  140.     unsigned int    fBufCount;
  141.     MemoryManager*  fMemoryManager;
  142.     XMLBuffer**     fBufList;
  143. };
  144. /**
  145.  *  XMLBufBid is a scoped based janitor that allows the scanner code to ask
  146.  *  for a buffer on a scoped basis and then insure that it gets freed back
  147.  *  into the pool no matter how the scope is exited (exception or normal exit.)
  148.  */
  149. class XMLBufBid : public XMemory
  150. {
  151. public :
  152.     // -----------------------------------------------------------------------
  153.     //  Constructors and Destructor
  154.     // -----------------------------------------------------------------------
  155.     XMLBufBid(XMLBufferMgr* const srcMgr) :
  156.         fBuffer(srcMgr->bidOnBuffer())
  157.         , fMgr(srcMgr)
  158.     {
  159.     }
  160.     ~XMLBufBid()
  161.     {
  162.         fMgr->releaseBuffer(fBuffer);
  163.     }
  164.     // -----------------------------------------------------------------------
  165.     //  Buffer access
  166.     // -----------------------------------------------------------------------
  167.     void append(const XMLCh toAppend)
  168.     {
  169.         fBuffer.append(toAppend);
  170.     }
  171.     void append(const XMLCh* const toAppend, const unsigned int count = 0)
  172.     {
  173.         fBuffer.append(toAppend, count);
  174.     }
  175.     const XMLBuffer& getBuffer() const
  176.     {
  177.         return fBuffer;
  178.     }
  179.     XMLBuffer& getBuffer()
  180.     {
  181.         return fBuffer;
  182.     }
  183.     const XMLCh* getRawBuffer() const
  184.     {
  185.         fBuffer.fBuffer[fBuffer.fIndex] = 0;
  186.         return fBuffer.fBuffer;
  187.     }
  188.     XMLCh* getRawBuffer()
  189.     {
  190.         fBuffer.fBuffer[fBuffer.fIndex] = 0;
  191.         return fBuffer.fBuffer;
  192.     }
  193.     unsigned int getLen() const
  194.     {
  195.         return fBuffer.fIndex;
  196.     }
  197.     bool isEmpty() const
  198.     {
  199.         return (fBuffer.fIndex == 0);
  200.     }
  201.     void reset()
  202.     {
  203.         fBuffer.reset();
  204.     }
  205.     void set(const XMLCh* const chars, const unsigned int count = 0)
  206.     {
  207.         fBuffer.set(chars, count);
  208.     }
  209. private :
  210.     // -----------------------------------------------------------------------
  211.     //  Private data members
  212.     //
  213.     //  fBuffer
  214.     //      This is the buffer we got, and which we will release.
  215.     //
  216.     //  fMgr
  217.     //      This is the buffer manager we got the buffer from. This is needed
  218.     //      to release the buffer later.
  219.     // -----------------------------------------------------------------------
  220.     XMLBuffer&          fBuffer;
  221.     XMLBufferMgr* const fMgr;
  222. };
  223. XERCES_CPP_NAMESPACE_END
  224. #endif