⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 complextypeinfo.hpp

📁 基于属性证书的访问控制源代码,由c++编写,包括openssl,xercesc等
💻 HPP
📖 第 1 页 / 共 2 页
字号:
/* * The Apache Software License, Version 1.1 * * Copyright (c) 2001 The Apache Software Foundation.  All rights * reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright *    notice, this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright *    notice, this list of conditions and the following disclaimer in *    the documentation and/or other materials provided with the *    distribution. * * 3. The end-user documentation included with the redistribution, *    if any, must include the following acknowledgment: *       "This product includes software developed by the *        Apache Software Foundation (http://www.apache.org/)." *    Alternately, this acknowledgment may appear in the software itself, *    if and wherever such third-party acknowledgments normally appear. * * 4. The names "Xerces" and "Apache Software Foundation" must *    not be used to endorse or promote products derived from this *    software without prior written permission. For written *    permission, please contact apache\@apache.org. * * 5. Products derived from this software may not be called "Apache", *    nor may "Apache" appear in their name, without prior written *    permission of the Apache Software Foundation. * * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * ==================================================================== * * This software consists of voluntary contributions made by many * individuals on behalf of the Apache Software Foundation, and was * originally based on software copyright (c) 2001, International * Business Machines, Inc., http://www.ibm.com .  For more information * on the Apache Software Foundation, please see * <http://www.apache.org/>. *//* * $Id: ComplexTypeInfo.hpp,v 1.19 2003/12/24 17:42:03 knoaman Exp $ */#if !defined(COMPLEXTYPEINFO_HPP)#define COMPLEXTYPEINFO_HPP/**  * The class act as a place holder to store complex type information.  *  * The class is intended for internal use.  */// ---------------------------------------------------------------------------//  Includes// ---------------------------------------------------------------------------#include <xercesc/util/XMLString.hpp>#include <xercesc/util/RefHash2KeysTableOf.hpp>#include <xercesc/util/RefVectorOf.hpp>#include <xercesc/framework/XMLElementDecl.hpp>#include <xercesc/framework/XMLContentModel.hpp>#include <xercesc/validators/schema/SchemaAttDef.hpp>#include <xercesc/internal/XSerializable.hpp>XERCES_CPP_NAMESPACE_BEGIN// ---------------------------------------------------------------------------//  Forward Declarations// ---------------------------------------------------------------------------class DatatypeValidator;class ContentSpecNode;class SchemaAttDefList;class SchemaElementDecl;class XSDLocator;class VALIDATORS_EXPORT ComplexTypeInfo : public XSerializable, public XMemory{public:    // -----------------------------------------------------------------------    //  Public Constructors/Destructor    // -----------------------------------------------------------------------    ComplexTypeInfo(MemoryManager* const manager = XMLPlatformUtils::fgMemoryManager);    ~ComplexTypeInfo();    // -----------------------------------------------------------------------    //  Getter methods    // -----------------------------------------------------------------------    bool                     getAbstract() const;    bool                     getAdoptContentSpec() const;    bool                     containsAttWithTypeId() const;    bool                     getPreprocessed() const;    int                      getDerivedBy() const;    int                      getBlockSet() const;    int                      getFinalSet() const;    int                      getScopeDefined() const;    unsigned int             getElementId() const;    int                      getContentType() const;    unsigned int             elementCount() const;    XMLCh*                   getTypeName() const;    DatatypeValidator*       getBaseDatatypeValidator() const;    DatatypeValidator*       getDatatypeValidator() const;    ComplexTypeInfo*         getBaseComplexTypeInfo() const;    ContentSpecNode*         getContentSpec() const;    const SchemaAttDef*      getAttWildCard() const;    SchemaAttDef*            getAttWildCard();    const SchemaAttDef*      getAttDef(const XMLCh* const baseName,                                       const int uriId) const;    SchemaAttDef*            getAttDef(const XMLCh* const baseName,                                       const int uriId);    XMLAttDefList&           getAttDefList() const;    const SchemaElementDecl* elementAt(const unsigned int index) const;    SchemaElementDecl*       elementAt(const unsigned int index);    XMLContentModel*         getContentModel(const bool checkUPA = false);    const XMLCh*             getFormattedContentModel ()   const;    XSDLocator*              getLocator() const;    const XMLCh*             getTypeLocalName() const;    const XMLCh*             getTypeUri() const;    /**     * returns true if this type is anonymous     **/    bool getAnonymous() const;    // -----------------------------------------------------------------------    //  Setter methods    // -----------------------------------------------------------------------    void setAbstract(const bool isAbstract);    void setAdoptContentSpec(const bool toAdopt);    void setAttWithTypeId(const bool value);    void setPreprocessed(const bool aValue = true);    void setDerivedBy(const int derivedBy);    void setBlockSet(const int blockSet);    void setFinalSet(const int finalSet);    void setScopeDefined(const int scopeDefined);    void setElementId(const unsigned int elemId);    void setTypeName(const XMLCh* const typeName);    void setContentType(const int contentType);    void setBaseDatatypeValidator(DatatypeValidator* const baseValidator);    void setDatatypeValidator(DatatypeValidator* const validator);    void setBaseComplexTypeInfo(ComplexTypeInfo* const typeInfo);    void setContentSpec(ContentSpecNode* const toAdopt);    void setAttWildCard(SchemaAttDef* const toAdopt);    void addAttDef(SchemaAttDef* const toAdd);    void addElement(SchemaElementDecl* const toAdd);    void setContentModel(XMLContentModel* const newModelToAdopt);    void setLocator(XSDLocator* const aLocator);    /**     * sets this type to be anonymous     **/    void setAnonymous();    // -----------------------------------------------------------------------    //  Helper methods    // -----------------------------------------------------------------------    bool hasAttDefs() const;    bool contains(const XMLCh* const attName);    XMLAttDef* findAttr    (        const   XMLCh* const    qName        , const unsigned int    uriId        , const XMLCh* const    baseName        , const XMLCh* const    prefix        , const XMLElementDecl::LookupOpts      options        ,       bool&           wasAdded    )   const;    bool resetDefs();    void checkUniqueParticleAttribution    (        SchemaGrammar*    const pGrammar      , GrammarResolver*  const pGrammarResolver      , XMLStringPool*    const pStringPool      , XMLValidator*     const pValidator    ) ;    /**      * Return a singleton that represents 'anyType'      *      * @param emptyNSId the uri id of the empty namespace       */    static ComplexTypeInfo* getAnyType(unsigned int emptyNSId);    /**      *  Notification that lazy data has been deleted      */    static void reinitAnyType();    /***     * Support for Serialization/De-serialization     ***/    DECL_XSERIALIZABLE(ComplexTypeInfo)private:    // -----------------------------------------------------------------------    //  Unimplemented contstructors and operators    // -----------------------------------------------------------------------    ComplexTypeInfo(const ComplexTypeInfo& elemInfo);    ComplexTypeInfo& operator= (const ComplexTypeInfo& other);    // -----------------------------------------------------------------------    //  Private helper methods    // -----------------------------------------------------------------------    void faultInAttDefList() const;    XMLContentModel* createChildModel(ContentSpecNode* specNode, const bool isMixed);    XMLContentModel* makeContentModel(const bool checkUPA = false, ContentSpecNode* const specNode = 0);    XMLContentModel* buildContentModel(ContentSpecNode* const specNode);    XMLCh* formatContentModel () const ;    ContentSpecNode* expandContentModel(ContentSpecNode* const curNode, const int minOccurs, const int maxOccurs);    ContentSpecNode* convertContentSpecTree(ContentSpecNode* const curNode, const bool checkUPA = false);    void resizeContentSpecOrgURI();    // -----------------------------------------------------------------------    //  Private data members    // -----------------------------------------------------------------------    bool                               fAnonymous;    bool                               fAbstract;    bool                               fAdoptContentSpec;    bool                               fAttWithTypeId;    bool                               fPreprocessed;    int                                fDerivedBy;    int                                fBlockSet;    int                                fFinalSet;    int                                fScopeDefined;    unsigned int                       fElementId;    int                                fContentType;    XMLCh*                             fTypeName;    XMLCh*                             fTypeLocalName;    XMLCh*                             fTypeUri;    DatatypeValidator*                 fBaseDatatypeValidator;    DatatypeValidator*                 fDatatypeValidator;    ComplexTypeInfo*                   fBaseComplexTypeInfo;    ContentSpecNode*                   fContentSpec;    SchemaAttDef*                      fAttWildCard;    SchemaAttDefList*                  fAttList;    RefVectorOf<SchemaElementDecl>*    fElements;    RefVectorOf<ContentSpecNode>*      fSpecNodesToDelete;    RefHash2KeysTableOf<SchemaAttDef>* fAttDefs;    XMLContentModel*                   fContentModel;    XMLCh*                             fFormattedModel;    unsigned int*                      fContentSpecOrgURI;    unsigned int                       fUniqueURI;    unsigned int                       fContentSpecOrgURISize;    XSDLocator*                        fLocator;    MemoryManager*                     fMemoryManager;    static ComplexTypeInfo*            fAnyType;};// ---------------------------------------------------------------------------//  ComplexTypeInfo: Getter methods// ---------------------------------------------------------------------------inline bool ComplexTypeInfo::getAbstract() const {    return fAbstract;}inline bool ComplexTypeInfo::getAdoptContentSpec() const {    return fAdoptContentSpec;}inline bool ComplexTypeInfo::containsAttWithTypeId() const {    return fAttWithTypeId;}inline bool ComplexTypeInfo::getPreprocessed() const {    return fPreprocessed;}inline int ComplexTypeInfo::getDerivedBy() const {    return fDerivedBy;}inline int ComplexTypeInfo::getBlockSet() const {    return fBlockSet;}inline int ComplexTypeInfo::getFinalSet() const {    return fFinalSet;}inline int ComplexTypeInfo::getScopeDefined() const {

⌨️ 快捷键说明

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