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

📄 xsmodel.hpp

📁 基于属性证书的访问控制源代码,由c++编写,包括openssl,xercesc等
💻 HPP
📖 第 1 页 / 共 2 页
字号:
/* * The Apache Software License, Version 1.1 * * Copyright (c) 2003 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) 1999, International * Business Machines, Inc., http://www.ibm.com .  For more information * on the Apache Software Foundation, please see * <http://www.apache.org/>. *//* * $Log: XSModel.hpp,v $ * Revision 1.10  2003/12/24 17:42:02  knoaman * Misc. PSVI updates * * Revision 1.9  2003/11/26 16:12:23  knoaman * Add a method to return the XSObject mapped to a schema grammar component * * Revision 1.8  2003/11/21 22:34:45  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.7  2003/11/21 17:25:09  knoaman * Use XSObjectFactory to create various components. * * Revision 1.6  2003/11/15 21:18:39  neilg * fixes for compilation under gcc * * Revision 1.5  2003/11/14 22:47:53  neilg * fix bogus log message from previous commit... * * Revision 1.4  2003/11/14 22:33:30  neilg * Second phase of schema component model implementation.   * Implement XSModel, XSNamespaceItem, and the plumbing necessary * to connect them to the other components. * Thanks to David Cargill. * * Revision 1.3  2003/11/06 15:30:04  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.2  2003/10/10 18:37:51  neilg * update XSModel and XSObject interface so that IDs can be used to query components in XSModels, and so that those IDs can be recovered from components * * Revision 1.1  2003/09/16 14:33:36  neilg * PSVI/schema component model classes, with Makefile/configuration changes necessary to build them * */#if !defined(XSMODEL_HPP)#define XSMODEL_HPP#include <xercesc/util/PlatformUtils.hpp>#include <xercesc/framework/psvi/XSObject.hpp>#include <xercesc/framework/psvi/XSNamedMap.hpp>#include <xercesc/util/ValueVectorOf.hpp>#include <xercesc/validators/schema/SchemaElementDecl.hpp>XERCES_CPP_NAMESPACE_BEGIN/** * This class contains all properties of the Schema infoitem as determined * after an entire validation episode.  That is, it contains all the properties * of all the Schema Namespace Information objects that went into * the validation episode. * Since it is not like other components, it  does not  * inherit from the XSObject interface. * This is *always* owned by the validator /parser object from which * it is obtained.  It is designed to be subclassed; subclasses will * specify under what conditions it may be relied upon to have meaningful contents. */// forward declarationsclass Grammar;class XMLGrammarPool;class XSAnnotation;class XSAttributeDeclaration;class XSAttributeGroupDefinition;class XSElementDeclaration;class XSModelGroupDefinition;class XSNamespaceItem;class XSNotationDeclaration;class XSTypeDefinition;class XSObjectFactory;class XMLPARSER_EXPORT XSModel : public XMemory{public:    //  Constructors and Destructor    // -----------------------------------------------------------------------    /** @name Constructors */    //@{    /**      * The constructor to be used when a grammar pool contains all needed info      * @param grammarPool  the grammar pool containing the underlying data structures      * @param manager      The configurable memory manager      */    XSModel( XMLGrammarPool *grammarPool                , MemoryManager* const manager = XMLPlatformUtils::fgMemoryManager);    /**      * The constructor to be used when the XSModel must represent all      * components in the union of an existing XSModel and a newly-created      * Grammar(s) from the GrammarResolver      *      * @param baseModel  the XSModel upon which this one is based      * @param grammarResolver  the grammar(s) whose components are to be merged      * @param manager     The configurable memory manager      */    XSModel( XSModel *baseModel                , GrammarResolver *grammarResolver                , MemoryManager* const manager = XMLPlatformUtils::fgMemoryManager);    //@};    /** @name Destructor */    //@{    ~XSModel();    //@}    //---------------------    /** @name XSModel methods */    //@{    /**     * Convenience method. Returns a list of all namespaces that belong to      * this schema. The value <code>null</code> is not a valid namespace      * name, but if there are components that don't have a target namespace,      * <code>null</code> is included in this list.      */    StringList *getNamespaces();    /**     * A set of namespace schema information information items ( of type      * <code>XSNamespaceItem</code>), one for each namespace name which      * appears as the target namespace of any schema component in the schema      * used for that assessment, and one for absent if any schema component      * in the schema had no target namespace. For more information see      * schema information.      */    XSNamespaceItemList *getNamespaceItems();    /**     * [schema components]: a list of top-level components, i.e. element      * declarations, attribute declarations, etc.      * @param objectType The type of the declaration, i.e.      *   <code>ELEMENT_DECLARATION</code>,      *   <code>TYPE_DEFINITION</code> and any other component type that     * may be a property of a schema component.     * @return A list of top-level definition of the specified type in      *   <code>objectType</code> or <code>null</code>.      */    XSNamedMap<XSObject> *getComponents(XSConstants::COMPONENT_TYPE objectType);

⌨️ 快捷键说明

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