MixedContentModel.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: MixedContentModel.hpp,v $
  58.  * Revision 1.12  2001/11/28 16:46:20  tng
  59.  * Schema fix: Check for invalid URI index first.
  60.  *
  61.  * Revision 1.11  2001/11/21 14:30:13  knoaman
  62.  * Fix for UPA checking.
  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:19  tng
  71.  * Copyright update.
  72.  *
  73.  * Revision 1.7  2001/05/03 21:02:31  tng
  74.  * Schema: Add SubstitutionGroupComparator and update exception messages.  By Pei Yong Zhang.
  75.  *
  76.  * Revision 1.6  2001/04/19 18:17:33  tng
  77.  * Schema: SchemaValidator update, and use QName in Content Model
  78.  *
  79.  * Revision 1.5  2001/03/21 21:56:28  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:29:58  tng
  83.  * Schema: Content Model Updates, by Pei Yong Zhang.
  84.  *
  85.  * Revision 1.3  2001/02/27 18:32:33  tng
  86.  * Schema: Use XMLElementDecl instead of DTDElementDecl in Content Model.
  87.  *
  88.  * Revision 1.2  2001/02/27 14:48:55  tng
  89.  * Schema: Add CMAny and ContentLeafNameTypeVector, by Pei Yong Zhang
  90.  *
  91.  * Revision 1.1  2001/02/16 14:17:29  tng
  92.  * Schema: Move the common Content Model files that are shared by DTD
  93.  * and schema from 'DTD' folder to 'common' folder.  By Pei Yong Zhang.
  94.  *
  95.  * Revision 1.3  2000/02/24 20:16:49  abagchi
  96.  * Swat for removing Log from API docs
  97.  *
  98.  * Revision 1.2  2000/02/09 21:42:39  abagchi
  99.  * Copyright swat
  100.  *
  101.  * Revision 1.1.1.1  1999/11/09 01:03:45  twl
  102.  * Initial checkin
  103.  *
  104.  * Revision 1.3  1999/11/08 20:45:43  rahul
  105.  * Swat for adding in Product name and CVS comment log variable.
  106.  *
  107.  */
  108. #if !defined(MIXEDCONTENTMODEL_HPP)
  109. #define MIXEDCONTENTMODEL_HPP
  110. #include <util/ValueVectorOf.hpp>
  111. #include <framework/XMLContentModel.hpp>
  112. #include <validators/common/ContentLeafNameTypeVector.hpp>
  113. class ContentSpecNode;
  114. //
  115. //  MixedContentModel is a derivative of the abstract content model base
  116. //  class that handles the special case of mixed model elements. If an element
  117. //  is mixed model, it has PCDATA as its first possible content, followed
  118. //  by an alternation of the possible children. The children cannot have any
  119. //  numeration or order, so it must look like this:
  120. //
  121. //  <!ELEMENT Foo ((#PCDATA|a|b|c|)*)>
  122. //
  123. //  So, all we have to do is to keep an array of the possible children and
  124. //  validate by just looking up each child being validated by looking it up
  125. //  in the list.
  126. //
  127. class MixedContentModel : public XMLContentModel
  128. {
  129. public :
  130.     // -----------------------------------------------------------------------
  131.     //  Constructors and Destructor
  132.     // -----------------------------------------------------------------------
  133.     MixedContentModel
  134.     (
  135.         const bool              dtd
  136.       , ContentSpecNode* const  parentContentSpec
  137. , const bool              ordered = false
  138.     );
  139.     ~MixedContentModel();
  140.     // -----------------------------------------------------------------------
  141.     //  Getter methods
  142.     // -----------------------------------------------------------------------
  143.     bool hasDups() const;
  144.     // -----------------------------------------------------------------------
  145.     //  Implementation of the ContentModel virtual interface
  146.     // -----------------------------------------------------------------------
  147.     virtual int validateContent
  148.     (
  149.         QName** const         children
  150.       , const unsigned int    childCount
  151.       , const unsigned int    emptyNamespaceId
  152.     )   const;
  153. virtual int validateContentSpecial
  154.     (
  155.         QName** const         children
  156.       , const unsigned int    childCount
  157.       , const unsigned int    emptyNamespaceId
  158.       , GrammarResolver*  const pGrammarResolver
  159.       , XMLStringPool*    const pStringPool
  160.     ) const;
  161.     virtual ContentLeafNameTypeVector* getContentLeafNameTypeVector() const ;
  162.     virtual unsigned int getNextState(const unsigned int currentState,
  163.                                       const unsigned int elementIndex) const;
  164.     virtual void checkUniqueParticleAttribution
  165.     (
  166.         SchemaGrammar*    const pGrammar
  167.       , GrammarResolver*  const pGrammarResolver
  168.       , XMLStringPool*    const pStringPool
  169.       , XMLValidator*     const pValidator
  170.       , unsigned int*     const pContentSpecOrgURI
  171.     ) ;
  172. private :
  173.     // -----------------------------------------------------------------------
  174.     //  Private helper methods
  175.     // -----------------------------------------------------------------------
  176.     void buildChildList
  177.     (
  178.         ContentSpecNode* const                     curNode
  179.       , ValueVectorOf<QName*>&                     toFill
  180.       , ValueVectorOf<ContentSpecNode::NodeTypes>& toType
  181.     );
  182.     // -----------------------------------------------------------------------
  183.     //  Unimplemented constructors and operators
  184.     // -----------------------------------------------------------------------
  185.     MixedContentModel();
  186.     MixedContentModel(const MixedContentModel&);
  187.     void operator=(const MixedContentModel&);
  188.     // -----------------------------------------------------------------------
  189.     //  Private data members
  190.     //
  191.     //  fCount
  192.     //      The count of possible children in the fChildren member.
  193.     //
  194.     //  fChildren
  195.     //      The list of possible children that we have to accept. This array
  196.     //      is allocated as large as needed in the constructor.
  197.     //
  198.     //  fChildTypes
  199.     //      The type of the children to support ANY.
  200.     //
  201.     //  fOrdered
  202.     //      True if mixed content model is ordered. DTD mixed content models
  203.     //      are <em>always</em> unordered.
  204.     //
  205.     //  fDTD
  206.     //      Boolean to allow DTDs to validate even with namespace support.
  207.     //
  208.     // -----------------------------------------------------------------------
  209.     unsigned int    fCount;
  210.     QName**         fChildren;
  211.     ContentSpecNode::NodeTypes*  fChildTypes;
  212.     bool            fOrdered;
  213.     bool            fDTD;
  214. };
  215. inline ContentLeafNameTypeVector* MixedContentModel::getContentLeafNameTypeVector() const
  216. {
  217. return 0;
  218. }
  219. inline unsigned int
  220. MixedContentModel::getNextState(const unsigned int currentState,
  221.                                 const unsigned int elementIndex) const {
  222.     return XMLContentModel::gInvalidTrans;
  223. }
  224. inline void MixedContentModel::checkUniqueParticleAttribution
  225.     (
  226.         SchemaGrammar*    const pGrammar
  227.       , GrammarResolver*  const pGrammarResolver
  228.       , XMLStringPool*    const pStringPool
  229.       , XMLValidator*     const pValidator
  230.       , unsigned int*     const pContentSpecOrgURI
  231.     )
  232. {
  233.     // rename back
  234.     unsigned int i = 0;
  235.     for (i = 0; i < fCount; i++) {
  236.         unsigned int orgURIIndex = fChildren[i]->getURI();
  237.         if (orgURIIndex != XMLContentModel::gEOCFakeId)
  238.             fChildren[i]->setURI(pContentSpecOrgURI[orgURIIndex]);
  239.     }
  240.     // for mixed content model, it's only a sequence
  241.     // UPA checking is not necessary
  242. }
  243. #endif