1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
|
#ifndef _DATETIME_H
#define _DATETIME_H
#include <ctime>
#include <sstream>
#include "error.h"
class date_error : public error {
public:
date_error(const std::string& reason) throw() : error(reason) {}
virtual ~date_error() throw() {}
};
struct interval_t;
class datetime_t;
class date_t
{
date_t(const datetime_t& _when);
protected:
std::time_t when;
public:
static date_t now;
static const char * formats[];
static int current_year;
static std::string input_format;
static std::string output_format;
date_t() : when(0) {}
date_t(const date_t& _when) : when(_when.when) {}
date_t(const std::time_t _when) : when(_when) {
#if 0
struct std::tm * moment = std::localtime(&_when);
moment->tm_hour = 0;
moment->tm_min = 0;
moment->tm_sec = 0;
when = std::mktime(moment);
#endif
}
date_t(const interval_t& period);
date_t(const std::string& _when);
virtual ~date_t() {}
date_t& operator=(const date_t& _when) {
when = _when.when;
return *this;
}
date_t& operator=(const std::time_t _when) {
return *this = date_t(_when);
}
date_t& operator=(const datetime_t& _when) {
return *this = date_t(_when);
}
date_t& operator=(const interval_t& period) {
return *this = date_t(period);
}
date_t& operator=(const std::string& _when) {
return *this = date_t(_when);
}
date_t& operator+=(const interval_t& period);
long operator-=(const date_t& date) {
return (when - date.when) / 86400;
}
virtual date_t& operator+=(const long days) {
// jww (2006-03-26): This is not accurate enough when DST is in effect!
assert(0);
when += days * 86400;
return *this;
}
virtual date_t& operator-=(const long days) {
assert(0);
when -= days * 86400;
return *this;
}
#define DEF_DATE_OP(OP) \
bool operator OP(const date_t& other) const { \
return when OP other.when; \
}
DEF_DATE_OP(<)
DEF_DATE_OP(<=)
DEF_DATE_OP(>)
DEF_DATE_OP(>=)
DEF_DATE_OP(==)
DEF_DATE_OP(!=)
operator bool() const {
return when != 0;
}
operator std::time_t() const {
return when;
}
operator std::string() const {
return to_string();
}
std::string to_string(const std::string& format = output_format) const {
char buf[64];
std::strftime(buf, 63, format.c_str(), localtime());
return buf;
}
int year() const {
return localtime()->tm_year + 1900;
}
int month() const {
return localtime()->tm_mon + 1;
}
int day() const {
return localtime()->tm_mday;
}
int wday() const {
return localtime()->tm_wday;
}
std::tm * localtime() const {
return std::localtime(&when);
}
void write(std::ostream& out,
const std::string& format = output_format) const {
out << to_string(format);
}
friend class datetime_t;
friend struct interval_t;
};
inline long operator-(const date_t& left, const date_t& right) {
date_t temp(left);
temp -= right;
return temp;
}
inline date_t operator+(const date_t& left, const long days) {
date_t temp(left);
temp += days;
return temp;
}
inline date_t operator-(const date_t& left, const long days) {
date_t temp(left);
temp -= days;
return temp;
}
inline std::ostream& operator<<(std::ostream& out, const date_t& moment) {
moment.write(out);
return out;
}
class datetime_error : public error {
public:
datetime_error(const std::string& reason) throw() : error(reason) {}
virtual ~datetime_error() throw() {}
};
class datetime_t : public date_t
{
public:
static datetime_t now;
datetime_t() : date_t() {}
datetime_t(const datetime_t& _when) : date_t(_when.when) {}
datetime_t(const date_t& _when) : date_t(_when) {}
datetime_t(const std::time_t _when) : date_t(_when) {}
datetime_t(const std::string& _when);
datetime_t& operator=(const datetime_t& _when) {
when = _when.when;
return *this;
}
datetime_t& operator=(const date_t& _when) {
when = _when.when;
return *this;
}
datetime_t& operator=(const std::time_t _when) {
return *this = datetime_t(_when);
}
datetime_t& operator=(const std::string& _when) {
return *this = datetime_t(_when);
}
long operator-=(const datetime_t& date) {
return when - date.when;
}
virtual datetime_t& operator+=(const long secs) {
when += secs;
return *this;
}
virtual datetime_t& operator-=(const long secs) {
when -= secs;
return *this;
}
#define DEF_DATETIME_OP(OP) \
bool operator OP(const datetime_t& other) const { \
return when OP other.when; \
}
DEF_DATETIME_OP(<)
DEF_DATETIME_OP(<=)
DEF_DATETIME_OP(>)
DEF_DATETIME_OP(>=)
DEF_DATETIME_OP(==)
DEF_DATETIME_OP(!=)
int hour() const {
return localtime()->tm_hour;
}
int min() const {
return localtime()->tm_min;
}
int sec() const {
return localtime()->tm_sec;
}
};
inline long operator-(const datetime_t& left, const datetime_t& right) {
std::time_t left_time(left);
std::time_t right_time(right);
return left_time - right_time;
}
inline datetime_t operator+(const datetime_t& left, const long seconds) {
datetime_t temp(left);
temp += seconds;
return temp;
}
inline datetime_t operator-(const datetime_t& left, const long seconds) {
datetime_t temp(left);
temp -= seconds;
return temp;
}
inline std::ostream& operator<<(std::ostream& out,
const datetime_t& moment) {
char buf[64];
std::strftime(buf, 63, (date_t::output_format + " %H:%M:%S").c_str(),
moment.localtime());
out << buf;
return out;
}
struct interval_t
{
unsigned short years;
unsigned short months;
unsigned short days;
unsigned short hours;
unsigned short minutes;
unsigned short seconds;
datetime_t begin;
datetime_t end;
interval_t(int _days = 0, int _months = 0, int _years = 0,
const date_t& _begin = date_t(),
const date_t& _end = date_t())
: years(_years), months(_months), days(_days),
hours(0), minutes(0), seconds(0),
begin(_begin), end(_end) {}
interval_t(const std::string& desc)
: years(0), months(0), days(0),
hours(0), minutes(0), seconds(0) {
std::istringstream stream(desc);
parse(stream);
}
operator bool() const {
return (years > 0 || months > 0 || days > 0 ||
hours > 0 || minutes > 0 || seconds > 0);
}
void start(const datetime_t& moment) {
begin = first(moment);
}
datetime_t first(const datetime_t& moment = datetime_t()) const;
datetime_t increment(const datetime_t&) const;
void parse(std::istream& in);
};
inline date_t::date_t(const interval_t& period) {
when = period.first().when;
}
inline date_t& date_t::operator+=(const interval_t& period) {
return *this = period.increment(*this);
}
inline date_t::date_t(const datetime_t& _when) {
assert(0);
struct std::tm * moment = _when.localtime();
moment->tm_hour = 0;
moment->tm_min = 0;
moment->tm_sec = 0;
when = std::mktime(moment);
}
#endif // _DATETIME_H
|