schemaelementdecl.hpp

来自「IBM的解析xml的工具Xerces的源代码」· HPP 代码 · 共 978 行 · 第 1/3 页

HPP
978
字号
/* * Copyright 2001,2004 The Apache Software Foundation. *  * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at *  *      http://www.apache.org/licenses/LICENSE-2.0 *  * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. *//* * $Log: SchemaElementDecl.hpp,v $ * Revision 1.22  2004/09/08 13:56:56  peiyongz * Apache License Version 2.0 * * Revision 1.21  2004/02/05 18:08:38  cargilld * Code cleanup changes to get rid of various compiler diagnostic messages. * * Revision 1.20  2004/01/29 11:52:31  cargilld * Code cleanup changes to get rid of various compiler diagnostic messages. * * Revision 1.19  2003/12/24 17:42:03  knoaman * Misc. PSVI updates * * Revision 1.18  2003/12/12 18:36:37  peiyongz * getObjectType() * * Revision 1.17  2003/11/24 05:21:04  neilg * update method documentation * * Revision 1.16  2003/11/21 22:34:46  neilg * More schema component model implementation, thanks to David Cargill. * In particular, this cleans up and completes the XSModel, XSNamespaceItem, * XSAttributeDeclaration and XSAttributeGroup implementations. * * Revision 1.15  2003/11/06 15:30:08  neilg * first part of PSVI/schema component model implementation, thanks to David Cargill.  This covers setting the PSVIHandler on parser objects, as well as implementing XSNotation, XSSimpleTypeDefinition, XSIDCDefinition, and most of XSWildcard, XSComplexTypeDefinition, XSElementDeclaration, XSAttributeDeclaration and XSAttributeUse. * * Revision 1.14  2003/10/14 15:22:28  peiyongz * Implementation of Serialization/Deserialization * * Revision 1.13  2003/10/05 02:08:05  neilg * Because it makes grammars un-sharable between parsers running on multiple threads, xsi:type should not be handled by modifying element declarations.  Modifying implementation so it no longer relies on this kind of behaviour; marking methods as deprecated which imply that xsi:type will be handled in this way.  Once their behaviour is handled elsewhere, these methods should eventually be removed * * Revision 1.12  2003/08/29 11:44:18  gareth * If a type was explicitly declared as anyType that now gets set in DOMTypeInfo. Added test cases. * * Revision 1.11  2003/05/18 14:02:08  knoaman * Memory manager implementation: pass per instance manager. * * Revision 1.10  2003/05/16 21:43:21  knoaman * Memory manager implementation: Modify constructors to pass in the memory manager. * * Revision 1.9  2003/05/15 18:57:27  knoaman * Partial implementation of the configurable memory manager. * * Revision 1.8  2003/01/29 19:47:16  gareth * added DOMTypeInfo and some PSVI methods * * Revision 1.7  2002/11/04 14:49:41  tng * C++ Namespace Support. * * Revision 1.6  2002/07/12 15:17:48  knoaman * For a given global element, store info about a substitution group element * as a SchemaElementDecl and not as a string. * * Revision 1.5  2002/04/01 15:47:06  knoaman * Move Element Consistency checking (ref to global declarations) to SchemaValidator. * * Revision 1.4  2002/03/21 16:31:43  knoaman * Remove data/methods from SchemaElementDecl that are not used. * * Revision 1.3  2002/03/04 15:09:50  knoaman * Fix for bug 6834. * * Revision 1.2  2002/02/06 22:30:50  knoaman * Added a new attribute to store the wild card information for elements of type 'anyType'. * * Revision 1.1.1.1  2002/02/01 22:22:46  peiyongz * sane_include * * Revision 1.16  2001/11/23 18:25:45  tng * Eliminate Warning from AIX xlC 3.6: 1540-399: (W) "IdentityConstraint" is undefined.  The delete operator will not call a destructor. * * Revision 1.15  2001/11/02 14:13:45  knoaman * Add support for identity constraints. * * Revision 1.14  2001/10/11 12:07:39  tng * Schema: model type should be based on complextypeinfo if exists. * * Revision 1.13  2001/09/05 20:49:11  knoaman * Fix for complexTypes with mixed content model. * * Revision 1.12  2001/08/29 20:52:35  tng * Schema: xsi:type support * * Revision 1.11  2001/08/21 16:06:11  tng * Schema: Unique Particle Attribution Constraint Checking. * * Revision 1.10  2001/08/09 15:23:16  knoaman * add support for <anyAttribute> declaration. * * Revision 1.9  2001/07/24 18:33:46  knoaman * Added support for <group> + extra constraint checking for complexType * * Revision 1.8  2001/06/13 20:51:15  peiyongz * fIsMixed: to handle mixed Content Model * * Revision 1.7  2001/05/11 13:27:36  tng * Copyright update. * * Revision 1.6  2001/05/03 20:34:43  tng * Schema: SchemaValidator update * * Revision 1.5  2001/05/03 19:18:01  knoaman * TraverseSchema Part II. * * Revision 1.4  2001/04/19 17:43:17  knoaman * More schema implementation classes. * * Revision 1.3  2001/03/21 21:56:33  tng * Schema: Add Schema Grammar, Schema Validator, and split the DTDValidator into DTDValidator, DTDScanner, and DTDGrammar. * * Revision 1.2  2001/03/21 19:30:17  tng * Schema: Content Model Updates, by Pei Yong Zhang. * * Revision 1.1  2001/02/27 18:48:23  tng * Schema: Add SchemaAttDef, SchemaElementDecl, SchemaAttDefList. * */#if !defined(SCHEMAELEMENTDECL_HPP)#define SCHEMAELEMENTDECL_HPP#include <xercesc/util/QName.hpp>#include <xercesc/validators/common/Grammar.hpp>#include <xercesc/validators/schema/ComplexTypeInfo.hpp>#include <xercesc/validators/schema/identity/IdentityConstraint.hpp>#include <xercesc/validators/datatype/DatatypeValidator.hpp>#include <xercesc/validators/datatype/UnionDatatypeValidator.hpp>#include <xercesc/validators/schema/PSVIDefs.hpp>XERCES_CPP_NAMESPACE_BEGINclass ContentSpecNode;class SchemaAttDefList;////  This class is a derivative of the basic element decl. This one implements//  the virtuals so that they work for a Schema.//class VALIDATORS_EXPORT SchemaElementDecl : public XMLElementDecl{public :    // -----------------------------------------------------------------------    //  Class specific types    //    //  ModelTypes    //      Indicates the type of content model that an element has. This    //      indicates how the content model is represented and validated.    // -----------------------------------------------------------------------    enum ModelTypes    {        Empty        , Any        , Mixed_Simple        , Mixed_Complex        , Children        , Simple        , ModelTypes_Count    };    // -----------------------------------------------------------------------    //  Constructors and Destructor    // -----------------------------------------------------------------------    SchemaElementDecl(MemoryManager* const manager = XMLPlatformUtils::fgMemoryManager);    SchemaElementDecl    (          const XMLCh* const   prefix        , const XMLCh* const   localPart        , const int            uriId        , const ModelTypes     modelType = Any        , const int            enclosingScope = Grammar::TOP_LEVEL_SCOPE        , MemoryManager* const manager = XMLPlatformUtils::fgMemoryManager    );    SchemaElementDecl    (          const QName* const   elementName        , const ModelTypes     modelType = Any        , const int            enclosingScope = Grammar::TOP_LEVEL_SCOPE        , MemoryManager* const manager = XMLPlatformUtils::fgMemoryManager    );    ~SchemaElementDecl();    // -----------------------------------------------------------------------    //  The virtual element decl interface    // -----------------------------------------------------------------------    virtual XMLAttDef* findAttr    (        const   XMLCh* const    qName        , const unsigned int    uriId        , const XMLCh* const    baseName        , const XMLCh* const    prefix        , const LookupOpts      options        ,       bool&           wasAdded    )   const;    virtual XMLAttDefList& getAttDefList() const;    virtual CharDataOpts getCharDataOpts() const;    virtual bool hasAttDefs() const;    // @deprecated; not thread-safe    virtual bool resetDefs();    virtual const ContentSpecNode* getContentSpec() const;    virtual ContentSpecNode* getContentSpec();    virtual void setContentSpec(ContentSpecNode* toAdopt);    virtual XMLContentModel* getContentModel();    virtual void setContentModel(XMLContentModel* const newModelToAdopt);    virtual const XMLCh* getFormattedContentModel ()   const;    // -----------------------------------------------------------------------    //  Getter methods    // -----------------------------------------------------------------------    const SchemaAttDef* getAttDef(const XMLCh* const baseName, const int uriId) const;    SchemaAttDef* getAttDef(const XMLCh* const baseName, const int uriId);    const SchemaAttDef* getAttWildCard() const;    SchemaAttDef* getAttWildCard();    ModelTypes getModelType() const;    PSVIDefs::PSVIScope getPSVIScope() const;    DatatypeValidator* getDatatypeValidator() const;    int getEnclosingScope() const;    int getFinalSet() const;    int getBlockSet() const;    int getMiscFlags() const;    XMLCh* getDefaultValue() const;    ComplexTypeInfo* getComplexTypeInfo() const;    virtual bool isGlobalDecl() const;    SchemaElementDecl* getSubstitutionGroupElem() const;    // ----------------------------------------------------------------------    // Partial implementation of PSVI    // The values these methods return are only accurate until the cleanUp method    // is called (in the end tag part of the scanner you are using)    // note that some of this information has dependancies. For example,    // if something is not valid then the information returned by the other     // calls may be meaningless    // See http://www.w3.org/TR/xmlschema-1/ for detailed information    // ----------------------------------------------------------------------    /**     * The appropriate case among the following:     * 1 If it was strictly assessed, then the appropriate case among the following:     * 1.1 If all of the following are true     *    1.1.1     *    1.1.1.1 clause 1.1 of Schema-Validity Assessment (Element) (3.3.4) applied and the item was valid as defined by Element Locally Valid (Element) (3.3.4);     *    1.1.1.2 clause 1.2 of Schema-Validity Assessment (Element) (3.3.4) applied and the item was valid as defined by Element Locally Valid (Type) (3.3.4).     *    1.1.2 Neither its [children] nor its [attributes] contains an information item (element or attribute respectively) whose [validity] is invalid.     *    1.1.3 Neither its [children] nor its [attributes] contains an information item (element or attribute respectively) with a context-determined declaration of mustFind whose [validity] is unknown.     * , then valid;     *    1.2 otherwise invalid.     *    2 otherwise notKnown.     * @deprecated; not thread-safe     */    PSVIDefs::Validity getValidity() const;    /**     * The appropriate case among the following:     * 1 If it was strictly assessed and neither its [children] nor its [attributes] contains an information item (element or attribute respectively) whose [validation attempted] is not full, then full;     * 2 If it was not strictly assessed and neither its [children] nor its [attributes] contains an information item (element or attribute respectively) whose [validation attempted] is not none, then none;     *3 otherwise partial.     * @deprecated; not thread-safe     */    PSVIDefs::Validation getValidationAttempted() const;    /**     * @return the complexity. simple or complex, depending on the type definition.     * @deprecated; not thread-safe     */    PSVIDefs::Complexity getTypeType() const;    /**     * The target namespace of the type definition.     * @deprecated; not thread-safe (will not work with xsi:type and shared grammars)     */    const XMLCh* getTypeUri() const;    /**     * The {name} of the type definition, if it is not absent.      * @deprecated; not thread-safe (will not work with xsi:type and shared grammars)     */    const XMLCh* getTypeName() const;    /**     * true if the {name} of the type definition is absent, otherwise false.     * @deprecated; not thread-safe (will not work with xsi:type and shared grammars)     */    bool getTypeAnonymous() const;    /**     * If this method returns true and validity is VALID then the next three      * produce accurate results     * @return true if the element is validated using a union type     * @deprecated; not thread-safe (will not work with xsi:type and shared grammars)     */    bool isTypeDefinitionUnion() const;    /**     * The {target namespace} of the actual member type definition.     * @deprecated; not thread-safe (will not work with xsi:type and shared grammars)     */    const XMLCh* getMemberTypeUri() const;

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?