SimpleContentModel.hpp
上传用户:huihehuasu
上传日期:2007-01-10
资源大小:6948k
文件大小:10k
源码类别:

xml/soap/webservice

开发平台:

C/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: SimpleContentModel.hpp,v $
  58.  * Revision 1.12  2001/11/21 14:30:13  knoaman
  59.  * Fix for UPA checking.
  60.  *
  61.  * Revision 1.11  2001/10/03 15:08:45  tng
  62.  * typo fix: remove the extra space which may confuse some compilers while constructing the qname.
  63.  *
  64.  * Revision 1.10  2001/08/21 16:06:11  tng
  65.  * Schema: Unique Particle Attribution Constraint Checking.
  66.  *
  67.  * Revision 1.9  2001/08/13 15:06:39  knoaman
  68.  * update <any> validation.
  69.  *
  70.  * Revision 1.8  2001/05/11 13:27:20  tng
  71.  * Copyright update.
  72.  *
  73.  * Revision 1.7  2001/05/03 21:02:33  tng
  74.  * Schema: Add SubstitutionGroupComparator and update exception messages.  By Pei Yong Zhang.
  75.  *
  76.  * Revision 1.6  2001/04/19 18:17:34  tng
  77.  * Schema: SchemaValidator update, and use QName in Content Model
  78.  *
  79.  * Revision 1.5  2001/03/21 21:56:29  tng
  80.  * Schema: Add Schema Grammar, Schema Validator, and split the DTDValidator into DTDValidator, DTDScanner, and DTDGrammar.
  81.  *
  82.  * Revision 1.4  2001/03/21 19:30:02  tng
  83.  * Schema: Content Model Updates, by Pei Yong Zhang.
  84.  *
  85.  * Revision 1.3  2001/02/27 14:48:57  tng
  86.  * Schema: Add CMAny and ContentLeafNameTypeVector, by Pei Yong Zhang
  87.  *
  88.  * Revision 1.2  2001/02/16 14:58:57  tng
  89.  * Schema: Update Makefile, configure files, project files, and include path in
  90.  * certain cpp files because of the move of the common Content Model files.  By Pei Yong Zhang.
  91.  *
  92.  * Revision 1.1  2001/02/16 14:17:29  tng
  93.  * Schema: Move the common Content Model files that are shared by DTD
  94.  * and schema from 'DTD' folder to 'common' folder.  By Pei Yong Zhang.
  95.  *
  96.  * Revision 1.3  2000/02/24 20:16:49  abagchi
  97.  * Swat for removing Log from API docs
  98.  *
  99.  * Revision 1.2  2000/02/09 21:42:39  abagchi
  100.  * Copyright swat
  101.  *
  102.  * Revision 1.1.1.1  1999/11/09 01:03:48  twl
  103.  * Initial checkin
  104.  *
  105.  * Revision 1.2  1999/11/08 20:45:44  rahul
  106.  * Swat for adding in Product name and CVS comment log variable.
  107.  *
  108.  */
  109. #if !defined(SIMPLECONTENTMODEL_HPP)
  110. #define SIMPLECONTENTMODEL_HPP
  111. #include <framework/XMLContentModel.hpp>
  112. #include <validators/common/ContentSpecNode.hpp>
  113. //
  114. //  SimpleContentModel is a derivative of the abstract content model base
  115. //  class that handles a small set of simple content models that are just
  116. //  way overkill to give the DFA treatment.
  117. //
  118. //  DESCRIPTION:
  119. //
  120. //  This guy handles the following scenarios:
  121. //
  122. //      a
  123. //      a?
  124. //      a*
  125. //      a+
  126. //      a,b
  127. //      a|b
  128. //
  129. //  These all involve a unary operation with one element type, or a binary
  130. //  operation with two elements. These are very simple and can be checked
  131. //  in a simple way without a DFA and without the overhead of setting up a
  132. //  DFA for such a simple check.
  133. //
  134. //  NOTE:   Pass the XMLElementDecl::fgPCDataElemId value to represent a
  135. //          PCData node. Pass XMLElementDecl::fgInvalidElemId for unused element
  136. //
  137. class SimpleContentModel : public XMLContentModel
  138. {
  139. public :
  140.     // -----------------------------------------------------------------------
  141.     //  Constructors and Destructor
  142.     // -----------------------------------------------------------------------
  143.     SimpleContentModel
  144.     (
  145.         const bool                        dtd
  146.       , QName* const                      firstChild
  147.       , QName* const                      secondChild
  148.       , const ContentSpecNode::NodeTypes  cmOp
  149.     );
  150.     ~SimpleContentModel();
  151.     // -----------------------------------------------------------------------
  152.     //  Implementation of the ContentModel virtual interface
  153.     // -----------------------------------------------------------------------
  154. virtual int validateContent
  155.     (
  156.         QName** const         children
  157.       , const unsigned int    childCount
  158.       , const unsigned int    emptyNamespaceId
  159.     ) const;
  160. virtual int validateContentSpecial
  161.     (
  162.         QName** const           children
  163.       , const unsigned int      childCount
  164.       , const unsigned int      emptyNamespaceId
  165.       , GrammarResolver*  const pGrammarResolver
  166.       , XMLStringPool*    const pStringPool
  167.     ) const;
  168.     virtual ContentLeafNameTypeVector *getContentLeafNameTypeVector() const;
  169.     virtual unsigned int getNextState(const unsigned int currentState,
  170.                                       const unsigned int elementIndex) const;
  171.     virtual void checkUniqueParticleAttribution
  172.     (
  173.         SchemaGrammar*    const pGrammar
  174.       , GrammarResolver*  const pGrammarResolver
  175.       , XMLStringPool*    const pStringPool
  176.       , XMLValidator*     const pValidator
  177.       , unsigned int*     const pContentSpecOrgURI
  178.     ) ;
  179.  private :
  180.     // -----------------------------------------------------------------------
  181.     //  Unimplemented constructors and operators
  182.     // -----------------------------------------------------------------------
  183.     SimpleContentModel();
  184.     SimpleContentModel(const SimpleContentModel&);
  185.     void operator=(const SimpleContentModel&);
  186.     // -----------------------------------------------------------------------
  187.     //  Private data members
  188.     //
  189.     //  fFirstChild
  190.     //  fSecondChild
  191.     //      The first (and optional second) child node. The
  192.     //      operation code tells us whether the second child is used or not.
  193.     //
  194.     //  fOp
  195.     //      The operation that this object represents. Since this class only
  196.     //      does simple contents, there is only ever a single operation
  197.     //      involved (i.e. the children of the operation are always one or
  198.     //      two leafs.)
  199.     //
  200.     //  fDTD
  201.     //      Boolean to allow DTDs to validate even with namespace support. */
  202.     //
  203.     // -----------------------------------------------------------------------
  204.     QName*                     fFirstChild;
  205.     QName*                     fSecondChild;
  206.     ContentSpecNode::NodeTypes fOp;
  207.     bool                       fDTD;
  208. };
  209. // ---------------------------------------------------------------------------
  210. //  SimpleContentModel: Constructors and Destructor
  211. // ---------------------------------------------------------------------------
  212. inline
  213. SimpleContentModel::SimpleContentModel( const bool                        dtd
  214.                                       , QName* const                      firstChild
  215.                                       , QName* const                      secondChild
  216.                                       , const ContentSpecNode::NodeTypes  cmOp) :
  217.     fFirstChild(0)
  218.     , fSecondChild(0)
  219.     , fOp(cmOp)
  220. , fDTD(dtd)
  221. {
  222.     if (firstChild)
  223.         fFirstChild = new QName(firstChild);
  224.     else
  225.         fFirstChild = new QName(XMLUni::fgZeroLenString, XMLUni::fgZeroLenString, XMLElementDecl::fgInvalidElemId);
  226.     if (secondChild)
  227.         fSecondChild = new QName(secondChild);
  228.     else
  229.         fSecondChild = new QName(XMLUni::fgZeroLenString, XMLUni::fgZeroLenString, XMLElementDecl::fgInvalidElemId);
  230. }
  231. inline SimpleContentModel::~SimpleContentModel()
  232. {
  233.     delete fFirstChild;
  234.     delete fSecondChild;
  235. }
  236. // ---------------------------------------------------------------------------
  237. //  SimpleContentModel: Virtual methods
  238. // ---------------------------------------------------------------------------
  239. inline unsigned int
  240. SimpleContentModel::getNextState(const unsigned int currentState,
  241.                                  const unsigned int elementIndex) const {
  242.     return XMLContentModel::gInvalidTrans;
  243. }
  244. #endif