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

词法分析

开发平台:

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: DTDGrammar.cpp,v $
  58.  * Revision 1.6  2003/05/18 14:02:06  knoaman
  59.  * Memory manager implementation: pass per instance manager.
  60.  *
  61.  * Revision 1.5  2003/05/15 18:54:50  knoaman
  62.  * Partial implementation of the configurable memory manager.
  63.  *
  64.  * Revision 1.4  2002/12/04 02:47:25  knoaman
  65.  * scanner re-organization.
  66.  *
  67.  * Revision 1.3  2002/11/04 14:50:40  tng
  68.  * C++ Namespace Support.
  69.  *
  70.  * Revision 1.2  2002/07/11 18:19:28  knoaman
  71.  * Grammar caching/preparsing - initial implementation.
  72.  *
  73.  * Revision 1.1.1.1  2002/02/01 22:22:43  peiyongz
  74.  * sane_include
  75.  *
  76.  * Revision 1.4  2001/09/14 14:50:22  tng
  77.  * Schema: Fix some wildcard bugs, and some retrieving qualified/unqualified element decl problems.
  78.  *
  79.  * Revision 1.3  2001/05/11 13:27:08  tng
  80.  * Copyright update.
  81.  *
  82.  * Revision 1.2  2001/04/19 18:17:20  tng
  83.  * Schema: SchemaValidator update, and use QName in Content Model
  84.  *
  85.  * Revision 1.1  2001/03/21 21:56:20  tng
  86.  * Schema: Add Schema Grammar, Schema Validator, and split the DTDValidator into DTDValidator, DTDScanner, and DTDGrammar.
  87.  *
  88.  */
  89. // ---------------------------------------------------------------------------
  90. //  Includes
  91. // ---------------------------------------------------------------------------
  92. #include <xercesc/util/XMLUniDefs.hpp>
  93. #include <xercesc/util/XMLUni.hpp>
  94. #include <xercesc/validators/DTD/DTDGrammar.hpp>
  95. XERCES_CPP_NAMESPACE_BEGIN
  96. //---------------------------------------------------------------------------
  97. //  DTDGrammar: Constructors and Destructor
  98. // ---------------------------------------------------------------------------
  99. DTDGrammar::DTDGrammar(MemoryManager* const manager) :
  100.     fMemoryManager(manager)
  101.     , fElemDeclPool(0)
  102.     , fElemNonDeclPool(0)
  103.     , fEntityDeclPool(0)
  104.     , fNotationDeclPool(0)
  105.     , fValidated(false)
  106. {
  107.     //
  108.     //  Init all the pool members.
  109.     //
  110.     //  <TBD> Investigate what the optimum values would be for the various
  111.     //  pools.
  112.     //
  113.     fElemDeclPool = new (fMemoryManager) NameIdPool<DTDElementDecl>(109, 128, fMemoryManager);
  114.     fElemNonDeclPool = new (fMemoryManager) NameIdPool<DTDElementDecl>(29, 128, fMemoryManager);
  115.     fEntityDeclPool = new (fMemoryManager) NameIdPool<DTDEntityDecl>(109, 128, fMemoryManager);
  116.     fNotationDeclPool = new (fMemoryManager) NameIdPool<XMLNotationDecl>(109, 128, fMemoryManager);
  117.     //
  118.     //  Call our own reset method. This lets us have the pool setup stuff
  119.     //  done in just one place (because this stame setup stuff has to be
  120.     //  done every time we are reset.)
  121.     //
  122.     reset();
  123. }
  124. DTDGrammar::~DTDGrammar()
  125. {
  126.     delete fElemDeclPool;
  127.     delete fElemNonDeclPool;
  128.     delete fEntityDeclPool;
  129.     delete fNotationDeclPool;
  130. }
  131. // -----------------------------------------------------------------------
  132. //  Virtual methods
  133. // -----------------------------------------------------------------------
  134. XMLElementDecl* DTDGrammar::findOrAddElemDecl (const   unsigned int    uriId
  135.         , const XMLCh* const    baseName
  136.         , const XMLCh* const    prefixName
  137.         , const XMLCh* const    qName
  138.         , unsigned int          scope
  139.         ,       bool&           wasAdded )
  140. {
  141.     // See it it exists
  142.     DTDElementDecl* retVal = (DTDElementDecl*) getElemDecl(uriId, baseName, qName, scope);
  143.     // if not, then add this in
  144.     if (!retVal)
  145.     {
  146.         retVal = new (fMemoryManager) DTDElementDecl
  147.         (
  148.             qName
  149.             , uriId
  150.             , DTDElementDecl::Any
  151.             , fMemoryManager
  152.         );
  153.         const unsigned int elemId = fElemNonDeclPool->put(retVal);
  154.         retVal->setId(elemId);
  155.         wasAdded = true;
  156.     }
  157.      else
  158.     {
  159.         wasAdded = false;
  160.     }
  161.     return retVal;
  162. }
  163. XMLElementDecl* DTDGrammar::putElemDecl (const   unsigned int    uriId
  164.         , const XMLCh* const    baseName
  165.         , const XMLCh* const    prefixName
  166.         , const XMLCh* const    qName
  167.         , unsigned int          scope
  168.         , const bool            notDeclared)
  169. {
  170.     DTDElementDecl* retVal = new (fMemoryManager) DTDElementDecl
  171.     (
  172.         qName
  173.         , uriId
  174.         , DTDElementDecl::Any
  175.         , fMemoryManager
  176.     );
  177.     const unsigned int elemId = (notDeclared) ? fElemNonDeclPool->put(retVal)
  178.                                               : fElemDeclPool->put(retVal);
  179.     retVal->setId(elemId);
  180.     return retVal;
  181. }
  182. void DTDGrammar::reset()
  183. {
  184.     //
  185.     //  We need to reset all of the pools.
  186.     //
  187.     fElemDeclPool->removeAll();
  188.     fElemNonDeclPool->removeAll();
  189.     fNotationDeclPool->removeAll();
  190.     resetEntityDeclPool();
  191.     fValidated = false;
  192. }
  193. void DTDGrammar::resetEntityDeclPool() {
  194.     fEntityDeclPool->removeAll();
  195.     //
  196.     //  Add the default entity entries for the character refs that must always
  197.     //  be present. We indicate that they are from the internal subset. They
  198.     //  aren't really, but they have to look that way so that they are still
  199.     //  valid for use within a standalone document.
  200.     //
  201.     //  We also mark them as special char entities, which allows them to be
  202.     //  used in places whether other non-numeric general entities cannot.
  203.     //
  204.     fEntityDeclPool->put(new DTDEntityDecl(XMLUni::fgAmp, chAmpersand, true, true));
  205.     fEntityDeclPool->put(new DTDEntityDecl(XMLUni::fgLT, chOpenAngle, true, true));
  206.     fEntityDeclPool->put(new DTDEntityDecl(XMLUni::fgGT, chCloseAngle, true, true));
  207.     fEntityDeclPool->put(new DTDEntityDecl(XMLUni::fgQuot, chDoubleQuote, true, true));
  208.     fEntityDeclPool->put(new DTDEntityDecl(XMLUni::fgApos, chSingleQuote, true, true));
  209. }
  210. XERCES_CPP_NAMESPACE_END