DateTimeValidator.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) 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: DateTimeValidator.cpp,v 1.7 2003/05/18 14:02:07 knoaman Exp $
  58.  * $Log: DateTimeValidator.cpp,v $
  59.  * Revision 1.7  2003/05/18 14:02:07  knoaman
  60.  * Memory manager implementation: pass per instance manager.
  61.  *
  62.  * Revision 1.6  2003/05/16 06:01:57  knoaman
  63.  * Partial implementation of the configurable memory manager.
  64.  *
  65.  * Revision 1.5  2003/05/15 18:53:26  knoaman
  66.  * Partial implementation of the configurable memory manager.
  67.  *
  68.  * Revision 1.4  2003/01/30 21:56:22  tng
  69.  * Performance: call getRawData instead of toString
  70.  *
  71.  * Revision 1.3  2002/11/27 21:26:55  peiyongz
  72.  * Schema Errat E2-24 Duration 'T': allow SchemaDateTimeException be
  73.  * propogated to client.
  74.  *
  75.  * Revision 1.2  2002/11/04 14:53:28  tng
  76.  * C++ Namespace Support.
  77.  *
  78.  * Revision 1.1.1.1  2002/02/01 22:22:41  peiyongz
  79.  * sane_include
  80.  *
  81.  * Revision 1.2  2001/11/12 20:37:57  peiyongz
  82.  * SchemaDateTimeException defined
  83.  *
  84.  * Revision 1.1  2001/11/07 19:18:52  peiyongz
  85.  * DateTime Port
  86.  *
  87.  */
  88. // ---------------------------------------------------------------------------
  89. //  Includes
  90. // ---------------------------------------------------------------------------
  91. #include <xercesc/validators/datatype/DateTimeValidator.hpp>
  92. #include <xercesc/validators/datatype/InvalidDatatypeFacetException.hpp>
  93. #include <xercesc/validators/datatype/InvalidDatatypeValueException.hpp>
  94. #include <xercesc/validators/schema/SchemaSymbols.hpp>
  95. XERCES_CPP_NAMESPACE_BEGIN
  96. static const int BUF_LEN = 64;
  97. static XMLCh value1[BUF_LEN+1];
  98. static XMLCh value2[BUF_LEN+1];
  99. // ---------------------------------------------------------------------------
  100. //  Macro
  101. // ---------------------------------------------------------------------------
  102. #define  REPORT_VALUE_ERROR(val1, val2, except_code)    
  103.   ThrowXML2(InvalidDatatypeValueException               
  104.           , except_code                                 
  105.           , val1->getRawData()                          
  106.           , val2->getRawData());
  107. // ---------------------------------------------------------------------------
  108. //  Constructors and Destructor
  109. // ---------------------------------------------------------------------------
  110. DateTimeValidator::~DateTimeValidator()
  111. {}
  112. DateTimeValidator::DateTimeValidator(
  113.                           DatatypeValidator*            const baseValidator
  114.                         , RefHashTableOf<KVStringPair>* const facets
  115.                         , const int                           finalSet
  116.                         , const ValidatorType                 type
  117.                         , MemoryManager* const                manager)
  118. :AbstractNumericFacetValidator(baseValidator, facets, finalSet, type, manager)
  119. {
  120.     //do not invoke init() here !!!
  121. }
  122. void DateTimeValidator::validate(const XMLCh* const content)
  123. {
  124.     checkContent(content, false);
  125. }
  126. int DateTimeValidator::compare(const XMLCh* const value1
  127.                              , const XMLCh* const value2)
  128. {
  129.     try
  130.     {
  131.         XMLDateTime *pDate1 = parse(value1);
  132.         Janitor<XMLDateTime> jName1(pDate1);
  133.         XMLDateTime *pDate2 = parse(value2);
  134.         Janitor<XMLDateTime> jName2(pDate2);
  135.         int result = compareDates(pDate1, pDate2, true);
  136.         return (result==INDETERMINATE)? -1 : result;
  137.     }
  138.     catch (...) // RuntimeException e
  139.     {
  140.         return -1; // revisit after implement compareDates()
  141.     }
  142. }
  143. void DateTimeValidator::assignAdditionalFacet( const XMLCh* const key
  144.                                              , const XMLCh* const)
  145. {
  146.     ThrowXML1(InvalidDatatypeFacetException
  147.             , XMLExcepts::FACET_Invalid_Tag
  148.             , key);
  149. }
  150. void DateTimeValidator::inheritAdditionalFacet()
  151. {}
  152. void DateTimeValidator::checkAdditionalFacetConstraints() const
  153. {}
  154. void DateTimeValidator::checkAdditionalFacetConstraintsBase() const
  155. {}
  156. void DateTimeValidator::checkContent(const XMLCh* const content
  157.                                    , bool               asBase)
  158. {
  159.     //validate against base validator if any
  160.     DateTimeValidator *pBaseValidator = (DateTimeValidator*) this->getBaseValidator();
  161.     if (pBaseValidator)
  162.         pBaseValidator->checkContent(content, true);
  163.     int thisFacetsDefined = getFacetsDefined();
  164.     // we check pattern first
  165.     if ( (thisFacetsDefined & DatatypeValidator::FACET_PATTERN ) != 0 )
  166.     {
  167.         // lazy construction
  168.         if (getRegex() ==0) {
  169.             try {
  170.                 setRegex(new (fMemoryManager) RegularExpression(getPattern(), SchemaSymbols::fgRegEx_XOption, fMemoryManager));
  171.             }
  172.             catch (XMLException &e)
  173.             {
  174.                 ThrowXML1(InvalidDatatypeValueException, XMLExcepts::RethrowError, e.getMessage());
  175.             }
  176.         }
  177.         if (getRegex()->matches(content) ==false)
  178.         {
  179.             ThrowXML2(InvalidDatatypeValueException
  180.                     , XMLExcepts::VALUE_NotMatch_Pattern
  181.                     , content
  182.                     , getPattern());
  183.         }
  184.     }
  185.     // if this is a base validator, we only need to check pattern facet
  186.     // all other facet were inherited by the derived type
  187.     if (asBase)
  188.         return;
  189.     {
  190.         // the derived classes' parse() method constructs an
  191.         // XMLDateTime object anc invokes appropriate XMLDateTime's
  192.         // parser to parse the content.
  193.         XMLDateTime *theDate = parse(content);
  194.         Janitor<XMLDateTime> jname(theDate);
  195.         int result;
  196.         // must be < MaxExclusive
  197.         if ( (thisFacetsDefined & DatatypeValidator::FACET_MAXEXCLUSIVE) != 0 )
  198.         {
  199.             result = compareValues(theDate, getMaxExclusive());
  200.             if ( result != XMLDateTime::LESS_THAN )
  201.             {
  202.                 REPORT_VALUE_ERROR(theDate
  203.                     , getMaxExclusive()
  204.                     , XMLExcepts::VALUE_exceed_maxExcl)
  205.             }
  206.         } 
  207.         // must be <= MaxInclusive
  208.         if ( (thisFacetsDefined & DatatypeValidator::FACET_MAXINCLUSIVE) != 0 )
  209.         {
  210.             result = compareValues(theDate, getMaxInclusive());
  211.             if ( result == XMLDateTime::GREATER_THAN || result == XMLDateTime::INDETERMINATE )
  212.             {
  213.                 REPORT_VALUE_ERROR(theDate
  214.                     , getMaxInclusive()
  215.                     , XMLExcepts::VALUE_exceed_maxIncl)
  216.             }
  217.         }
  218.         // must be >= MinInclusive
  219.         if ( (thisFacetsDefined & DatatypeValidator::FACET_MININCLUSIVE) != 0 )
  220.         {
  221.             result = compareValues(theDate, getMinInclusive());
  222.             if (result == XMLDateTime::LESS_THAN || result == XMLDateTime::INDETERMINATE )
  223.             {
  224.                 REPORT_VALUE_ERROR(theDate
  225.                     , getMinInclusive()
  226.                     , XMLExcepts::VALUE_exceed_minIncl)
  227.             }
  228.         }
  229.         // must be > MinExclusive
  230.         if ( (thisFacetsDefined & DatatypeValidator::FACET_MINEXCLUSIVE) != 0 )
  231.         {
  232.             result = compareValues(theDate, getMinExclusive());
  233.             if (result != XMLDateTime::GREATER_THAN)
  234.             {
  235.                 REPORT_VALUE_ERROR(theDate
  236.                     , getMinExclusive()
  237.                     , XMLExcepts::VALUE_exceed_minExcl)
  238.             }
  239.         }
  240.         if ((thisFacetsDefined & DatatypeValidator::FACET_ENUMERATION) != 0 &&
  241.             (getEnumeration() != 0))
  242.         {
  243.             int i=0;
  244.             int enumLength = getEnumeration()->size();
  245.             for ( ; i < enumLength; i++)
  246.             {
  247.                 if (compareValues(theDate, getEnumeration()->elementAt(i)) == XMLDateTime::EQUAL)
  248.                     break;
  249.             }
  250.             if (i == enumLength)
  251.                 ThrowXML1(InvalidDatatypeValueException, XMLExcepts::VALUE_NotIn_Enumeration, content);
  252.         }
  253.     }
  254. }
  255. //
  256. // Comparision methods
  257. //
  258. int DateTimeValidator::compareValues(const XMLNumber* const lValue
  259.                                    , const XMLNumber* const rValue)
  260. {
  261.     return compareDates((XMLDateTime*) lValue, (XMLDateTime*) rValue, true);
  262. }
  263. /**
  264.  * Compare algorithm described in dateDime (3.2.7).
  265.  * Duration datatype overwrites this method
  266.  *
  267.  * @param date1  normalized date representation of the first value
  268.  * @param date2  normalized date representation of the second value
  269.  * @param strict
  270.  * @return less, greater, less_equal, greater_equal, equal
  271.  */
  272. int DateTimeValidator::compareDates(const XMLDateTime* const date1
  273.                                   , const XMLDateTime* const date2
  274.                                   , bool                     strict)
  275. {
  276.     return XMLDateTime::compare(date1, date2);
  277. }
  278. //
  279. // In fact, the proper way of the following set*() shall be
  280. // {
  281. // if (fMaxInclusive)
  282. //     delete fMaxInclusive;
  283. //
  284. //    fMaxInclusive = parse(value);
  285. //
  286. // }
  287. //
  288. // But we know this function is invoked once and only once
  289. // since there is no duplicated facet passed in, therefore
  290. // fMaxInclusive is alwasy zero before, so for the
  291. // sake of performance, we do not do the checking/delete.
  292. //
  293. void DateTimeValidator::setMaxInclusive(const XMLCh* const value)
  294. {
  295.     fMaxInclusive = parse(value);
  296. }
  297. void DateTimeValidator::setMaxExclusive(const XMLCh* const value)
  298. {
  299.     fMaxExclusive = parse(value);
  300. }
  301. void DateTimeValidator::setMinInclusive(const XMLCh* const value)
  302. {
  303.     fMinInclusive = parse(value);
  304. }
  305. void DateTimeValidator::setMinExclusive(const XMLCh* const value)
  306. {
  307.     fMinExclusive = parse(value);
  308. }
  309. void DateTimeValidator::setEnumeration()
  310. {
  311. // to do: do we need to check against base value space???
  312.     if (!fStrEnumeration)
  313.         return;
  314.     int enumLength = fStrEnumeration->size();
  315.     fEnumeration = new (fMemoryManager) RefVectorOf<XMLNumber>(enumLength, true, fMemoryManager);
  316.     fEnumerationInherited = false;
  317.     for ( int i = 0; i < enumLength; i++)
  318.         fEnumeration->insertElementAt(parse(fStrEnumeration->elementAt(i)), i);
  319. }
  320. XERCES_CPP_NAMESPACE_END
  321. /**
  322.   * End of file DateTimeValidator::cpp
  323.   */