(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.13 and 1.27

version 1.13, 2002/04/10 17:24:08 version 1.27, 2002/06/03 19:33:29
Line 1 
Line 1 
 //%///////////////////////////////////////////////////////////////////////////// //%/////////////////////////////////////////////////////////////////////////////
 // //
 // Copyright (c) 2000, 2001 The Open group, BMC Software, Tivoli Systems, IBM  // Copyright (c) 2000, 2001, 2002 BMC Software, Hewlett-Packard Company, IBM,
   // The Open Group, Tivoli Systems
 // //
 // 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 24 
 // 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
   //                  (sushma_fernandes@hp.com)
   //              Roger Kumpf, Hewlett Packard Company (roger_kumpf@hp.com)
 // //
 //%///////////////////////////////////////////////////////////////////////////// //%/////////////////////////////////////////////////////////////////////////////
  
Line 31 
Line 35 
  
 #include <Pegasus/Common/Config.h> #include <Pegasus/Common/Config.h>
 #include <Pegasus/Common/Array.h> #include <Pegasus/Common/Array.h>
   #include <time.h>
   #ifdef PEGASUS_INTERNALONLY
 #include <iostream> #include <iostream>
   #endif
  
 PEGASUS_NAMESPACE_BEGIN PEGASUS_NAMESPACE_BEGIN
  
 /* ATTN: P3. Several functions should be added to this class for datetime manipulation  /* ATTN: P3. KS Several functions should be added to this class for datetime manipulation
    including get and set each subcomponent (year, month, etc). isInterval, test for equality,     including get and set each subcomponent (year, month, etc), test for equality,
    create intervals from absolutes, possibly gett current time, Note that    create intervals from absolutes, possibly gett current time, Note that
    the Java rep is probably tostring, not get string,    the Java rep is probably tostring, not get string,
 */ */
  
   class CIMDateTimeRep;
   
 /** /**
     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
Line 100 
Line 109 
 { {
 public: public:
  
     enum { FORMAT_LENGTH = 25 };  
   
     /** Create a new CIMDateTime object with NULL DateTime definition.     /** Create a new CIMDateTime object with NULL DateTime definition.
     */     */
     CIMDateTime();     CIMDateTime();
Line 121 
Line 128 
     CIMDateTime(const CIMDateTime& x);     CIMDateTime(const CIMDateTime& x);
  
     /** DateTime Destructor. */     /** DateTime Destructor. */
     ~CIMDateTime() { }      ~CIMDateTime();
  
     /**  Assign one DateTime object to another     /**  Assign one DateTime object to another
     @param - The DateTime Object to assign     @param - The DateTime Object to assign
Line 173 
Line 180 
     */     */
     void clear();     void clear();
  
       /** Makes a deep copy (clone) of the given object. */
       CIMDateTime clone() const;
   
       /**
       Get current time as CIMDateTime. The time returned is the local time.
   
       @return CIMDateTime   Contains the current datetime as a CIMDateTime object.
   
       Note: Original code was taken from OperationSystem::getLocalDateTime()
       */
       static CIMDateTime getCurrentDateTime();
   
       /**
       Get the difference between two CIMDateTimes. This function computes the
       difference between two datetimes or between two intervals. The result
       is truncated and returned as the number of seconds.
   
       @param startTime     Contains the start time.
   
       @param finishTime    Contains the finish time.
   
       @return difference   Difference between the two datetimes in seconds.
   
       @throws BadFormat
   
       */
       static Sint64 getDifference(CIMDateTime startTime, CIMDateTime finishTime);
   
       /**
       Checks whether the datetime is an interval.
   
       @return isInterval  True if the datetime is an interval, else false
       */
       Boolean isInterval();
   
   private:
   
       CIMDateTimeRep* _rep;
   
       Boolean _set(const char* str);
   
       /**
          This function extracts the different components of the date and time
          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);
   
     /** CIMDateTime - ATTN: Friend operator Test for CIMDateTime     /** CIMDateTime - ATTN: Friend operator Test for CIMDateTime
         equality         equality
     */     */
     PEGASUS_COMMON_LINKAGE friend Boolean operator==(     PEGASUS_COMMON_LINKAGE friend Boolean operator==(
         const CIMDateTime& x,         const CIMDateTime& x,
         const CIMDateTime& y);         const CIMDateTime& y);
   
 private:  
   
     Boolean _set(const char* str);  
     char _rep[FORMAT_LENGTH + 1];  
 }; };
  
 PEGASUS_COMMON_LINKAGE Boolean operator==( PEGASUS_COMMON_LINKAGE Boolean operator==(
     const CIMDateTime& x,     const CIMDateTime& x,
     const CIMDateTime& y);     const CIMDateTime& y);
  
   #ifdef PEGASUS_INTERNALONLY
 PEGASUS_COMMON_LINKAGE PEGASUS_STD(ostream)& operator<<( PEGASUS_COMMON_LINKAGE PEGASUS_STD(ostream)& operator<<(
     PEGASUS_STD(ostream)& os,     PEGASUS_STD(ostream)& os,
     const CIMDateTime& x);     const CIMDateTime& x);
   #endif
  
 #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.13  
changed lines
  Added in v.1.27

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2