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

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: StdInParse.cpp,v $
  58.  * Revision 1.12  2001/10/25 15:18:33  tng
  59.  * delete the parser before XMLPlatformUtils::Terminate.
  60.  *
  61.  * Revision 1.11  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.10  2001/08/01 19:11:01  tng
  66.  * Add full schema constraint checking flag to the samples and the parser.
  67.  *
  68.  * Revision 1.9  2001/05/11 13:24:59  tng
  69.  * Copyright update.
  70.  *
  71.  * Revision 1.8  2001/05/03 16:00:32  tng
  72.  * Schema: samples update with schema
  73.  *
  74.  * Revision 1.7  2001/02/22 20:59:57  tng
  75.  * [Bug 678] StdInParse doesn't output filename or duration
  76.  *
  77.  * Revision 1.6  2000/06/20 02:23:10  rahulj
  78.  * Help message added by Joe Polastre.
  79.  *
  80.  * Revision 1.5  2000/03/02 19:53:50  roddey
  81.  * This checkin includes many changes done while waiting for the
  82.  * 1.1.0 code to be finished. I can't list them all here, but a list is
  83.  * available elsewhere.
  84.  *
  85.  * Revision 1.4  2000/02/11 02:40:58  abagchi
  86.  * Removed StrX::transcode
  87.  *
  88.  * Revision 1.3  2000/02/06 07:47:25  rahulj
  89.  * Year 2K copyright swat.
  90.  *
  91.  * Revision 1.2  2000/01/12 00:27:01  roddey
  92.  * Updates to work with the new URL and input source scheme.
  93.  *
  94.  * Revision 1.1.1.1  1999/11/09 01:09:27  twl
  95.  * Initial checkin
  96.  *
  97.  * Revision 1.5  1999/11/08 20:43:43  rahul
  98.  * Swat for adding in Product name and CVS comment log variable.
  99.  *
  100.  */
  101. // ---------------------------------------------------------------------------
  102. //  Includes
  103. // ---------------------------------------------------------------------------
  104. #include <framework/StdInInputSource.hpp>
  105. #include <parsers/SAXParser.hpp>
  106. #include "StdInParse.hpp"
  107. // ---------------------------------------------------------------------------
  108. //  Local data
  109. //
  110. //  doNamespaces
  111. //      Indicates whether namespace processing should be enabled or not.
  112. //      The default is no, but -n overrides that.
  113. //
  114. //  doSchema
  115. //      Indicates whether schema processing should be enabled or not.
  116. //      The default is no, but -s overrides that.
  117. //
  118. //  schemaFullChecking
  119. //      Indicates whether full schema constraint checking should be enabled or not.
  120. //      The default is no, but -s overrides that.
  121. //
  122. //  valScheme
  123. //      Indicates what validation scheme to use. It defaults to 'auto', but
  124. //      can be set via the -v= command.
  125. // ---------------------------------------------------------------------------
  126. static bool     doNamespaces       = false;
  127. static bool     doSchema           = false;
  128. static bool     schemaFullChecking = false;
  129. static SAXParser::ValSchemes    valScheme       = SAXParser::Val_Auto;
  130. // ---------------------------------------------------------------------------
  131. //  Local helper methods
  132. // ---------------------------------------------------------------------------
  133. void usage()
  134. {
  135.     cout << "nUsage:n"
  136.             "    StdInParse [options] < <XML file>nn"
  137.             "This program demonstrates streaming XML data from standardn"
  138.             "input.  It then uses the SAX Parser, and prints then"
  139.             "number of elements, attributes, spaces and characters foundn"
  140.             "in the input, using SAX API.nn"
  141.             "Options:n"
  142.             "    -v=xxx      Validation scheme [always | never | auto*].n"
  143.             "    -n          Enable namespace processing. Defaults to off.n"
  144.             "    -s          Enable schema processing. Defaults to off.n"
  145.             "    -f          Enable full schema constraint checking. Defaults to off.n"
  146.       "    -?          Show this help.nn"
  147.             "  * = Default if not provided explicitly.n"
  148.          << endl;
  149. }
  150. // ---------------------------------------------------------------------------
  151. //  Program entry point
  152. // ---------------------------------------------------------------------------
  153. int main(int argC, char* argV[])
  154. {
  155.     // Initialize the XML4C system
  156.     try
  157.     {
  158.          XMLPlatformUtils::Initialize();
  159.     }
  160.     catch (const XMLException& toCatch)
  161.     {
  162.          cerr << "Error during initialization! Message:n"
  163.               << StrX(toCatch.getMessage()) << endl;
  164.          return 1;
  165.     }
  166.     int parmInd;
  167.     for (parmInd = 1; parmInd < argC; parmInd++)
  168.     {
  169.         // Break out on first parm not starting with a dash
  170.         if (argV[parmInd][0] != '-')
  171.             break;
  172.         // Watch for special case help request
  173.         if (!strcmp(argV[parmInd], "-?"))
  174.         {
  175.             usage();
  176.             XMLPlatformUtils::Terminate();
  177.             return 2;
  178.         }
  179.          else if (!strncmp(argV[parmInd], "-v=", 3)
  180.               ||  !strncmp(argV[parmInd], "-V=", 3))
  181.         {
  182.             const char* const parm = &argV[parmInd][3];
  183.             if (!strcmp(parm, "never"))
  184.                 valScheme = SAXParser::Val_Never;
  185.             else if (!strcmp(parm, "auto"))
  186.                 valScheme = SAXParser::Val_Auto;
  187.             else if (!strcmp(parm, "always"))
  188.                 valScheme = SAXParser::Val_Always;
  189.             else
  190.             {
  191.                 cerr << "Unknown -v= value: " << parm << endl;
  192.                 XMLPlatformUtils::Terminate();
  193.                 return 2;
  194.             }
  195.         }
  196.          else if (!strcmp(argV[parmInd], "-n")
  197.               ||  !strcmp(argV[parmInd], "-N"))
  198.         {
  199.             doNamespaces = true;
  200.         }
  201.          else if (!strcmp(argV[parmInd], "-s")
  202.               ||  !strcmp(argV[parmInd], "-S"))
  203.         {
  204.             doSchema = true;
  205.         }
  206.          else if (!strcmp(argV[parmInd], "-f")
  207.               ||  !strcmp(argV[parmInd], "-F"))
  208.         {
  209.             schemaFullChecking = true;
  210.         }
  211.          else
  212.         {
  213.             cerr << "Unknown option '" << argV[parmInd]
  214.                  << "', ignoring itn" << endl;
  215.         }
  216.     }
  217.     //
  218.     //  Create a SAX parser object. Then, according to what we were told on
  219.     //  the command line, set the options.
  220.     //
  221.     SAXParser* parser = new SAXParser;
  222.     parser->setValidationScheme(valScheme);
  223.     parser->setDoNamespaces(doNamespaces);
  224.     parser->setDoSchema(doSchema);
  225.     parser->setValidationSchemaFullChecking(schemaFullChecking);
  226.     //
  227.     //  Create our SAX handler object and install it on the parser, as the
  228.     //  document and error handler. We are responsible for cleaning them
  229.     //  up, but since its just stack based here, there's nothing special
  230.     //  to do.
  231.     //
  232.     StdInParseHandlers handler;
  233.     parser->setDocumentHandler(&handler);
  234.     parser->setErrorHandler(&handler);
  235.     //
  236.     //  Kick off the parse and catch any exceptions. Create a standard
  237.     //  input input source and tell the parser to parse from that.
  238.     //
  239.     unsigned long duration;
  240.     int errorCount = 0;
  241.     StdInInputSource src;
  242.     try
  243.     {
  244.         const unsigned long startMillis = XMLPlatformUtils::getCurrentMillis();
  245.         parser->parse(src);
  246.         const unsigned long endMillis = XMLPlatformUtils::getCurrentMillis();
  247.         duration = endMillis - startMillis;
  248.         errorCount = parser->getErrorCount();
  249.     }
  250.     catch (const XMLException& e)
  251.     {
  252.         cerr << "nError during parsing: n"
  253.              << StrX(e.getMessage())
  254.              << "n" << endl;
  255.         XMLPlatformUtils::Terminate();
  256.         return 4;
  257.     }
  258.     // Print out the stats that we collected and time taken
  259.     if (!errorCount) {
  260.         cout << StrX(src.getSystemId()) << ": " << duration << " ms ("
  261.              << handler.getElementCount() << " elems, "
  262.              << handler.getAttrCount() << " attrs, "
  263.              << handler.getSpaceCount() << " spaces, "
  264.              << handler.getCharacterCount() << " chars)" << endl;
  265.     }
  266.     //
  267.     //  Delete the parser itself.  Must be done prior to calling Terminate, below.
  268.     //
  269.     delete parser;
  270.     XMLPlatformUtils::Terminate();
  271.     if (errorCount > 0)
  272.         return 4;
  273.     else
  274.         return 0;
  275. }