ParserTest.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-2000 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: ParserTest.cpp,v $
  58.  * Revision 1.10  2001/11/28 21:15:08  tng
  59.  * Fix broken ParserTest.
  60.  *
  61.  * Revision 1.9  2000/06/22 04:31:27  roddey
  62.  * Another do nothing change to make sure I can still commit
  63.  * from home after changing my password.
  64.  *
  65.  * Revision 1.7  2000/03/02 19:55:46  roddey
  66.  * This checkin includes many changes done while waiting for the
  67.  * 1.1.0 code to be finished. I can't list them all here, but a list is
  68.  * available elsewhere.
  69.  *
  70.  * Revision 1.6  2000/02/06 07:48:36  rahulj
  71.  * Year 2K copyright swat.
  72.  *
  73.  * Revision 1.5  2000/01/26 19:35:57  roddey
  74.  * When the /Debug output format is used, it will spit out source offset
  75.  * data as well now.
  76.  *
  77.  * Revision 1.4  2000/01/21 23:58:06  roddey
  78.  * Initial move away from util streams was bad. Wide char APIs didn't allow enough
  79.  * control to do canonical output, so changed to use std short char APIs.
  80.  *
  81.  * Revision 1.2  2000/01/12 00:29:49  roddey
  82.  * Changes for the new URL and InputSource changes.
  83.  *
  84.  * Revision 1.1.1.1  1999/11/09 01:02:14  twl
  85.  * Initial checkin
  86.  *
  87.  * Revision 1.3  1999/11/08 20:42:25  rahul
  88.  * Swat for adding in Product name and CVS comment log variable.
  89.  *
  90.  */
  91. // ---------------------------------------------------------------------------
  92. //  Includes
  93. // ---------------------------------------------------------------------------
  94. #include    <util/PlatformUtils.hpp>
  95. #include    <util/XMLString.hpp>
  96. #include    <util/XMLURL.hpp>
  97. #include    <internal/XMLScanner.hpp>
  98. #include    <validators/DTD/DTDValidator.hpp>
  99. #include    "ParserTest.hpp"
  100. // ---------------------------------------------------------------------------
  101. //  Program entry point
  102. // ---------------------------------------------------------------------------
  103. int main(int argC, char** argV)
  104. {
  105.     // Init the XML platform
  106.     try
  107.     {
  108.         XMLPlatformUtils::Initialize();
  109.     }
  110.     catch(const XMLException& toCatch)
  111.     {
  112.         cout << "Error during platform init! Message:n"
  113.              << StrX(toCatch.getMessage()) << endl;
  114.         return 1;
  115.     }
  116.     //
  117.     //  Create our test parser object. This object implements the internal
  118.     //  event APIs and is plugged into the scanner.
  119.     //
  120.     TestParser parserTest;
  121.     // Figure out the parameters
  122.     bool doValidation = false;
  123.     bool doNamespaces = false;
  124.     bool keepGoing = false;
  125.     XMLCh*  urlPath = 0;
  126.     for (int index = 1; index < argC; index++)
  127.     {
  128.         if (!XMLString::compareIString(argV[index], "/Debug"))
  129.             parserTest.setOutputType(OutputType_Debug);
  130.         else if (!XMLString::compareIString(argV[index], "/Validate"))
  131.             doValidation = true;
  132.         else if (!XMLString::compareIString(argV[index], "/Namespaces"))
  133.         {
  134.             doNamespaces = true;
  135.             parserTest.setDoNamespaces(true);
  136.         }
  137.         else if (!XMLString::compareIString(argV[index], "/XML"))
  138.             parserTest.setOutputType(OutputType_XML);
  139.         else if (!XMLString::compareIString(argV[index], "/IntDTD"))
  140.             parserTest.setShowIntDTD(true);
  141.         else if (!XMLString::compareIString(argV[index], "/ShowWarnings"))
  142.             parserTest.setShowWarnings(true);
  143.         else if (!XMLString::compareIString(argV[index], "/ShowErrLoc"))
  144.             parserTest.setShowErrLoc(true);
  145.         else if (!XMLString::compareIString(argV[index], "/JCCanon"))
  146.             parserTest.setOutputType(OutputType_JCCanon);
  147.         else if (!XMLString::compareIString(argV[index], "/SunCanon"))
  148.             parserTest.setOutputType(OutputType_SunCanon);
  149.         else if (!XMLString::compareIString(argV[index], "/KeepGoing"))
  150.             keepGoing = true;
  151.         else if (!XMLString::compareNIString(argV[index], "/URL=", 5))
  152.             urlPath = XMLString::transcode(&argV[index][5]);
  153.         else
  154.             cout << "Unknown parameter: " << argV[index] << endl;
  155.     }
  156.     // We have to have a URL to work on
  157.     if (!urlPath)
  158.     {
  159.         cout << "A URL must be provided, /URL=xxxx" << endl;
  160.         return 1;
  161.     }
  162.     //
  163.     //  Create a validator of the correct type so that we can install it
  164.     //  on the scanner.
  165.     //
  166.     //  <TBD> Later, when Schema validators exist, we'll have a parameter
  167.     //  to select one or the other
  168.     //
  169.     XMLValidator* validator = 0;
  170.     DTDValidator* dtdVal = new DTDValidator(&parserTest);
  171.     validator = dtdVal;
  172.     // And now create the scanner and give it all the handlers
  173.     XMLScanner scanner
  174.     (
  175.         &parserTest
  176.         , &parserTest
  177.         , 0
  178.         , &parserTest
  179.         , validator
  180.     );
  181.     // Set the scanner flags that we were told to
  182.     scanner.setDoValidation(doValidation);
  183.     scanner.setDoNamespaces(doNamespaces);
  184.     scanner.setExitOnFirstFatal(!keepGoing);
  185.     // Tell the parser about the scanner
  186.     parserTest.setScanner(&scanner);
  187.     try
  188.     {
  189.         scanner.scanDocument(urlPath);
  190.     }
  191.     catch(const XMLException& toCatch)
  192.     {
  193.         cout << "Exception during scan:n    "
  194.              << StrX(toCatch.getMessage())
  195.              << endl;
  196.     }
  197.     // And call the termination method
  198.     XMLPlatformUtils::Terminate();
  199.     return 0;
  200. }
  201. // ---------------------------------------------------------------------------
  202. //  StrX: Private helper methods
  203. // ---------------------------------------------------------------------------
  204. void StrX::transcode(const XMLCh* const toTranscode, const unsigned int len)
  205. {
  206.     // Short circuit if its a null pointer
  207.     if (!toTranscode || (!toTranscode[0]))
  208.     {
  209.         fLocalForm = new char[1];
  210.         fLocalForm[0] = 0;
  211.         return;
  212. }
  213.     // See if our XMLCh and wchar_t as the same on this platform
  214.     const bool isSameSize = (sizeof(XMLCh) == sizeof(wchar_t));
  215.     //
  216.     //  Get the actual number of chars. If the passed len is zero, its null
  217.     //  terminated. Else we have to use the len.
  218.     //
  219.     wchar_t realLen = (wchar_t)len;
  220.     if (!realLen)
  221.     {
  222.         //
  223.         //  We cannot just assume we can use wcslen() because we don't know
  224.         //  if our XMLCh is the same as wchar_t on this platform.
  225.         //
  226.         const XMLCh* tmpPtr = toTranscode;
  227.         while (*(tmpPtr++))
  228.             realLen++;
  229.     }
  230.     //
  231.     //  If either the passed length was non-zero or our char sizes are not
  232.     //  same, we have to use a temp buffer. Since this is common in these
  233.     //  samples, we just do it anyway.
  234.     //
  235.     wchar_t* tmpSource = new wchar_t[realLen + 1];
  236.     if (isSameSize)
  237.     {
  238.         memcpy(tmpSource, toTranscode, realLen * sizeof(wchar_t));
  239.     }
  240.      else
  241.     {
  242.         for (unsigned int index = 0; index < realLen; index++)
  243.             tmpSource[index] = (wchar_t)toTranscode[index];
  244.     }
  245.     tmpSource[realLen] = 0;
  246.     // See now many chars we need to transcode this guy
  247.     const unsigned int targetLen = ::wcstombs(0, tmpSource, 0);
  248.     // Allocate out storage member
  249.     fLocalForm = new char[targetLen + 1];
  250.     //
  251.     //  And transcode our temp source buffer to the local buffer. Cap it
  252.     //  off since the converter won't do it (because the null is beyond
  253.     //  where the target will fill up.)
  254.     //
  255.     ::wcstombs(fLocalForm, tmpSource, targetLen);
  256.     fLocalForm[targetLen] = 0;
  257.     // Don't forget to delete our temp buffer
  258.     delete [] tmpSource;
  259. }