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

词法分析

开发平台:

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.  * $Id: DTDElementDecl.cpp,v 1.5 2003/05/18 14:02:06 knoaman Exp $
  58.  */
  59. // ---------------------------------------------------------------------------
  60. //  Includes
  61. // ---------------------------------------------------------------------------
  62. #include <xercesc/util/XMLString.hpp>
  63. #include <xercesc/util/XMLUniDefs.hpp>
  64. #include <xercesc/util/XMLUni.hpp>
  65. #include <xercesc/framework/XMLBuffer.hpp>
  66. #include <xercesc/validators/common/DFAContentModel.hpp>
  67. #include <xercesc/validators/common/ContentSpecNode.hpp>
  68. #include <xercesc/validators/common/MixedContentModel.hpp>
  69. #include <xercesc/validators/common/SimpleContentModel.hpp>
  70. #include <xercesc/validators/DTD/DTDAttDefList.hpp>
  71. #include <xercesc/validators/DTD/DTDElementDecl.hpp>
  72. XERCES_CPP_NAMESPACE_BEGIN
  73. // ---------------------------------------------------------------------------
  74. //  DTDElementDecl: Constructors and Destructor
  75. // ---------------------------------------------------------------------------
  76. DTDElementDecl::DTDElementDecl(MemoryManager* const manager) :
  77.     XMLElementDecl(manager)
  78.     , fAttDefs(0)
  79.     , fAttList(0)
  80.     , fContentSpec(0)
  81.     , fModelType(Any)
  82.     , fContentModel(0)
  83.     , fFormattedModel(0)
  84. {
  85. }
  86. DTDElementDecl::DTDElementDecl( const XMLCh* const               elemRawName
  87.                               , const unsigned int               uriId
  88.                               , const DTDElementDecl::ModelTypes type
  89.                               , MemoryManager* const             manager) :
  90.     XMLElementDecl(manager)
  91.     , fAttDefs(0)
  92.     , fAttList(0)
  93.     , fContentSpec(0)
  94.     , fModelType(type)
  95.     , fContentModel(0)
  96.     , fFormattedModel(0)
  97. {
  98.     setElementName(elemRawName, uriId);
  99. }
  100. DTDElementDecl::DTDElementDecl( QName* const                     elementName
  101.                               , const DTDElementDecl::ModelTypes type
  102.                               , MemoryManager* const             manager) :
  103.     XMLElementDecl(manager)
  104.     , fAttDefs(0)
  105.     , fAttList(0)
  106.     , fContentSpec(0)
  107.     , fModelType(type)
  108.     , fContentModel(0)
  109.     , fFormattedModel(0)
  110. {
  111.     setElementName(elementName);
  112. }
  113. DTDElementDecl::~DTDElementDecl()
  114. {
  115.     delete fAttDefs;
  116.     delete fAttList;
  117.     delete fContentSpec;
  118.     delete fContentModel;
  119.     getMemoryManager()->deallocate(fFormattedModel);//delete [] fFormattedModel;
  120. }
  121. // ---------------------------------------------------------------------------
  122. //  The virtual element decl interface
  123. // ---------------------------------------------------------------------------
  124. XMLAttDef* DTDElementDecl::findAttr(const   XMLCh* const    qName
  125.                                     , const unsigned int    uriId
  126.                                     , const XMLCh* const    baseName
  127.                                     , const XMLCh* const    prefix
  128.                                     , const LookupOpts      options
  129.                                     ,       bool&           wasAdded) const
  130. {
  131.     DTDAttDef* retVal = 0;
  132.     // If no att list faulted in yet, then it cannot exist
  133.     if (fAttDefs)
  134.         retVal = fAttDefs->get(qName);
  135.     // Fault it in if not found and ask to add it
  136.     if (!retVal && (options == XMLElementDecl::AddIfNotFound))
  137.     {
  138.         // Fault in the list itself if not already
  139.         if (!fAttDefs)
  140.             faultInAttDefList();
  141.         // And add a default attribute for this name
  142.         retVal = new (getMemoryManager()) DTDAttDef
  143.         (
  144.             qName
  145.             , XMLAttDef::CData
  146.             , XMLAttDef::Implied
  147.             , getMemoryManager()
  148.         );
  149.         retVal->setElemId(getId());
  150.         fAttDefs->put((void*)retVal->getFullName(), retVal);
  151.         wasAdded = true;
  152.     }
  153.      else
  154.     {
  155.         wasAdded = false;
  156.     }
  157.     return retVal;
  158. }
  159. XMLAttDefList& DTDElementDecl::getAttDefList() const
  160. {
  161.     if (!fAttList)
  162.     {
  163.         // If the att def list is not made yet, then fault it in too
  164.         if (!fAttDefs)
  165.             faultInAttDefList();
  166.         ((DTDElementDecl*)this)->fAttList = new (getMemoryManager()) DTDAttDefList(fAttDefs);
  167.     }
  168.     // Reset it before we return it
  169.     fAttList->Reset();
  170.     return *fAttList;
  171. }
  172. XMLElementDecl::CharDataOpts DTDElementDecl::getCharDataOpts() const
  173. {
  174.     XMLElementDecl::CharDataOpts retVal;
  175.     switch(fModelType)
  176.     {
  177.         case Children :
  178.             retVal = XMLElementDecl::SpacesOk;
  179.             break;
  180.         case Empty :
  181.             retVal = XMLElementDecl::NoCharData;
  182.             break;
  183.         default :
  184.             retVal = XMLElementDecl::AllCharData;
  185.             break;
  186.     }
  187.     return retVal;
  188. }
  189. bool DTDElementDecl::hasAttDefs() const
  190. {
  191.     // If the collection hasn't been faulted in, then no att defs
  192.     if (!fAttDefs)
  193.         return false;
  194.     return !fAttDefs->isEmpty();
  195. }
  196. bool DTDElementDecl::resetDefs()
  197. {
  198.     // If the collection hasn't been faulted in, then no att defs
  199.     if (!fAttDefs)
  200.         return false;
  201.     //
  202.     //  Ok, run through them and clear the 'provided' flag on each of them.
  203.     //  This lets the scanner use them to track which has been provided and
  204.     //  which have not.
  205.     //
  206.     RefHashTableOfEnumerator<DTDAttDef> enumDefs(fAttDefs);
  207.     while (enumDefs.hasMoreElements())
  208.         enumDefs.nextElement().setProvided(false);
  209.     return true;
  210. }
  211. void
  212. DTDElementDecl::setContentSpec(ContentSpecNode* toAdopt)
  213. {
  214.     delete fContentSpec;
  215.     fContentSpec = toAdopt;
  216. }
  217. const XMLCh*
  218. DTDElementDecl::getFormattedContentModel() const
  219. {
  220.     //
  221.     //  If its not already built, then call the protected virtual method
  222.     //  to allow the derived class to build it (since only it knows.)
  223.     //  Otherwise, just return the previously formatted methods.
  224.     //
  225.     //  Since we are faulting this in, within a const getter, we have to
  226.     //  cast off the const-ness.
  227.     //
  228.     if (!fFormattedModel)
  229.         ((DTDElementDecl*)this)->fFormattedModel = formatContentModel();
  230.     return fFormattedModel;
  231. }
  232. // ---------------------------------------------------------------------------
  233. //  DTDElementDecl: Getter methods
  234. // ---------------------------------------------------------------------------
  235. const DTDAttDef* DTDElementDecl::getAttDef(const XMLCh* const attName) const
  236. {
  237.     // If no list, then return a null
  238.     if (!fAttDefs)
  239.         return 0;
  240.     return fAttDefs->get(attName);
  241. }
  242. DTDAttDef* DTDElementDecl::getAttDef(const XMLCh* const attName)
  243. {
  244.     // If no list, then return a null
  245.     if (!fAttDefs)
  246.         return 0;
  247.     return fAttDefs->get(attName);
  248. }
  249. // ---------------------------------------------------------------------------
  250. //  DTDElementDecl: Implementation of the protected virtual interface
  251. // ---------------------------------------------------------------------------
  252. void DTDElementDecl::addAttDef(DTDAttDef* const toAdd)
  253. {
  254.     // Fault in the att list if required
  255.     if (!fAttDefs)
  256.             faultInAttDefList();
  257.     // Tell this guy the element id of its parent (us)
  258.     toAdd->setElemId(getId());
  259.     fAttDefs->put((void*)(toAdd->getFullName()), toAdd);
  260. }
  261. // ---------------------------------------------------------------------------
  262. //  DTDElementDecl: Private helper methods
  263. // ---------------------------------------------------------------------------
  264. XMLCh* DTDElementDecl::formatContentModel() const
  265. {
  266.     XMLCh* newValue = 0;
  267.     if (fModelType == Any)
  268.     {
  269.         newValue = XMLString::replicate(XMLUni::fgAnyString, getMemoryManager());
  270.     }
  271.      else if (fModelType == Empty)
  272.     {
  273.         newValue = XMLString::replicate(XMLUni::fgEmptyString, getMemoryManager());
  274.     }
  275.      else
  276.     {
  277.         //
  278.         //  Use a temp XML buffer to format into. Content models could be
  279.         //  pretty long, but very few will be longer than one K. The buffer
  280.         //  will expand to handle the more pathological ones.
  281.         //
  282.         XMLBuffer bufFmt(1023, getMemoryManager());
  283.         getContentSpec()->formatSpec(bufFmt);
  284.         newValue = XMLString::replicate(bufFmt.getRawBuffer(), getMemoryManager());
  285.     }
  286.     return newValue;
  287. }
  288. XMLContentModel* DTDElementDecl::makeContentModel()
  289. {
  290.     XMLContentModel* cmRet = 0;
  291.     if (fModelType == Mixed_Simple)
  292.     {
  293.         //
  294.         //  Just create a mixel content model object. This type of
  295.         //  content model is optimized for mixed content validation.
  296.         //
  297.         cmRet = new (getMemoryManager()) MixedContentModel(true, this->getContentSpec(), false, getMemoryManager());
  298.     }
  299.      else if (fModelType == Children)
  300.     {
  301.         //
  302.         //  This method will create an optimal model for the complexity
  303.         //  of the element's defined model. If its simple, it will create
  304.         //  a SimpleContentModel object. If its a simple list, it will
  305.         //  create a SimpleListContentModel object. If its complex, it
  306.         //  will create a DFAContentModel object.
  307.         //
  308.         cmRet = createChildModel();
  309.     }
  310.      else
  311.     {
  312.         ThrowXML(RuntimeException, XMLExcepts::CM_MustBeMixedOrChildren);
  313.     }
  314.     return cmRet;
  315. }
  316. XMLContentModel* DTDElementDecl::createChildModel()
  317. {
  318.     // Get the content spec node of the element
  319.     ContentSpecNode* specNode = getContentSpec();
  320.     if(!specNode)
  321.         ThrowXML(RuntimeException, XMLExcepts::CM_UnknownCMSpecType);
  322.     //
  323.     //  Do a sanity check that the node does not have a PCDATA id. Since,
  324.     //  if it was, it should have already gotten taken by the Mixed model.
  325.     //
  326.     if (specNode->getElement()) {
  327.         if (specNode->getElement()->getURI() == XMLElementDecl::fgPCDataElemId)
  328.             ThrowXML(RuntimeException, XMLExcepts::CM_NoPCDATAHere);
  329.     }
  330.     //
  331.     //  According to the type of node, we will create the correct type of
  332.     //  content model.
  333.     //
  334.     if (specNode->getType() == ContentSpecNode::Leaf)
  335.     {
  336.         // Create a simple content model
  337.         return new (getMemoryManager()) SimpleContentModel
  338.         (
  339.             true
  340.             , specNode->getElement()
  341.             , 0
  342.             , ContentSpecNode::Leaf
  343.             , getMemoryManager()
  344.         );
  345.     }
  346.      else if ((specNode->getType() == ContentSpecNode::Choice)
  347.           ||  (specNode->getType() == ContentSpecNode::Sequence))
  348.     {
  349.         //
  350.         //  Lets see if both of the children are leafs. If so, then it has to
  351.         //  be a simple content model
  352.         //
  353.         if ((specNode->getFirst()->getType() == ContentSpecNode::Leaf)
  354.         &&  (specNode->getSecond()->getType() == ContentSpecNode::Leaf))
  355.         {
  356.             return new (getMemoryManager()) SimpleContentModel
  357.             (
  358.                 true
  359.                 , specNode->getFirst()->getElement()
  360.                 , specNode->getSecond()->getElement()
  361.                 , specNode->getType()
  362.                 , getMemoryManager()
  363.             );
  364.         }
  365.     }
  366.      else if ((specNode->getType() == ContentSpecNode::OneOrMore)
  367.           ||  (specNode->getType() == ContentSpecNode::ZeroOrMore)
  368.           ||  (specNode->getType() == ContentSpecNode::ZeroOrOne))
  369.     {
  370.         //
  371.         //  Its a repetition, so see if its one child is a leaf. If so its a
  372.         //  repetition of a single element, so we can do a simple content
  373.         //  model for that.
  374.         //
  375.         if (specNode->getFirst()->getType() == ContentSpecNode::Leaf)
  376.         {
  377.             return new (getMemoryManager()) SimpleContentModel
  378.             (
  379.                 true
  380.                 , specNode->getFirst()->getElement()
  381.                 , 0
  382.                 , specNode->getType()
  383.                 , getMemoryManager()
  384.             );
  385.         }
  386.     }
  387.      else
  388.     {
  389.         ThrowXML(RuntimeException, XMLExcepts::CM_UnknownCMSpecType);
  390.     }
  391.     // Its not any simple type of content, so create a DFA based content model
  392.     return new (getMemoryManager()) DFAContentModel
  393.     (
  394.         true
  395.         , this->getContentSpec()
  396.         , getMemoryManager()
  397.     );
  398. }
  399. void DTDElementDecl::faultInAttDefList() const
  400. {
  401.     // Use a hash modulus of 29 and tell it owns its elements
  402.     ((DTDElementDecl*)this)->fAttDefs = new (getMemoryManager()) RefHashTableOf<DTDAttDef>(29, true, getMemoryManager());
  403. }
  404. XERCES_CPP_NAMESPACE_END