(file) Return to CIMDateTime.h CVS log (file) (dir) Up to [Pegasus] / pegasus / src / Pegasus / Common

Diff for /pegasus/src/Pegasus/Common/CIMDateTime.h between version 1.16 and 1.38

version 1.16, 2002/04/19 12:09:26 version 1.38, 2004/05/05 19:43:41
Line 1 
Line 1 
 //%/////////////////////////////////////////////////////////////////////////////  //%2003////////////////////////////////////////////////////////////////////////
 // //
 // Copyright (c) 2000, 2001 The Open group, BMC Software, Tivoli Systems, IBM  // Copyright (c) 2000, 2001, 2002  BMC Software, Hewlett-Packard Development
   // Company, L. P., IBM Corp., The Open Group, Tivoli Systems.
   // Copyright (c) 2003 BMC Software; Hewlett-Packard Development Company, L. P.;
   // IBM Corp.; EMC Corporation, The Open Group.
 // //
 // Permission is hereby granted, free of charge, to any person obtaining a copy // Permission is hereby granted, free of charge, to any person obtaining a copy
 // of this software and associated documentation files (the "Software"), to // of this software and associated documentation files (the "Software"), to
Line 23 
Line 26 
 // Author: Mike Brasher (mbrasher@bmc.com) // Author: Mike Brasher (mbrasher@bmc.com)
 // //
 // Modified By: Karl Schopmeyer(k.schopmeyer@opengroup.org) // Modified By: Karl Schopmeyer(k.schopmeyer@opengroup.org)
 //  //              Sushma Fernandes, Hewlett Packard Company
 // Modified By: Sushma Fernandes, Hewlett Packard Company  
 //              (sushma_fernandes@hp.com) //              (sushma_fernandes@hp.com)
   //              Roger Kumpf, Hewlett Packard Company (roger_kumpf@hp.com)
   //              Carol Ann Krug Graves, Hewlett-Packard Company
   //                (carolann_graves@hp.com)
   //              Amit K Arora (amita@in.ibm.com) for PEP-101
 // //
 //%///////////////////////////////////////////////////////////////////////////// //%/////////////////////////////////////////////////////////////////////////////
  
Line 34 
Line 40 
  
 #include <Pegasus/Common/Config.h> #include <Pegasus/Common/Config.h>
 #include <Pegasus/Common/Array.h> #include <Pegasus/Common/Array.h>
 #include <iostream>  #include <Pegasus/Common/Linkage.h>
   #include <Pegasus/Common/AutoPtr.h>
 #include <time.h>  
  
 PEGASUS_NAMESPACE_BEGIN PEGASUS_NAMESPACE_BEGIN
  
 /* ATTN: P3. KS Several functions should be added to this class for datetime manipulation  class CIMDateTimeRep
    including get and set each subcomponent (year, month, etc), test for equality,  {
    create intervals from absolutes, possibly gett current time, Note that  public:
    the Java rep is probably tostring, not get string,      enum { FORMAT_LENGTH = 25 };
 */  
       //
       // Length of the string required to store only the date and time without
       // the UTC sign and UTC offset.
       // Format is yyyymmddhhmmss.
       // Note : The size does not include the null byte.
       //
       enum { DATE_TIME_LENGTH = 14 };
   
       //
       // Length of the string required to store the  formatted date and time
       // Format is yyyy:mm:dd:hh:mm:ss.
       //
       enum { FORMATTED_DATE_TIME = 20 };
   
       char data[FORMAT_LENGTH + 1];
   };
   
  
 /** /**
     The CIMDateTime class represents the CIM datetime data type as a C++ class     The CIMDateTime class represents the CIM datetime data type as a C++ class
     CIMDateTime. A CIM datetime may contain a date or an interval. CIMDateTime     CIMDateTime. A CIM datetime may contain a date or an interval. CIMDateTime
     is an intrinsic CIM data type which represents the time as a formated      is an intrinsic CIM data type that represents the time as a string with a
     fixedplength string.      fixed length.
  
     <PRE>     <PRE>
     A date has the following form:     A date has the following form:
Line 58 
Line 80 
  
     Where     Where
  
         yyyy = year (0-1999)      yyyy = year (1-9999)
         mm = month (1-12)         mm = month (1-12)
         dd = day (1-31)         dd = day (1-31)
         hh = hour (0-23)         hh = hour (0-23)
         mm = minute (0-59)         mm = minute (0-59)
         ss = second (0-59)         ss = second (0-59)
         mmmmmm = microseconds.      mmmmmm = microseconds
         s = '+' or '-' to represent the UTC sign.      s = '+' or '-' to represent the Coordinated Universal Time (UTC) sign
         utc = UTC offset (same as GMT offset).      utc = offset from Coordinated Universal Time (UTC)
           (same as Greenwich Mean Time(GMT) offset)
  
     An interval has the following form:     An interval has the following form:
  
Line 81 
Line 104 
         mmmmmm = microseconds         mmmmmm = microseconds
     </PRE>     </PRE>
  
     Note that intervals always end in ":000" (this is how they      Note: Intervals always end in ":000". This distinguishes intervals from dates.
     are distinguished from dates).  
  
     Intervals are really durations since they do not specify a start and      CIMDateTime objects are constructed from String objects or from
     end time (as one expects when speaking about an interval). It is      other CIMDateTime objects.  Character strings must be exactly
     better to think of an interval as specifying time elapsed since      twenty-five characters in length and conform to either the date or interval
     some event.      format.
   
     CIMDateTime objects are constructed from C character strings or from  
     other CIMDateTime objects. These character strings must be exactly  
     twenty-five characters and conform to one of the forms idententified  
     above.  
  
     CIMDateTime objects which are not explicitly initialized will be      CIMDateTime objects that are not explicitly initialized will be
     implicitly initialized with the null time interval:      implicitly initialized with a zero time interval:
  
         00000000000000.000000:000         00000000000000.000000:000
  
     Instances can be tested for nullness with the isNull() method.  
 */ */
 class PEGASUS_COMMON_LINKAGE CIMDateTime class PEGASUS_COMMON_LINKAGE CIMDateTime
 { {
 public: public:
  
     enum { FORMAT_LENGTH = 25 };      /** Creates a new CIMDateTime object with a zero interval value.
     /** Create a new CIMDateTime object with NULL DateTime definition.  
     */     */
     CIMDateTime();     CIMDateTime();
  
     /** CIMDateTime - Creat a CIM CIMDateTime instance from a string      /** Creates a new CIMDateTime object from a string constant representing
         constant representing the CIM DateTime formatted datetime          the CIM DateTime-formatted datetime.
         See the class documentation for CIMDateTime for the defintion of the          See the class documentation for CIMDateTime for the definition of the
         input string for absolute and interval datetime.         input string for absolute and interval datetime.
         @param str String object containing the CIM DateTime formatted string      @param str  String object containing the CIM DateTime-formatted string.
           This must contain twenty-five characters.
     */     */
     CIMDateTime(const char* str);      CIMDateTime(const String & str);
  
     /** CIMDateTime Create a CIMDateTime instance from another      /** Creates a CIMDateTime object from another CIMDateTime object.
         CIMDateTime object      @param x  Specifies the name of the CIMDateTime object to copy.
         @param x CIMDateTime object to be copied.  
     */     */
     CIMDateTime(const CIMDateTime& x);     CIMDateTime(const CIMDateTime& x);
  
     /** DateTime Destructor. */  
     ~CIMDateTime() { }  
  
     /**  Assign one DateTime object to another      /** Assigns one instance of the CIMDateTime object to another.
     @param - The DateTime Object to assign          @param x  The CIMDateTime Object to assign to the CIMDateTime object.
     <pre>          For example, you can assign the d1 CIMDateTime instance to the d2
           CIMDateTime instance.
           <PRE>
     CIMDateTime d1;     CIMDateTime d1;
     CIMDateTime d2 = "00000000000000.000000:000";     CIMDateTime d2 = "00000000000000.000000:000";
     d1 = d1;              d1 = d2;
     </pre>  
     */  
     CIMDateTime& operator=(const CIMDateTime& x);  
   
     /** CIMDateTime isNull method - Tests for an all zero date time. Note that  
         today this function checks for absolute datetime == zero, not interval.  
         <PRE>  
         CIMDateTime dt;  
         dt.clear();  
         assert(dt.isNull());  
         </PRE>         </PRE>
         @return This method returns true of the contents are          Therefore, d1 is assigned the same "00000000000000.000000:000" value as d2.
         "00000000000000.000000:000". Else it returns false  
     */     */
     Boolean isNull() const;      CIMDateTime& operator=(const CIMDateTime& x);
  
     /** getString - Returns the string representing the DateTime value of the      /** Returns a string representing the DateTime value of the
         CIMDateTime Object.          CIMDateTime object.
         ATTN: P3 KS.  This simply returns a string whether the datetime is a          @return String representing the DateTime value.
         real value or the NULL value.  It is up to the user to test.  Should      */
         this be modified so we do something like an interupt on NULL?      String toString () const;
     */  
     const char* getString() const;      /** Sets the date and time in the CIMDateTime object from
       the input parameter.
     /** method set - Sets the date time. Creates the CIMDateTime instance from          @param str  String constant containing the datetime
         the input string constant which must be      in the datetime format. This must conform the to formatting rules specified
         in the datetime format.          in the CIMDateTime class description.  For example, the following sets
           the date to December 24, 1999 and time to 12:00 P.M.
  
             <PRE>             <PRE>
             CIMDateTime dt;             CIMDateTime dt;
             dt.set("19991224120000.000000+360");             dt.set("19991224120000.000000+360");
             </PRE>             </PRE>
  
         @return On format error, CIMDateTime set throws the exception      @exception InvalidDateTimeFormatException because the date and time is not
         BadDateTimeFormat          formatted correctly.  See the CIMDateTime class decscription for the
         @exception Throws exception BadDateTimeFormat on format error.          formatting rules.
     */     */
     void set(const char* str);      void set(const String & str);
  
     /**  clear - Clears the datetime class instance. The date time is set to our      /** Clears the datetime class object.  The date time is set to
         defintion of NULL, absolute zero date time.          a zero interval value.
     */     */
     void clear();     void clear();
  
     /**      /** Receives the current time as CIMDateTime. The time is returned as the local time.
     Get current time as CIMDateTime. The time returned is always in UTC format.          @return CIMDateTime object containing the current date and time.
   
     @return CIMDateTime   Contains the current datetime as a CIMDateTime object.  
   
     Note: Original code was taken from OperationSystem::getLocalDateTime()  
     */     */
     static CIMDateTime getCurrentDateTime();     static CIMDateTime getCurrentDateTime();
  
     /**      /** Computes the difference in microseconds between two CIMDateTime dates or
     Get the difference between two CIMDateTimes.          two CIMDateTime intervals.
           @param startTime  Contains the start datetime.
     @param startTime     Contains the start time.          @param finishTime  Contains the finish datetime.
           @return Integer that contains the difference between the two datetime values
     @param finishTime    Contains the finish time.          in microseconds.
           @exception InvalidDateTimeFormatException If one argument uses the interval
     @return difference   Difference between the two datetimes in seconds.          format and the other uses the string format.
           @exception DateTimeOutOfRangeException If datetime is outside the allowed
           range.
   
           Note: The behavior on HP-UX and Windows platform is to throw an exception
           when the dates are out of range. Red Hat Linux platform normalizes the
           dates when they are outside their legal interval and will not throw an
           exception.
   
           Allowed Date Range:
           The mktime (3C) man page on HP-UX does not document the allowed range.
           The approximate range of dates allowed on HP-UX is between
           1901 and 2038.
  
     @throws BadFormat          On Windows platform, the approximate range is between 1970 to 2038.
  
           On Red Hat Linux platform the approximate range is between 1901 and 2038.
     */     */
     static Real64 getDifference(CIMDateTime startTime, CIMDateTime finishTime);      static Sint64 getDifference(CIMDateTime startTime, CIMDateTime finishTime);
  
     /**      /** Checks whether the datetime is an interval.
     Checks whether the datetime is an interval.          @return True if the datetime is an interval; otherwise, false.
   
     @return isInterval  True if the datetime is an interval, else false  
     */     */
     Boolean isInterval();     Boolean isInterval();
  
     /** CIMDateTime - ATTN: Friend operator Test for CIMDateTime      /** Compares the CIMDateTime object to another CIMDateTime object for
         equality          equality.
           @param x  CIMDateTime object to be compared.
           @return true if the two CIMDateTime objects are equal; otherwise, false.
     */     */
     PEGASUS_COMMON_LINKAGE friend Boolean operator==(      Boolean equal (const CIMDateTime & x) const;
         const CIMDateTime& x,  
         const CIMDateTime& y);  
  
 private: private:
  
     //      AutoPtr<CIMDateTimeRep> _rep;//PEP101
     // Length of the string required to store only the date and time without      Boolean _set(const String & dateTimeStr);
     // the UTC sign and UTC offset.  };
     // Format is yyyymmddhhmmss.  
     // Note : The size does not include the null byte.  
     //  
     enum { DATE_TIME_LENGTH = 14 };  
   
     //  
     // Length of the string required to store the  formatted date and time  
     // Format is yyyy:mm:dd:hh:mm:ss.  
     //  
     enum { FORMATTED_DATE_TIME = 20 };  
   
     Boolean _set(const char* str);  
   
     char _rep[FORMAT_LENGTH + 1];  
   
     /**     /**
        This function extracts the different components of the date and time          Add documentation here.
        from the string passed and assigns it to the tm structure.  
   
        @param dateTimeStr  Contains the string to be assigned.  
   
        @param tm           Contains the tm structure to be updated.  
     */     */
     static void formatDateTime(char* dateTime, tm* tm);  
 };  
   
 PEGASUS_COMMON_LINKAGE Boolean operator==( PEGASUS_COMMON_LINKAGE Boolean operator==(
       /**
           Add documentation here.
       */
     const CIMDateTime& x,     const CIMDateTime& x,
       /**
           Add documentation here.
       */
     const CIMDateTime& y);     const CIMDateTime& y);
  
 PEGASUS_COMMON_LINKAGE PEGASUS_STD(ostream)& operator<<(  
     PEGASUS_STD(ostream)& os,  
     const CIMDateTime& x);  
   
 #define PEGASUS_ARRAY_T CIMDateTime #define PEGASUS_ARRAY_T CIMDateTime
 # include "ArrayInter.h"  # include <Pegasus/Common/ArrayInter.h>
 #undef PEGASUS_ARRAY_T #undef PEGASUS_ARRAY_T
  
 PEGASUS_NAMESPACE_END PEGASUS_NAMESPACE_END


Legend:
Removed from v.1.16  
changed lines
  Added in v.1.38

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2