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
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
|
// **************************************************************************
// * This file is part of the zenXML project. It is distributed under the *
// * Boost Software License: http://www.boost.org/LICENSE_1_0.txt *
// * Copyright (C) Zenju (zenju AT gmx DOT de) - All Rights Reserved *
// **************************************************************************
#ifndef ZEN_TIME_HEADER_845709281432434
#define ZEN_TIME_HEADER_845709281432434
#include <ctime>
#include "string_tools.h"
namespace zen
{
struct TimeComp //replaces "struct std::tm" and SYSTEMTIME
{
TimeComp() : year(0), month(0), day(0), hour(0), minute(0), second(0) {}
int year; // -
int month; //1-12
int day; //1-31
int hour; //0-23
int minute; //0-59
int second; //0-61
};
TimeComp localTime (time_t utc = std::time(nullptr)); //convert time_t (UTC) to local time components
time_t localToTimeT(const TimeComp& comp); //convert local time components to time_t (UTC), returns -1 on error
//----------------------------------------------------------------------------------------------------------------------------------
/*
format (current) date and time; example:
formatTime<std::wstring>(L"%Y*%m*%d"); -> "2011*10*29"
formatTime<std::wstring>(FORMAT_DATE); -> "2011-10-29"
formatTime<std::wstring>(FORMAT_TIME); -> "17:55:34"
*/
template <class String, class String2>
String formatTime(const String2& format, const TimeComp& comp = localTime()); //format as specified by "std::strftime", returns empty string on failure
//the "format" parameter of formatTime() is partially specialized with the following type tags:
const struct FormatDateTag {} FORMAT_DATE = {}; //%x - locale dependent date representation: e.g. 08/23/01
const struct FormatTimeTag {} FORMAT_TIME = {}; //%X - locale dependent time representation: e.g. 14:55:02
const struct FormatDateTimeTag {} FORMAT_DATE_TIME = {}; //%c - locale dependent date and time: e.g. Thu Aug 23 14:55:02 2001
const struct FormatIsoDateTag {} FORMAT_ISO_DATE = {}; //%Y-%m-%d - e.g. 2001-08-23
const struct FormatIsoTimeTag {} FORMAT_ISO_TIME = {}; //%H:%M:%S - e.g. 14:55:02
const struct FormatIsoDateTimeTag {} FORMAT_ISO_DATE_TIME = {}; //%Y-%m-%d %H:%M:%S - e.g. 2001-08-23 14:55:02
//----------------------------------------------------------------------------------------------------------------------------------
template <class String>
bool parseTime(const String& format, const String& str, TimeComp& comp); //similar to ::strptime(), return true on success
//----------------------------------------------------------------------------------------------------------------------------------
//############################ implementation ##############################
namespace implementation
{
inline
struct std::tm toClibTimeComponents(const TimeComp& comp)
{
assert(1 <= comp.month && comp.month <= 12 &&
1 <= comp.day && comp.day <= 31 &&
0 <= comp.hour && comp.hour <= 23 &&
0 <= comp.minute && comp.minute <= 59 &&
0 <= comp.second && comp.second <= 61);
struct std::tm ctc = {};
ctc.tm_year = comp.year - 1900; //years since 1900
ctc.tm_mon = comp.month - 1; //0-11
ctc.tm_mday = comp.day; //1-31
ctc.tm_hour = comp.hour; //0-23
ctc.tm_min = comp.minute; //0-59
ctc.tm_sec = comp.second; //0-61
ctc.tm_isdst = -1; //> 0 if DST is active, == 0 if DST is not active, < 0 if the information is not available
return ctc;
}
inline
TimeComp toZenTimeComponents(const struct std::tm& ctc)
{
TimeComp comp;
comp.year = ctc.tm_year + 1900;
comp.month = ctc.tm_mon + 1;
comp.day = ctc.tm_mday;
comp.hour = ctc.tm_hour;
comp.minute = ctc.tm_min;
comp.second = ctc.tm_sec;
return comp;
}
template <class T>
struct GetFormat; //get default time formats as char* or wchar_t*
template <>
struct GetFormat<FormatDateTag> //%x - locale dependent date representation: e.g. 08/23/01
{
const char* format(char) const { return "%x"; }
const wchar_t* format(wchar_t) const { return L"%x"; }
};
template <>
struct GetFormat<FormatTimeTag> //%X - locale dependent time representation: e.g. 14:55:02
{
const char* format(char) const { return "%X"; }
const wchar_t* format(wchar_t) const { return L"%X"; }
};
template <>
struct GetFormat<FormatDateTimeTag> //%c - locale dependent date and time: e.g. Thu Aug 23 14:55:02 2001
{
const char* format(char) const { return "%c"; }
const wchar_t* format(wchar_t) const { return L"%c"; }
};
template <>
struct GetFormat<FormatIsoDateTag> //%Y-%m-%d - e.g. 2001-08-23
{
const char* format(char) const { return "%Y-%m-%d"; }
const wchar_t* format(wchar_t) const { return L"%Y-%m-%d"; }
};
template <>
struct GetFormat<FormatIsoTimeTag> //%H:%M:%S - e.g. 14:55:02
{
const char* format(char) const { return "%H:%M:%S"; }
const wchar_t* format(wchar_t) const { return L"%H:%M:%S"; }
};
template <>
struct GetFormat<FormatIsoDateTimeTag> //%Y-%m-%d %H:%M:%S - e.g. 2001-08-23 14:55:02
{
const char* format(char) const { return "%Y-%m-%d %H:%M:%S"; }
const wchar_t* format(wchar_t) const { return L"%Y-%m-%d %H:%M:%S"; }
};
//strftime() craziness on invalid input:
// VS 2010: CRASH unless "_invalid_parameter_handler" is set: http://msdn.microsoft.com/en-us/library/ksazx244.aspx
// GCC: returns 0, apparently no crash. Still, considering some clib maintainer's comments, we should expect the worst!
inline
size_t strftimeWrap_impl(char* buffer, size_t bufferSize, const char* format, const struct std::tm* timeptr)
{
return std::strftime(buffer, bufferSize, format, timeptr);
}
inline
size_t strftimeWrap_impl(wchar_t* buffer, size_t bufferSize, const wchar_t* format, const struct std::tm* timeptr)
{
return std::wcsftime(buffer, bufferSize, format, timeptr);
}
/*
inline
bool isValid(const struct std::tm& t)
{
-> not enough! MSCRT has different limits than the C standard which even seem to change with different versions:
_VALIDATE_RETURN((( timeptr->tm_sec >=0 ) && ( timeptr->tm_sec <= 59 ) ), EINVAL, FALSE)
_VALIDATE_RETURN(( timeptr->tm_year >= -1900 ) && ( timeptr->tm_year <= 8099 ), EINVAL, FALSE)
-> also std::mktime does *not* help here at all!
auto inRange = [](int value, int minVal, int maxVal) { return minVal <= value && value <= maxVal; };
//http://www.cplusplus.com/reference/clibrary/ctime/tm/
return inRange(t.tm_sec , 0, 61) &&
inRange(t.tm_min , 0, 59) &&
inRange(t.tm_hour, 0, 23) &&
inRange(t.tm_mday, 1, 31) &&
inRange(t.tm_mon , 0, 11) &&
//tm_year
inRange(t.tm_wday, 0, 6) &&
inRange(t.tm_yday, 0, 365);
//tm_isdst
};
*/
template <class CharType> inline
size_t strftimeWrap(CharType* buffer, size_t bufferSize, const CharType* format, const struct std::tm* timeptr)
{
#if defined _MSC_VER && !defined NDEBUG
//it's no use: application init must register an invalid parameter that does nothing !!!
//=> strftime will abort with 0 and set errno to EINVAL instead of CRASH THE APPLICATION!
_invalid_parameter_handler oldHandler = _set_invalid_parameter_handler(nullptr);
assert(oldHandler);
_set_invalid_parameter_handler(oldHandler);
#endif
return strftimeWrap_impl(buffer, bufferSize, format, timeptr);
}
struct UserDefinedFormatTag {};
struct PredefinedFormatTag {};
template <class String, class String2> inline
String formatTime(const String2& format, const TimeComp& comp, UserDefinedFormatTag) //format as specified by "std::strftime", returns empty string on failure
{
typedef typename GetCharType<String>::Type CharType;
struct std::tm ctc = toClibTimeComponents(comp);
std::mktime(&ctc); // unfortunately std::strftime() needs all elements of "struct tm" filled, e.g. tm_wday, tm_yday
//note: although std::mktime() explicitly expects "local time", calculating weekday and day of year *should* be time-zone and DST independent
CharType buffer[256];
const size_t charsWritten = strftimeWrap(buffer, 256, strBegin(format), &ctc);
return String(buffer, charsWritten);
}
template <class String, class FormatType> inline
String formatTime(FormatType, const TimeComp& comp, PredefinedFormatTag)
{
typedef typename GetCharType<String>::Type CharType;
return formatTime<String>(GetFormat<FormatType>().format(CharType()), comp, UserDefinedFormatTag());
}
}
inline
TimeComp localTime(time_t utc)
{
#ifdef _MSC_VER
struct tm lt = {};
errno_t rv = ::localtime_s(<, &utc); //more secure?
if (rv != 0)
return TimeComp();
return implementation::toZenTimeComponents(lt);
#else
struct tm* lt = std::localtime(&utc); //returns nullptr for invalid time_t on Visual 2010!!! (testvalue "-1")
return lt ? implementation::toZenTimeComponents(*lt) : TimeComp();
#endif
}
inline
time_t localToTimeT(const TimeComp& comp) //returns -1 on error
{
struct std::tm ctc = implementation::toClibTimeComponents(comp);
return std::mktime(&ctc);
}
template <class String, class String2> inline
String formatTime(const String2& format, const TimeComp& comp)
{
typedef typename SelectIf<
IsSameType<String2, FormatDateTag >::value ||
IsSameType<String2, FormatTimeTag >::value ||
IsSameType<String2, FormatDateTimeTag >::value ||
IsSameType<String2, FormatIsoDateTag >::value ||
IsSameType<String2, FormatIsoTimeTag >::value ||
IsSameType<String2, FormatIsoDateTimeTag>::value, implementation::PredefinedFormatTag, implementation::UserDefinedFormatTag>::Type FormatTag;
return implementation::formatTime<String>(format, comp, FormatTag());
}
template <class String>
bool parseTime(const String& format, const String& str, TimeComp& comp) //return true on success
{
typedef typename GetCharType<String>::Type CharType;
const CharType* iterFmt = strBegin(format);
const CharType* const fmtLast = iterFmt + strLength(format);
const CharType* iterStr = strBegin(str);
const CharType* const strLast = iterStr + strLength(str);
auto extractNumber = [&](int& result, size_t digitCount) -> bool
{
if (strLast - iterStr < digitCount)
return false;
if (std::any_of(iterStr, iterStr + digitCount, [](CharType c) { return !isDigit(c); }))
return false;
result = zen::stringTo<int>(StringProxy<CharType>(iterStr, digitCount));
iterStr += digitCount;
return true;
};
for (; iterFmt != fmtLast; ++iterFmt)
{
const CharType fmt = *iterFmt;
if (fmt == '%')
{
++iterFmt;
if (iterFmt == fmtLast)
return false;
switch (*iterFmt)
{
case 'Y':
if (!extractNumber(comp.year, 4))
return false;
break;
case 'm':
if (!extractNumber(comp.month, 2))
return false;
break;
case 'd':
if (!extractNumber(comp.day, 2))
return false;
break;
case 'H':
if (!extractNumber(comp.hour, 2))
return false;
break;
case 'M':
if (!extractNumber(comp.minute, 2))
return false;
break;
case 'S':
if (!extractNumber(comp.second, 2))
return false;
break;
default:
return false;
}
}
else if (isWhiteSpace(fmt)) //single whitespace in format => skip 0..n whitespace chars
{
while (iterStr != strLast && isWhiteSpace(*iterStr))
++iterStr;
}
else
{
if (iterStr == strLast || *iterStr != fmt)
return false;
++iterStr;
}
}
return iterStr == strLast;
}
}
#endif //ZEN_TIME_HEADER_845709281432434
|