19 #ifndef HAVE_STRPTIME_PROTOTYPE
22 char *
strptime(
const char *s,
const char *format,
struct
40 setenv(
"TZ",
"EST5EDT",1);
43 PHTimeStamp::PHTimeStamp(
const int year,
const int month,
const int day,
const int hour,
const int minute,
const int second,
const int fraction)
45 set(year, month, day, hour, minute, second, fraction);
46 setenv(
"TZ",
"EST5EDT",1);
53 setenv(
"TZ",
"EST5EDT",1);
59 const int hour,
const int minute,
60 const int second,
const int fraction)
68 newTime.tm_year = year - 1900;
69 newTime.tm_mon = month - 1;
70 newTime.tm_mday = day;
71 newTime.tm_hour = hour;
72 newTime.tm_min = minute;
73 newTime.tm_sec = second;
77 newTime.tm_isdst = -1;
79 setTics(mktime(&newTime));
80 binaryTime += fraction;
87 strptime(timeString,
"%A %h %d %H:%M:%S %Y", &newTime);
88 setTics(mktime(&newTime));
99 return binaryTimeToTics(binaryTime);
104 binaryTime = ticsToBinaryTime(tics);
112 phtime_t PHTimeStamp::ticsToBinaryTime(time_t tics)
const
117 time_t PHTimeStamp::binaryTimeToTics(
phtime_t bt)
const
185 cout << *
this << endl;
193 time_t tics = getTics();
195 timeString[24] =
'\0';
196 strncpy(timeString, ctime(&tics), 24);
197 char *line =
new char[25];
199 char *u = strtok (timeString,
" ");
201 if (u) strcpy (line,u);
203 while ( (u=strtok(0,
" ")) )
238 timeString[24] =
'\0';
239 strncpy(timeString, ctime(&tics), 24);
240 return s << timeString;
246 s.getline(timeString, 25);
ostream & operator<<(ostream &s, const PHTimeStamp &t)
PHTimeStamp operator-(const PHTimeStamp &t1, time_t t2)
char * strptime(const char *s, const char *format, struct tm *tm)
istream & operator>>(istream &s, PHTimeStamp &t)
PHTimeStamp operator+(const PHTimeStamp &t1, time_t t2)
unsigned long long phtime_t
PHTimeStamp operator+=(time_t)
char * formatTimeString() const
PHTimeStamp & operator=(const PHTimeStamp &)
phtime_t getBinaryTime() const
int operator<(const PHTimeStamp &) const
void set(const int, const int, const int, const int, const int, const int, const int=0)
PHTimeStamp operator-=(time_t)
int isInRange(const PHTimeStamp &, const PHTimeStamp &)
int operator>=(const PHTimeStamp &) const
void setTics(const time_t)
int operator==(const PHTimeStamp &) const
int operator<=(const PHTimeStamp &) const
int operator!=(const PHTimeStamp &) const
int operator>(const PHTimeStamp &) const
void setBinTics(const phtime_t t)