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

词法分析

开发平台:

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.cpp,v $
  58.  * Revision 1.4  2003/05/15 18:26:07  knoaman
  59.  * Partial implementation of the configurable memory manager.
  60.  *
  61.  * Revision 1.3  2002/11/04 15:00:21  tng
  62.  * C++ Namespace Support.
  63.  *
  64.  * Revision 1.2  2002/08/13 17:07:43  peiyongz
  65.  * using 2 instead of 1.25 to expand capacity
  66.  *
  67.  * Revision 1.1.1.1  2002/02/01 22:21:50  peiyongz
  68.  * sane_include
  69.  *
  70.  * Revision 1.5  2000/08/17 00:04:50  andyh
  71.  * Fix error in growing of XMLBuffer from within ensureCapacity()
  72.  * Fixes crash pointed out by Simon Fell.
  73.  *
  74.  * Revision 1.4  2000/05/15 22:31:11  andyh
  75.  * Replace #include<memory.h> with <string.h> everywhere.
  76.  *
  77.  * Revision 1.3  2000/02/06 07:47:47  rahulj
  78.  * Year 2K copyright swat.
  79.  *
  80.  * Revision 1.2  1999/11/23 01:04:19  roddey
  81.  * Updates to some of the internal VC++ project files and some small
  82.  * fixes to make XMLBuffer correctly character size agnostic.
  83.  *
  84.  * Revision 1.1.1.1  1999/11/09 01:08:29  twl
  85.  * Initial checkin
  86.  *
  87.  * Revision 1.2  1999/11/08 20:44:35  rahul
  88.  * Swat for adding in Product name and CVS comment log variable.
  89.  *
  90.  */
  91. // ---------------------------------------------------------------------------
  92. //  Includes
  93. // ---------------------------------------------------------------------------
  94. #include <xercesc/framework/XMLBuffer.hpp>
  95. #include <xercesc/util/XMLString.hpp>
  96. XERCES_CPP_NAMESPACE_BEGIN
  97. // ---------------------------------------------------------------------------
  98. //  XMLBuffer: Buffer management
  99. // ---------------------------------------------------------------------------
  100. void XMLBuffer::append(const XMLCh* const chars, const unsigned int count)
  101. {
  102.     unsigned int actualCount = count;
  103.     if (!count)
  104.         actualCount = XMLString::stringLen(chars);
  105.     insureCapacity(actualCount);
  106.     memcpy(&fBuffer[fIndex], chars, actualCount * sizeof(XMLCh));
  107.     fIndex += actualCount;
  108. }
  109. void XMLBuffer::set(const XMLCh* const chars, const unsigned int count)
  110. {
  111.     unsigned int actualCount = count;
  112.     if (!count)
  113.         actualCount = XMLString::stringLen(chars);
  114.     fIndex = 0;
  115.     insureCapacity(actualCount);
  116.     memcpy(fBuffer, chars, actualCount * sizeof(XMLCh));
  117.     fIndex = actualCount;
  118. }
  119. // ---------------------------------------------------------------------------
  120. //  XMLBuffer: Private helper methods
  121. // ---------------------------------------------------------------------------
  122. void XMLBuffer::expand()
  123. {
  124.     unsigned int newCap = (unsigned int)(fCapacity * 1.5);
  125.     // Allocate the new buffer
  126.     XMLCh* newBuf = (XMLCh*) fMemoryManager->allocate((newCap + 1) * sizeof(XMLCh)); //new XMLCh[newCap + 1];
  127.     // Copy over the old stuff
  128.     memcpy(newBuf, fBuffer, fCapacity * sizeof(XMLCh));
  129.     // Clean up old buffer and store new stuff
  130.     fMemoryManager->deallocate(fBuffer); //delete [] fBuffer;
  131.     fBuffer = newBuf;
  132.     fCapacity = newCap;
  133. }
  134. void XMLBuffer::insureCapacity(const unsigned int extraNeeded)
  135. {
  136.     // If we can handle it, do nothing yet
  137.     if (fIndex + extraNeeded < fCapacity)
  138.         return;
  139.     // Oops, not enough room. Calc new capacity and allocate new buffer
  140.     const unsigned int newCap = (unsigned int)((fIndex + extraNeeded) * 2);
  141.     XMLCh* newBuf = (XMLCh*) fMemoryManager->allocate((newCap+1) * sizeof(XMLCh)); //new XMLCh[newCap+1];
  142.     // Copy over the old stuff
  143.     memcpy(newBuf, fBuffer, fCapacity * sizeof(XMLCh));
  144.     // Clean up old buffer and store new stuff
  145.     fMemoryManager->deallocate(fBuffer); //delete [] fBuffer;
  146.     fBuffer = newBuf;
  147.     fCapacity = newCap;
  148. }
  149. XERCES_CPP_NAMESPACE_END