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

词法分析

开发平台:

Visual C++

  1. /*
  2.  * The Apache Software License, Version 1.1
  3.  *
  4.  * Copyright (c) 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) 2001, 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: SubstitutionGroupComparator.cpp,v $
  58.  * Revision 1.6  2003/01/13 20:16:51  knoaman
  59.  * [Bug 16024] SchemaSymbols.hpp conflicts C++ Builder 6 dir.h
  60.  *
  61.  * Revision 1.5  2002/11/04 14:49:42  tng
  62.  * C++ Namespace Support.
  63.  *
  64.  * Revision 1.4  2002/09/24 20:12:48  tng
  65.  * Performance: use XMLString::equals instead of XMLString::compareString
  66.  *
  67.  * Revision 1.3  2002/07/12 15:17:48  knoaman
  68.  * For a given global element, store info about a substitution group element
  69.  * as a SchemaElementDecl and not as a string.
  70.  *
  71.  * Revision 1.2  2002/02/25 21:18:18  tng
  72.  * Schema Fix: Ensure no invalid uri index for UPA checking.
  73.  *
  74.  * Revision 1.1.1.1  2002/02/01 22:22:47  peiyongz
  75.  * sane_include
  76.  *
  77.  * Revision 1.11  2001/11/28 16:46:03  tng
  78.  * Schema fix: Initialize the temporary string as null terminated.
  79.  *
  80.  * Revision 1.10  2001/11/21 14:30:13  knoaman
  81.  * Fix for UPA checking.
  82.  *
  83.  * Revision 1.9  2001/11/07 21:50:28  tng
  84.  * Fix comment log that lead to error.
  85.  *
  86.  * Revision 1.8  2001/11/07 21:12:15  tng
  87.  * Performance: Create QName in ContentSpecNode only if it is a leaf/Any/PCDataNode.
  88.  *
  89.  * Revision 1.7  2001/10/04 15:08:56  knoaman
  90.  * Add support for circular import.
  91.  *
  92.  * Revision 1.6  2001/08/21 15:57:51  tng
  93.  * Schema: Add isAllowedByWildcard.  Help from James Murphy.
  94.  *
  95.  * Revision 1.5  2001/05/29 19:47:22  knoaman
  96.  * Fix bug -  memory was not allocated before call to XMLString::subString
  97.  *
  98.  * Revision 1.4  2001/05/28 20:55:42  tng
  99.  * Schema: Null pointer checking in SubsitutionGropuComparator
  100.  *
  101.  * Revision 1.3  2001/05/11 13:27:37  tng
  102.  * Copyright update.
  103.  *
  104.  * Revision 1.2  2001/05/04 14:50:28  tng
  105.  * Fixed the cvs symbols.
  106.  *
  107.  *
  108.  */
  109. // ---------------------------------------------------------------------------
  110. //  Includes
  111. // ---------------------------------------------------------------------------
  112. #include <xercesc/validators/schema/SubstitutionGroupComparator.hpp>
  113. #include <xercesc/validators/common/Grammar.hpp>
  114. #include <xercesc/validators/schema/SchemaGrammar.hpp>
  115. #include <xercesc/validators/schema/ComplexTypeInfo.hpp>
  116. #include <xercesc/validators/schema/SchemaSymbols.hpp>
  117. XERCES_CPP_NAMESPACE_BEGIN
  118. bool SubstitutionGroupComparator::isEquivalentTo(QName* const anElement
  119.                                                , QName* const exemplar)
  120. {
  121.     if (!anElement && !exemplar)
  122.         return true;
  123.     if ((!anElement && exemplar) || (anElement && !exemplar))
  124.         return false;
  125.     if (XMLString::equals(anElement->getLocalPart(), exemplar->getLocalPart()) &&
  126.         (anElement->getURI() == exemplar->getURI()))
  127.         return true; // they're the same!
  128.     if (!fGrammarResolver || !fStringPool )
  129.     {
  130.         ThrowXML(RuntimeException, XMLExcepts::SubGrpComparator_NGR);
  131.     }
  132.     unsigned int uriId = anElement->getURI();
  133.     if (uriId == XMLContentModel::gEOCFakeId ||
  134.         uriId == XMLContentModel::gEpsilonFakeId ||
  135.         uriId == XMLElementDecl::fgPCDataElemId ||
  136.         uriId == XMLElementDecl::fgInvalidElemId)
  137.         return false;
  138.     const XMLCh* uri = fStringPool->getValueForId(uriId);
  139.     const XMLCh* localpart = anElement->getLocalPart();
  140.     // In addition to simply trying to find a chain between anElement and exemplar,
  141.     // we need to make sure that no steps in the chain are blocked.
  142.     // That is, at every step, we need to make sure that the element
  143.     // being substituted for will permit being substituted
  144.     // for, and whether the type of the element will permit derivations in
  145.     // instance documents of this sort.
  146.     if (!uri)
  147.         return false;
  148.     SchemaGrammar *sGrammar = (SchemaGrammar*) fGrammarResolver->getGrammar(uri);
  149.     if (!sGrammar || sGrammar->getGrammarType() == Grammar::DTDGrammarType)
  150.         return false;
  151.     SchemaElementDecl* anElementDecl = (SchemaElementDecl*) sGrammar->getElemDecl(uriId, localpart, 0, Grammar::TOP_LEVEL_SCOPE);
  152.     if (!anElementDecl)
  153.         return false;
  154.     SchemaElementDecl* pElemDecl = anElementDecl->getSubstitutionGroupElem();
  155.     bool foundIt = false;
  156.     while (pElemDecl) //(substitutionGroupFullName)
  157.     {
  158.         if (XMLString::equals(pElemDecl->getBaseName(), exemplar->getLocalPart()) &&
  159.             (pElemDecl->getURI() == exemplar->getURI()))
  160.         {
  161.             // time to check for block value on element
  162.             if((pElemDecl->getBlockSet() & SchemaSymbols::XSD_SUBSTITUTION) != 0)
  163.                 return false;
  164.             foundIt = true;
  165.             break;
  166.         }
  167.         pElemDecl = pElemDecl->getSubstitutionGroupElem();
  168.     }//while
  169.     if (!foundIt)
  170.         return false;
  171.     // this will contain anElement's complexType information.
  172.     ComplexTypeInfo *aComplexType = anElementDecl->getComplexTypeInfo();
  173.     int exemplarBlockSet = pElemDecl->getBlockSet();
  174.     if(!aComplexType)
  175.     {
  176.         // check on simpleType case
  177.         DatatypeValidator *anElementDV = anElementDecl->getDatatypeValidator();
  178.         DatatypeValidator *exemplarDV = pElemDecl->getDatatypeValidator();
  179.         return((anElementDV == 0) ||
  180.             ((anElementDV == exemplarDV) ||
  181.             ((exemplarBlockSet & SchemaSymbols::XSD_RESTRICTION) == 0)));
  182.     }
  183.     // now we have to make sure there are no blocks on the complexTypes that this is based upon
  184.     int anElementDerivationMethod = aComplexType->getDerivedBy();
  185.     if((anElementDerivationMethod & exemplarBlockSet) != 0)
  186.         return false;
  187.     // this will contain exemplar's complexType information.
  188.     ComplexTypeInfo *exemplarComplexType = pElemDecl->getComplexTypeInfo();
  189.     for(ComplexTypeInfo *tempType = aComplexType;
  190.         tempType != 0 && tempType != exemplarComplexType;
  191.         tempType = tempType->getBaseComplexTypeInfo())
  192.     {
  193.         if((tempType->getBlockSet() & anElementDerivationMethod) != 0)
  194.             return false;
  195.     }//for
  196.     return true;
  197. }
  198. bool SubstitutionGroupComparator::isAllowedByWildcard(SchemaGrammar* const pGrammar,
  199.                                                       QName* const element,
  200.                                                       unsigned int wuri, bool wother)
  201. {
  202.     // whether the uri is allowed directly by the wildcard
  203.     unsigned int uriId = element->getURI();
  204.     if ((!wother && uriId == wuri) ||
  205.         (wother &&
  206.          uriId != wuri &&
  207.          uriId != XMLContentModel::gEOCFakeId &&
  208.          uriId != XMLContentModel::gEpsilonFakeId &&
  209.          uriId != XMLElementDecl::fgPCDataElemId &&
  210.          uriId != XMLElementDecl::fgInvalidElemId))
  211.     {
  212.         return true;
  213.     }
  214.     // get all elements that can substitute the current element
  215.     RefHash2KeysTableOf<ElemVector>* theValidSubstitutionGroups = pGrammar->getValidSubstitutionGroups();
  216.     if (!theValidSubstitutionGroups)
  217.         return false;
  218.     ValueVectorOf<SchemaElementDecl*>* subsElements = theValidSubstitutionGroups->get(element->getLocalPart(), uriId);
  219.     if (!subsElements)
  220.         return false;
  221.     // then check whether there exists one element that is allowed by the wildcard
  222.     int size = subsElements->size();
  223.     for (int i = 0; i < size; i++)
  224.     {
  225.         unsigned int subUriId = subsElements->elementAt(i)->getElementName()->getURI();
  226.         if ((!wother && subUriId == wuri) ||
  227.             (wother &&
  228.              subUriId != wuri &&
  229.              subUriId != XMLContentModel::gEOCFakeId &&
  230.              subUriId != XMLContentModel::gEpsilonFakeId &&
  231.              subUriId != XMLElementDecl::fgPCDataElemId &&
  232.              subUriId != XMLElementDecl::fgInvalidElemId))
  233.         {
  234.             return true;
  235.         }
  236.     }
  237.     return false;
  238. }
  239. XERCES_CPP_NAMESPACE_END
  240. /**
  241.   * End of file SubstitutionGroupComparator.cpp
  242.   */