DateTimeValidator.cpp
上传用户:huihehuasu
上传日期:2007-01-10
资源大小:6948k
文件大小:12k
源码类别:

xml/soap/webservice

开发平台:

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