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

词法分析

开发平台:

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.  * $Id: ListDatatypeValidator.cpp,v 1.9 2003/05/16 06:01:57 knoaman Exp $
  58.  * $Log: ListDatatypeValidator.cpp,v $
  59.  * Revision 1.9  2003/05/16 06:01:57  knoaman
  60.  * Partial implementation of the configurable memory manager.
  61.  *
  62.  * Revision 1.8  2003/05/15 18:53:26  knoaman
  63.  * Partial implementation of the configurable memory manager.
  64.  *
  65.  * Revision 1.7  2002/12/18 14:17:55  gareth
  66.  * Fix to bug #13438. When you eant a vector that calls delete[] on its members you should use RefArrayVectorOf.
  67.  *
  68.  * Revision 1.6  2002/12/16 22:28:25  knoaman
  69.  * Make isAtomic inline.
  70.  *
  71.  * Revision 1.5  2002/12/06 16:45:54  tng
  72.  * header include cleanup.
  73.  *
  74.  * Revision 1.4  2002/11/20 19:57:44  peiyongz
  75.  * validate content as a whole against pattern.
  76.  *
  77.  * Revision 1.3  2002/11/04 14:53:28  tng
  78.  * C++ Namespace Support.
  79.  *
  80.  * Revision 1.2  2002/09/24 19:44:40  tng
  81.  * Performance: use XMLString::equals instead of XMLString::compareString
  82.  *
  83.  * Revision 1.1.1.1  2002/02/01 22:22:42  peiyongz
  84.  * sane_include
  85.  *
  86.  * Revision 1.8  2001/10/11 19:32:27  peiyongz
  87.  * To overwrite inheritFacet()
  88.  *
  89.  * Revision 1.7  2001/10/09 20:56:21  peiyongz
  90.  * inherit from AbstractStringValidator instead of DatatypeValidator to reuse
  91.  * the code.
  92.  *
  93.  * Revision 1.6  2001/10/02 18:59:29  peiyongz
  94.  * Invalid_Facet_Tag to display the tag name
  95.  *
  96.  * Revision 1.5  2001/09/20 13:11:42  knoaman
  97.  * Regx  + misc. fixes
  98.  *
  99.  * Revision 1.4  2001/08/29 19:03:40  peiyongz
  100.  * Bugzilla# 2816:on AIX 4.2, xlC 3 r ev.1, Compilation error on inline method
  101.  *
  102.  * Revision 1.3  2001/08/21 18:42:53  peiyongz
  103.  * Bugzilla# 2816: cleanUp() declared with external linkage and called
  104.  *                          before defined as inline
  105.  *
  106.  * Revision 1.2  2001/08/14 22:11:56  peiyongz
  107.  * new exception message added
  108.  *
  109.  * Revision 1.1  2001/07/11 21:37:17  peiyongz
  110.  * ListDatatypeDTV
  111.  *
  112.  *
  113.  */
  114. // ---------------------------------------------------------------------------
  115. //  Includes
  116. // ---------------------------------------------------------------------------
  117. #include <xercesc/validators/datatype/ListDatatypeValidator.hpp>
  118. #include <xercesc/validators/datatype/InvalidDatatypeFacetException.hpp>
  119. #include <xercesc/validators/datatype/InvalidDatatypeValueException.hpp>
  120. XERCES_CPP_NAMESPACE_BEGIN
  121. static const int BUF_LEN = 64;
  122. static XMLCh value1[BUF_LEN+1];
  123. static XMLCh value2[BUF_LEN+1];
  124. // ---------------------------------------------------------------------------
  125. //  Constructors and Destructor
  126. // ---------------------------------------------------------------------------
  127. ListDatatypeValidator::ListDatatypeValidator(MemoryManager* const manager)
  128. :AbstractStringValidator(0, 0, 0, DatatypeValidator::List, manager)
  129. ,fContent(0)
  130. {}
  131. ListDatatypeValidator::ListDatatypeValidator(
  132.                           DatatypeValidator*            const baseValidator
  133.                         , RefHashTableOf<KVStringPair>* const facets
  134.                         , RefArrayVectorOf<XMLCh>*           const enums
  135.                         , const int                           finalSet
  136.                         , MemoryManager* const manager)
  137. :AbstractStringValidator(baseValidator, facets, finalSet, DatatypeValidator::List, manager)
  138. ,fContent(0)
  139. {
  140.     //
  141.     // baseValidator shall either
  142.     // an atomic DTV which servers as itemType, or
  143.     // another ListDTV from which, this ListDTV is derived by restriction.
  144.     //
  145.     // In either case, it shall be not null
  146.     //
  147.     if (!baseValidator)
  148.         ThrowXML(InvalidDatatypeFacetException, XMLExcepts::FACET_List_Null_baseValidator);
  149.     init(enums);
  150. }
  151. ListDatatypeValidator::~ListDatatypeValidator()
  152. {}
  153. DatatypeValidator* ListDatatypeValidator::newInstance
  154. (
  155.       RefHashTableOf<KVStringPair>* const facets
  156.     , RefArrayVectorOf<XMLCh>* const      enums
  157.     , const int                           finalSet
  158.     , MemoryManager* const                manager
  159. )
  160. {
  161.     return (DatatypeValidator*) new (manager) ListDatatypeValidator(this, facets, enums, finalSet, manager);
  162. }
  163. int ListDatatypeValidator::compare(const XMLCh* const lValue
  164.                                  , const XMLCh* const rValue)
  165. {
  166.     DatatypeValidator* theItemTypeDTV = getItemTypeDTV();
  167.     BaseRefVectorOf<XMLCh>* lVector = XMLString::tokenizeString(lValue);
  168.     Janitor<BaseRefVectorOf<XMLCh> > janl(lVector);
  169.     BaseRefVectorOf<XMLCh>* rVector = XMLString::tokenizeString(rValue);
  170.     Janitor<BaseRefVectorOf<XMLCh> > janr(rVector);
  171.     int lNumberOfTokens = lVector->size();
  172.     int rNumberOfTokens = rVector->size();
  173.     if (lNumberOfTokens < rNumberOfTokens)
  174.         return -1;
  175.     else if (lNumberOfTokens > rNumberOfTokens)
  176.         return 1;
  177.     else
  178.     { //compare each token
  179.         for ( int i = 0; i < lNumberOfTokens; i++)
  180.         {
  181.             int returnValue = theItemTypeDTV->compare(lVector->elementAt(i), rVector->elementAt(i));
  182.             if (returnValue != 0)
  183.                 return returnValue; //REVISIT: does it make sense to return -1 or +1..?
  184.         }
  185.         return 0;
  186.     }
  187. }
  188. void ListDatatypeValidator::validate( const XMLCh* const content)
  189. {
  190.     setContent(content);
  191.     BaseRefVectorOf<XMLCh>* tokenVector = XMLString::tokenizeString(content);
  192.     Janitor<BaseRefVectorOf<XMLCh> > janName(tokenVector);
  193.     checkContent(tokenVector, content, false);
  194. }
  195. void ListDatatypeValidator::checkContent( const XMLCh* const content, bool asBase)
  196. {
  197.     setContent(content);
  198.     BaseRefVectorOf<XMLCh>* tokenVector = XMLString::tokenizeString(content);
  199.     Janitor<BaseRefVectorOf<XMLCh> > janName(tokenVector);
  200.     checkContent(tokenVector, content, asBase);
  201. }
  202. //
  203. // here content is a list of items
  204. //
  205. void ListDatatypeValidator::checkContent( BaseRefVectorOf<XMLCh>* tokenVector
  206.                                         , const XMLCh* const content
  207.                                         , bool asBase)
  208. {
  209.     DatatypeValidator* bv = getBaseValidator();
  210.     if (bv->getType() == DatatypeValidator::List)
  211.         ((ListDatatypeValidator*)bv)->checkContent(tokenVector, content, true);
  212.     else
  213.     {   // the ultimate itemType DTV
  214.         for (unsigned int i = 0; i < tokenVector->size(); i++)
  215.             bv->validate(tokenVector->elementAt(i));
  216.     }
  217.     int thisFacetsDefined = getFacetsDefined();
  218.     // we check pattern first
  219.     if ( (thisFacetsDefined & DatatypeValidator::FACET_PATTERN ) != 0 )
  220.     {
  221.         // lazy construction
  222.         if (getRegex() == 0)
  223.         {
  224.             try {
  225.                 setRegex(new (fMemoryManager) RegularExpression(getPattern(), SchemaSymbols::fgRegEx_XOption, fMemoryManager));
  226.             }
  227.             catch (XMLException &e)
  228.             {
  229.                 ThrowXML1(InvalidDatatypeValueException, XMLExcepts::RethrowError, e.getMessage());
  230.             }
  231.         }
  232.         //check every item in the list as a whole
  233.         if (getRegex()->matches(content) == false)
  234.         {
  235.             ThrowXML2(InvalidDatatypeValueException
  236.                     , XMLExcepts::VALUE_NotMatch_Pattern
  237.                     , content
  238.                     , getPattern());
  239.         }
  240.     }
  241.     // if this is a base validator, we only need to check pattern facet
  242.     // all other facet were inherited by the derived type
  243.     if (asBase)
  244.         return;
  245.     unsigned int tokenNumber = tokenVector->size();
  246.     if (((thisFacetsDefined & DatatypeValidator::FACET_MAXLENGTH) != 0) &&
  247.         (tokenNumber > getMaxLength()))
  248.     {
  249.         XMLString::binToText(tokenNumber, value1, BUF_LEN, 10);
  250.         XMLString::binToText(getMaxLength(), value2, BUF_LEN, 10);
  251.         ThrowXML3(InvalidDatatypeValueException
  252.                 , XMLExcepts::VALUE_GT_maxLen
  253.                 , getContent()
  254.                 , value1
  255.                 , value2);
  256.     }
  257.     if (((thisFacetsDefined & DatatypeValidator::FACET_MINLENGTH) != 0) &&
  258.         (tokenNumber < getMinLength()))
  259.     {
  260.         XMLString::binToText(tokenNumber, value1, BUF_LEN, 10);
  261.         XMLString::binToText(getMinLength(), value2, BUF_LEN, 10);
  262.         ThrowXML3(InvalidDatatypeValueException
  263.                 , XMLExcepts::VALUE_LT_minLen
  264.                 , getContent()
  265.                 , value1
  266.                 , value2);
  267.     }
  268.     if (((thisFacetsDefined & DatatypeValidator::FACET_LENGTH) != 0) &&
  269.         (tokenNumber != AbstractStringValidator::getLength()))
  270.     {
  271.         XMLString::binToText(tokenNumber, value1, BUF_LEN, 10);
  272.         XMLString::binToText(AbstractStringValidator::getLength(), value2, BUF_LEN, 10);
  273.         ThrowXML3(InvalidDatatypeValueException
  274.                 , XMLExcepts::VALUE_NE_Len
  275.                 , getContent()
  276.                 , value1
  277.                 , value2);
  278.     }
  279.     if ((thisFacetsDefined & DatatypeValidator::FACET_ENUMERATION) != 0 &&
  280.         (getEnumeration() != 0))
  281.     {
  282.         int i;
  283.         int enumLength = getEnumeration()->size();
  284.         for ( i = 0; i < enumLength; i++)
  285.         {
  286.             //optimization: we do a lexical comparision first
  287.             // this may be faster for string and its derived
  288.             if (XMLString::equals(getEnumeration()->elementAt(i), getContent()))
  289.                 break; // a match found
  290.             // do a value space check
  291.             // this is needed for decimal (and probably other types
  292.             // such as datetime related)
  293.             // eg.
  294.             // tokenVector = "1 2 3.0 4" vs enumeration = "1 2 3 4.0"
  295.             //
  296.             if (valueSpaceCheck(tokenVector, getEnumeration()->elementAt(i)))
  297.                 break;
  298.         }
  299.         if (i == enumLength)
  300.             ThrowXML1(InvalidDatatypeValueException, XMLExcepts::VALUE_NotIn_Enumeration, getContent());
  301.     } // enumeration
  302. }
  303. bool ListDatatypeValidator::valueSpaceCheck(BaseRefVectorOf<XMLCh>* tokenVector
  304.                                           , const XMLCh* const  enumStr) const
  305. {
  306.     DatatypeValidator* theItemTypeDTV = getItemTypeDTV();
  307.     BaseRefVectorOf<XMLCh>* enumVector = XMLString::tokenizeString(enumStr);
  308.     Janitor<BaseRefVectorOf<XMLCh> > janName(enumVector);
  309.     if (tokenVector->size() != enumVector->size())
  310.         return false;
  311.     for ( unsigned int j = 0; j < tokenVector->size(); j++ )
  312.     {
  313.         if (theItemTypeDTV->compare(tokenVector->elementAt(j), enumVector->elementAt(j)) != 0)
  314.             return false;
  315.     }
  316.     return true;
  317. }
  318. DatatypeValidator* ListDatatypeValidator::getItemTypeDTV() const
  319. {
  320.     DatatypeValidator* bdv = this->getBaseValidator();
  321.     while (bdv->getType() == DatatypeValidator::List)
  322.         bdv = bdv->getBaseValidator();
  323.     return bdv;
  324. }
  325. // ---------------------------------------------------------------------------
  326. //  Utilities
  327. // ---------------------------------------------------------------------------
  328. void ListDatatypeValidator::assignAdditionalFacet( const XMLCh* const key
  329.                                                  , const XMLCh* const)
  330. {
  331.     ThrowXML1(InvalidDatatypeFacetException
  332.             , XMLExcepts::FACET_Invalid_Tag
  333.             , key);
  334. }
  335. void ListDatatypeValidator::inheritAdditionalFacet()
  336. {}
  337. void ListDatatypeValidator::checkAdditionalFacetConstraints() const
  338. {}
  339. void ListDatatypeValidator::checkAdditionalFacet(const XMLCh* const) const
  340. {}
  341. void ListDatatypeValidator::checkValueSpace(const XMLCh* const content)
  342. {}
  343. int ListDatatypeValidator::getLength(const XMLCh* const content) const
  344. {
  345.     BaseRefVectorOf<XMLCh>* tokenVector = XMLString::tokenizeString(content);
  346.     Janitor<BaseRefVectorOf<XMLCh> > janName(tokenVector);
  347.     return tokenVector->size();
  348. }
  349. void ListDatatypeValidator::inspectFacetBase()
  350. {
  351.     //
  352.     // we are pretty sure baseValidator is not null
  353.     //
  354.     if (getBaseValidator()->getType() == DatatypeValidator::List)
  355.     {
  356.         AbstractStringValidator::inspectFacetBase();
  357.     }
  358.     else
  359.     {
  360.         // the first level ListDTV
  361.         // check 4.3.5.c0 must: enumeration values from the value space of base
  362.         if ( ((getFacetsDefined() & DatatypeValidator::FACET_ENUMERATION) != 0) &&
  363.              (getEnumeration() !=0)                                              )
  364.         {
  365.             int i;
  366.             int enumLength = getEnumeration()->size();
  367.             try
  368.             {
  369.                 for ( i = 0; i < enumLength; i++)
  370.                 {
  371.                     // ask the itemType for a complete check
  372.                     BaseRefVectorOf<XMLCh>* tempList = XMLString::tokenizeString(getEnumeration()->elementAt(i));
  373.                     int tokenNumber = tempList->size();
  374.                     try
  375.                     {
  376.                         for ( int j = 0; j < tokenNumber; j++)
  377.                             getBaseValidator()->validate(tempList->elementAt(j));
  378.                     }
  379.                     catch (...)
  380.                     {
  381.                         delete tempList;
  382.                         throw;
  383.                     }
  384.                     delete tempList;
  385.                     // enum shall pass this->checkContent() as well.
  386.                     checkContent(getEnumeration()->elementAt(i), false);
  387.                 }
  388.             }
  389.             catch ( XMLException& )
  390.             {
  391.                 ThrowXML1(InvalidDatatypeFacetException
  392.                         , XMLExcepts::FACET_enum_base
  393.                         , getEnumeration()->elementAt(i));
  394.             }
  395.         }
  396.     }
  397. }// End of inspectFacetBase()
  398. void ListDatatypeValidator::inheritFacet()
  399. {
  400.     //iff the base validator is List, then we inherit
  401.     //
  402.     if (getBaseValidator()->getType() == DatatypeValidator::List)
  403.     {
  404.         AbstractStringValidator::inheritFacet();
  405.     }
  406. }
  407. XERCES_CPP_NAMESPACE_END
  408. /**
  409.   * End of file ListDatatypeValidator.cpp
  410.   */