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

📄 domparser.hpp

📁 基于属性证书的访问控制源代码,由c++编写,包括openssl,xercesc等
💻 HPP
📖 第 1 页 / 共 5 页
字号:
/* * The Apache Software License, Version 1.1 * * Copyright (c) 1999-2002 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/>. *//* * $Id: DOMParser.hpp,v 1.22 2004/01/29 11:44:26 cargilld Exp $ * */#if !defined(DOMPARSER_HPP)#define DOMPARSER_HPP#include <xercesc/framework/XMLDocumentHandler.hpp>#include <xercesc/framework/XMLErrorReporter.hpp>#include <xercesc/framework/XMLEntityHandler.hpp>#include <xercesc/util/ValueStackOf.hpp>#include <xercesc/validators/DTD/DocTypeHandler.hpp>#include <xercesc/validators/DTD/DTDElementDecl.hpp>#include "DOM_Document.hpp"#include "DOM_DocumentType.hpp"XERCES_CPP_NAMESPACE_BEGINclass EntityResolver;class ErrorHandler;class XMLPScanToken;class XMLScanner;class XMLValidator;class Grammar;class GrammarResolver;class XMLGrammarPool;class XMLEntityResolver;class PSVIHandler;/**  * This class implements the Document Object Model (DOM) interface.  * It should be used by applications which choose to parse and  * process the XML document using the DOM api's. This implementation  * also allows the applications to install an error and an entitty  * handler (useful extensions to the DOM specification).  *  * <p>It can be used to instantiate a validating or non-validating  * parser, by setting a member flag.</p>  */class PARSERS_EXPORT DOMParser :    public XMLDocumentHandler    , public XMLErrorReporter    , public XMLEntityHandler    , public DocTypeHandler    , public XMemory{public :    // -----------------------------------------------------------------------    //  Class types    // -----------------------------------------------------------------------    enum ValSchemes    {        Val_Never        , Val_Always        , Val_Auto    };    // -----------------------------------------------------------------------    //  Constructors and Detructor    // -----------------------------------------------------------------------    /** @name Constructors and Destructor */    //@{    /** Construct a DOMParser, with an optional validator      *      * Constructor with an instance of validator class to use for      * validation. If you don't provide a validator, a default one will      * be created for you in the scanner.      *      * @param valToAdopt Pointer to the validator instance to use. The      *                   parser is responsible for freeing the memory.      */    DOMParser    (          XMLValidator* const   valToAdopt = 0        , MemoryManager* const  manager = XMLPlatformUtils::fgMemoryManager        , XMLGrammarPool* const gramPool = 0    );    /**      * Destructor      */    ~DOMParser();    //@}    /** Reset the parser      *      * This method resets the state of the DOM driver and makes      * it ready for a fresh parse run.      */    void reset();    // -----------------------------------------------------------------------    //  Getter methods    // -----------------------------------------------------------------------    /** @name Getter methods */    //@{    /** Get the DOM document      *      * This method returns the DOM_Document object representing the      * root of the document tree. This object provides the primary      * access to the document's data.      *      * @return The DOM_Document object which represents the entire      *         XML document.      */    DOM_Document getDocument();    /** Get a pointer to the error handler      *      * This method returns the installed error handler. If no handler      * has been installed, then it will be a zero pointer.      *      * @return The pointer to the installed error handler object.      */    ErrorHandler* getErrorHandler();    /** Get a const pointer to the error handler      *      * This method returns the installed error handler.  If no handler      * has been installed, then it will be a zero pointer.      *      * @return A const pointer to the installed error handler object.      */    const ErrorHandler* getErrorHandler() const;    /** Get a pointer to the PSVI handler      *      * This method returns the installed PSVI handler. If no handler      * has been installed, then it will be a zero pointer.      *      * @return The pointer to the installed PSVI handler object.      */    PSVIHandler* getPSVIHandler();    /** Get a const pointer to the error handler      *      * This method returns the installed error handler.  If no handler      * has been installed, then it will be a zero pointer.      *      * @return A const pointer to the installed error handler object.      */    const PSVIHandler* getPSVIHandler() const;    /** Get a pointer to the entity resolver      *      * This method returns the installed entity resolver.  If no resolver      * has been installed, then it will be a zero pointer.      *      * @return The pointer to the installed entity resolver object.      */    EntityResolver* getEntityResolver();    /** Get a const pointer to the entity resolver      *      * This method returns the installed entity resolver. If no resolver      * has been installed, then it will be a zero pointer.      *      * @return A const pointer to the installed entity resolver object.      */    const EntityResolver* getEntityResolver() const;    /** Get a pointer to the entity resolver      *      * This method returns the installed entity resolver.  If no resolver      * has been installed, then it will be a zero pointer.      *      * @return The pointer to the installed entity resolver object.      */    XMLEntityResolver* getXMLEntityResolver();    /** Get a const pointer to the entity resolver      *      * This method returns the installed entity resolver. If no resolver      * has been installed, then it will be a zero pointer.      *      * @return A const pointer to the installed entity resolver object.      */    const XMLEntityResolver* getXMLEntityResolver() const;    /** Get a const reference to the underlying scanner      *      * This method returns a reference to the underlying scanner object.      * It allows read only access to data maintained in the scanner.      *      * @return A const reference to the underlying scanner object.      */    const XMLScanner& getScanner() const;    /** Get a const reference to the validator      *      * This method returns a reference to the parser's installed      * validator.      *      * @return A const reference to the installed validator object.      */    const XMLValidator& getValidator() const;    /**      * This method returns an enumerated value that indicates the current      * validation scheme set on this parser.      *      * @return The ValSchemes value current set on this parser.      * @see #setValidationScheme      */    ValSchemes getValidationScheme() const;    /** Get the 'do schema' flag      *      * This method returns the state of the parser's schema processing      * flag.      *      * @return true, if the parser is currently configured to      *         understand schema, false otherwise.      *      * @see #setDoSchema      */    bool getDoSchema() const;    /** Get the 'full schema constraint checking' flag      *      * This method returns the state of the parser's full schema constraint      * checking flag.      *      * @return true, if the parser is currently configured to      *         have full schema constraint checking, false otherwise.      *      * @see #setValidationSchemaFullChecking      */    bool getValidationSchemaFullChecking() const;    /** Get error count from the last parse operation.      *      * This method returns the error count from the last parse      * operation. Note that this count is actually stored in the      * scanner, so this method simply returns what the      * scanner reports.      *      * @return number of errors encountered during the latest      *			parse operation.      *      */    int getErrorCount() const;    /** Get the 'do namespaces' flag      *      * This method returns the state of the parser's namespace processing      * flag.      *      * @return true, if the parser is currently configured to      *         understand namespaces, false otherwise.      *      * @see #setDoNamespaces      */    bool getDoNamespaces() const;    /** Get the 'exit on first error' flag      *      * This method returns the state of the parser's      * exit-on-First-Fatal-Error flag. If this flag is true, then the      * parse will exit the first time it sees any non-wellformed XML or      * any validity error. The default state is true.      *      * @return true, if the parser is currently configured to      *         exit on the first fatal error, false otherwise.      *      * @see #setExitOnFirstFatalError      */    bool getExitOnFirstFatalError() const;    /**      * This method returns the state of the parser's      * validation-constraint-fatal flag.      *      * @return true, if the parser is currently configured to      *         set validation constraint errors as fatal, false      *         otherwise.      *      * @see #setValidationContraintFatal      */    bool getValidationConstraintFatal() const;

⌨️ 快捷键说明

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