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

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: XMLDateTime.hpp,v 1.4 2001/11/22 20:23:00 peiyongz Exp $
  58.  * $Log: XMLDateTime.hpp,v $
  59.  * Revision 1.4  2001/11/22 20:23:00  peiyongz
  60.  * _declspec(dllimport) and inline warning C4273
  61.  *
  62.  * Revision 1.3  2001/11/12 20:36:54  peiyongz
  63.  * SchemaDateTimeException defined
  64.  *
  65.  * Revision 1.2  2001/11/09 20:41:45  peiyongz
  66.  * Fix: compilation error on Solaris and AIX.
  67.  *
  68.  * Revision 1.1  2001/11/07 19:16:03  peiyongz
  69.  * DateTime Port
  70.  *
  71.  */
  72. #ifndef XML_DATETIME_HPP
  73. #define XML_DATETIME_HPP
  74. #include <util/XercesDefs.hpp>
  75. #include <util/XMLNumber.hpp>
  76. #include <util/XMLString.hpp>
  77. #include <util/XMLUniDefs.hpp>
  78. #include <util/SchemaDateTimeException.hpp>
  79. class XMLUTIL_EXPORT XMLDateTime : public XMLNumber
  80. {
  81. public:
  82.     // to be moved to XMLNumber
  83.     enum 
  84.     {
  85.         LESS_THAN     = -1,
  86.         EQUAL         = 0,
  87.         GREATER_THAN  = 1,
  88.         INDETERMINATE = 2
  89.     };
  90. enum valueIndex
  91.     {
  92.         CentYear   = 0,
  93.         Month      ,
  94.         Day        ,
  95.         Hour       ,
  96.         Minute     ,
  97.         Second     ,
  98.         MiliSecond ,
  99.         utc        ,
  100.         TOTAL_SIZE   
  101.     };
  102.     enum utcType 
  103.     {
  104.         UTC_UNKNOWN = 0,
  105.         UTC_STD        ,          // set in parse() or normalize()
  106.         UTC_POS        ,          // set in parse()
  107.         UTC_NEG                   // set in parse()
  108.     };
  109.     // -----------------------------------------------------------------------
  110.     // ctors and dtor
  111.     // -----------------------------------------------------------------------
  112.     XMLDateTime();
  113.     XMLDateTime(const XMLCh* const);
  114.     ~XMLDateTime();
  115.     inline void           setBuffer(const XMLCh* const);
  116.     // -----------------------------------------------------------------------
  117.     // Copy ctor and Assignment operators
  118.     // -----------------------------------------------------------------------
  119.     XMLDateTime(const XMLDateTime&);
  120.     XMLDateTime&          operator=(const XMLDateTime&);   
  121.     // -----------------------------------------------------------------------
  122.     // Implementation of Abstract Interface
  123.     // -----------------------------------------------------------------------
  124.     virtual XMLCh*        toString() const;
  125.     virtual int           getSign() const;
  126.     // -----------------------------------------------------------------------
  127.     // parsers
  128.     // -----------------------------------------------------------------------
  129.     void                  parseDateTime();       //DateTime
  130.     void                  parseDate();           //Date
  131.     void                  parseTime();           //Time
  132.     void                  parseDay();            //gDay
  133.     void                  parseMonth();          //gMonth
  134.     void                  parseYear();           //gYear
  135.     void                  parseMonthDay();       //gMonthDay
  136.     void                  parseYearMonth();      //gYearMonth
  137.     void                  parseDuration();       //duration
  138.     // -----------------------------------------------------------------------
  139.     // Comparison 
  140.     // -----------------------------------------------------------------------
  141.     static int            compare(const XMLDateTime* const 
  142.                                 , const XMLDateTime* const);
  143.     static int            compare(const XMLDateTime* const 
  144.                                 , const XMLDateTime* const
  145.                                 , bool                    );
  146.     static int            compareOrder(const XMLDateTime* const
  147.                                      , const XMLDateTime* const);
  148. private:
  149.     // -----------------------------------------------------------------------
  150.     // Constant data
  151.     // -----------------------------------------------------------------------
  152. //
  153.     enum timezoneIndex 
  154.     {
  155.         hh = 0,
  156.         mm ,
  157.         TIMEZONE_ARRAYSIZE
  158.     };
  159.     // -----------------------------------------------------------------------
  160.     // Comparison 
  161.     // -----------------------------------------------------------------------
  162.     static int            compareResult(short 
  163.                                       , short 
  164.                                       , bool);
  165.     static void           addDuration(XMLDateTime*             pDuration
  166.                                     , const XMLDateTime* const pBaseDate
  167.                                     , int                      index);
  168.     static int            compareResult(const XMLDateTime* const
  169.                                       , const XMLDateTime* const
  170.                                       , bool
  171.                                       , int);
  172.     static inline int     getRetVal(int, int);
  173.     // -----------------------------------------------------------------------
  174.     // helper
  175.     // -----------------------------------------------------------------------
  176.     inline  void          reset();
  177.     inline  void          assertBuffer()               const;
  178.    
  179.     inline  void          copy(const XMLDateTime&);
  180.     // allow multiple parsing
  181.     inline  void          initParser();
  182.     inline  bool          isNormalized()               const;
  183.     // -----------------------------------------------------------------------
  184.     // scaners 
  185.     // -----------------------------------------------------------------------
  186.     void                  getDate();
  187.     void                  getTime();
  188.     void                  getYearMonth();
  189.     void                  getTimeZone(const int);
  190.     void                  parseTimeZone();
  191.     // -----------------------------------------------------------------------
  192.     // locator and converter
  193.     // -----------------------------------------------------------------------
  194.     int                   findUTCSign(const int start);
  195.     int                   indexOf(const int start
  196.                                 , const int end
  197.                                 , const XMLCh ch)     const;
  198.     int                   parseInt(const int start
  199.                                  , const int end)     const;
  200.     int                   parseIntYear(const int end) const;
  201.     // -----------------------------------------------------------------------
  202.     // validator and normalizer
  203.     // -----------------------------------------------------------------------
  204.     void                  validateDateTime()          const;
  205.     void                  normalize();
  206.     // -----------------------------------------------------------------------
  207.     // Unimplemented operator ==
  208.     // -----------------------------------------------------------------------
  209. bool operator==(const XMLDateTime& toCompare) const;
  210.     // -----------------------------------------------------------------------
  211.     //  Private data members
  212.     //
  213.     //     fValue[]
  214.     //          object representation of date time.
  215.     //
  216.     //     fTimeZone[]
  217.     //          temporary storage for normalization
  218.     //
  219.     //     fStart, fEnd
  220.     //          pointers to the portion of fBuffer being parsed
  221.     //
  222.     //     fBuffer
  223.     //          raw data to be parsed, own it.
  224.     //
  225.     // -----------------------------------------------------------------------
  226.     int          fValue[TOTAL_SIZE];    
  227.     int          fTimeZone[TIMEZONE_ARRAYSIZE];
  228.     int          fStart;
  229.     int          fEnd;
  230.     XMLCh*       fBuffer;
  231. };
  232. inline void XMLDateTime::setBuffer(const XMLCh* const aString)
  233. {
  234.     reset();
  235.     fBuffer = XMLString::replicate(aString);
  236.     fEnd    = XMLString::stringLen(fBuffer);
  237. }
  238. inline void XMLDateTime::reset()
  239. {
  240.     for ( int i=0; i < TOTAL_SIZE; i++ ) 
  241.         fValue[i] = 0;
  242.     fTimeZone[hh] = fTimeZone[mm] = 0;
  243.     fStart = fEnd = 0;
  244.     if (fBuffer)
  245.     {
  246.         delete[] fBuffer;
  247.         fBuffer = 0;
  248.     }
  249. }
  250. inline void XMLDateTime::copy(const XMLDateTime& rhs)
  251. {
  252.     for ( int i = 0; i < TOTAL_SIZE; i++ ) 
  253.         fValue[i] = rhs.fValue[i];
  254.     fTimeZone[hh] = rhs.fTimeZone[hh];
  255.     fTimeZone[mm] = rhs.fTimeZone[mm];
  256.     fStart = rhs.fStart;
  257.     fEnd   = rhs.fEnd;
  258.     if (fBuffer)
  259.     {
  260.         delete[] fBuffer;
  261.         fBuffer = 0;
  262.     }
  263.     if (rhs.fBuffer)
  264.         fBuffer = XMLString::replicate(rhs.fBuffer);
  265. }
  266. inline void XMLDateTime::assertBuffer() const
  267. {
  268.     if ( ( !fBuffer )            || 
  269.          ( fBuffer[0] == chNull ) )
  270.     {
  271.         ThrowXML(SchemaDateTimeException
  272.                , XMLExcepts::DateTime_Assert_Buffer_Fail);
  273.     }
  274. }
  275. inline void XMLDateTime::initParser()
  276. {
  277.     assertBuffer();
  278.     fStart = 0;   // to ensure scan from the very first beginning
  279.                   // in case the pointer is updated accidentally by someone else.
  280. }
  281. inline bool XMLDateTime::isNormalized() const
  282. {
  283.     return ( fValue[utc] == UTC_STD ? true : false );
  284. }
  285. inline int XMLDateTime::getRetVal(int c1, int c2)
  286. {
  287.     if ((c1 == LESS_THAN    && c2 == GREATER_THAN) ||
  288.         (c1 == GREATER_THAN && c2 == LESS_THAN)      ) 
  289.     {
  290.         return INDETERMINATE; 
  291.     }
  292.     return ( c1 != INDETERMINATE ) ? c1 : c2;
  293. }
  294. #endif