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

词法分析

开发平台:

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