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

📄 xercesdomparser.hpp

📁 经典开源游戏glest的源代码
💻 HPP
📖 第 1 页 / 共 2 页
字号:
    //  Implementation of the XMLErrorReporter interface.    // -----------------------------------------------------------------------    /** @name Implementation of the XMLErrorReporter interface. */    //@{    /** Handle errors reported from the parser      *      * This method is used to report back errors found while parsing the      * XML file. This method is also borrowed from the SAX specification.      * It calls the corresponding user installed Error Handler method:      * 'fatal', 'error', 'warning' depending on the severity of the error.      * This classification is defined by the XML specification.      *      * @param errCode An integer code for the error.      * @param msgDomain A const pointer to an Unicode string representing      *                  the message domain to use.      * @param errType An enumeration classifying the severity of the error.      * @param errorText A const pointer to an Unicode string representing      *                  the text of the error message.      * @param systemId  A const pointer to an Unicode string representing      *                  the system id of the XML file where this error      *                  was discovered.      * @param publicId  A const pointer to an Unicode string representing      *                  the public id of the XML file where this error      *                  was discovered.      * @param lineNum   The line number where the error occurred.      * @param colNum    The column number where the error occurred.      * @see ErrorHandler      */    virtual void error    (        const   unsigned int                errCode        , const XMLCh* const                msgDomain        , const XMLErrorReporter::ErrTypes  errType        , const XMLCh* const                errorText        , const XMLCh* const                systemId        , const XMLCh* const                publicId        , const XMLSSize_t                  lineNum        , const XMLSSize_t                  colNum    );    /** Reset any error data before a new parse     *      * This method allows the user installed Error Handler callback to      * 'reset' itself.      *      * <b>This method is a no-op for this DOM      * implementation.</b>      */    virtual void resetErrors();    //@}    // -----------------------------------------------------------------------    //  Implementation of the XMLEntityHandler interface.    // -----------------------------------------------------------------------    /** @name Implementation of the XMLEntityHandler interface. */    //@{    /** Handle an end of input source event      *      * This method is used to indicate the end of parsing of an external      * entity file.      *      * <b>This method is a no-op for this DOM      * implementation.</b>      *      * @param inputSource A const reference to the InputSource object      *                    which points to the XML file being parsed.      * @see InputSource      */    virtual void endInputSource(const InputSource& inputSource);    /** Expand a system id      *      * This method allows an installed XMLEntityHandler to further      * process any system id's of enternal entities encountered in      * the XML file being parsed, such as redirection etc.      *      * <b>This method always returns 'false'      * for this DOM implementation.</b>      *      * @param systemId  A const pointer to an Unicode string representing      *                  the system id scanned by the parser.      * @param toFill    A pointer to a buffer in which the application      *                  processed system id is stored.      * @return 'true', if any processing is done, 'false' otherwise.      */    virtual bool expandSystemId    (        const   XMLCh* const    systemId        ,       XMLBuffer&      toFill    );    /** Reset any entity handler information      *      * This method allows the installed XMLEntityHandler to reset      * itself.      *      * <b>This method is a no-op for this DOM      * implementation.</b>      */    virtual void resetEntities();    /** Resolve a public/system id      *      * This method allows a user installed entity handler to further      * process any pointers to external entities. The applications can      * implement 'redirection' via this callback. This method is also      * borrowed from the SAX specification.      *      * @deprecated This method is no longer called (the other resolveEntity one is).      *      * @param publicId A const pointer to a Unicode string representing the      *                 public id of the entity just parsed.      * @param systemId A const pointer to a Unicode string representing the      *                 system id of the entity just parsed.      * @param baseURI  A const pointer to a Unicode string representing the      *                 base URI of the entity just parsed,      *                 or <code>null</code> if there is no base URI.      * @return The value returned by the user installed resolveEntity      *         method or NULL otherwise to indicate no processing was done.      *         The returned InputSource is owned by the parser which is      *         responsible to clean up the memory.      * @see DOMEntityResolver      * @see XMLEntityHandler      */    virtual InputSource* resolveEntity    (        const   XMLCh* const    publicId        , const XMLCh* const    systemId        , const XMLCh* const    baseURI = 0    );    /** Resolve a public/system id      *      * This method allows a user installed entity handler to further      * process any pointers to external entities. The applications can      * implement 'redirection' via this callback.        *      * @param resourceIdentifier An object containing the type of      *        resource to be resolved and the associated data members      *        corresponding to this type.      * @return The value returned by the user installed resolveEntity      *         method or NULL otherwise to indicate no processing was done.      *         The returned InputSource is owned by the parser which is      *         responsible to clean up the memory.      * @see XMLEntityHandler      * @see XMLEntityResolver      */    virtual InputSource* resolveEntity    (        XMLResourceIdentifier* resourceIdentifier    );    /** Handle a 'start input source' event      *      * This method is used to indicate the start of parsing an external      * entity file.      *      * <b>This method is a no-op for this DOM parse      * implementation.</b>      *      * @param inputSource A const reference to the InputSource object      *                    which points to the external entity      *                    being parsed.      */    virtual void startInputSource(const InputSource& inputSource);    //@}    // -----------------------------------------------------------------------    //  Grammar preparsing interface    // -----------------------------------------------------------------------    /** @name Implementation of Grammar preparsing interface's. */    //@{    /**      * Preparse schema grammar (XML Schema, DTD, etc.) via an input source      * object.      *      * This method invokes the preparsing process on a schema grammar XML      * file specified by the SAX InputSource parameter. If the 'toCache' flag      * is enabled, the parser will cache the grammars for re-use. If a grammar      * key is found in the pool, no caching of any grammar will take place.      *      * <p><b>"Experimental - subject to change"</b></p>      *      * @param source A const reference to the SAX InputSource object which      *               points to the schema grammar file to be preparsed.      * @param grammarType The grammar type (Schema or DTD).      * @param toCache If <code>true</code>, we cache the preparsed grammar,      *                otherwise, no chaching. Default is <code>false</code>.      * @return The preparsed schema grammar object (SchemaGrammar or      *         DTDGrammar). That grammar object is owned by the parser.      *      * @exception SAXException Any SAX exception, possibly      *            wrapping another exception.      * @exception XMLException An exception from the parser or client      *            handler code.      * @exception DOMException A DOM exception as per DOM spec.      *      * @see InputSource#InputSource      */    Grammar* loadGrammar(const InputSource& source,                         const short grammarType,                         const bool toCache = false);    /**      * Preparse schema grammar (XML Schema, DTD, etc.) via a file path or URL      *      * This method invokes the preparsing process on a schema grammar XML      * file specified by the file path parameter. If the 'toCache' flag      * is enabled, the parser will cache the grammars for re-use. If a grammar      * key is found in the pool, no caching of any grammar will take place.      *      * <p><b>"Experimental - subject to change"</b></p>      *      * @param systemId A const XMLCh pointer to the Unicode string which      *                 contains the path to the XML grammar file to be      *                 preparsed.      * @param grammarType The grammar type (Schema or DTD).      * @param toCache If <code>true</code>, we cache the preparsed grammar,      *                otherwise, no chaching. Default is <code>false</code>.      * @return The preparsed schema grammar object (SchemaGrammar or      *         DTDGrammar). That grammar object is owned by the parser.      *      * @exception SAXException Any SAX exception, possibly      *            wrapping another exception.      * @exception XMLException An exception from the parser or client      *            handler code.      * @exception DOMException A DOM exception as per DOM spec.      */    Grammar* loadGrammar(const XMLCh* const systemId,                         const short grammarType,                         const bool toCache = false);    /**      * Preparse schema grammar (XML Schema, DTD, etc.) via a file path or URL      *      * This method invokes the preparsing process on a schema grammar XML      * file specified by the file path parameter. If the 'toCache' flag      * is enabled, the parser will cache the grammars for re-use. If a grammar      * key is found in the pool, no caching of any grammar will take place.      *      * <p><b>"Experimental - subject to change"</b></p>      *      * @param systemId A const char pointer to a native string which contains      *                 the path to the XML grammar file to be preparsed.      * @param grammarType The grammar type (Schema or DTD).      * @param toCache If <code>true</code>, we cache the preparsed grammar,      *                otherwise, no chaching. Default is <code>false</code>.      * @return The preparsed schema grammar object (SchemaGrammar or      *         DTDGrammar). That grammar object is owned by the parser.      *      * @exception SAXException Any SAX exception, possibly      *            wrapping another exception.      * @exception XMLException An exception from the parser or client      *            handler code.      * @exception DOMException A DOM exception as per DOM spec.      */    Grammar* loadGrammar(const char* const systemId,                         const short grammarType,                         const bool toCache = false);    /**      * This method allows the user to reset the pool of cached grammars.      */    void resetCachedGrammarPool();    //@}private :    // -----------------------------------------------------------------------    //  Initialize/Cleanup methods    // -----------------------------------------------------------------------    void resetParse();    // -----------------------------------------------------------------------    //  Unimplemented constructors and operators    // -----------------------------------------------------------------------    XercesDOMParser(const XercesDOMParser&);    XercesDOMParser& operator=(const XercesDOMParser&);    // -----------------------------------------------------------------------    //  Private data members    //    //  fEntityResolver    //      The installed SAX entity resolver, if any. Null if none.    //    //  fErrorHandler    //      The installed SAX error handler, if any. Null if none.    //-----------------------------------------------------------------------    EntityResolver*          fEntityResolver;    XMLEntityResolver*       fXMLEntityResolver;    ErrorHandler*            fErrorHandler;};// ---------------------------------------------------------------------------//  XercesDOMParser: Handlers for the XMLEntityHandler interface// ---------------------------------------------------------------------------inline void XercesDOMParser::endInputSource(const InputSource&){    // The DOM entity resolver doesn't handle this}inline bool XercesDOMParser::expandSystemId(const XMLCh* const, XMLBuffer&){    // The DOM entity resolver doesn't handle this    return false;}inline void XercesDOMParser::resetEntities(){    // Nothing to do on this one}inline void XercesDOMParser::startInputSource(const InputSource&){    // The DOM entity resolver doesn't handle this}// ---------------------------------------------------------------------------//  XercesDOMParser: Getter methods// ---------------------------------------------------------------------------inline ErrorHandler* XercesDOMParser::getErrorHandler(){    return fErrorHandler;}inline const ErrorHandler* XercesDOMParser::getErrorHandler() const{    return fErrorHandler;}inline EntityResolver* XercesDOMParser::getEntityResolver(){    return fEntityResolver;}inline const EntityResolver* XercesDOMParser::getEntityResolver() const{    return fEntityResolver;}inline XMLEntityResolver* XercesDOMParser::getXMLEntityResolver(){    return fXMLEntityResolver;}inline const XMLEntityResolver* XercesDOMParser::getXMLEntityResolver() const{    return fXMLEntityResolver;}XERCES_CPP_NAMESPACE_END#endif

⌨️ 快捷键说明

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