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

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: DTDValidator.hpp,v $
  58.  * Revision 1.13  2001/11/13 13:25:28  tng
  59.  * Deprecate function XMLValidator::checkRootElement.
  60.  *
  61.  * Revision 1.12  2001/06/05 16:51:20  knoaman
  62.  * Add 'const' to getGrammar - submitted by Peter A. Volchek.
  63.  *
  64.  * Revision 1.11  2001/05/11 13:27:11  tng
  65.  * Copyright update.
  66.  *
  67.  * Revision 1.10  2001/05/03 20:34:37  tng
  68.  * Schema: SchemaValidator update
  69.  *
  70.  * Revision 1.9  2001/04/19 18:17:23  tng
  71.  * Schema: SchemaValidator update, and use QName in Content Model
  72.  *
  73.  * Revision 1.8  2001/03/21 21:56:21  tng
  74.  * Schema: Add Schema Grammar, Schema Validator, and split the DTDValidator into DTDValidator, DTDScanner, and DTDGrammar.
  75.  *
  76.  * Revision 1.7  2001/02/26 19:22:08  tng
  77.  * Schema: add parameter prefix in findElem and findAttr.
  78.  *
  79.  * Revision 1.6  2000/08/09 22:08:48  jpolast
  80.  * added const XMLCh* getURIText() as per XMLValidator.
  81.  * allows parsers to use const URIs instead of appending
  82.  * to a XMLBuffer.
  83.  *
  84.  * Revision 1.5  2000/04/06 19:00:07  roddey
  85.  * Added a getter for the doc type handler.
  86.  *
  87.  * Revision 1.4  2000/02/24 20:16:49  abagchi
  88.  * Swat for removing Log from API docs
  89.  *
  90.  * Revision 1.3  2000/02/09 21:42:38  abagchi
  91.  * Copyright swat
  92.  *
  93.  * Revision 1.2  2000/01/12 23:52:48  roddey
  94.  * These are trivial changes required to get the C++ and Java versions
  95.  * of error messages more into sync. Mostly it was where the Java version
  96.  * was passing out one or more parameter than the C++ version was. In
  97.  * some cases the change just required an extra parameter to get the
  98.  * needed info to the place where the error was issued.
  99.  *
  100.  * Revision 1.1.1.1  1999/11/09 01:03:36  twl
  101.  * Initial checkin
  102.  *
  103.  * Revision 1.5  1999/11/08 20:45:41  rahul
  104.  * Swat for adding in Product name and CVS comment log variable.
  105.  *
  106.  */
  107. #if !defined(DTDVALIDATOR_HPP)
  108. #define DTDVALIDATOR_HPP
  109. #include <util/NameIdPool.hpp>
  110. #include <framework/XMLValidator.hpp>
  111. #include <validators/DTD/DTDGrammar.hpp>
  112. class XMLMsgLoader;
  113. //
  114. //  This is a derivative of the abstract validator interface. This class
  115. //  implements a validator that supports standard XML 1.0 DTD semantics.
  116. //  This class handles scanning the internal and external subsets of the
  117. //  DTD, and provides the standard validation services against the DTD info
  118. //  it found.
  119. //
  120. class VALIDATORS_EXPORT DTDValidator : public XMLValidator
  121. {
  122. public:
  123.     // -----------------------------------------------------------------------
  124.     //  Constructors and Destructor
  125.     // -----------------------------------------------------------------------
  126.     DTDValidator(XMLErrorReporter* const errReporter = 0);
  127.     virtual ~DTDValidator();
  128.     // -----------------------------------------------------------------------
  129.     //  Implementation of the XMLValidator interface
  130.     // -----------------------------------------------------------------------
  131.     virtual int checkContent
  132.     (
  133.         XMLElementDecl* const   elemDecl
  134.         , QName** const         children
  135.         , const unsigned int    childCount
  136.     );
  137.     virtual void faultInAttr
  138.     (
  139.                 XMLAttr&    toFill
  140.         , const XMLAttDef&  attDef
  141.     )   const;
  142.     virtual void preContentValidation(bool reuseGrammar);
  143.     virtual void postParseValidation();
  144.     virtual void reset();
  145.     virtual bool requiresNamespaces() const;
  146.     virtual void validateAttrValue
  147.     (
  148.         const   XMLAttDef*                  attDef
  149.         , const XMLCh* const                attrValue
  150.     );
  151.     virtual void validateElement
  152.     (
  153.         const   XMLElementDecl*             elemDef
  154.     );
  155.     virtual Grammar* getGrammar() const;
  156.     virtual void setGrammar(Grammar* aGrammar);
  157.     // -----------------------------------------------------------------------
  158.     //  Virtual DTD handler interface.
  159.     // -----------------------------------------------------------------------
  160.     virtual bool handlesDTD() const;
  161.     // -----------------------------------------------------------------------
  162.     //  Virtual Schema handler interface. handlesSchema() always return false.
  163.     // -----------------------------------------------------------------------
  164.     virtual bool handlesSchema() const;
  165. private:
  166.     // -----------------------------------------------------------------------
  167.     //  Private data members
  168.     //
  169.     //  fDTDGrammar
  170.     //      The DTD information stored.
  171.     //
  172.     // -----------------------------------------------------------------------
  173.     DTDGrammar*                     fDTDGrammar;
  174. };
  175. // ---------------------------------------------------------------------------
  176. //  Virtual interface
  177. // ---------------------------------------------------------------------------
  178. inline Grammar* DTDValidator::getGrammar() const {
  179.     return fDTDGrammar;
  180. }
  181. inline void DTDValidator::setGrammar(Grammar* aGrammar) {
  182.     fDTDGrammar = (DTDGrammar*) aGrammar;
  183. }
  184. inline void DTDValidator::validateElement (const   XMLElementDecl* elemDef) {
  185.     // no special DTD Element validation
  186. }
  187. // ---------------------------------------------------------------------------
  188. //  DTDValidator: DTD handler interface
  189. // ---------------------------------------------------------------------------
  190. inline bool DTDValidator::handlesDTD() const
  191. {
  192.     // We definitely want to handle DTD scanning
  193.     return true;
  194. }
  195. // ---------------------------------------------------------------------------
  196. //  DTDValidator: Schema handler interface
  197. // ---------------------------------------------------------------------------
  198. inline bool DTDValidator::handlesSchema() const
  199. {
  200.     // No Schema scanning
  201.     return false;
  202. }
  203. #endif