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

词法分析

开发平台:

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: CMNode.hpp,v $
  58.  * Revision 1.5  2003/05/16 21:43:20  knoaman
  59.  * Memory manager implementation: Modify constructors to pass in the memory manager.
  60.  *
  61.  * Revision 1.4  2003/05/15 18:48:27  knoaman
  62.  * Partial implementation of the configurable memory manager.
  63.  *
  64.  * Revision 1.3  2003/03/07 18:16:57  tng
  65.  * Return a reference instead of void for operator=
  66.  *
  67.  * Revision 1.2  2002/11/04 14:54:58  tng
  68.  * C++ Namespace Support.
  69.  *
  70.  * Revision 1.1.1.1  2002/02/01 22:22:38  peiyongz
  71.  * sane_include
  72.  *
  73.  * Revision 1.3  2001/05/11 13:27:17  tng
  74.  * Copyright update.
  75.  *
  76.  * Revision 1.2  2001/02/16 14:58:57  tng
  77.  * Schema: Update Makefile, configure files, project files, and include path in
  78.  * certain cpp files because of the move of the common Content Model files.  By Pei Yong Zhang.
  79.  *
  80.  * Revision 1.1  2001/02/16 14:17:29  tng
  81.  * Schema: Move the common Content Model files that are shared by DTD
  82.  * and schema from 'DTD' folder to 'common' folder.  By Pei Yong Zhang.
  83.  *
  84.  * Revision 1.5  2000/03/28 19:43:25  roddey
  85.  * Fixes for signed/unsigned warnings. New work for two way transcoding
  86.  * stuff.
  87.  *
  88.  * Revision 1.4  2000/03/02 19:55:37  roddey
  89.  * This checkin includes many changes done while waiting for the
  90.  * 1.1.0 code to be finished. I can't list them all here, but a list is
  91.  * available elsewhere.
  92.  *
  93.  * Revision 1.3  2000/02/24 20:16:48  abagchi
  94.  * Swat for removing Log from API docs
  95.  *
  96.  * Revision 1.2  2000/02/09 21:42:36  abagchi
  97.  * Copyright swat
  98.  *
  99.  * Revision 1.1.1.1  1999/11/09 01:03:05  twl
  100.  * Initial checkin
  101.  *
  102.  * Revision 1.2  1999/11/08 20:45:36  rahul
  103.  * Swat for adding in Product name and CVS comment log variable.
  104.  *
  105.  */
  106. #if !defined(CMNODE_HPP)
  107. #define CMNODE_HPP
  108. #include <xercesc/validators/common/ContentSpecNode.hpp>
  109. #include <xercesc/validators/common/CMStateSet.hpp>
  110. XERCES_CPP_NAMESPACE_BEGIN
  111. class CMNode : public XMemory
  112. {
  113. public :
  114.     // -----------------------------------------------------------------------
  115.     //  Constructors and Destructors
  116.     // -----------------------------------------------------------------------
  117.     CMNode
  118.     (
  119.         const ContentSpecNode::NodeTypes type
  120.         , MemoryManager* const manager = XMLPlatformUtils::fgMemoryManager
  121.     );
  122.     virtual ~CMNode();
  123.     // -----------------------------------------------------------------------
  124.     //  Virtual methods to be provided derived node classes
  125.     // -----------------------------------------------------------------------
  126.     virtual bool isNullable() const = 0;
  127.     // -----------------------------------------------------------------------
  128.     //  Getter methods
  129.     // -----------------------------------------------------------------------
  130.     ContentSpecNode::NodeTypes getType() const;
  131.     const CMStateSet& getFirstPos() const;
  132.     const CMStateSet& getLastPos() const;
  133.     // -----------------------------------------------------------------------
  134.     //  Setter methods
  135.     // -----------------------------------------------------------------------
  136.     void setMaxStates(const unsigned int maxStates);
  137. protected :
  138.     // -----------------------------------------------------------------------
  139.     //  Protected, abstract methods
  140.     // -----------------------------------------------------------------------
  141.     virtual void calcFirstPos(CMStateSet& toUpdate) const = 0;
  142.     virtual void calcLastPos(CMStateSet& toUpdate) const = 0;
  143.     // -----------------------------------------------------------------------
  144.     //  Protected data members
  145.     //
  146.     //  fMemoryManager
  147.     //      Pluggable memory manager for dynamic allocation/deallocation.
  148.     // -----------------------------------------------------------------------
  149.     MemoryManager*             fMemoryManager;
  150. private :
  151.     // -----------------------------------------------------------------------
  152.     //  Unimplemented constructors and operators
  153.     // -----------------------------------------------------------------------
  154.     CMNode();
  155.     CMNode(const CMNode&);
  156.     CMNode& operator=(const CMNode&);
  157.     // -----------------------------------------------------------------------
  158.     //  Private data members
  159.     //
  160.     //  fType
  161.     //      The type of node. This indicates whether its a leaf or an
  162.     //      operation.
  163.     //
  164.     //  fFirstPos
  165.     //      The set of NFA states that represent the entry states of this
  166.     //      node in the DFA.
  167.     //
  168.     //  fLastPos
  169.     //      The set of NFA states that represent the final states of this
  170.     //      node in the DFA.
  171.     //
  172.     //  fMaxStates
  173.     //      The maximum number of states that the NFA has, which means the
  174.     //      max number of NFA states that have to be traced in the state
  175.     //      sets during the building of the DFA. Its unfortunate that it
  176.     //      has to be stored redundantly, but we need to fault in the
  177.     //      state set members and they have to be sized to this size.
  178.     // -----------------------------------------------------------------------
  179.     ContentSpecNode::NodeTypes fType;
  180.     CMStateSet*                fFirstPos;
  181.     CMStateSet*                fLastPos;
  182.     unsigned int               fMaxStates;
  183. };
  184. // ---------------------------------------------------------------------------
  185. //  CMNode: Constructors and Destructors
  186. // ---------------------------------------------------------------------------
  187. inline CMNode::CMNode(const ContentSpecNode::NodeTypes type,
  188.                       MemoryManager* const manager) :
  189.     fMemoryManager(manager)
  190.     , fType(type)
  191.     , fFirstPos(0)
  192.     , fLastPos(0)
  193.     , fMaxStates(~0)
  194. {
  195. }
  196. inline CMNode::~CMNode()
  197. {
  198.     // Clean up any position sets that got created
  199.     delete fFirstPos;
  200.     delete fLastPos;
  201. }
  202. // ---------------------------------------------------------------------------
  203. //  CMNode: Getter methods
  204. // ---------------------------------------------------------------------------
  205. inline ContentSpecNode::NodeTypes CMNode::getType() const
  206. {
  207.     return fType;
  208. }
  209. inline const CMStateSet& CMNode::getFirstPos() const
  210. {
  211.     //
  212.     //  Fault in the state set if needed. Since we can't use mutable members
  213.     //  cast off the const'ness.
  214.     //
  215.     if (!fFirstPos)
  216.     {
  217.         CMNode* unconstThis = (CMNode*)this;
  218.         unconstThis->fFirstPos = new (fMemoryManager) CMStateSet(fMaxStates, fMemoryManager);
  219.         unconstThis->calcFirstPos(*fFirstPos);
  220.     }
  221.     return *fFirstPos;
  222. }
  223. inline const CMStateSet& CMNode::getLastPos() const
  224. {
  225.     //
  226.     //  Fault in the state set if needed. Since we can't use mutable members
  227.     //  cast off the const'ness.
  228.     //
  229.     if (!fLastPos)
  230.     {
  231.         CMNode* unconstThis = (CMNode*)this;
  232.         unconstThis->fLastPos = new (fMemoryManager) CMStateSet(fMaxStates, fMemoryManager);
  233.         unconstThis->calcLastPos(*fLastPos);
  234.     }
  235.     return *fLastPos;
  236. }
  237. // ---------------------------------------------------------------------------
  238. //  CMNode: Setter methods
  239. // ---------------------------------------------------------------------------
  240. inline void CMNode::setMaxStates(const unsigned int maxStates)
  241. {
  242.     fMaxStates = maxStates;
  243. }
  244. XERCES_CPP_NAMESPACE_END
  245. #endif