// This may look like C code, but it is really -*- C++ -*- #ifndef TIMESTAMP_H_SEEN #define TIMESTAMP_H_SEEN // Classe TimeStamp (Date+heure) // // R. Ansari UPS+LAL IN2P3/CNRS 2005 // Code recupere en partie ds dates.h dates.cc (classe Date) / E. Aubourg 1995-2000 #include "machdefs.h" #include #include namespace SOPHYA { //! Class representing date and time class TimeStamp { public: /* Pour utilisation ulterieure //! GMT / local time enum enum {kGMTTime=0, kLocalTime=1}; */ //! Month name enum enum Month {month_January=1, month_February, month_March, month_April, month_May, month_June, month_July, month_August, month_September, month_October, month_November, month_December}; //! Default Constructor : current date and time (GMT) TimeStamp(); TimeStamp(TimeStamp const & ts); //! Constructor with specification of number of days since 0 Jan 1901 0h TU TimeStamp(double days); //! Constructor from number of days (since 0/01/1901) and number of seconds TimeStamp(int_8 days, r_8 seconds); //! Constructor with specification of day,month,year,hour,minutes,seconds TimeStamp(int year, int month, int day, int hour, int min, double sec); //! Constructor with specification of date & time in the format YYYY/MM/DD hh:mm:ss TimeStamp(string& date, string& hour); TimeStamp(const char* date, const char* hour); //! Set the value of the time stamp copying from "ts" void Set(TimeStamp const & ts); //! Sets the value of the time stamp from the number of days since 0 Jan 1901 0h TU void Set(double days); //! Sets the value of the time stamp from the number of days and seconds void Set(int_8 days, r_8 seconds); //! initialize with current date and time (GMT) void SetNow(); //! The equal (set) operator inline TimeStamp& operator= (TimeStamp const & ts) { Set(ts); return(*this); } //! Sets the value of the date (days) void SetDate(int year, int month, int day); //! Sets the value of the date (format: DD/MM/YYYY) void SetDate(const char* date); //! Sets the value of the date (format: DD/MM/YYYY) inline void SetDate(string const& date) { SetDate(date.c_str()); } //! Sets the value of the time of day (hours) void SetHour(int hour, int min, double sec); //! Sets the value of the time of day (format: hh:mm:ss[.ss]) void SetHour(const char* hour); //! Sets the value of the time of day (format: hh:mm:ss[.ss]) inline void SetHour(string const& hour) { SetHour(hour.c_str()); } //! Return the date (Year, Month, Day) void GetDate(int& year, int& month, int& day) const; //! Return the time of the day void GetHour(int& hour, int& min, double& sec) const; //! Return the value of the TimeStamp as days.fraction_days since 0 Jan 1901 double ToDays() const; //! Conversion operator to double - return ToDays() inline operator double() const { return ToDays(); } //! Return the timestamp in string format string ToString(bool fgday=true, bool fghour=true) const; //! Return the integral number of days since 0 Jan 1901 inline int_8 DaysPart() { return mDays; } //! Return the fractional number of days in seconds ( 0 < nsec < 86400. ) inline r_8 SecondsPart() { return mSeconds; } //! Prints the date/time in string format on \b cout inline void Print(bool fgday=true, bool fghour=true) const { Print(cout, fgday, fghour); } //! Prints the date/time in string format on stream \b os virtual void Print(ostream& os, bool fgday=true, bool fghour=true) const; //! Number of days in a given month static int MonthDays(int year, int month); //! Number of days in a given year static int YearDays(int annee); //! Number of days since 0 janvier 1901 0h TU static int_8 ConvertToDays(int year, int month, int day); protected: r_8 mSeconds; // Number of seconds since 00:00:00 int_8 mDays; // Number of days since 0 Jan 1901 }; /*! operator << overloading - Prints date/time in string format on \b os*/ inline ostream& operator << (ostream& s, TimeStamp const & ts) { ts.Print(s); return(s); } } // namespace SOPHYA #endif