29 int string_to_int64(
const char *str, int64_t *num)
33 uint64_t limit = INT64_MAX;
42 if (*str && (*str ==
'-'))
47 while (*str && !isspace(*str))
52 val += ((*str) -
'0');
62 *num = (int64_t) (sign * val);
66 int string_to_int32(
const char *str, int32_t *num)
70 uint64_t limit = INT32_MAX;
79 if (*str && (*str ==
'-'))
84 while (*str && !isspace(*str))
89 val += ((*str) -
'0');
99 *num = (int32_t) (sign * val);
103 int string_to_int16(
const char *str, int16_t *num)
108 if ((err = string_to_int32(str, &val)))
110 if (val > 32767 || val < -32768)
113 *num = (int16_t) val;
117 int string_to_int8(
const char *str, int8_t *num)
122 if ((err = string_to_int32(str, &val)))
124 if (val > 127 || val < -128)
131 int string_to_uint32(
const char *str, uint32_t *num)
134 uint64_t limit = UINT32_MAX;
138 while (isspace(*str))
143 while (*str && !isspace(*str))
148 val += ((*str) -
'0');
158 *num = (uint32_t) val;
162 int string_to_uint16(
const char *str, uint16_t *num)
167 if ((err = string_to_uint32(str, &val)))
172 *num = (uint16_t) val;
176 int string_to_uint8(
const char *str, uint8_t *num)
181 if ((err = string_to_uint32(str, &val)))
186 *num = (uint8_t) val;
190 time_t __timegm(
struct tm *utctime_tm)
193 struct tm adj_tm, chk_tm;
195 adj_tm.tm_year = utctime_tm->tm_year;
196 adj_tm.tm_mon = utctime_tm->tm_mon;
197 adj_tm.tm_mday = utctime_tm->tm_mday;
198 adj_tm.tm_hour = utctime_tm->tm_hour;
199 adj_tm.tm_min = utctime_tm->tm_min;
200 adj_tm.tm_sec = utctime_tm->tm_sec;
201 adj_tm.tm_isdst = -1;
205 time = mktime(&adj_tm);
206 if (time == INVALID_TIME)
208 if (NULL == gmtime_r(&time, &chk_tm))
210 if (chk_tm.tm_min == utctime_tm->tm_min &&
211 chk_tm.tm_hour == utctime_tm->tm_hour &&
212 chk_tm.tm_mday == utctime_tm->tm_mday &&
213 chk_tm.tm_mon == utctime_tm->tm_mon &&
214 chk_tm.tm_year == utctime_tm->tm_year)
216 adj_tm.tm_min += utctime_tm->tm_min - chk_tm.tm_min;
217 adj_tm.tm_hour += utctime_tm->tm_hour - chk_tm.tm_hour;
218 adj_tm.tm_mday += utctime_tm->tm_mday - chk_tm.tm_mday;
219 adj_tm.tm_mon += utctime_tm->tm_mon - chk_tm.tm_mon;
220 adj_tm.tm_year += utctime_tm->tm_year - chk_tm.tm_year;
225 int string_to_time(
const char *str, time_t *time)
228 int i, len, format, isutc;
229 char *yyyy, *MM, *dd, *hh, *mm, *ss;
230 char buf[TIMESTAMP_UTC_LEN + 1];
235 *time = INVALID_TIME;
238 memset(buf, 0,
sizeof(buf));
239 strncpy(buf, str,
sizeof(buf) - 1);
244 case TIMESTAMP_UTC_LEN:
245 if (((buf[4] !=
'-') || (buf[7] !=
'-') || (buf[10] !=
'T') ||
246 (buf[13] !=
':') || (buf[16] !=
':') || (buf[19] !=
'Z')))
248 fprintf(stderr,
"%s: string is badly formed '%s'\n", __FUNCTION__, buf);
255 if (((buf[4] !=
'-') || (buf[7] !=
'-') || (buf[10] !=
'T') ||
256 (buf[13] !=
':') || (buf[16] !=
':')))
258 fprintf(stderr,
"%s: string is badly formed '%s'\n", __FUNCTION__, buf);
265 if (((buf[4] !=
'-') || (buf[7] !=
'-')))
267 fprintf(stderr,
"%s: string is badly formed '%s'\n", __FUNCTION__, buf);
274 fprintf(stderr,
"%s: string is not a timestamp '%s'\n", __FUNCTION__, buf);
286 yyyy[4] = MM[2] = dd[2] = hh[2] = mm[2] = ss[2] =
'\0';
288 for (i = 0; i < len; ++i)
290 if (buf[i] && !isdigit(buf[i]))
292 fprintf(stderr,
"%s: expected numeral at '%s'[%d]\n", __FUNCTION__, str, i);
297 time_tm.tm_isdst = -1;
298 time_tm.tm_year = atoi(yyyy) - 1900;
299 time_tm.tm_mon = atoi(MM) - 1;
300 if (time_tm.tm_mon > 11)
302 fprintf(stderr,
"%s: month value too big '%s'\n", __FUNCTION__, str);
305 time_tm.tm_mday = atoi(dd);
306 if (time_tm.tm_mday > 31)
308 fprintf(stderr,
"%s: day value too big '%s'\n", __FUNCTION__, str);
315 time_tm.tm_hour = time_tm.tm_min = time_tm.tm_sec = 0;
316 *time = mktime(&time_tm);
320 time_tm.tm_hour = atoi(hh);
321 if (time_tm.tm_hour > 23)
323 fprintf(stderr,
"%s: hour value too big '%s'\n", __FUNCTION__, str);
326 time_tm.tm_min = atoi(mm);
327 if (time_tm.tm_min > 59)
329 fprintf(stderr,
"%s: minute value too big '%s'\n", __FUNCTION__, str);
332 time_tm.tm_sec = atoi(ss);
333 if (time_tm.tm_sec > 59)
335 fprintf(stderr,
"%s: second value too big '%s'\n", __FUNCTION__, str);
340 *time = timegm(&time_tm);
342 *time = mktime(&time_tm);
346 *time = INVALID_TIME;
350 void time_to_iso8601utc(time_t time,
char *str)
354 if (time == INVALID_TIME || NULL == gmtime_r(&time, &time_tm))
359 sprintf(str,
"%4.4d-%2.2d-%2.2dT%2.2d:%2.2d:%2.2dZ",
360 time_tm.tm_year + 1900,
368 void time_to_iso8601(time_t time,
char *str)
372 if (time == INVALID_TIME || NULL == localtime_r(&time, &time_tm))
377 sprintf(str,
"%4.4d-%2.2d-%2.2dT%2.2d:%2.2d:%2.2d",
378 time_tm.tm_year + 1900,
386 void time_to_isodate(time_t time,
char *str)
390 if (time == INVALID_TIME || NULL == localtime_r(&time, &time_tm))
395 sprintf(str,
"%4.4d-%2.2d-%2.2d",
396 time_tm.tm_year + 1900,