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

词法分析

开发平台:

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) 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: ValueStore.cpp,v $
  58.  * Revision 1.7  2003/05/18 14:02:09  knoaman
  59.  * Memory manager implementation: pass per instance manager.
  60.  *
  61.  * Revision 1.6  2003/05/15 18:59:34  knoaman
  62.  * Partial implementation of the configurable memory manager.
  63.  *
  64.  * Revision 1.5  2002/12/04 02:32:43  knoaman
  65.  * #include cleanup.
  66.  *
  67.  * Revision 1.4  2002/11/04 14:47:41  tng
  68.  * C++ Namespace Support.
  69.  *
  70.  * Revision 1.3  2002/09/24 19:57:20  tng
  71.  * Performance: use XMLString::equals instead of XMLString::compareString
  72.  *
  73.  * Revision 1.2  2002/02/18 06:26:50  jberry
  74.  * Quiet codewarrior compiler warnings
  75.  *
  76.  * Revision 1.1.1.1  2002/02/01 22:22:51  peiyongz
  77.  * sane_include
  78.  *
  79.  * Revision 1.3  2001/12/06 17:03:37  knoaman
  80.  * Identity Constraint: fix for xpath expressions containing union operator(s).
  81.  *
  82.  * Revision 1.2  2001/11/20 20:32:52  knoaman
  83.  * Bypass validating element's simple content if it's empty and element is nillable.
  84.  *
  85.  * Revision 1.1  2001/11/02 14:08:40  knoaman
  86.  * Add support for identity constraints.
  87.  *
  88.  */
  89. // ---------------------------------------------------------------------------
  90. //  Includes
  91. // ---------------------------------------------------------------------------
  92. #include <xercesc/internal/XMLScanner.hpp>
  93. #include <xercesc/framework/XMLValidator.hpp>
  94. #include <xercesc/validators/datatype/DatatypeValidator.hpp>
  95. #include <xercesc/validators/schema/identity/ValueStore.hpp>
  96. #include <xercesc/validators/schema/identity/IC_Field.hpp>
  97. #include <xercesc/validators/schema/identity/IC_KeyRef.hpp>
  98. #include <xercesc/validators/schema/identity/ValueStoreCache.hpp>
  99. XERCES_CPP_NAMESPACE_BEGIN
  100. // ---------------------------------------------------------------------------
  101. //  ValueStore: Constructors and Destructor
  102. // ---------------------------------------------------------------------------
  103. ValueStore::ValueStore(IdentityConstraint* const ic,
  104.                        XMLScanner* const scanner,
  105.                        MemoryManager* const manager)
  106.     : fDoReportError(false)
  107.     , fValuesCount(0)
  108.     , fIdentityConstraint(ic)
  109.     , fValues(manager)
  110.     , fValueTuples(0)
  111.     , fKeyValueStore(0)
  112.     , fScanner(scanner)
  113.     , fMemoryManager(manager)
  114. {
  115. fDoReportError = (scanner && scanner->getDoValidation());
  116. }
  117. ValueStore::~ValueStore()
  118. {
  119.     delete fValueTuples;
  120. }
  121. // ---------------------------------------------------------------------------
  122. //  ValueStore: Helper methods
  123. // ---------------------------------------------------------------------------
  124. void ValueStore::addValue(IC_Field* const field,
  125.                           DatatypeValidator* const dv,
  126.                           const XMLCh* const value) {
  127.     if (!field->getMayMatch() && fDoReportError) {
  128.         fScanner->getValidator()->emitError(XMLValid::IC_FieldMultipleMatch);
  129.     }
  130.     // do we even know this field?
  131.     int index = fValues.indexOf(field);
  132.     if (index == -1) {
  133.         if (fDoReportError) {
  134.            fScanner->getValidator()->emitError(XMLValid::IC_UnknownField);
  135.         }
  136.         return;
  137.     }
  138.     // store value
  139.     if (!fValues.getDatatypeValidatorAt(index) &&
  140.         !fValues.getValueAt(index)) {
  141.         fValuesCount++;
  142.     }
  143.     fValues.put(field, dv, value);
  144.     if (fValuesCount == (int) fValues.size()) {
  145.         // is this value as a group duplicated?
  146.         if (contains(&fValues)) {
  147.             duplicateValue();
  148.         }
  149.         // store values
  150.         if (!fValueTuples) {
  151.             fValueTuples = new (fMemoryManager) RefVectorOf<FieldValueMap>(4, true, fMemoryManager);
  152.         }
  153.         fValueTuples->addElement(new (fMemoryManager) FieldValueMap(fValues));
  154.     }
  155. }
  156. void ValueStore::append(const ValueStore* const other) {
  157.     if (!other->fValueTuples) {
  158.         return;
  159.     }
  160.     unsigned int tupleSize = other->fValueTuples->size();
  161.     for (unsigned int i=0; i<tupleSize; i++) {
  162.     FieldValueMap* valueMap = other->fValueTuples->elementAt(i);
  163.         if (!contains(valueMap)) {
  164.             if (!fValueTuples) {
  165.                 fValueTuples = new (fMemoryManager) RefVectorOf<FieldValueMap>(4, true, fMemoryManager);
  166.             }
  167.             fValueTuples->addElement(new (fMemoryManager) FieldValueMap(*valueMap));
  168.         }
  169.     }
  170. }
  171. void ValueStore::startValueScope() {
  172.     fValuesCount = 0;
  173.     int count = fIdentityConstraint->getFieldCount();
  174.     for (int i = 0; i < count; i++) {
  175.         fValues.put(fIdentityConstraint->getFieldAt(i), 0, 0);
  176.     }
  177. }
  178. void ValueStore::endValueScope() {
  179.     if (fValuesCount == 0) {
  180.         if (fIdentityConstraint->getType() == IdentityConstraint::KEY && fDoReportError) {
  181.             fScanner->getValidator()->emitError(XMLValid::IC_AbsentKeyValue,
  182.                 fIdentityConstraint->getElementName());
  183.         }
  184.         return;
  185.     }
  186.     // do we have enough values?
  187.     if ((fValuesCount != fIdentityConstraint->getFieldCount()) && fDoReportError) {
  188.         switch (fIdentityConstraint->getType()) {
  189.         case IdentityConstraint::UNIQUE:
  190.             {
  191. fScanner->getValidator()->emitError(XMLValid::IC_UniqueNotEnoughValues,
  192.                     fIdentityConstraint->getElementName());
  193.                 break;
  194.             }
  195.         case IdentityConstraint::KEY:
  196.             {
  197. fScanner->getValidator()->emitError(XMLValid::IC_KeyNotEnoughValues,
  198.                     fIdentityConstraint->getElementName(), fIdentityConstraint->getIdentityConstraintName());
  199.                 break;
  200.             }
  201.         case IdentityConstraint::KEYREF:
  202.             {
  203. fScanner->getValidator()->emitError(XMLValid::IC_KeyRefNotEnoughValues,
  204.                     fIdentityConstraint->getElementName(), fIdentityConstraint->getIdentityConstraintName());
  205.                 break;
  206.             }
  207.         }
  208.     }
  209. }
  210. bool ValueStore::contains(const FieldValueMap* const other) {
  211.     if (fValueTuples) {
  212.         unsigned int otherSize = other->size();
  213.         unsigned int tupleSize = fValueTuples->size();
  214.         for (unsigned int i=0; i<tupleSize; i++) {
  215.             FieldValueMap* valueMap = fValueTuples->elementAt(i);
  216.             if (otherSize == valueMap->size()) {
  217.                 bool matchFound = true;
  218.                 for (unsigned int j=0; j<otherSize; j++) {
  219.                     if (!isDuplicateOf(valueMap->getDatatypeValidatorAt(j), valueMap->getValueAt(j),
  220.                                        other->getDatatypeValidatorAt(j), other->getValueAt(j))) {
  221.                         matchFound = false;
  222.                         break;
  223.                     }
  224.                 }
  225.                 if (matchFound) { // found it
  226.                     return true;
  227.                 }
  228.             }
  229.         }
  230.     }
  231.     return false;
  232. }
  233. bool ValueStore::isDuplicateOf(DatatypeValidator* const dv1, const XMLCh* const val1,
  234.                                DatatypeValidator* const dv2, const XMLCh* const val2) {
  235.     // if either validator's null, fall back on string comparison
  236.     if(!dv1 || !dv2) {
  237.         return (XMLString::equals(val1, val2));
  238.     }
  239.     unsigned int val1Len = XMLString::stringLen(val1);
  240.     unsigned int val2Len = XMLString::stringLen(val2);
  241.     if (!val1Len && !val2Len) {
  242.         if (dv1 == dv2) {
  243.             return true;
  244.         }
  245.         return false;
  246.     }
  247.     if (!val1Len || !val2Len) {
  248.         return false;
  249.     }
  250.     // are the validators equal?
  251.     // As always we are obliged to compare by reference...
  252.     if (dv1 == dv2) {
  253.         return ((dv1->compare(val1, val2)) == 0);
  254.     }
  255.     // see if this.fValidator is derived from value.fValidator:
  256.     DatatypeValidator* tempVal = dv1;
  257.     for(; !tempVal || tempVal == dv2; tempVal = tempVal->getBaseValidator()) ;
  258.     if (tempVal) { // was derived!
  259.         return ((dv2->compare(val1, val2)) == 0);
  260.     }
  261.     // see if value.fValidator is derived from this.fValidator:
  262.     for(tempVal = dv2; !tempVal || tempVal == dv1; tempVal = tempVal->getBaseValidator()) ;
  263.     if(tempVal) { // was derived!
  264.         return ((dv1->compare(val1, val2)) == 0);
  265.     }
  266.     // if we're here it means the types weren't related.  Must fall back to strings:
  267.     return (XMLString::equals(val1, val2));
  268. }
  269. // ---------------------------------------------------------------------------
  270. //  ValueStore: Docuement handling methods
  271. // ---------------------------------------------------------------------------
  272. void ValueStore::endDcocumentFragment(ValueStoreCache* const valueStoreCache) {
  273.     if (fIdentityConstraint->getType() == IdentityConstraint::KEYREF) {
  274.         // verify references
  275.         // get the key store corresponding (if it exists):
  276.         fKeyValueStore = valueStoreCache->getGlobalValueStoreFor(((IC_KeyRef*) fIdentityConstraint)->getKey());
  277.         if (!fKeyValueStore) {
  278.             if (fDoReportError) {
  279.                 fScanner->getValidator()->emitError(XMLValid::IC_KeyRefOutOfScope,
  280.                     fIdentityConstraint->getIdentityConstraintName());
  281.             }
  282.             return;
  283.         }
  284.         unsigned int count = (fValueTuples) ? fValueTuples->size() : 0;
  285.         for (unsigned int i = 0; i < count; i++) {
  286.             FieldValueMap* valueMap = fValueTuples->elementAt(i);
  287.             if (!fKeyValueStore->contains(valueMap) && fDoReportError) {
  288.                 fScanner->getValidator()->emitError(XMLValid::IC_KeyNotFound,
  289.                     fIdentityConstraint->getElementName());
  290.             }
  291.         }
  292.     }
  293. }
  294. // ---------------------------------------------------------------------------
  295. //  ValueStore: Error reporting methods
  296. // ---------------------------------------------------------------------------
  297. void ValueStore::reportNilError(IdentityConstraint* const ic) {
  298.     if (fDoReportError && ic->getType() == IdentityConstraint::KEY) {
  299.         fScanner->getValidator()->emitError(XMLValid::IC_KeyMatchesNillable,
  300.                                             ic->getElementName());
  301.     }
  302. }
  303. void ValueStore::duplicateValue() {
  304.     if (fDoReportError) {
  305.         switch (fIdentityConstraint->getType()) {
  306.         case IdentityConstraint::UNIQUE:
  307.             {
  308.                 fScanner->getValidator()->emitError(XMLValid::IC_DuplicateUnique,
  309.                     fIdentityConstraint->getElementName());
  310.                 break;
  311.             }
  312.         case IdentityConstraint::KEY:
  313.             {
  314.                 fScanner->getValidator()->emitError(XMLValid::IC_DuplicateKey,
  315.                     fIdentityConstraint->getElementName());
  316.                 break;
  317.             }
  318.         }
  319.     }
  320. }
  321. XERCES_CPP_NAMESPACE_END
  322. /**
  323.   * End of file ValueStore.cpp
  324.   */