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

词法分析

开发平台:

Visual C++

  1. /*
  2.  * The Apache Software License, Version 1.1
  3.  *
  4.  * Copyright (c) 1999-2001 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: SAXPrintHandlers.cpp,v $
  58.  * Revision 1.16  2003/03/17 21:03:45  peiyongz
  59.  * Bug#17983
  60.  *
  61.  * Revision 1.15  2002/02/01 22:41:17  peiyongz
  62.  * sane_include
  63.  *
  64.  * Revision 1.14  2001/05/11 13:24:58  tng
  65.  * Copyright update.
  66.  *
  67.  * Revision 1.13  2001/05/03 16:00:25  tng
  68.  * Schema: samples update with schema
  69.  *
  70.  * Revision 1.12  2000/10/10 23:55:58  andyh
  71.  * XMLFormatter patch, contributed by Bill Schindler.  Fix problems with
  72.  * output to multi-byte encodings.
  73.  *
  74.  * Revision 1.11  2000/07/25 22:41:32  aruna1
  75.  * Char definitions in XMLUni moved to XMLUniDefs
  76.  *
  77.  * Revision 1.10  2000/06/17 01:58:06  rahulj
  78.  * Now output the PI's with no space between ? and target.
  79.  *
  80.  * Revision 1.9  2000/05/31 23:58:19  rahulj
  81.  * Needed an explicit char* cast to get it working under Solaris.
  82.  *
  83.  * Revision 1.8  2000/04/07 23:25:53  roddey
  84.  * A couple more tweaks of the event handler output.
  85.  *
  86.  * Revision 1.7  2000/04/06 19:09:51  roddey
  87.  * Some more improvements to output formatting. Now it will correctly
  88.  * handle doing the 'replacement char' style of dealing with chars
  89.  * that are unrepresentable.
  90.  *
  91.  * Revision 1.6  2000/04/05 00:20:32  roddey
  92.  * More updates for the low level formatted output support
  93.  *
  94.  * Revision 1.5  2000/03/28 19:43:11  roddey
  95.  * Fixes for signed/unsigned warnings. New work for two way transcoding
  96.  * stuff.
  97.  *
  98.  * Revision 1.4  2000/03/02 19:53:49  roddey
  99.  * This checkin includes many changes done while waiting for the
  100.  * 1.1.0 code to be finished. I can't list them all here, but a list is
  101.  * available elsewhere.
  102.  *
  103.  * Revision 1.3  2000/02/11 03:05:35  abagchi
  104.  * Removed second parameter from call to StrX constructor
  105.  *
  106.  * Revision 1.2  2000/02/06 07:47:24  rahulj
  107.  * Year 2K copyright swat.
  108.  *
  109.  * Revision 1.1.1.1  1999/11/09 01:09:29  twl
  110.  * Initial checkin
  111.  *
  112.  * Revision 1.11  1999/11/08 20:43:42  rahul
  113.  * Swat for adding in Product name and CVS comment log variable.
  114.  *
  115.  */
  116. // ---------------------------------------------------------------------------
  117. //  Includes
  118. // ---------------------------------------------------------------------------
  119. #include <xercesc/util/XMLUniDefs.hpp>
  120. #include <xercesc/sax/AttributeList.hpp>
  121. #include "SAXPrint.hpp"
  122. // ---------------------------------------------------------------------------
  123. //  Local const data
  124. //
  125. //  Note: This is the 'safe' way to do these strings. If you compiler supports
  126. //        L"" style strings, and portability is not a concern, you can use
  127. //        those types constants directly.
  128. // ---------------------------------------------------------------------------
  129. static const XMLCh  gEndElement[] = { chOpenAngle, chForwardSlash, chNull };
  130. static const XMLCh  gEndPI[] = { chQuestion, chCloseAngle, chNull };
  131. static const XMLCh  gStartPI[] = { chOpenAngle, chQuestion, chNull };
  132. static const XMLCh  gXMLDecl1[] =
  133. {
  134.         chOpenAngle, chQuestion, chLatin_x, chLatin_m, chLatin_l
  135.     ,   chSpace, chLatin_v, chLatin_e, chLatin_r, chLatin_s, chLatin_i
  136.     ,   chLatin_o, chLatin_n, chEqual, chDoubleQuote, chDigit_1, chPeriod
  137.     ,   chDigit_0, chDoubleQuote, chSpace, chLatin_e, chLatin_n, chLatin_c
  138.     ,   chLatin_o, chLatin_d, chLatin_i, chLatin_n, chLatin_g, chEqual
  139.     ,   chDoubleQuote, chNull
  140. };
  141. static const XMLCh  gXMLDecl2[] =
  142. {
  143.         chDoubleQuote, chQuestion, chCloseAngle
  144.     ,   chLF, chNull
  145. };
  146. // ---------------------------------------------------------------------------
  147. //  SAXPrintHandlers: Constructors and Destructor
  148. // ---------------------------------------------------------------------------
  149. SAXPrintHandlers::SAXPrintHandlers( const   char* const              encodingName
  150.                                     , const XMLFormatter::UnRepFlags unRepFlags) :
  151.     fFormatter
  152.     (
  153.         encodingName
  154.         , 0
  155.         , this
  156.         , XMLFormatter::NoEscapes
  157.         , unRepFlags
  158.     )
  159. {
  160.     //
  161.     //  Go ahead and output an XML Decl with our known encoding. This
  162.     //  is not the best answer, but its the best we can do until we
  163.     //  have SAX2 support.
  164.     //
  165.     fFormatter << gXMLDecl1 << fFormatter.getEncodingName() << gXMLDecl2;
  166. }
  167. SAXPrintHandlers::~SAXPrintHandlers()
  168. {
  169. }
  170. // ---------------------------------------------------------------------------
  171. //  SAXPrintHandlers: Overrides of the output formatter target interface
  172. // ---------------------------------------------------------------------------
  173. void SAXPrintHandlers::writeChars(const XMLByte* const toWrite)
  174. {
  175. }
  176. void SAXPrintHandlers::writeChars(const XMLByte* const toWrite,
  177.                                   const unsigned int count,
  178.                                   XMLFormatter* const formatter)
  179. {
  180.     // For this one, just dump them to the standard output
  181.     // Surprisingly, Solaris was the only platform on which
  182.     // required the char* cast to print out the string correctly.
  183.     // Without the cast, it was printing the pointer value in hex.
  184.     // Quite annoying, considering every other platform printed
  185.     // the string with the explicit cast to char* below.
  186.   cout.write((char *) toWrite, (int) count);
  187. cout.flush();
  188. }
  189. // ---------------------------------------------------------------------------
  190. //  SAXPrintHandlers: Overrides of the SAX ErrorHandler interface
  191. // ---------------------------------------------------------------------------
  192. void SAXPrintHandlers::error(const SAXParseException& e)
  193. {
  194.     cerr << "nError at file " << StrX(e.getSystemId())
  195.  << ", line " << e.getLineNumber()
  196.  << ", char " << e.getColumnNumber()
  197.          << "n  Message: " << StrX(e.getMessage()) << endl;
  198. }
  199. void SAXPrintHandlers::fatalError(const SAXParseException& e)
  200. {
  201.     cerr << "nFatal Error at file " << StrX(e.getSystemId())
  202.  << ", line " << e.getLineNumber()
  203.  << ", char " << e.getColumnNumber()
  204.          << "n  Message: " << StrX(e.getMessage()) << endl;
  205. }
  206. void SAXPrintHandlers::warning(const SAXParseException& e)
  207. {
  208.     cerr << "nWarning at file " << StrX(e.getSystemId())
  209.  << ", line " << e.getLineNumber()
  210.  << ", char " << e.getColumnNumber()
  211.          << "n  Message: " << StrX(e.getMessage()) << endl;
  212. }
  213. // ---------------------------------------------------------------------------
  214. //  SAXPrintHandlers: Overrides of the SAX DTDHandler interface
  215. // ---------------------------------------------------------------------------
  216. void SAXPrintHandlers::unparsedEntityDecl(const     XMLCh* const name
  217.                                           , const   XMLCh* const publicId
  218.                                           , const   XMLCh* const systemId
  219.                                           , const   XMLCh* const notationName)
  220. {
  221.     // Not used at this time
  222. }
  223. void SAXPrintHandlers::notationDecl(const   XMLCh* const name
  224.                                     , const XMLCh* const publicId
  225.                                     , const XMLCh* const systemId)
  226. {
  227.     // Not used at this time
  228. }
  229. // ---------------------------------------------------------------------------
  230. //  SAXPrintHandlers: Overrides of the SAX DocumentHandler interface
  231. // ---------------------------------------------------------------------------
  232. void SAXPrintHandlers::characters(const     XMLCh* const    chars
  233.                                   , const   unsigned int    length)
  234. {
  235.     fFormatter.formatBuf(chars, length, XMLFormatter::CharEscapes);
  236. }
  237. void SAXPrintHandlers::endDocument()
  238. {
  239. }
  240. void SAXPrintHandlers::endElement(const XMLCh* const name)
  241. {
  242.     // No escapes are legal here
  243.     fFormatter << XMLFormatter::NoEscapes << gEndElement << name << chCloseAngle;
  244. }
  245. void SAXPrintHandlers::ignorableWhitespace( const   XMLCh* const chars
  246.                                             ,const  unsigned int length)
  247. {
  248.     fFormatter.formatBuf(chars, length, XMLFormatter::NoEscapes);
  249. }
  250. void SAXPrintHandlers::processingInstruction(const  XMLCh* const target
  251.                                             , const XMLCh* const data)
  252. {
  253.     fFormatter << XMLFormatter::NoEscapes << gStartPI  << target;
  254.     if (data)
  255.         fFormatter << chSpace << data;
  256.     fFormatter << XMLFormatter::NoEscapes << gEndPI;
  257. }
  258. void SAXPrintHandlers::startDocument()
  259. {
  260. }
  261. void SAXPrintHandlers::startElement(const   XMLCh* const    name
  262.                                     ,       AttributeList&  attributes)
  263. {
  264.     // The name has to be representable without any escapes
  265.     fFormatter  << XMLFormatter::NoEscapes
  266.                 << chOpenAngle << name;
  267.     unsigned int len = attributes.getLength();
  268.     for (unsigned int index = 0; index < len; index++)
  269.     {
  270.         //
  271.         //  Again the name has to be completely representable. But the
  272.         //  attribute can have refs and requires the attribute style
  273.         //  escaping.
  274.         //
  275.         fFormatter  << XMLFormatter::NoEscapes
  276.                     << chSpace << attributes.getName(index)
  277.                     << chEqual << chDoubleQuote
  278.                     << XMLFormatter::AttrEscapes
  279.             << attributes.getValue(index)
  280.                     << XMLFormatter::NoEscapes
  281.                     << chDoubleQuote;
  282.     }
  283.     fFormatter << chCloseAngle;
  284. }