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

词法分析

开发平台:

Visual C++

  1. /*
  2.  * The Apache Software License, Version 1.1
  3.  *
  4.  * Copyright (c) 1999-2001 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: DTDElementDecl.hpp,v $
  58.  * Revision 1.5  2003/05/16 21:43:19  knoaman
  59.  * Memory manager implementation: Modify constructors to pass in the memory manager.
  60.  *
  61.  * Revision 1.4  2003/05/15 18:54:50  knoaman
  62.  * Partial implementation of the configurable memory manager.
  63.  *
  64.  * Revision 1.3  2003/01/29 19:46:40  gareth
  65.  * added DOMTypeInfo API
  66.  *
  67.  * Revision 1.2  2002/11/04 14:50:40  tng
  68.  * C++ Namespace Support.
  69.  *
  70.  * Revision 1.1.1.1  2002/02/01 22:22:43  peiyongz
  71.  * sane_include
  72.  *
  73.  * Revision 1.12  2001/09/05 20:49:10  knoaman
  74.  * Fix for complexTypes with mixed content model.
  75.  *
  76.  * Revision 1.11  2001/08/21 16:06:11  tng
  77.  * Schema: Unique Particle Attribution Constraint Checking.
  78.  *
  79.  * Revision 1.10  2001/05/11 13:27:08  tng
  80.  * Copyright update.
  81.  *
  82.  * Revision 1.9  2001/04/19 18:17:20  tng
  83.  * Schema: SchemaValidator update, and use QName in Content Model
  84.  *
  85.  * Revision 1.8  2001/03/21 21:56:19  tng
  86.  * Schema: Add Schema Grammar, Schema Validator, and split the DTDValidator into DTDValidator, DTDScanner, and DTDGrammar.
  87.  *
  88.  * Revision 1.7  2001/03/21 19:29:43  tng
  89.  * Schema: Content Model Updates, by Pei Yong Zhang.
  90.  *
  91.  * Revision 1.6  2001/02/26 19:29:21  tng
  92.  * Schema: add virtual method getURI(), getContentSpec and setContenSpec in XMLElementDecl, and DTDElementDecl.
  93.  *
  94.  * Revision 1.5  2001/02/26 19:22:02  tng
  95.  * Schema: add parameter prefix in findElem and findAttr.
  96.  *
  97.  * Revision 1.4  2000/02/24 20:16:49  abagchi
  98.  * Swat for removing Log from API docs
  99.  *
  100.  * Revision 1.3  2000/02/09 21:42:37  abagchi
  101.  * Copyright swat
  102.  *
  103.  * Revision 1.2  1999/11/23 01:51:04  rahulj
  104.  * Cannot use class qualifier in class defn. CC under HPUX is happy.
  105.  *
  106.  * Revision 1.1.1.1  1999/11/09 01:03:32  twl
  107.  * Initial checkin
  108.  *
  109.  * Revision 1.3  1999/11/08 20:45:40  rahul
  110.  * Swat for adding in Product name and CVS comment log variable.
  111.  *
  112.  */
  113. #if !defined(DTDELEMENTDECL_HPP)
  114. #define DTDELEMENTDECL_HPP
  115. #include <xercesc/util/RefHashTableOf.hpp>
  116. #include <xercesc/util/QName.hpp>
  117. #include <xercesc/framework/XMLElementDecl.hpp>
  118. #include <xercesc/framework/XMLContentModel.hpp>
  119. #include <xercesc/validators/DTD/DTDAttDef.hpp>
  120. XERCES_CPP_NAMESPACE_BEGIN
  121. class ContentSpecNode;
  122. class DTDAttDefList;
  123. //
  124. //  This class is a derivative of the basic element decl. This one implements
  125. //  the virtuals so that they work for a DTD. THe big difference is that
  126. //  they don't live in any URL in the DTD. The names are just stored as full
  127. //  QNames, so they are not split out and element decls don't live within
  128. //  URL namespaces or anything like that.
  129. //
  130. class VALIDATORS_EXPORT DTDElementDecl : public XMLElementDecl
  131. {
  132. public :
  133.     // -----------------------------------------------------------------------
  134.     //  Class specific types
  135.     //
  136.     //  ModelTypes
  137.     //      Indicates the type of content model that an element has. This
  138.     //      indicates how the content model is represented and validated.
  139.     // -----------------------------------------------------------------------
  140.     enum ModelTypes
  141.     {
  142.         Empty
  143.         , Any
  144.         , Mixed_Simple
  145.         , Children
  146.         , ModelTypes_Count
  147.     };
  148.     // -----------------------------------------------------------------------
  149.     //  Constructors and Destructor
  150.     // -----------------------------------------------------------------------
  151.     DTDElementDecl(MemoryManager* const manager = XMLPlatformUtils::fgMemoryManager);
  152.     DTDElementDecl
  153.     (
  154.           const XMLCh* const   elemRawName
  155.         , const unsigned int   uriId
  156.         , const ModelTypes     modelType
  157.         , MemoryManager* const manager = XMLPlatformUtils::fgMemoryManager
  158.     );
  159.     DTDElementDecl
  160.     (
  161.           QName* const         elementName
  162.         , const ModelTypes     modelType = Any
  163.         , MemoryManager* const manager = XMLPlatformUtils::fgMemoryManager
  164.     );
  165.     ~DTDElementDecl();
  166.     // -----------------------------------------------------------------------
  167.     //  The virtual element decl interface
  168.     // -----------------------------------------------------------------------
  169.     virtual XMLAttDef* findAttr
  170.     (
  171.         const   XMLCh* const    qName
  172.         , const unsigned int    uriId
  173.         , const XMLCh* const    baseName
  174.         , const XMLCh* const    prefix
  175.         , const LookupOpts      options
  176.         ,       bool&           wasAdded
  177.     )   const;
  178.     virtual XMLAttDefList& getAttDefList() const;
  179.     virtual CharDataOpts getCharDataOpts() const;
  180.     virtual bool hasAttDefs() const;
  181.     virtual bool resetDefs();
  182.     virtual const ContentSpecNode* getContentSpec() const;
  183.     virtual ContentSpecNode* getContentSpec();
  184.     virtual void setContentSpec(ContentSpecNode* toAdopt);
  185.     virtual XMLContentModel* getContentModel();
  186.     virtual void setContentModel(XMLContentModel* const newModelToAdopt);
  187.     virtual const XMLCh* getFormattedContentModel ()   const;
  188.     // -----------------------------------------------------------------------
  189.     // Support keyed collections
  190.     //
  191.     // This method allows objects of this type be placed into one of the
  192.     // standard keyed collections. This method will return the full name of
  193.     // the element, which will vary depending upon the type of the grammar.
  194.     // -----------------------------------------------------------------------
  195.     const XMLCh* getKey() const;
  196.     // -----------------------------------------------------------------------
  197.     //  Getter methods
  198.     // -----------------------------------------------------------------------
  199.     const DTDAttDef* getAttDef(const XMLCh* const attName) const;
  200.     DTDAttDef* getAttDef(const XMLCh* const attName);
  201.     ModelTypes getModelType() const;
  202.     const XMLCh* getDOMTypeInfoName() const;
  203.     const XMLCh* getDOMTypeInfoUri() const;
  204.     // -----------------------------------------------------------------------
  205.     //  Setter methods
  206.     // -----------------------------------------------------------------------
  207.     void addAttDef(DTDAttDef* const toAdd);
  208.     void setModelType(const DTDElementDecl::ModelTypes toSet);
  209. private :
  210.     // -----------------------------------------------------------------------
  211.     //  Private helper methods
  212.     // -----------------------------------------------------------------------
  213.     void faultInAttDefList() const;
  214.     XMLContentModel* createChildModel() ;
  215.     XMLContentModel* makeContentModel() ;
  216.     XMLCh* formatContentModel () const ;
  217.     // -----------------------------------------------------------------------
  218.     //  Private data members
  219.     //
  220.     //  fAttDefs
  221.     //      The list of attributes that are defined for this element. Each
  222.     //      element is its own little 'namespace' for attributes, so each
  223.     //      element maintains its own list of owned attribute defs. It is
  224.     //      faulted in when an attribute is actually added.
  225.     //
  226.     //  fAttList
  227.     //      We have to return a view of our att defs via the abstract view
  228.     //      that the scanner understands. It may or may not ever be asked
  229.     //      for so we fault it in as needed.
  230.     //
  231.     //  fContentSpec
  232.     //      This is the content spec for the node. It contains the original
  233.     //      content spec that was read from the DTD, as a tree of nodes. This
  234.     //      one is always set up, and is used to build the fContentModel
  235.     //      version if we are validating.
  236.     //
  237.     //  fModelType
  238.     //      The content model type of this element. This tells us what kind
  239.     //      of content model to create.
  240.     //
  241.     //  fContentModel
  242.     //      The content model object for this element. It is stored here via
  243.     //      its abstract interface.
  244.     //
  245.     //  fFormattedModel
  246.     //      This is a faulted in member. When the outside world asks for
  247.     //      our content model as a string, we format it and fault it into
  248.     //      this field (to avoid doing the formatted over and over.)
  249.     // -----------------------------------------------------------------------
  250.     RefHashTableOf<DTDAttDef>*  fAttDefs;
  251.     DTDAttDefList*              fAttList;
  252.     ContentSpecNode*            fContentSpec;
  253.     ModelTypes                  fModelType;
  254.     XMLContentModel*            fContentModel;
  255.     XMLCh*                      fFormattedModel;
  256. };
  257. // ---------------------------------------------------------------------------
  258. //  DTDElementDecl: XMLElementDecl virtual interface implementation
  259. // ---------------------------------------------------------------------------
  260. inline ContentSpecNode* DTDElementDecl::getContentSpec()
  261. {
  262.     return fContentSpec;
  263. }
  264. inline const ContentSpecNode* DTDElementDecl::getContentSpec() const
  265. {
  266.     return fContentSpec;
  267. }
  268. inline XMLContentModel* DTDElementDecl::getContentModel()
  269. {
  270.     if (!fContentModel)
  271.         fContentModel = makeContentModel();
  272.     return fContentModel;
  273. }
  274. inline void
  275. DTDElementDecl::setContentModel(XMLContentModel* const newModelToAdopt)
  276. {
  277.     delete fContentModel;
  278.     fContentModel = newModelToAdopt;
  279. }
  280. // ---------------------------------------------------------------------------
  281. //  DTDElementDecl: Miscellaneous methods
  282. // ---------------------------------------------------------------------------
  283. inline const XMLCh* DTDElementDecl::getKey() const
  284. {
  285.     return getFullName();
  286. }
  287. // ---------------------------------------------------------------------------
  288. //  DTDElementDecl: Getter methods
  289. // ---------------------------------------------------------------------------
  290. inline DTDElementDecl::ModelTypes DTDElementDecl::getModelType() const
  291. {
  292.     return fModelType;
  293. }
  294. inline const XMLCh* DTDElementDecl::getDOMTypeInfoName() const {
  295.     return 0;
  296. }
  297. inline const XMLCh* DTDElementDecl::getDOMTypeInfoUri() const {
  298.     return 0;
  299. }
  300. // ---------------------------------------------------------------------------
  301. //  DTDElementDecl: Setter methods
  302. // ---------------------------------------------------------------------------
  303. inline void
  304. DTDElementDecl::setModelType(const DTDElementDecl::ModelTypes toSet)
  305. {
  306.     fModelType = toSet;
  307. }
  308. XERCES_CPP_NAMESPACE_END
  309. #endif