SAXPrintHandlers.cpp
上传用户:huihehuasu
上传日期:2007-01-10
资源大小:6948k
文件大小:11k
源码类别:

xml/soap/webservice

开发平台:

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