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

词法分析

开发平台:

Visual C++

  1. /*
  2.  * The Apache Software License, Version 1.1
  3.  *
  4.  * Copyright (c) 2002 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.  * $Id: LocalFileFormatTarget.cpp,v 1.7 2003/05/16 21:36:55 knoaman Exp $
  58.  * $Log: LocalFileFormatTarget.cpp,v $
  59.  * Revision 1.7  2003/05/16 21:36:55  knoaman
  60.  * Memory manager implementation: Modify constructors to pass in the memory manager.
  61.  *
  62.  * Revision 1.6  2003/05/15 18:26:07  knoaman
  63.  * Partial implementation of the configurable memory manager.
  64.  *
  65.  * Revision 1.5  2003/01/24 20:20:22  tng
  66.  * Add method flush to XMLFormatTarget
  67.  *
  68.  * Revision 1.4  2003/01/09 20:59:44  tng
  69.  * [Bug 15928] Output with LocalFileFormatTarget fails silently.
  70.  *
  71.  * Revision 1.3  2002/11/27 18:09:25  tng
  72.  * [Bug 13447] Performance: Using LocalFileFormatTarget with DOMWriter is very slow.
  73.  *
  74.  * Revision 1.2  2002/11/04 15:00:21  tng
  75.  * C++ Namespace Support.
  76.  *
  77.  * Revision 1.1  2002/06/19 21:59:26  peiyongz
  78.  * DOM3:DOMSave Interface support: LocalFileFormatTarget
  79.  *
  80.  *
  81.  */
  82. #include <xercesc/framework/LocalFileFormatTarget.hpp>
  83. #include <xercesc/framework/MemoryManager.hpp>
  84. #include <xercesc/util/IOException.hpp>
  85. #include <string.h>
  86. XERCES_CPP_NAMESPACE_BEGIN
  87. LocalFileFormatTarget::LocalFileFormatTarget( const XMLCh* const   fileName
  88.                                             , MemoryManager* const manager)
  89. : fSource(0)
  90. , fDataBuf(0)
  91. , fIndex(0)
  92. , fCapacity(1023)
  93. , fMemoryManager(manager)
  94. {
  95.     fSource = XMLPlatformUtils::openFileToWrite(fileName);
  96.     if (!fSource)
  97.         ThrowXML1(IOException, XMLExcepts::File_CouldNotOpenFile, fileName);
  98.     // Buffer is one larger than capacity, to allow for zero term
  99.     fDataBuf = (XMLByte*) fMemoryManager->allocate
  100.     (
  101.         (fCapacity+4) * sizeof(XMLByte)
  102.     );//new XMLByte[fCapacity+4];
  103.     // Keep it null terminated
  104.     fDataBuf[0] = XMLByte(0);
  105. }
  106. LocalFileFormatTarget::LocalFileFormatTarget( const char* const    fileName
  107.                                             , MemoryManager* const manager)
  108. : fSource(0)
  109. , fDataBuf(0)
  110. , fIndex(0)
  111. , fCapacity(1023)
  112. , fMemoryManager(manager)
  113. {
  114.     fSource = XMLPlatformUtils::openFileToWrite(fileName);
  115.     if (!fSource)
  116.         ThrowXML1(IOException, XMLExcepts::File_CouldNotOpenFile, fileName);
  117.     // Buffer is one larger than capacity, to allow for zero term
  118.     fDataBuf = (XMLByte*) fMemoryManager->allocate
  119.     (
  120.         (fCapacity+4) * sizeof(XMLByte)
  121.     );//new XMLByte[fCapacity+4];
  122.     // Keep it null terminated
  123.     fDataBuf[0] = XMLByte(0);
  124. }
  125. LocalFileFormatTarget::~LocalFileFormatTarget()
  126. {
  127.     // flush remaining buffer before destroy
  128.     flushBuffer();
  129.     if (fSource)
  130.         XMLPlatformUtils::closeFile(fSource);
  131.     fMemoryManager->deallocate(fDataBuf);//delete [] fDataBuf;
  132. }
  133. void LocalFileFormatTarget::flush()
  134. {
  135.     flushBuffer();
  136. }
  137. void LocalFileFormatTarget::writeChars(const XMLByte* const toWrite
  138.                                      , const unsigned int   count
  139.                                      , XMLFormatter * const        )
  140. {
  141.     if (count) {
  142.         insureCapacity(count);
  143.         memcpy(&fDataBuf[fIndex], toWrite, count * sizeof(XMLByte));
  144.         fIndex += count;
  145.     }
  146.     return;
  147. }
  148. void LocalFileFormatTarget::flushBuffer()
  149. {
  150.     // Exception thrown in writeBufferToFile, if any, will be propagated to
  151.     // the XMLFormatter and then to the DOMWriter, which may notify
  152.     // application through DOMErrorHandler, if any.
  153.     XMLPlatformUtils::writeBufferToFile(fSource, (long) fIndex, fDataBuf);
  154.     fIndex = 0;
  155.     fDataBuf[0] = 0;
  156.     fDataBuf[fIndex + 1] = 0;
  157.     fDataBuf[fIndex + 2] = 0;
  158.     fDataBuf[fIndex + 3] = 0;
  159. }
  160. void LocalFileFormatTarget::insureCapacity(const unsigned int extraNeeded)
  161. {
  162.     // If we can handle it, do nothing yet
  163.     if (fIndex + extraNeeded < fCapacity)
  164.         return;
  165.     // Oops, not enough room. Calc new capacity and allocate new buffer
  166.     const unsigned int newCap = (unsigned int)((fIndex + extraNeeded) * 2);
  167.     XMLByte* newBuf = (XMLByte*) fMemoryManager->allocate
  168.     (
  169.         (newCap+4) * sizeof(XMLByte)
  170.     );//new XMLByte[newCap+4];
  171.     // Copy over the old stuff
  172.     memcpy(newBuf, fDataBuf, fCapacity * sizeof(XMLByte) + 4);
  173.     // Clean up old buffer and store new stuff
  174.     fMemoryManager->deallocate(fDataBuf); //delete [] fDataBuf;
  175.     fDataBuf = newBuf;
  176.     fCapacity = newCap;
  177.     // flush the buffer too
  178.     flushBuffer();
  179. }
  180. XERCES_CPP_NAMESPACE_END