SAX2Print.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: SAX2Print.cpp,v $
  58.  * Revision 1.6  2001/10/25 15:18:33  tng
  59.  * delete the parser before XMLPlatformUtils::Terminate.
  60.  *
  61.  * Revision 1.5  2001/10/19 19:02:43  tng
  62.  * [Bug 3909] return non-zero an exit code when error was encounted.
  63.  * And other modification for consistent help display and return code across samples.
  64.  *
  65.  * Revision 1.4  2001/08/02 17:10:29  tng
  66.  * Allow DOMCount/SAXCount/IDOMCount/SAX2Count to take a file that has a list of xml file as input.
  67.  *
  68.  * Revision 1.3  2001/08/01 19:11:01  tng
  69.  * Add full schema constraint checking flag to the samples and the parser.
  70.  *
  71.  * Revision 1.2  2000/08/09 22:20:38  jpolast
  72.  * updates for changes to sax2 core functionality.
  73.  *
  74.  * Revision 1.1  2000/08/02 19:16:14  jpolast
  75.  * initial checkin of SAX2Print
  76.  *
  77.  *
  78.  */
  79. // ---------------------------------------------------------------------------
  80. //  Includes
  81. // ---------------------------------------------------------------------------
  82. #include <util/PlatformUtils.hpp>
  83. #include <util/TransService.hpp>
  84. #include <sax2/SAX2XMLReader.hpp>
  85. #include <sax2/XMLReaderFactory.hpp>
  86. #include "SAX2Print.hpp"
  87. // ---------------------------------------------------------------------------
  88. //  Local data
  89. //
  90. //  encodingName
  91. //      The encoding we are to output in. If not set on the command line,
  92. //      then it is defaulted to LATIN1.
  93. //
  94. //  xmlFile
  95. //      The path to the file to parser. Set via command line.
  96. //
  97. //  valScheme
  98. //      Indicates what validation scheme to use. It defaults to 'auto', but
  99. //      can be set via the -v= command.
  100. //
  101. // expandNamespaces
  102. // Indicates if the output should expand the namespaces Alias with
  103. // their URI's, defaults to false, can be set via the command line -e
  104. // ---------------------------------------------------------------------------
  105. static const char*              encodingName    = "LATIN1";
  106. static XMLFormatter::UnRepFlags unRepFlags      = XMLFormatter::UnRep_CharRef;
  107. static char*                    xmlFile         = 0;
  108. static SAX2XMLReader::ValSchemes valScheme      = SAX2XMLReader::Val_Auto;
  109. static bool         expandNamespaces= false ;
  110. static bool                     doSchema        = true;
  111. static bool                     schemaFullChecking = false;
  112. // ---------------------------------------------------------------------------
  113. //  Local helper methods
  114. // ---------------------------------------------------------------------------
  115. static void usage()
  116. {
  117.     cout << "nUsage:n"
  118.             "    SAX2Print [options] <XML file>nn"
  119.             "This program invokes the SAX2XMLReader, and then prints then"
  120.             "data returned by the various SAX2 handlers for the specifiedn"
  121.             "XML file.nn"
  122.             "Options:n"
  123.              "    -u=xxx      Handle unrepresentable chars [fail | rep | ref*].n"
  124.              "    -v=xxx      Validation scheme [always | never | auto*].n"
  125.              "    -e          Expand Namespace Alias with URI's.n"
  126.              "    -x=XXX      Use a particular encoding for output (LATIN1*).n"
  127.              "    -f          Enable full schema constraint checking processing. Defaults to off.n"
  128.              "    -s          Disable schema processing. Defaults to on.n"
  129.              "                NOTE: THIS IS OPPOSITE FROM OTHER SAMPLES.n"
  130.              "    -?          Show this help.nn"
  131.              "  * = Default if not provided explicitly.nn"
  132.              "The parser has intrinsic support for the following encodings:n"
  133.              "    UTF-8, USASCII, ISO8859-1, UTF-16[BL]E, UCS-4[BL]E,n"
  134.              "    WINDOWS-1252, IBM1140, IBM037.n"
  135.          <<  endl;
  136. }
  137. // ---------------------------------------------------------------------------
  138. //  Program entry point
  139. // ---------------------------------------------------------------------------
  140. int main(int argC, char* argV[])
  141. {
  142.     // Initialize the XML4C2 system
  143.     try
  144.     {
  145.          XMLPlatformUtils::Initialize();
  146.     }
  147.     catch (const XMLException& toCatch)
  148.     {
  149.          cerr << "Error during initialization! :n"
  150.               << StrX(toCatch.getMessage()) << endl;
  151.          return 1;
  152.     }
  153.     // Check command line and extract arguments.
  154.     if (argC < 2)
  155.     {
  156.         usage();
  157.         XMLPlatformUtils::Terminate();
  158.         return 1;
  159.     }
  160.     int parmInd;
  161.     for (parmInd = 1; parmInd < argC; parmInd++)
  162.     {
  163.         // Break out on first parm not starting with a dash
  164.         if (argV[parmInd][0] != '-')
  165.             break;
  166.         // Watch for special case help request
  167.         if (!strcmp(argV[parmInd], "-?"))
  168.         {
  169.             usage();
  170.             XMLPlatformUtils::Terminate();
  171.             return 2;
  172.         }
  173.          else if (!strncmp(argV[parmInd], "-v=", 3)
  174.               ||  !strncmp(argV[parmInd], "-V=", 3))
  175.         {
  176.             const char* const parm = &argV[parmInd][3];
  177.             if (!strcmp(parm, "never"))
  178.                 valScheme = SAX2XMLReader::Val_Never;
  179.             else if (!strcmp(parm, "auto"))
  180.                 valScheme = SAX2XMLReader::Val_Auto;
  181.             else if (!strcmp(parm, "always"))
  182.                 valScheme = SAX2XMLReader::Val_Always;
  183.             else
  184.             {
  185.                 cerr << "Unknown -v= value: " << parm << endl;
  186.                 XMLPlatformUtils::Terminate();
  187.                 return 2;
  188.             }
  189.         }
  190.          else if (!strcmp(argV[parmInd], "-e")
  191.               ||  !strcmp(argV[parmInd], "-E"))
  192.         {
  193.             expandNamespaces = true;
  194.         }
  195.          else if (!strncmp(argV[parmInd], "-x=", 3)
  196.               ||  !strncmp(argV[parmInd], "-X=", 3))
  197.         {
  198.             // Get out the encoding name
  199.             encodingName = &argV[parmInd][3];
  200.         }
  201.          else if (!strncmp(argV[parmInd], "-u=", 3)
  202.               ||  !strncmp(argV[parmInd], "-U=", 3))
  203.         {
  204.             const char* const parm = &argV[parmInd][3];
  205.             if (!strcmp(parm, "fail"))
  206.                 unRepFlags = XMLFormatter::UnRep_Fail;
  207.             else if (!strcmp(parm, "rep"))
  208.                 unRepFlags = XMLFormatter::UnRep_Replace;
  209.             else if (!strcmp(parm, "ref"))
  210.                 unRepFlags = XMLFormatter::UnRep_CharRef;
  211.             else
  212.             {
  213.                 cerr << "Unknown -u= value: " << parm << endl;
  214.                 XMLPlatformUtils::Terminate();
  215.                 return 2;
  216.             }
  217.         }
  218.          else if (!strcmp(argV[parmInd], "-s")
  219.               ||  !strcmp(argV[parmInd], "-S"))
  220.         {
  221.             doSchema = false;
  222.         }
  223.          else if (!strcmp(argV[parmInd], "-f")
  224.               ||  !strcmp(argV[parmInd], "-F"))
  225.         {
  226.             schemaFullChecking = true;
  227.         }
  228.          else
  229.         {
  230.             cerr << "Unknown option '" << argV[parmInd]
  231.                  << "', ignoring itn" << endl;
  232.         }
  233.     }
  234.     //
  235.     //  And now we have to have only one parameter left and it must be
  236.     //  the file name.
  237.     //
  238.     if (parmInd + 1 != argC)
  239.     {
  240.         usage();
  241.         XMLPlatformUtils::Terminate();
  242.         return 1;
  243.     }
  244.     xmlFile = argV[parmInd];
  245.     //
  246.     //  Create a SAX parser object. Then, according to what we were told on
  247.     //  the command line, set it to validate or not.
  248.     //
  249.     SAX2XMLReader* parser = XMLReaderFactory::createXMLReader();
  250.     //
  251.     //  Then, according to what we were told on
  252.     //  the command line, set it to validate or not.
  253.     //
  254.     if (valScheme == SAX2XMLReader::Val_Auto)
  255.     {
  256.         parser->setFeature(XMLString::transcode("http://xml.org/sax/features/validation"), true);
  257.         parser->setFeature(XMLString::transcode("http://apache.org/xml/features/validation/dynamic"), true);
  258.     }
  259.     if (valScheme == SAX2XMLReader::Val_Never)
  260.     {
  261.         parser->setFeature(XMLString::transcode("http://xml.org/sax/features/validation"), false);
  262.     }
  263.     if (valScheme == SAX2XMLReader::Val_Always)
  264.     {
  265.         parser->setFeature(XMLString::transcode("http://xml.org/sax/features/validation"), true);
  266.         parser->setFeature(XMLString::transcode("http://apache.org/xml/features/validation/dynamic"), false);
  267.     }
  268.     parser->setFeature(XMLString::transcode("http://apache.org/xml/features/validation/schema"), doSchema);
  269.     parser->setFeature(XMLString::transcode("http://apache.org/xml/features/validation/schema-full-checking"), schemaFullChecking);
  270.     //
  271.     //  Create the handler object and install it as the document and error
  272.     //  handler for the parser. Then parse the file and catch any exceptions
  273.     //  that propogate out
  274.     //
  275.     int errorCount = 0;
  276.     try
  277.     {
  278.         SAX2PrintHandlers handler(encodingName, unRepFlags, expandNamespaces);
  279.         parser->setContentHandler(&handler);
  280.         parser->setErrorHandler(&handler);
  281.         parser->parse(xmlFile);
  282.         errorCount = parser->getErrorCount();
  283.     }
  284.     catch (const XMLException& toCatch)
  285.     {
  286.         cerr << "nAn error occuredn  Error: "
  287.              << StrX(toCatch.getMessage())
  288.              << "n" << endl;
  289.         XMLPlatformUtils::Terminate();
  290.         return 4;
  291.     }
  292.     //
  293.     //  Delete the parser itself.  Must be done prior to calling Terminate, below.
  294.     //
  295.     delete parser;
  296.     // And call the termination method
  297.     XMLPlatformUtils::Terminate();
  298.     if (errorCount > 0)
  299.         return 4;
  300.     else
  301.         return 0;
  302. }