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

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: SAXPrint.cpp,v $
  58.  * Revision 1.18  2001/10/29 17:02:57  tng
  59.  * Fix typo in samples.
  60.  *
  61.  * Revision 1.17  2001/10/25 15:18:33  tng
  62.  * delete the parser before XMLPlatformUtils::Terminate.
  63.  *
  64.  * Revision 1.16  2001/10/19 19:02:43  tng
  65.  * [Bug 3909] return non-zero an exit code when error was encounted.
  66.  * And other modification for consistent help display and return code across samples.
  67.  *
  68.  * Revision 1.15  2001/08/01 19:11:01  tng
  69.  * Add full schema constraint checking flag to the samples and the parser.
  70.  *
  71.  * Revision 1.14  2001/05/11 13:24:58  tng
  72.  * Copyright update.
  73.  *
  74.  * Revision 1.13  2001/05/03 16:00:21  tng
  75.  * Schema: samples update with schema
  76.  *
  77.  * Revision 1.12  2000/06/16 20:25:43  rahulj
  78.  * Add the -v=always option to force validation checking. Need this
  79.  * option for running the conformance tests.
  80.  *
  81.  * Revision 1.11  2000/05/31 18:36:26  rahulj
  82.  * Matched the command line options supported by DOMPrint.
  83.  *
  84.  * Revision 1.10  2000/04/12 22:58:27  roddey
  85.  * Added support for 'auto validate' mode.
  86.  *
  87.  * Revision 1.9  2000/04/06 19:09:51  roddey
  88.  * Some more improvements to output formatting. Now it will correctly
  89.  * handle doing the 'replacement char' style of dealing with chars
  90.  * that are unrepresentable.
  91.  *
  92.  * Revision 1.8  2000/04/05 00:20:32  roddey
  93.  * More updates for the low level formatted output support
  94.  *
  95.  * Revision 1.7  2000/03/28 19:43:11  roddey
  96.  * Fixes for signed/unsigned warnings. New work for two way transcoding
  97.  * stuff.
  98.  *
  99.  * Revision 1.6  2000/03/03 01:29:31  roddey
  100.  * Added a scanReset()/parseReset() method to the scanner and
  101.  * parsers, to allow for reset after early exit from a progressive parse.
  102.  * Added calls to new Terminate() call to all of the samples. Improved
  103.  * documentation in SAX and DOM parsers.
  104.  *
  105.  * Revision 1.5  2000/03/02 19:53:49  roddey
  106.  * This checkin includes many changes done while waiting for the
  107.  * 1.1.0 code to be finished. I can't list them all here, but a list is
  108.  * available elsewhere.
  109.  *
  110.  * Revision 1.4  2000/02/11 02:39:43  abagchi
  111.  * Removed StrX::transcode
  112.  *
  113.  * Revision 1.3  2000/02/06 07:47:24  rahulj
  114.  * Year 2K copyright swat.
  115.  *
  116.  * Revision 1.2  2000/01/12 00:27:01  roddey
  117.  * Updates to work with the new URL and input source scheme.
  118.  *
  119.  * Revision 1.1.1.1  1999/11/09 01:09:28  twl
  120.  * Initial checkin
  121.  *
  122.  * Revision 1.7  1999/11/08 20:43:41  rahul
  123.  * Swat for adding in Product name and CVS comment log variable.
  124.  *
  125.  */
  126. // ---------------------------------------------------------------------------
  127. //  Includes
  128. // ---------------------------------------------------------------------------
  129. #include <util/PlatformUtils.hpp>
  130. #include <util/TransService.hpp>
  131. #include <parsers/SAXParser.hpp>
  132. #include "SAXPrint.hpp"
  133. // ---------------------------------------------------------------------------
  134. //  Local data
  135. //
  136. //  doNamespaces
  137. //      Indicates whether namespace processing should be enabled or not.
  138. //      Defaults to disabled.
  139. //
  140. //  doSchema
  141. //      Indicates whether schema processing should be enabled or not.
  142. //      Defaults to disabled.
  143. //
  144. //  schemaFullChecking
  145. //      Indicates whether full schema constraint checking should be enabled or not.
  146. //      Defaults to disabled.
  147. //
  148. //  encodingName
  149. //      The encoding we are to output in. If not set on the command line,
  150. //      then it is defaulted to LATIN1.
  151. //
  152. //  xmlFile
  153. //      The path to the file to parser. Set via command line.
  154. //
  155. //  valScheme
  156. //      Indicates what validation scheme to use. It defaults to 'auto', but
  157. //      can be set via the -v= command.
  158. // ---------------------------------------------------------------------------
  159. static bool                     doNamespaces        = false;
  160. static bool                     doSchema            = false;
  161. static bool                     schemaFullChecking  = false;
  162. static const char*              encodingName    = "LATIN1";
  163. static XMLFormatter::UnRepFlags unRepFlags      = XMLFormatter::UnRep_CharRef;
  164. static char*                    xmlFile         = 0;
  165. static SAXParser::ValSchemes    valScheme       = SAXParser::Val_Auto;
  166. // ---------------------------------------------------------------------------
  167. //  Local helper methods
  168. // ---------------------------------------------------------------------------
  169. static void usage()
  170. {
  171.     cout << "nUsage:n"
  172.             "    SAXPrint [options] <XML file>nn"
  173.             "This program invokes the SAX Parser, and then prints then"
  174.             "data returned by the various SAX handlers for the specifiedn"
  175.             "XML file.nn"
  176.             "Options:n"
  177.              "    -u=xxx      Handle unrepresentable chars [fail | rep | ref*].n"
  178.              "    -v=xxx      Validation scheme [always | never | auto*].n"
  179.              "    -n          Enable namespace processing.n"
  180.              "    -s          Enable schema processing.n"
  181.              "    -f          Enable full schema constraint checking.n"
  182.              "    -x=XXX      Use a particular encoding for output (LATIN1*).n"
  183.              "    -?          Show this help.nn"
  184.              "  * = Default if not provided explicitly.nn"
  185.              "The parser has intrinsic support for the following encodings:n"
  186.              "    UTF-8, USASCII, ISO8859-1, UTF-16[BL]E, UCS-4[BL]E,n"
  187.              "    WINDOWS-1252, IBM1140, IBM037.n"
  188.          <<  endl;
  189. }
  190. // ---------------------------------------------------------------------------
  191. //  Program entry point
  192. // ---------------------------------------------------------------------------
  193. int main(int argC, char* argV[])
  194. {
  195.     // Initialize the XML4C2 system
  196.     try
  197.     {
  198.          XMLPlatformUtils::Initialize();
  199.     }
  200.     catch (const XMLException& toCatch)
  201.     {
  202.          cerr << "Error during initialization! :n"
  203.               << StrX(toCatch.getMessage()) << endl;
  204.          return 1;
  205.     }
  206.     // Check command line and extract arguments.
  207.     if (argC < 2)
  208.     {
  209.         usage();
  210.         XMLPlatformUtils::Terminate();
  211.         return 1;
  212.     }
  213.     int parmInd;
  214.     for (parmInd = 1; parmInd < argC; parmInd++)
  215.     {
  216.         // Break out on first parm not starting with a dash
  217.         if (argV[parmInd][0] != '-')
  218.             break;
  219.         // Watch for special case help request
  220.         if (!strcmp(argV[parmInd], "-?"))
  221.         {
  222.             usage();
  223.             XMLPlatformUtils::Terminate();
  224.             return 2;
  225.         }
  226.          else if (!strncmp(argV[parmInd], "-v=", 3)
  227.               ||  !strncmp(argV[parmInd], "-V=", 3))
  228.         {
  229.             const char* const parm = &argV[parmInd][3];
  230.             if (!strcmp(parm, "never"))
  231.                 valScheme = SAXParser::Val_Never;
  232.             else if (!strcmp(parm, "auto"))
  233.                 valScheme = SAXParser::Val_Auto;
  234.             else if (!strcmp(parm, "always"))
  235.                 valScheme = SAXParser::Val_Always;
  236.             else
  237.             {
  238.                 cerr << "Unknown -v= value: " << parm << endl;
  239.                 XMLPlatformUtils::Terminate();
  240.                 return 2;
  241.             }
  242.         }
  243.          else if (!strcmp(argV[parmInd], "-n")
  244.               ||  !strcmp(argV[parmInd], "-N"))
  245.         {
  246.             doNamespaces = true;
  247.         }
  248.          else if (!strcmp(argV[parmInd], "-s")
  249.               ||  !strcmp(argV[parmInd], "-S"))
  250.         {
  251.             doSchema = true;
  252.         }
  253.          else if (!strcmp(argV[parmInd], "-f")
  254.               ||  !strcmp(argV[parmInd], "-F"))
  255.         {
  256.             schemaFullChecking = true;
  257.         }
  258.          else if (!strncmp(argV[parmInd], "-x=", 3)
  259.               ||  !strncmp(argV[parmInd], "-X=", 3))
  260.         {
  261.             // Get out the encoding name
  262.             encodingName = &argV[parmInd][3];
  263.         }
  264.          else if (!strncmp(argV[parmInd], "-u=", 3)
  265.               ||  !strncmp(argV[parmInd], "-U=", 3))
  266.         {
  267.             const char* const parm = &argV[parmInd][3];
  268.             if (!strcmp(parm, "fail"))
  269.                 unRepFlags = XMLFormatter::UnRep_Fail;
  270.             else if (!strcmp(parm, "rep"))
  271.                 unRepFlags = XMLFormatter::UnRep_Replace;
  272.             else if (!strcmp(parm, "ref"))
  273.                 unRepFlags = XMLFormatter::UnRep_CharRef;
  274.             else
  275.             {
  276.                 cerr << "Unknown -u= value: " << parm << endl;
  277.                 XMLPlatformUtils::Terminate();
  278.                 return 2;
  279.             }
  280.         }
  281.          else
  282.         {
  283.             cerr << "Unknown option '" << argV[parmInd]
  284.                  << "', ignoring itn" << endl;
  285.         }
  286.     }
  287.     //
  288.     //  And now we have to have only one parameter left and it must be
  289.     //  the file name.
  290.     //
  291.     if (parmInd + 1 != argC)
  292.     {
  293.         usage();
  294.         XMLPlatformUtils::Terminate();
  295.         return 1;
  296.     }
  297.     xmlFile = argV[parmInd];
  298.     int errorCount = 0;
  299.     //
  300.     //  Create a SAX parser object. Then, according to what we were told on
  301.     //  the command line, set it to validate or not.
  302.     //
  303.     SAXParser* parser = new SAXParser;
  304.     parser->setValidationScheme(valScheme);
  305.     parser->setDoNamespaces(doNamespaces);
  306.     parser->setDoSchema(doSchema);
  307.     parser->setValidationSchemaFullChecking(schemaFullChecking);
  308.     //
  309.     //  Create the handler object and install it as the document and error
  310.     //  handler for the parser-> Then parse the file and catch any exceptions
  311.     //  that propogate out
  312.     //
  313.     try
  314.     {
  315.         SAXPrintHandlers handler(encodingName, unRepFlags);
  316.         parser->setDocumentHandler(&handler);
  317.         parser->setErrorHandler(&handler);
  318.         parser->parse(xmlFile);
  319.         errorCount = parser->getErrorCount();
  320.     }
  321.     catch (const XMLException& toCatch)
  322.     {
  323.         cerr << "nAn error occuredn  Error: "
  324.              << StrX(toCatch.getMessage())
  325.              << "n" << endl;
  326.         XMLPlatformUtils::Terminate();
  327.         return -1;
  328.     }
  329.     //
  330.     //  Delete the parser itself.  Must be done prior to calling Terminate, below.
  331.     //
  332.     delete parser;
  333.     // And call the termination method
  334.     XMLPlatformUtils::Terminate();
  335.     if (errorCount > 0)
  336.         return 4;
  337.     else
  338.         return 0;
  339. }