DGXMLScanner.hpp
上传用户:zhuqijet
上传日期:2013-06-25
资源大小:10074k
文件大小:10k
源码类别:

词法分析

开发平台:

Visual C++

  1. /*
  2.  * The Apache Software License, Version 1.1
  3.  *
  4.  * Copyright (c) 2002 The Apache Software Foundation.  All rights
  5.  * reserved.
  6.  *
  7.  * Redistribution and use in source and binary forms, with or without
  8.  * modification, are permitted provided that the following conditions
  9.  * are met:
  10.  *
  11.  * 1. Redistributions of source code must retain the above copyright
  12.  *    notice, this list of conditions and the following disclaimer.
  13.  *
  14.  * 2. Redistributions in binary form must reproduce the above copyright
  15.  *    notice, this list of conditions and the following disclaimer in
  16.  *    the documentation and/or other materials provided with the
  17.  *    distribution.
  18.  *
  19.  * 3. The end-user documentation included with the redistribution,
  20.  *    if any, must include the following acknowledgment:
  21.  *       "This product includes software developed by the
  22.  *        Apache Software Foundation (http://www.apache.org/)."
  23.  *    Alternately, this acknowledgment may appear in the software itself,
  24.  *    if and wherever such third-party acknowledgments normally appear.
  25.  *
  26.  * 4. The names "Xerces" and "Apache Software Foundation" must
  27.  *    not be used to endorse or promote products derived from this
  28.  *    software without prior written permission. For written
  29.  *    permission, please contact apache@apache.org.
  30.  *
  31.  * 5. Products derived from this software may not be called "Apache",
  32.  *    nor may "Apache" appear in their name, without prior written
  33.  *    permission of the Apache Software Foundation.
  34.  *
  35.  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
  36.  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  37.  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  38.  * DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
  39.  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  40.  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  41.  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
  42.  * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  43.  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  44.  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
  45.  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  46.  * SUCH DAMAGE.
  47.  * ====================================================================
  48.  *
  49.  * This software consists of voluntary contributions made by many
  50.  * individuals on behalf of the Apache Software Foundation, and was
  51.  * originally based on software copyright (c) 1999, International
  52.  * Business Machines, Inc., http://www.ibm.com .  For more information
  53.  * on the Apache Software Foundation, please see
  54.  * <http://www.apache.org/>.
  55.  */
  56. /*
  57.  * $Log: DGXMLScanner.hpp,v $
  58.  * Revision 1.6  2003/05/22 02:10:51  knoaman
  59.  * Default the memory manager.
  60.  *
  61.  * Revision 1.5  2003/05/15 18:26:29  knoaman
  62.  * Partial implementation of the configurable memory manager.
  63.  *
  64.  * Revision 1.4  2003/03/07 18:08:58  tng
  65.  * Return a reference instead of void for operator=
  66.  *
  67.  * Revision 1.3  2003/01/15 15:49:49  knoaman
  68.  * Change constant declaration name to match its value.
  69.  *
  70.  * Revision 1.2  2003/01/13 18:29:41  knoaman
  71.  * Return proper scanner name.
  72.  *
  73.  * Revision 1.1  2002/12/09 15:45:13  knoaman
  74.  * Initial check-in.
  75.  *
  76.  */
  77. #if !defined(DGXMLSCANNER_HPP)
  78. #define DGXMLSCANNER_HPP
  79. #include <xercesc/internal/XMLScanner.hpp>
  80. #include <xercesc/internal/ElemStack.hpp>
  81. #include <xercesc/util/ValueVectorOf.hpp>
  82. #include <xercesc/validators/common/Grammar.hpp>
  83. XERCES_CPP_NAMESPACE_BEGIN
  84. class DTDGrammar;
  85. class DTDValidator;
  86. //  This is an integrated scanner class, which does DTD/XML Schema grammar
  87. //  processing.
  88. class XMLPARSER_EXPORT DGXMLScanner : public XMLScanner
  89. {
  90. public :
  91.     // -----------------------------------------------------------------------
  92.     //  Constructors and Destructor
  93.     // -----------------------------------------------------------------------
  94.     DGXMLScanner
  95.     (
  96.           XMLValidator* const  valToAdopt
  97.         , MemoryManager* const manager = XMLPlatformUtils::fgMemoryManager
  98.     );
  99.     DGXMLScanner
  100.     (
  101.           XMLDocumentHandler* const docHandler
  102.         , DocTypeHandler* const     docTypeHandler
  103.         , XMLEntityHandler* const   entityHandler
  104.         , XMLErrorReporter* const   errReporter
  105.         , XMLValidator* const       valToAdopt
  106.         , MemoryManager* const      manager = XMLPlatformUtils::fgMemoryManager
  107.     );
  108.     virtual ~DGXMLScanner();
  109.     // -----------------------------------------------------------------------
  110.     //  XMLScanner public virtual methods
  111.     // -----------------------------------------------------------------------
  112.     virtual const XMLCh* getName() const;
  113.     virtual NameIdPool<DTDEntityDecl>* getEntityDeclPool();
  114.     virtual const NameIdPool<DTDEntityDecl>* getEntityDeclPool() const;
  115.     virtual unsigned int resolveQName
  116.     (
  117.         const   XMLCh* const        qName
  118.         ,       XMLBuffer&          prefixBufToFill
  119.         , const short               mode
  120.         ,       int&                prefixColonPos
  121.     );
  122.     virtual void scanDocument
  123.     (
  124.         const   InputSource&    src
  125.     );
  126.     virtual bool scanNext(XMLPScanToken& toFill);
  127.     virtual Grammar* loadGrammar
  128.     (
  129.         const   InputSource&    src
  130.         , const short           grammarType
  131.         , const bool            toCache = false
  132.     );
  133. private :
  134.     // -----------------------------------------------------------------------
  135.     //  Unimplemented constructors and operators
  136.     // -----------------------------------------------------------------------
  137.     DGXMLScanner();
  138.     DGXMLScanner(const DGXMLScanner&);
  139.     DGXMLScanner& operator=(const DGXMLScanner&);
  140.     // -----------------------------------------------------------------------
  141.     //  XMLScanner virtual methods
  142.     // -----------------------------------------------------------------------
  143.     virtual void scanCDSection();
  144.     virtual void scanCharData(XMLBuffer& toToUse);
  145.     virtual EntityExpRes scanEntityRef
  146.     (
  147.         const   bool    inAttVal
  148.         ,       XMLCh&  firstCh
  149.         ,       XMLCh&  secondCh
  150.         ,       bool&   escaped
  151.     );
  152.     virtual void scanDocTypeDecl();
  153.     virtual void scanReset(const InputSource& src);
  154.     virtual void sendCharData(XMLBuffer& toSend);
  155.     // -----------------------------------------------------------------------
  156.     //  Private helper methods
  157.     // -----------------------------------------------------------------------
  158.     void commonInit();
  159.     void cleanUp();
  160.     InputSource* resolveSystemId(const XMLCh* const sysId); // return owned by caller
  161.     unsigned int buildAttList
  162.     (
  163.         const unsigned int                attCount
  164.         ,       XMLElementDecl*             elemDecl
  165.         ,       RefVectorOf<XMLAttr>&       toFill
  166.     );
  167.     unsigned int resolvePrefix
  168.     (
  169.         const   XMLCh* const        prefix
  170.         , const ElemStack::MapModes mode
  171.     );
  172.     void updateNSMap
  173.     (
  174.         const   XMLCh* const attrPrefix
  175.         , const XMLCh* const attrLocalName
  176.         , const XMLCh* const attrValue
  177.     );
  178.     void scanAttrListforNameSpaces(RefVectorOf<XMLAttr>* theAttrList, int attCount);
  179.     // -----------------------------------------------------------------------
  180.     //  Private scanning methods
  181.     // -----------------------------------------------------------------------
  182.     bool scanAttValue
  183.     (
  184.         const   XMLAttDef* const    attDef
  185.         ,       XMLBuffer&          toFill
  186.     );
  187.     bool scanContent(const bool extEntity);
  188.     void scanEndTag(bool& gotData);
  189.     bool scanStartTag(bool& gotData);
  190.     bool scanStartTagNS(bool& gotData);
  191.     // -----------------------------------------------------------------------
  192.     //  Grammar preparsing methods
  193.     // -----------------------------------------------------------------------
  194.     Grammar* loadDTDGrammar(const InputSource& src, const bool toCache = false);
  195.     // -----------------------------------------------------------------------
  196.     //  Data members
  197.     //
  198.     //  fElemStack
  199.     //      This is the element stack that is used to track the elements that
  200.     //      are currently being worked on.
  201.     //
  202.     //  fRawAttrList
  203.     //      During the initial scan of the attributes we can only do a raw
  204.     //      scan for key/value pairs. So this vector is used to store them
  205.     //      until they can be processed (and put into fAttrList.)
  206.     //
  207.     //  fDTDValidator
  208.     //      The DTD validator instance.
  209.     //
  210.     //  fSchemaValidator
  211.     //      The Schema validator instance.
  212.     //
  213.     //  fSeeXsi
  214.     //      This flag indicates a schema has been seen.
  215.     //
  216.     //  fElemState
  217.     //  fElemStateSize
  218.     //      Stores an element next state from DFA content model - used for
  219.     //      wildcard validation
  220.     //
  221.     //  fMatcherStack
  222.     //      Stack of active XPath matchers for identity constraints. All
  223.     //      active XPath matchers are notified of startElement, characters
  224.     //      and endElement callbacks in order to perform their matches.
  225.     //
  226.     //  fValueStoreCache
  227.     //      Cache of value stores for identity constraint fields.
  228.     //
  229.     //  fFieldActivator
  230.     //      Activates fields within a certain scope when a selector matches
  231.     //      its xpath.
  232.     //
  233.     // -----------------------------------------------------------------------
  234.     ElemStack                   fElemStack;
  235.     ValueVectorOf<XMLAttr*>*    fAttrNSList;
  236.     DTDValidator*               fDTDValidator;
  237.     DTDGrammar*                 fDTDGrammar;
  238. };
  239. inline const XMLCh* DGXMLScanner::getName() const
  240. {
  241.     return XMLUni::fgDGXMLScanner;
  242. }
  243. XERCES_CPP_NAMESPACE_END
  244. #endif