-
Notifications
You must be signed in to change notification settings - Fork 2
/
timeutils.c
616 lines (537 loc) · 18 KB
/
timeutils.c
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
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
/***********************************************************************/ /**
* @file timeutils.c
*
* General time utility routines and routines for dealing with libdali
* time values of dltime_t type.
*
* This file is part of the DataLink Library.
*
* Copyright (c) 2023 Chad Trabant, EarthScope Data Services
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
***************************************************************************/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include "gmtime64.h"
#include "libdali.h"
static dltime_t time2dltime_int (int year, int day, int hour,
int min, int sec, int usec);
/***********************************************************************/ /**
* @brief Compute the month and day-of-month from day-of-year
*
* Compute the month and day-of-month from a year and day-of-year.
*
* Year is expected to be in the range 1900-2100, jday is expected to
* be in the range 1-366, month will be in the range 1-12 and mday
* will be in the range 1-31.
*
* @param year Year (1900 - 2100)
* @param jday Day-of-year, "Julian" day (1 - 366)
* @param month Returned month (1 - 12)
* @param mday Returned day-of-month (1 - 31)
*
* @return 0 on success and -1 on error.
***************************************************************************/
int
dl_doy2md (int year, int jday, int *month, int *mday)
{
int idx;
int leap;
int days[] = {31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};
/* Sanity check for the supplied year */
if (year < 1900 || year > 2100)
{
dl_log (2, 0, "dl_doy2md(): year (%d) is out of range\n", year);
return -1;
}
/* Test for leap year */
leap = (((year % 4 == 0) && (year % 100 != 0)) || (year % 400 == 0)) ? 1 : 0;
/* Add a day to February if leap year */
if (leap)
days[1]++;
if (jday > 365 + leap || jday <= 0)
{
dl_log (2, 0, "dl_doy2md(): day-of-year (%d) is out of range\n", jday);
return -1;
}
for (idx = 0; idx < 12; idx++)
{
jday -= days[idx];
if (jday <= 0)
{
*month = idx + 1;
*mday = days[idx] + jday;
break;
}
}
return 0;
} /* End of dl_doy2md() */
/***********************************************************************/ /**
* @brief Compute the day-of-year from year, month and day-of-month
*
* Compute the day-of-year from a year, month and day-of-month.
*
* Year is expected to be in the range 1900-2100, month is expected to
* be in the range 1-12, mday is expected to be in the range 1-31 and
* jday will be in the range 1-366.
*
* @param year Year (1900 - 2100)
* @param month Month (1 - 12)
* @param mday Day-of-month (1 - 31)
* @param jday Returned day-of-year, "Julian" day (1 - 366)
*
* @return 0 on success and -1 on error.
***************************************************************************/
int
dl_md2doy (int year, int month, int mday, int *jday)
{
int idx;
int leap;
int days[] = {31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};
/* Sanity check for the supplied parameters */
if (year < 1900 || year > 2100)
{
dl_log (2, 0, "dl_md2doy(): year (%d) is out of range\n", year);
return -1;
}
if (month < 1 || month > 12)
{
dl_log (2, 0, "dl_md2doy(): month (%d) is out of range\n", month);
return -1;
}
if (mday < 1 || mday > 31)
{
dl_log (2, 0, "dl_md2doy(): day-of-month (%d) is out of range\n", mday);
return -1;
}
/* Test for leap year */
leap = (((year % 4 == 0) && (year % 100 != 0)) || (year % 400 == 0)) ? 1 : 0;
/* Add a day to February if leap year */
if (leap)
days[1]++;
/* Check that the day-of-month jives with specified month */
if (mday > days[month - 1])
{
dl_log (2, 0, "dl_md2doy(): day-of-month (%d) is out of range for month %d\n",
mday, month);
return -1;
}
*jday = 0;
month--;
for (idx = 0; idx < 12; idx++)
{
if (idx == month)
{
*jday += mday;
break;
}
*jday += days[idx];
}
return 0;
} /* End of dl_md2doy() */
/***********************************************************************/ /**
* @brief Generate an ISO time string from a dltime_t
*
* Build a time string in ISO recommended format from a high precision
* epoch time, dltime_t, value.
*
* The provided isostimestr must have enough room for the resulting time
* string of 27 characters, i.e. '2001-07-29T12:38:00.000000' + NULL.
*
* The 'subseconds' flag controls whenther the sub second portion of the
* time is included or not.
*
* @param dltime The dltime_t time value
* @param isotimestr Returned ISO time string, must have room for 27 characters
* @param subseconds Flag to control the inclusion of subseconds
*
* @return A pointer to the resulting string or NULL on error.
***************************************************************************/
char *
dl_dltime2isotimestr (dltime_t dltime, char *isotimestr, int8_t subseconds)
{
struct tm tms;
int64_t isec;
int ifract;
int ret;
if (isotimestr == NULL)
return NULL;
/* Reduce to Unix/POSIX epoch time and fractional seconds */
isec = DL_DLTIME2EPOCH (dltime);
ifract = (int)(dltime - (isec * DLTMODULUS));
/* Adjust for negative epoch times */
if (dltime < 0 && ifract != 0)
{
isec -= 1;
ifract = DLTMODULUS - (-ifract);
}
if (!(dl_gmtime64_r (&isec, &tms)))
return NULL;
if (subseconds)
/* Assuming ifract has at least microsecond precision */
ret = snprintf (isotimestr, 27, "%4d-%02d-%02dT%02d:%02d:%02d.%06d",
tms.tm_year + 1900, tms.tm_mon + 1, tms.tm_mday,
tms.tm_hour, tms.tm_min, tms.tm_sec, ifract);
else
ret = snprintf (isotimestr, 20, "%4d-%02d-%02dT%02d:%02d:%02d",
tms.tm_year + 1900, tms.tm_mon + 1, tms.tm_mday,
tms.tm_hour, tms.tm_min, tms.tm_sec);
if (ret != 26 && ret != 19)
return NULL;
else
return isotimestr;
} /* End of dl_dltime2isotimestr() */
/***********************************************************************/ /**
* @brief Generate an time string in month-day format from a dltime_t
*
* Build a time string in month-day format from a high precision
* epoch time.
*
* The provided mdtimestr must have enough room for the resulting time
* string of 27 characters, i.e. '2001-07-29 12:38:00.000000' + NULL.
*
* The 'subseconds' flag controls whenther the sub second portion of the
* time is included or not.
*
* @param dltime The dltime_t time value
* @param mdtimestr Returned time string, must have room for 27 characters
* @param subseconds Flag to control the inclusion of subseconds
*
* @return A pointer to the resulting string or NULL on error.
***************************************************************************/
char *
dl_dltime2mdtimestr (dltime_t dltime, char *mdtimestr, int8_t subseconds)
{
struct tm tms;
int64_t isec;
int ifract;
int ret;
if (mdtimestr == NULL)
return NULL;
/* Reduce to Unix/POSIX epoch time and fractional seconds */
isec = DL_DLTIME2EPOCH (dltime);
ifract = (int)(dltime - (isec * DLTMODULUS));
/* Adjust for negative epoch times */
if (dltime < 0 && ifract != 0)
{
isec -= 1;
ifract = DLTMODULUS - (-ifract);
}
if (!(dl_gmtime64_r (&isec, &tms)))
return NULL;
if (subseconds)
/* Assuming ifract has at least microsecond precision */
ret = snprintf (mdtimestr, 27, "%4d-%02d-%02d %02d:%02d:%02d.%06d",
tms.tm_year + 1900, tms.tm_mon + 1, tms.tm_mday,
tms.tm_hour, tms.tm_min, tms.tm_sec, ifract);
else
ret = snprintf (mdtimestr, 20, "%4d-%02d-%02d %02d:%02d:%02d",
tms.tm_year + 1900, tms.tm_mon + 1, tms.tm_mday,
tms.tm_hour, tms.tm_min, tms.tm_sec);
if (ret != 26 && ret != 19)
return NULL;
else
return mdtimestr;
} /* End of dl_dltime2mdtimestr() */
/***********************************************************************/ /**
* @brief Generate an time string in SEED format from a dltime_t
*
* Build a SEED (day-of-year) time string from a high precision epoch time.
*
* The provided seedtimestr must have enough room for the resulting time
* string of 25 characters, i.e. '2001,195,12:38:00.000000\n'.
*
* The 'subseconds' flag controls whenther the sub second portion of the
* time is included or not.
*
* @param dltime The dltime_t time value
* @param seedtimestr Returned time string, must have room for 25 characters
* @param subseconds Flag to control the inclusion of subseconds
*
* @return A pointer to the resulting string or NULL on error.
***************************************************************************/
char *
dl_dltime2seedtimestr (dltime_t dltime, char *seedtimestr, int8_t subseconds)
{
struct tm tms;
int64_t isec;
int ifract;
int ret;
if (seedtimestr == NULL)
return NULL;
/* Reduce to Unix/POSIX epoch time and fractional seconds */
isec = DL_DLTIME2EPOCH (dltime);
ifract = (int)(dltime - (isec * DLTMODULUS));
/* Adjust for negative epoch times */
if (dltime < 0 && ifract != 0)
{
isec -= 1;
ifract = DLTMODULUS - (-ifract);
}
if (!(dl_gmtime64_r (&isec, &tms)))
return NULL;
if (subseconds)
/* Assuming ifract has at least microsecond precision */
ret = snprintf (seedtimestr, 25, "%4d,%03d,%02d:%02d:%02d.%06d",
tms.tm_year + 1900, tms.tm_yday + 1,
tms.tm_hour, tms.tm_min, tms.tm_sec, ifract);
else
/* Assuming ifract has at least microsecond precision */
ret = snprintf (seedtimestr, 18, "%4d,%03d,%02d:%02d:%02d",
tms.tm_year + 1900, tms.tm_yday + 1,
tms.tm_hour, tms.tm_min, tms.tm_sec);
if (ret != 24 && ret != 17)
return NULL;
else
return seedtimestr;
} /* End of dl_dltime2seedtimestr() */
/***************************************************************************
* INTERNAL Convert specified date-time values to a high precision epoch time.
*
* This is an internal version which does no range checking, it is
* assumed that checking the range for each value has already been
* done.
*
* Returns dltime_t time value.
***************************************************************************/
static dltime_t
time2dltime_int (int year, int yday, int hour, int min, int sec, int usec)
{
dltime_t dltime;
int32_t shortyear;
int32_t a4, a100, a400;
int32_t intervening_leap_days;
int32_t days;
shortyear = year - 1900;
a4 = (shortyear >> 2) + 475 - !(shortyear & 3);
a100 = a4 / 25 - (a4 % 25 < 0);
a400 = a100 >> 2;
intervening_leap_days = (a4 - 492) - (a100 - 19) + (a400 - 4);
days = (365 * (shortyear - 70) + intervening_leap_days + (yday - 1));
dltime = (dltime_t) (60 * (60 * ((dltime_t)24 * days + hour) + min) + sec) * DLTMODULUS + usec;
return dltime;
} /* End of time2dltime_int() */
/***********************************************************************/ /**
* @brief Convert specified time values to a dltime_t value
*
* Convert specified time values to a high precision epoch time, a
* dltime_t value. The routine will range check all the input
* parameters.
*
* @param year Year (1900 - 2100)
* @param day Day (1 - 366)
* @param hour Hour (0 - 23)
* @param min Minute (0 - 59)
* @param sec Second (0 - 60)
* @param usec Microsecond (0 - 999999)
*
* @return dltime_t time value on success and DLTERROR on error.
***************************************************************************/
dltime_t
dl_time2dltime (int year, int day, int hour, int min, int sec, int usec)
{
if (year < 1900 || year > 2100)
{
dl_log (2, 0, "dl_time2dltime(): Error with year value: %d\n", year);
return DLTERROR;
}
if (day < 1 || day > 366)
{
dl_log (2, 0, "dl_time2dltime(): Error with day value: %d\n", day);
return DLTERROR;
}
if (hour < 0 || hour > 23)
{
dl_log (2, 0, "dl_time2dltime(): Error with hour value: %d\n", hour);
return DLTERROR;
}
if (min < 0 || min > 59)
{
dl_log (2, 0, "dl_time2dltime(): Error with minute value: %d\n", min);
return DLTERROR;
}
if (sec < 0 || sec > 60)
{
dl_log (2, 0, "dl_time2dltime(): Error with second value: %d\n", sec);
return DLTERROR;
}
if (usec < 0 || usec > 999999)
{
dl_log (2, 0, "dl_time2dltime(): Error with microsecond value: %d\n", usec);
return DLTERROR;
}
return time2dltime_int (year, day, hour, min, sec, usec);
} /* End of dl_time2dltime() */
/***********************************************************************/ /**
* @brief Convert a SEED time string to a dltime_t value
*
* Convert a SEED time string to a high precision epoch time. SEED
* time format is "YYYY[,DDD,HH,MM,SS.FFFFFF]", the delimiter can be a
* comma [,], colon [:] or period [.] except for the fractional
* seconds which must start with a period [.].
*
* The time string can be "short" in which case the omitted values are
* assumed to be zero (with the exception of DDD which is assumed to
* be 1): "YYYY,DDD,HH" assumes MM, SS and FFFF are 0. The year is
* required, otherwise there wouldn't be much for a date.
*
* Ranges are checked for each time value.
*
* @param seedtimestr SEED time string to convert
*
* @return dltime_t time value on success and DLTERROR on error.
***************************************************************************/
dltime_t
dl_seedtimestr2dltime (char *seedtimestr)
{
int fields;
int year = 0;
int day = 1;
int hour = 0;
int min = 0;
int sec = 0;
float fusec = 0.0;
int usec = 0;
fields = sscanf (seedtimestr, "%d%*[,:.]%d%*[,:.]%d%*[,:.]%d%*[,:.]%d%f",
&year, &day, &hour, &min, &sec, &fusec);
/* Convert fractional seconds to microseconds */
if (fusec != 0.0)
{
usec = (int)(fusec * 1000000.0 + 0.5);
}
if (fields < 1)
{
dl_log (2, 0, "dl_seedtimestr2dltime(): Error converting time string: %s\n", seedtimestr);
return DLTERROR;
}
if (year < 1900 || year > 3000)
{
dl_log (2, 0, "dl_seedtimestr2dltime(): Error with year value: %d\n", year);
return DLTERROR;
}
if (day < 1 || day > 366)
{
dl_log (2, 0, "dl_seedtimestr2dltime(): Error with day value: %d\n", day);
return DLTERROR;
}
if (hour < 0 || hour > 23)
{
dl_log (2, 0, "dl_seedtimestr2dltime(): Error with hour value: %d\n", hour);
return DLTERROR;
}
if (min < 0 || min > 59)
{
dl_log (2, 0, "dl_seedtimestr2dltime(): Error with minute value: %d\n", min);
return DLTERROR;
}
if (sec < 0 || sec > 60)
{
dl_log (2, 0, "dl_seedtimestr2dltime(): Error with second value: %d\n", sec);
return DLTERROR;
}
if (usec < 0 || usec > 999999)
{
dl_log (2, 0, "dl_seedtimestr2dltime(): Error with fractional second value: %d\n", usec);
return DLTERROR;
}
return time2dltime_int (year, day, hour, min, sec, usec);
} /* End of dl_seedtimestr2dltime() */
/***********************************************************************/ /**
* @brief Convert a time string to a dltime_t value
*
* Convert a generic time string to a high precision epoch time.
* SEED time format is "YYYY[/MM/DD HH:MM:SS.FFFF]", the delimiter can
* be a dash [-], slash [/], colon [:], or period [.] and between the
* date and time a 'T' or a space may be used. The fracttional
* seconds must begin with a period [.].
*
* The time string can be "short" in which case the omitted values are
* assumed to be zero (with the exception of month and day which are
* assumed to be 1): "YYYY/MM/DD" assumes HH, MM, SS and FFFF are 0.
* The year is required, otherwise there wouldn't be much for a date.
*
* Ranges are checked for each time value.
*
* @param timestr Time string to convert
*
* @return dltime_t time value on success and DLTERROR on error.
***************************************************************************/
dltime_t
dl_timestr2dltime (char *timestr)
{
int fields;
int year = 0;
int mon = 1;
int mday = 1;
int day = 1;
int hour = 0;
int min = 0;
int sec = 0;
float fusec = 0.0;
int usec = 0;
fields = sscanf (timestr, "%d%*[-/:.]%d%*[-/:.]%d%*[-/:.T ]%d%*[-/:.]%d%*[- /:.]%d%f",
&year, &mon, &mday, &hour, &min, &sec, &fusec);
/* Convert fractional seconds to microseconds */
if (fusec != 0.0)
{
usec = (int)(fusec * 1000000.0 + 0.5);
}
if (fields < 1)
{
dl_log (2, 0, "dl_timestr2dltime(): Error converting time string: %s\n", timestr);
return DLTERROR;
}
if (year < 1900 || year > 3000)
{
dl_log (2, 0, "dl_timestr2dltime(): Error with year value: %d\n", year);
return DLTERROR;
}
if (mon < 1 || mon > 12)
{
dl_log (2, 0, "dl_timestr2dltime(): Error with month value: %d\n", mon);
return DLTERROR;
}
if (mday < 1 || mday > 31)
{
dl_log (2, 0, "dl_timestr2dltime(): Error with day value: %d\n", mday);
return DLTERROR;
}
/* Convert month and day-of-month to day-of-year */
if (dl_md2doy (year, mon, mday, &day))
{
return DLTERROR;
}
if (hour < 0 || hour > 23)
{
dl_log (2, 0, "dl_timestr2dltime(): Error with hour value: %d\n", hour);
return DLTERROR;
}
if (min < 0 || min > 59)
{
dl_log (2, 0, "dl_timestr2dltime(): Error with minute value: %d\n", min);
return DLTERROR;
}
if (sec < 0 || sec > 60)
{
dl_log (2, 0, "dl_timestr2dltime(): Error with second value: %d\n", sec);
return DLTERROR;
}
if (usec < 0 || usec > 999999)
{
dl_log (2, 0, "dl_timestr2dltime(): Error with fractional second value: %d\n", usec);
return DLTERROR;
}
return time2dltime_int (year, day, hour, min, sec, usec);
} /* End of dl_timestr2dltime() */