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

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_Parser.hpp,v $
  58.  * Revision 1.6  2000/03/02 19:55:46  roddey
  59.  * This checkin includes many changes done while waiting for the
  60.  * 1.1.0 code to be finished. I can't list them all here, but a list is
  61.  * available elsewhere.
  62.  *
  63.  * Revision 1.5  2000/02/06 07:48:37  rahulj
  64.  * Year 2K copyright swat.
  65.  *
  66.  * Revision 1.4  2000/01/24 20:38:56  roddey
  67.  * Fixed some small bugs introduced in the recent move away from the util/* streams.
  68.  *
  69.  * Revision 1.3  2000/01/21 23:58:06  roddey
  70.  * Initial move away from util streams was bad. Wide char APIs didn't allow enough
  71.  * control to do canonical output, so changed to use std short char APIs.
  72.  *
  73.  * Revision 1.1  1999/11/09 01:02:23  twl
  74.  * Initial revision
  75.  *
  76.  * Revision 1.3  1999/11/08 20:42:25  rahul
  77.  * Swat for adding in Product name and CVS comment log variable.
  78.  *
  79.  */
  80. // ---------------------------------------------------------------------------
  81. //  Includes
  82. // ---------------------------------------------------------------------------
  83. #include    <framework/XMLDocumentHandler.hpp>
  84. #include    <framework/XMLErrorReporter.hpp>
  85. #include    <validators/DTD/DocTypeHandler.hpp>
  86. class TestParser :
  87.     public XMLDocumentHandler, public XMLErrorReporter, public DocTypeHandler
  88. {
  89. public :
  90.     // -----------------------------------------------------------------------
  91.     //  Constructors and Destructor
  92.     // -----------------------------------------------------------------------
  93.     TestParser();
  94.     ~TestParser();
  95.     // -----------------------------------------------------------------------
  96.     //  Setter methods
  97.     // -----------------------------------------------------------------------
  98.     void setDoNamespaces(const bool state);
  99.     void setScanner(XMLScanner* const state);
  100.     void setOutputType(const OutputTypes outType);
  101.     void setShowErrLoc(const bool state);
  102.     void setShowIntDTD(const bool state);
  103.     void setShowWarnings(const bool state);
  104.     // -----------------------------------------------------------------------
  105.     //  The XMLDocumentHandler interface
  106.     // -----------------------------------------------------------------------
  107.     virtual void docCharacters
  108.     (
  109.         const   XMLCh* const    chars
  110.         , const unsigned int    length
  111.         , const bool            cdataSection
  112.     );
  113.     virtual void docComment
  114.     (
  115.         const   XMLCh* const    comment
  116.     );
  117.     virtual void docPI
  118.     (
  119.         const   XMLCh* const    target
  120.         , const XMLCh* const    data
  121.     );
  122.     virtual void endDocument();
  123.     virtual void endElement
  124.     (
  125.         const   XMLElementDecl& elemDecl
  126.         , const unsigned int    uriId
  127.         , const bool            isRoot
  128.     );
  129.     virtual void endEntityReference
  130.     (
  131.         const   XMLEntityDecl&  entDecl
  132.     );
  133.     virtual void ignorableWhitespace
  134.     (
  135.         const   XMLCh* const    chars
  136.         , const unsigned int    length
  137.         , const bool            cdataSection
  138.     );
  139.     virtual void resetDocument();
  140.     virtual void startDocument();
  141.     virtual void startElement
  142.     (
  143.         const   XMLElementDecl&         elemDecl
  144.         , const unsigned int            elemURIId
  145.         , const XMLCh* const            elemPrefix
  146.         , const RefVectorOf<XMLAttr>&   attrList
  147.         , const unsigned int            attrCount
  148.         , const bool                    isEmpty
  149.         , const bool                    isRoot
  150.     );
  151.     virtual void startEntityReference
  152.     (
  153.         const   XMLEntityDecl&  entDecl
  154.     );
  155.     virtual void XMLDecl
  156.     (
  157.         const   XMLCh* const    versionStr
  158.         , const XMLCh* const    encodingStr
  159.         , const XMLCh* const    standaloneStr
  160.         , const XMLCh* const    autoEncStr
  161.     );
  162.     // -----------------------------------------------------------------------
  163.     //  Implementation of the XMLErrorReporter interface
  164.     // -----------------------------------------------------------------------
  165.     virtual void error
  166.     (
  167.         const   unsigned int                errCode
  168.         , const XMLCh* const                msgDomain
  169.         , const XMLErrorReporter::ErrTypes  type
  170.         , const XMLCh* const                text
  171.         , const XMLCh* const                systemId
  172.         , const XMLCh* const                publicId
  173.         , const unsigned int                lineNum
  174.         , const unsigned int                colNum
  175.     );
  176.     virtual void resetErrors();
  177.     // -----------------------------------------------------------------------
  178.     //  The document type handler virtual handler interface
  179.     // -----------------------------------------------------------------------
  180.     virtual void attDef
  181.     (
  182.         const   DTDElementDecl&     elemDecl
  183.         , const DTDAttDef&          attDef
  184.         , const bool                ignoring
  185.     );
  186.     virtual void doctypeComment
  187.     (
  188.         const   XMLCh* const    comment
  189.     );
  190.     virtual void doctypeDecl
  191.     (
  192.         const   DTDElementDecl& elemDecl
  193.         , const XMLCh* const    publicId
  194.         , const XMLCh* const    systemId
  195.         , const bool            hasIntSubset
  196.     );
  197.     virtual void doctypePI
  198.     (
  199.         const   XMLCh* const    target
  200.         , const XMLCh* const    data
  201.     );
  202.     virtual void doctypeWhitespace
  203.     (
  204.         const   XMLCh* const    chars
  205.         , const unsigned int    length
  206.     );
  207.     virtual void elementDecl
  208.     (
  209.         const   DTDElementDecl& decl
  210.         , const bool            isIgnored
  211.     );
  212.     virtual void endAttList
  213.     (
  214.         const   DTDElementDecl& elemDecl
  215.     );
  216.     virtual void endIntSubset();
  217.     virtual void endExtSubset();
  218.     virtual void entityDecl
  219.     (
  220.         const   DTDEntityDecl&  entityDecl
  221.         , const bool            isPEDecl
  222.         , const bool            isIgnored
  223.     );
  224.     virtual void resetDocType();
  225.     virtual void notationDecl
  226.     (
  227.         const   XMLNotationDecl&    notDecl
  228.         , const bool                isIgnored
  229.     );
  230.     virtual void startAttList
  231.     (
  232.         const   DTDElementDecl& elemDecl
  233.     );
  234.     virtual void startIntSubset();
  235.     virtual void startExtSubset();
  236.     virtual void TextDecl
  237.     (
  238.         const   XMLCh* const    versionStr
  239.         , const XMLCh* const    encodingStr
  240.     );
  241. private :
  242.     // -----------------------------------------------------------------------
  243.     //  Unimplemented constructors and operators
  244.     // -----------------------------------------------------------------------
  245.     TestParser(const TestParser&);
  246.     void operator=(const TestParser&);
  247.     // -----------------------------------------------------------------------
  248.     //  Private helper methods
  249.     // -----------------------------------------------------------------------
  250.     void showChar(const char toShow, const bool doCan);
  251.     void showChars
  252.     (
  253.         const   XMLCh* const    chars
  254.         , const unsigned int    length
  255.     );
  256.     void showIds(const XMLCh* const publicId, const XMLCh* const systemId);
  257.     void showString(const XMLCh* const toShow);
  258.     // -----------------------------------------------------------------------
  259.     //  Data members
  260.     //
  261.     //  fDoNamespaces
  262.     //      Indicates whether the user wanted us to be namespace aware or
  263.     //      not.
  264.     //
  265.     //  fInsideRoot
  266.     //      This is set once the first start element event is seen, and cleared
  267.     //      when the root element ends. Its used to support the canonical
  268.     //      format used by the Bosak tests. Basically it allows us to supress
  269.     //      the whitespace outside the internal subset but before the root
  270.     //      element.
  271.     //
  272.     //  fInExtSubSet
  273.     //      Indicates when we are in the external subset, so that we don't
  274.     //      display that part.
  275.     //
  276.     //  fIntDTDOutput
  277.     //      Indicates whether the data from the internal DTD subset is
  278.     //      output or not (only used if fXMLOutput is true.)
  279.     //
  280.     //  fNestingLevel
  281.     //      This is used to handle tabbing over nested elements. Each start
  282.     //      element bumps it up, and each end element bumps it down.
  283.     //
  284.     //  fOutputType
  285.     //      This flag controls the primary style of output used. It can
  286.     //      be set to do James Clark type canonical output, Sun style
  287.     //      canonical output, debug output, regular XML output, or none.
  288.     //
  289.     //  fScanner
  290.     //      The scanner we created to do the scanning.
  291.     //
  292.     //  fShowErrLoc
  293.     //      This flag turns on the special display mode that is used for
  294.     //      negative test testing. It puts out a special, condensed display
  295.     //      of error info that can be compared in subsequent runs to check
  296.     //      for changes. If its turned on, it forces the output type to
  297.     //      'none'.
  298.     //
  299.     //  fShowWarnings
  300.     //      Indicates whether warning messages should be displayed or not.
  301.     //
  302.     //  fSurrogate
  303.     //      Indicates that we got a surrogate char, so we have to wait for
  304.     //      the next char before we can output it. Its zero when not.
  305.     // -----------------------------------------------------------------------
  306.     bool            fDoNamespaces;
  307.     bool            fInExtSubset;
  308.     bool            fInsideRoot;
  309.     bool            fIntDTDOutput;
  310.     unsigned int    fNestingLevel;
  311.     OutputTypes     fOutputType;
  312.     XMLScanner*     fScanner;
  313.     bool            fShowErrLoc;
  314.     bool            fShowWarnings;
  315.     XMLCh           fSurrogate;
  316. };
  317. // ---------------------------------------------------------------------------
  318. //  TestParser: Setter Methods
  319. // ---------------------------------------------------------------------------
  320. inline void TestParser::setDoNamespaces(const bool state)
  321. {
  322.     fDoNamespaces = state;
  323. }
  324. inline void TestParser::setScanner(XMLScanner* const ourScanner)
  325. {
  326.     fScanner = ourScanner;
  327. }
  328. inline void TestParser::setOutputType(const OutputTypes outType)
  329. {
  330.     fOutputType = outType;
  331. }
  332. inline void TestParser::setShowIntDTD(const bool state)
  333. {
  334.     fIntDTDOutput = state;
  335. }
  336. inline void TestParser::setShowWarnings(const bool state)
  337. {
  338.     fShowWarnings = state;
  339. }
  340. inline void TestParser::setShowErrLoc(const bool state)
  341. {
  342.     fShowErrLoc = state;
  343. }