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