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

词法分析

开发平台:

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: SGXMLScanner.hpp,v $
  58.  * Revision 1.7  2003/05/16 21:36:57  knoaman
  59.  * Memory manager implementation: Modify constructors to pass in the memory manager.
  60.  *
  61.  * Revision 1.6  2003/05/15 18:26:29  knoaman
  62.  * Partial implementation of the configurable memory manager.
  63.  *
  64.  * Revision 1.5  2003/03/07 18:08:58  tng
  65.  * Return a reference instead of void for operator=
  66.  *
  67.  * Revision 1.4  2003/01/29 19:59:35  gareth
  68.  * we now detect when elements and attributes are validated/ the result of the validation and store that information.
  69.  *
  70.  * Revision 1.3  2003/01/15 15:49:49  knoaman
  71.  * Change constant declaration name to match its value.
  72.  *
  73.  * Revision 1.2  2003/01/13 16:30:18  knoaman
  74.  * [Bug 14469] Validator doesn't enforce xsd:key.
  75.  *
  76.  * Revision 1.1  2002/12/05 16:19:27  knoaman
  77.  * Initial check-in.
  78.  *
  79.  */
  80. #if !defined(SGXMLSCANNER_HPP)
  81. #define SGXMLSCANNER_HPP
  82. #include <xercesc/internal/XMLScanner.hpp>
  83. #include <xercesc/internal/ElemStack.hpp>
  84. #include <xercesc/util/KVStringPair.hpp>
  85. #include <xercesc/util/ValueHashTableOf.hpp>
  86. #include <xercesc/validators/common/Grammar.hpp>
  87. #include <xercesc/validators/schema/SchemaElementDecl.hpp>
  88. XERCES_CPP_NAMESPACE_BEGIN
  89. class SchemaValidator;
  90. class SchemaGrammar;
  91. class ValueStoreCache;
  92. class XPathMatcherStack;
  93. class FieldActivator;
  94. class IdentityConstraint;
  95. class ContentLeafNameTypeVector;
  96. class SchemaAttDef;
  97. class XMLContentModel;
  98. //  This is a scanner class, which process XML Schema grammar.
  99. class XMLPARSER_EXPORT SGXMLScanner : public XMLScanner
  100. {
  101. public :
  102.     // -----------------------------------------------------------------------
  103.     //  Constructors and Destructor
  104.     // -----------------------------------------------------------------------
  105.     SGXMLScanner
  106.     (
  107.         XMLValidator* const       valToAdopt
  108.         , MemoryManager* const    manager = XMLPlatformUtils::fgMemoryManager
  109.     );
  110.     SGXMLScanner
  111.     (
  112.         XMLDocumentHandler* const docHandler
  113.         , DocTypeHandler* const   docTypeHandler
  114.         , XMLEntityHandler* const entityHandler
  115.         , XMLErrorReporter* const errReporter
  116.         , XMLValidator* const     valToAdopt
  117.         , MemoryManager* const    manager = XMLPlatformUtils::fgMemoryManager
  118.     );
  119.     virtual ~SGXMLScanner();
  120.     // -----------------------------------------------------------------------
  121.     //  XMLScanner public virtual methods
  122.     // -----------------------------------------------------------------------
  123.     virtual const XMLCh* getName() const;
  124.     virtual NameIdPool<DTDEntityDecl>* getEntityDeclPool();
  125.     virtual const NameIdPool<DTDEntityDecl>* getEntityDeclPool() const;
  126.     virtual unsigned int resolveQName
  127.     (
  128.         const   XMLCh* const        qName
  129.         ,       XMLBuffer&          prefixBufToFill
  130.         , const short               mode
  131.         ,       int&                prefixColonPos
  132.     );
  133.     virtual void scanDocument
  134.     (
  135.         const   InputSource&    src
  136.     );
  137.     virtual bool scanNext(XMLPScanToken& toFill);
  138.     virtual Grammar* loadGrammar
  139.     (
  140.         const   InputSource&    src
  141.         , const short           grammarType
  142.         , const bool            toCache = false
  143.     );
  144. private :
  145.     // -----------------------------------------------------------------------
  146.     //  Unimplemented constructors and operators
  147.     // -----------------------------------------------------------------------
  148.     SGXMLScanner();
  149.     SGXMLScanner(const SGXMLScanner&);
  150.     SGXMLScanner& operator=(const SGXMLScanner&);
  151.     // -----------------------------------------------------------------------
  152.     //  XMLScanner virtual methods
  153.     // -----------------------------------------------------------------------
  154.     virtual void scanCDSection();
  155.     virtual void scanCharData(XMLBuffer& toToUse);
  156.     virtual EntityExpRes scanEntityRef
  157.     (
  158.         const   bool    inAttVal
  159.         ,       XMLCh&  firstCh
  160.         ,       XMLCh&  secondCh
  161.         ,       bool&   escaped
  162.     );
  163.     virtual void scanDocTypeDecl();
  164.     virtual void scanReset(const InputSource& src);
  165.     virtual void sendCharData(XMLBuffer& toSend);
  166.     // -----------------------------------------------------------------------
  167.     //  Private helper methods
  168.     // -----------------------------------------------------------------------
  169.     void commonInit();
  170.     void cleanUp();
  171.     InputSource* resolveSystemId(const XMLCh* const sysId); // return owned by caller
  172.     // Spaces are not allowed in URI, so %20 is used instead.
  173.     // Convert %20 to spaces before resolving the URI
  174.     void normalizeURI(const XMLCh* const systemURI, XMLBuffer& normalizedURI);
  175.     unsigned int buildAttList
  176.     (
  177.         const   RefVectorOf<KVStringPair>&  providedAttrs
  178.         , const unsigned int                attCount
  179.         ,       XMLElementDecl*             elemDecl
  180.         ,       RefVectorOf<XMLAttr>&       toFill
  181.     );
  182.     bool normalizeAttValue
  183.     (
  184.         const   XMLAttDef* const    attDef
  185.         , const XMLCh* const        value
  186.         ,       XMLBuffer&          toFill
  187.     );
  188.     bool normalizeAttRawValue
  189.     (
  190.         const   XMLCh* const        attrName
  191.         , const XMLCh* const        value
  192.         ,       XMLBuffer&          toFill
  193.     );
  194.     unsigned int resolvePrefix
  195.     (
  196.         const   XMLCh* const        prefix
  197.         , const ElemStack::MapModes mode
  198.     );
  199.     unsigned int resolvePrefix
  200.     (
  201.         const   XMLCh* const        prefix
  202.         ,       XMLBuffer&          uriBufToFill
  203.         , const ElemStack::MapModes mode
  204.     );
  205.     void updateNSMap
  206.     (
  207.         const   XMLCh* const    attrName
  208.         , const XMLCh* const    attrValue
  209.     );
  210.     void scanRawAttrListforNameSpaces(const RefVectorOf<KVStringPair>* theRawAttrList, int attCount);
  211.     void parseSchemaLocation(const XMLCh* const schemaLocationStr);
  212.     void resolveSchemaGrammar(const XMLCh* const loc, const XMLCh* const uri);
  213.     bool switchGrammar(const XMLCh* const newGrammarNameSpace);
  214.     bool laxElementValidation(QName* element, ContentLeafNameTypeVector* cv,
  215.                               const XMLContentModel* const cm,
  216.                               const unsigned int parentElemDepth);
  217.     bool anyAttributeValidation(SchemaAttDef* attWildCard,
  218.                                 unsigned int uriId,
  219.                                 bool& skipThisOne,
  220.                                 bool& laxThisOne);
  221.     void resizeElemState();
  222.     // -----------------------------------------------------------------------
  223.     //  Private scanning methods
  224.     // -----------------------------------------------------------------------
  225.     bool basicAttrValueScan
  226.     (
  227.         const   XMLCh* const    attrName
  228.         ,       XMLBuffer&      toFill
  229.     );
  230.     unsigned int rawAttrScan
  231.     (
  232.         const   XMLCh* const                elemName
  233.         ,       RefVectorOf<KVStringPair>&  toFill
  234.         ,       bool&                       isEmpty
  235.     );
  236.     bool scanAttValue
  237.     (
  238.         const   XMLAttDef* const    attDef
  239.         ,       XMLBuffer&          toFill
  240.     );
  241.     bool scanContent(const bool extEntity);
  242.     void scanEndTag(bool& gotData);
  243.     bool scanStartTag(bool& gotData);
  244.     // -----------------------------------------------------------------------
  245.     //  IdentityConstraints Activation methods
  246.     // -----------------------------------------------------------------------
  247.     void activateSelectorFor(IdentityConstraint* const ic, const int initialDepth);
  248.     // -----------------------------------------------------------------------
  249.     //  Grammar preparsing methods
  250.     // -----------------------------------------------------------------------
  251.     Grammar* loadXMLSchemaGrammar(const InputSource& src, const bool toCache = false);
  252.     // -----------------------------------------------------------------------
  253.     //  Data members
  254.     //
  255.     //  fElemStack
  256.     //      This is the element stack that is used to track the elements that
  257.     //      are currently being worked on.
  258.     //
  259.     //  fRawAttrList
  260.     //      During the initial scan of the attributes we can only do a raw
  261.     //      scan for key/value pairs. So this vector is used to store them
  262.     //      until they can be processed (and put into fAttrList.)
  263.     //
  264.     //  fSchemaValidator
  265.     //      The Schema validator instance.
  266.     //
  267.     //  fSeeXsi
  268.     //      This flag indicates a schema has been seen.
  269.     //
  270.     //  fElemState
  271.     //  fElemStateSize
  272.     //      Stores an element next state from DFA content model - used for
  273.     //      wildcard validation
  274.     //
  275.     //  fMatcherStack
  276.     //      Stack of active XPath matchers for identity constraints. All
  277.     //      active XPath matchers are notified of startElement, characters
  278.     //      and endElement callbacks in order to perform their matches.
  279.     //
  280.     //  fValueStoreCache
  281.     //      Cache of value stores for identity constraint fields.
  282.     //
  283.     //  fFieldActivator
  284.     //      Activates fields within a certain scope when a selector matches
  285.     //      its xpath.
  286.     //
  287.     // -----------------------------------------------------------------------
  288.     bool                        fSeeXsi;
  289.     Grammar::GrammarType        fGrammarType;
  290.     unsigned int                fElemStateSize;
  291.     unsigned int*               fElemState;
  292.     ElemStack                   fElemStack;
  293.     XMLBuffer                   fContent;
  294.     ValueHashTableOf<XMLCh>*    fEntityTable;
  295.     RefVectorOf<KVStringPair>*  fRawAttrList;
  296.     SchemaGrammar*              fSchemaGrammar;
  297.     SchemaValidator*            fSchemaValidator;
  298.     XPathMatcherStack*          fMatcherStack;
  299.     ValueStoreCache*            fValueStoreCache;
  300.     FieldActivator*             fFieldActivator;
  301. };
  302. inline const XMLCh* SGXMLScanner::getName() const
  303. {
  304.     return XMLUni::fgSGXMLScanner;
  305. }
  306. XERCES_CPP_NAMESPACE_END
  307. #endif