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

xml/soap/webservice

开发平台:

C/C++

  1. /*
  2.  * The Apache Software License, Version 1.1
  3.  *
  4.  * Copyright (c) 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) 2001, 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: SchemaValidator.hpp,v $
  58.  * Revision 1.8  2001/11/13 13:25:08  tng
  59.  * Deprecate function XMLValidator::checkRootElement.
  60.  *
  61.  * Revision 1.7  2001/06/05 16:51:21  knoaman
  62.  * Add 'const' to getGrammar - submitted by Peter A. Volchek.
  63.  *
  64.  * Revision 1.6  2001/05/11 15:17:48  tng
  65.  * Schema: Nillable fixes.
  66.  *
  67.  * Revision 1.5  2001/05/11 13:27:37  tng
  68.  * Copyright update.
  69.  *
  70.  * Revision 1.4  2001/05/03 20:34:45  tng
  71.  * Schema: SchemaValidator update
  72.  *
  73.  * Revision 1.3  2001/04/19 18:17:40  tng
  74.  * Schema: SchemaValidator update, and use QName in Content Model
  75.  *
  76.  * Revision 1.2  2001/03/30 16:35:20  tng
  77.  * Schema: Whitespace normalization.
  78.  *
  79.  * Revision 1.1  2001/03/21 21:56:33  tng
  80.  * Schema: Add Schema Grammar, Schema Validator, and split the DTDValidator into DTDValidator, DTDScanner, and DTDGrammar.
  81.  *
  82.  */
  83. #if !defined(SCHEMAVALIDATOR_HPP)
  84. #define SCHEMAVALIDATOR_HPP
  85. #include <framework/XMLBuffer.hpp>
  86. #include <framework/XMLValidator.hpp>
  87. #include <util/RefVectorOf.hpp>
  88. #include <validators/common/GrammarResolver.hpp>
  89. #include <validators/datatype/DatatypeValidator.hpp>
  90. #include <validators/schema/SchemaElementDecl.hpp>
  91. #include <validators/schema/SchemaGrammar.hpp>
  92. //
  93. //  This is a derivative of the abstract validator interface. This class
  94. //  implements a validator that supports standard XML Schema semantics.
  95. //  This class handles scanning the of the schema, and provides
  96. //  the standard validation services against the Schema info it found.
  97. //
  98. class VALIDATORS_EXPORT SchemaValidator : public XMLValidator
  99. {
  100. public:
  101.     // -----------------------------------------------------------------------
  102.     //  Constructors and Destructor
  103.     // -----------------------------------------------------------------------
  104.     SchemaValidator(XMLErrorReporter* const errReporter = 0);
  105.     virtual ~SchemaValidator();
  106.     // -----------------------------------------------------------------------
  107.     //  Setter methods
  108.     // -----------------------------------------------------------------------
  109.     void setGrammarResolver(GrammarResolver* grammarResolver);
  110.     void setXsiType(const XMLCh* const        prefix
  111.       , const XMLCh* const        localPart
  112.        , const unsigned int        uriId);
  113.     void setNillable(bool isNil);
  114.     // -----------------------------------------------------------------------
  115.     //  Implementation of the XMLValidator interface
  116.     // -----------------------------------------------------------------------
  117.     virtual int checkContent
  118.     (
  119.         XMLElementDecl* const   elemDecl
  120.         , QName** const         children
  121.         , const unsigned int    childCount
  122.     );
  123.     virtual void faultInAttr
  124.     (
  125.                 XMLAttr&    toFill
  126.         , const XMLAttDef&  attDef
  127.     )   const;
  128.     virtual void preContentValidation(bool reuseGrammar);
  129.     virtual void postParseValidation();
  130.     virtual void reset();
  131.     virtual bool requiresNamespaces() const;
  132.     virtual void validateAttrValue
  133.     (
  134.         const   XMLAttDef*                  attDef
  135.         , const XMLCh* const                attrValue
  136.     );
  137.     virtual void validateElement
  138.     (
  139.         const   XMLElementDecl*             elemDef
  140.     );
  141.     virtual Grammar* getGrammar() const;
  142.     virtual void setGrammar(Grammar* aGrammar);
  143.     // -----------------------------------------------------------------------
  144.     //  Virtual DTD handler interface.
  145.     // -----------------------------------------------------------------------
  146.     virtual bool handlesDTD() const;
  147.     // -----------------------------------------------------------------------
  148.     //  Virtual Schema handler interface. handlesSchema() always return false.
  149.     // -----------------------------------------------------------------------
  150.     virtual bool handlesSchema() const;
  151.     // -----------------------------------------------------------------------
  152.     //  Schema Validator methods
  153.     // -----------------------------------------------------------------------
  154.     void normalizeWhiteSpace(DatatypeValidator* dV, const XMLCh* const value, XMLBuffer& toFill);
  155. private:
  156.     // -----------------------------------------------------------------------
  157.     //  Private data members
  158.     //
  159.     // -----------------------------------------------------------------------
  160.     //  The following comes from or set by the Scanner
  161.     //  fSchemaGrammar
  162.     //      The current schema grammar used by the validator
  163.     //
  164.     //  fGrammarResolver
  165.     //      All the schema grammar stored
  166.     //
  167.     //  fXsiType
  168.     //      Store the Schema Type Attribute Value if schema type is specified
  169.     //
  170.     //  fNil
  171.     //      Indicates if Nillable has been set
  172.     // -----------------------------------------------------------------------
  173.     //  The following used internally in the validator
  174.     //
  175.     //  fXsiTypeValidator
  176.     //      The validator used for xsi type validation
  177.     //
  178.     //  fDatatypeBuffer
  179.     //      Buffer for simple type element string content
  180.     //
  181.     //  fTrailing
  182.     //      Previous chunk had a trailing space
  183.     // -----------------------------------------------------------------------
  184.     SchemaGrammar* fSchemaGrammar;
  185.     GrammarResolver* fGrammarResolver;
  186.     QName* fXsiType;
  187.     bool fNil;
  188.     DatatypeValidator* fXsiTypeValidator;
  189.     XMLBuffer fDatatypeBuffer;
  190.     bool fTrailing;
  191. };
  192. // ---------------------------------------------------------------------------
  193. //  SchemaValidator: Setter methods
  194. // ---------------------------------------------------------------------------
  195. inline void SchemaValidator::setGrammarResolver(GrammarResolver* grammarResolver) {
  196.     fGrammarResolver = grammarResolver;
  197. }
  198. inline void SchemaValidator::setXsiType(const XMLCh* const        prefix
  199.       , const XMLCh* const        localPart
  200.        , const unsigned int        uriId)
  201. {
  202.     delete fXsiType;
  203.     fXsiType = new QName(prefix, localPart, uriId);
  204. }
  205. inline void SchemaValidator::setNillable(bool isNil) {
  206.     fNil = isNil;
  207. }
  208. // ---------------------------------------------------------------------------
  209. //  Virtual interface
  210. // ---------------------------------------------------------------------------
  211. inline Grammar* SchemaValidator::getGrammar() const {
  212.     return fSchemaGrammar;
  213. }
  214. inline void SchemaValidator::setGrammar(Grammar* aGrammar) {
  215.     fSchemaGrammar = (SchemaGrammar*) aGrammar;
  216. }
  217. // ---------------------------------------------------------------------------
  218. //  SchemaValidator: DTD handler interface
  219. // ---------------------------------------------------------------------------
  220. inline bool SchemaValidator::handlesDTD() const
  221. {
  222.     // No DTD scanning
  223.     return false;
  224. }
  225. // ---------------------------------------------------------------------------
  226. //  SchemaValidator: Schema handler interface
  227. // ---------------------------------------------------------------------------
  228. inline bool SchemaValidator::handlesSchema() const
  229. {
  230.     return true;
  231. }
  232. #endif