forked from EarthScope/libmseed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
genutils.c
1731 lines (1491 loc) · 46.6 KB
/
genutils.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
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/***************************************************************************
* genutils.c
*
* Generic utility routines
*
* Written by Chad Trabant
* ORFEUS/EC-Project MEREDIAN
* IRIS Data Management Center
*
* modified: 2017.053
***************************************************************************/
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include "libmseed.h"
static hptime_t ms_time2hptime_int (int year, int day, int hour,
int min, int sec, int usec);
static struct tm *ms_gmtime_r (int64_t *timep, struct tm *result);
/* A constant number of seconds between the NTP and Posix/Unix time epoch */
#define NTPPOSIXEPOCHDELTA 2208988800LL
/* Global variable to hold a leap second list */
LeapSecond *leapsecondlist = NULL;
/***************************************************************************
* ms_recsrcname:
*
* Generate a source name string for a specified raw data record in
* the format: 'NET_STA_LOC_CHAN' or, if the quality flag is true:
* 'NET_STA_LOC_CHAN_QUAL'. The passed srcname must have enough room
* for the resulting string.
*
* Returns a pointer to the resulting string or NULL on error.
***************************************************************************/
char *
ms_recsrcname (char *record, char *srcname, flag quality)
{
struct fsdh_s *fsdh;
char network[6];
char station[6];
char location[6];
char channel[6];
if (!record)
return NULL;
fsdh = (struct fsdh_s *)record;
ms_strncpclean (network, fsdh->network, 2);
ms_strncpclean (station, fsdh->station, 5);
ms_strncpclean (location, fsdh->location, 2);
ms_strncpclean (channel, fsdh->channel, 3);
/* Build the source name string including the quality indicator*/
if (quality)
sprintf (srcname, "%s_%s_%s_%s_%c",
network, station, location, channel, fsdh->dataquality);
/* Build the source name string without the quality indicator*/
else
sprintf (srcname, "%s_%s_%s_%s", network, station, location, channel);
return srcname;
} /* End of ms_recsrcname() */
/***************************************************************************
* ms_splitsrcname:
*
* Split srcname into separate components: "NET_STA_LOC_CHAN[_QUAL]".
* Memory for each component must already be allocated. If a specific
* component is not desired set the appropriate argument to NULL.
*
* Returns 0 on success and -1 on error.
***************************************************************************/
int
ms_splitsrcname (char *srcname, char *net, char *sta, char *loc, char *chan,
char *qual)
{
char *id;
char *ptr, *top, *next;
int sepcnt = 0;
if (!srcname)
return -1;
/* Verify number of separating underscore characters */
id = srcname;
while ((id = strchr (id, '_')))
{
id++;
sepcnt++;
}
/* Either 3 or 4 separating underscores are required */
if (sepcnt != 3 && sepcnt != 4)
{
return -1;
}
/* Duplicate srcname */
if (!(id = strdup (srcname)))
{
ms_log (2, "ms_splitsrcname(): Error duplicating srcname string");
return -1;
}
/* Network */
top = id;
if ((ptr = strchr (top, '_')))
{
next = ptr + 1;
*ptr = '\0';
if (net)
strcpy (net, top);
top = next;
}
/* Station */
if ((ptr = strchr (top, '_')))
{
next = ptr + 1;
*ptr = '\0';
if (sta)
strcpy (sta, top);
top = next;
}
/* Location */
if ((ptr = strchr (top, '_')))
{
next = ptr + 1;
*ptr = '\0';
if (loc)
strcpy (loc, top);
top = next;
}
/* Channel & optional Quality */
if ((ptr = strchr (top, '_')))
{
next = ptr + 1;
*ptr = '\0';
if (chan)
strcpy (chan, top);
top = next;
/* Quality */
if (*top && qual)
{
/* Quality is a single character */
*qual = *top;
}
}
/* Otherwise only Channel */
else if (*top && chan)
{
strcpy (chan, top);
}
/* Free duplicated stream ID */
if (id)
free (id);
return 0;
} /* End of ms_splitsrcname() */
/***************************************************************************
* ms_strncpclean:
*
* Copy up to 'length' characters from 'source' to 'dest' while
* removing all spaces. The result is left justified and always null
* terminated. The destination string must have enough room needed
* for the non-space characters within 'length' and the null
* terminator, a maximum of 'length + 1'.
*
* Returns the number of characters (not including the null terminator) in
* the destination string.
***************************************************************************/
int
ms_strncpclean (char *dest, const char *source, int length)
{
int sidx, didx;
if (!dest)
return 0;
if (!source)
{
*dest = '\0';
return 0;
}
for (sidx = 0, didx = 0; sidx < length; sidx++)
{
if (*(source + sidx) == '\0')
{
break;
}
if (*(source + sidx) != ' ')
{
*(dest + didx) = *(source + sidx);
didx++;
}
}
*(dest + didx) = '\0';
return didx;
} /* End of ms_strncpclean() */
/***************************************************************************
* ms_strncpcleantail:
*
* Copy up to 'length' characters from 'source' to 'dest' without any
* trailing spaces. The result is left justified and always null
* terminated. The destination string must have enough room needed
* for the characters within 'length' and the null terminator, a
* maximum of 'length + 1'.
*
* Returns the number of characters (not including the null terminator) in
* the destination string.
***************************************************************************/
int
ms_strncpcleantail (char *dest, const char *source, int length)
{
int idx, pretail;
if (!dest)
return 0;
if (!source)
{
*dest = '\0';
return 0;
}
*(dest + length) = '\0';
pretail = 0;
for (idx = length - 1; idx >= 0; idx--)
{
if (!pretail && *(source + idx) == ' ')
{
*(dest + idx) = '\0';
}
else
{
pretail++;
*(dest + idx) = *(source + idx);
}
}
return pretail;
} /* End of ms_strncpcleantail() */
/***************************************************************************
* ms_strncpopen:
*
* Copy 'length' characters from 'source' to 'dest', padding the right
* side with spaces and leave open-ended. The result is left
* justified and *never* null terminated (the open-ended part). The
* destination string must have enough room for 'length' characters.
*
* Returns the number of characters copied from the source string.
***************************************************************************/
int
ms_strncpopen (char *dest, const char *source, int length)
{
int didx;
int dcnt = 0;
int term = 0;
if (!dest)
return 0;
if (!source)
{
for (didx = 0; didx < length; didx++)
{
*(dest + didx) = ' ';
}
return 0;
}
for (didx = 0; didx < length; didx++)
{
if (!term)
if (*(source + didx) == '\0')
term = 1;
if (!term)
{
*(dest + didx) = *(source + didx);
dcnt++;
}
else
{
*(dest + didx) = ' ';
}
}
return dcnt;
} /* End of ms_strncpopen() */
/***************************************************************************
* ms_doy2md:
*
* Compute the month and day-of-month from a year and day-of-year.
*
* Year is expected to be in the range 1800-5000, 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.
*
* Returns 0 on success and -1 on error.
***************************************************************************/
int
ms_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 < 1800 || year > 5000)
{
ms_log (2, "ms_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)
{
ms_log (2, "ms_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 ms_doy2md() */
/***************************************************************************
* ms_md2doy:
*
* Compute the day-of-year from a year, month and day-of-month.
*
* Year is expected to be in the range 1800-5000, 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.
*
* Returns 0 on success and -1 on error.
***************************************************************************/
int
ms_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 < 1800 || year > 5000)
{
ms_log (2, "ms_md2doy(): year (%d) is out of range\n", year);
return -1;
}
if (month < 1 || month > 12)
{
ms_log (2, "ms_md2doy(): month (%d) is out of range\n", month);
return -1;
}
if (mday < 1 || mday > 31)
{
ms_log (2, "ms_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])
{
ms_log (2, "ms_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 ms_md2doy() */
/***************************************************************************
* ms_btime2hptime:
*
* Convert a binary SEED time structure to a high precision epoch time
* (1/HPTMODULUS second ticks from the epoch). The algorithm used is
* a specific version of a generalized function in GNU glibc.
*
* Returns a high precision epoch time on success and HPTERROR on
* error.
***************************************************************************/
hptime_t
ms_btime2hptime (BTime *btime)
{
hptime_t hptime;
int shortyear;
int a4, a100, a400;
int intervening_leap_days;
int days;
if (!btime)
return HPTERROR;
shortyear = btime->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 + (btime->day - 1));
hptime = (hptime_t) (60 * (60 * ((hptime_t)24 * days + btime->hour) + btime->min) + btime->sec) * HPTMODULUS + (btime->fract * (HPTMODULUS / 10000));
return hptime;
} /* End of ms_btime2hptime() */
/***************************************************************************
* ms_btime2isotimestr:
*
* Build a time string in ISO recommended format from a BTime struct.
*
* The provided isostimestr must have enough room for the resulting time
* string of 25 characters, i.e. '2001-07-29T12:38:00.0000' + NULL.
*
* Returns a pointer to the resulting string or NULL on error.
***************************************************************************/
char *
ms_btime2isotimestr (BTime *btime, char *isotimestr)
{
int month = 0;
int mday = 0;
int ret;
if (!isotimestr)
return NULL;
if (ms_doy2md (btime->year, btime->day, &month, &mday))
{
ms_log (2, "ms_btime2isotimestr(): Error converting year %d day %d\n",
btime->year, btime->day);
return NULL;
}
ret = snprintf (isotimestr, 25, "%4d-%02d-%02dT%02d:%02d:%02d.%04d",
btime->year, month, mday,
btime->hour, btime->min, btime->sec, btime->fract);
if (ret != 24)
return NULL;
else
return isotimestr;
} /* End of ms_btime2isotimestr() */
/***************************************************************************
* ms_btime2mdtimestr:
*
* Build a time string in month-day format from a BTime struct.
*
* The provided isostimestr must have enough room for the resulting time
* string of 25 characters, i.e. '2001-07-29 12:38:00.0000' + NULL.
*
* Returns a pointer to the resulting string or NULL on error.
***************************************************************************/
char *
ms_btime2mdtimestr (BTime *btime, char *mdtimestr)
{
int month = 0;
int mday = 0;
int ret;
if (!mdtimestr)
return NULL;
if (ms_doy2md (btime->year, btime->day, &month, &mday))
{
ms_log (2, "ms_btime2mdtimestr(): Error converting year %d day %d\n",
btime->year, btime->day);
return NULL;
}
ret = snprintf (mdtimestr, 25, "%4d-%02d-%02d %02d:%02d:%02d.%04d",
btime->year, month, mday,
btime->hour, btime->min, btime->sec, btime->fract);
if (ret != 24)
return NULL;
else
return mdtimestr;
} /* End of ms_btime2mdtimestr() */
/***************************************************************************
* ms_btime2seedtimestr:
*
* Build a SEED time string from a BTime struct.
*
* The provided seedtimestr must have enough room for the resulting time
* string of 23 characters, i.e. '2001,195,12:38:00.0000' + NULL.
*
* Returns a pointer to the resulting string or NULL on error.
***************************************************************************/
char *
ms_btime2seedtimestr (BTime *btime, char *seedtimestr)
{
int ret;
if (!seedtimestr)
return NULL;
ret = snprintf (seedtimestr, 23, "%4d,%03d,%02d:%02d:%02d.%04d",
btime->year, btime->day,
btime->hour, btime->min, btime->sec, btime->fract);
if (ret != 22)
return NULL;
else
return seedtimestr;
} /* End of ms_btime2seedtimestr() */
/***************************************************************************
* ms_hptime2tomsusecoffset:
*
* Convert a high precision epoch time to a time value in tenths of
* milliseconds (aka toms) and a microsecond offset (aka usecoffset).
*
* The tenths of milliseconds value will be rounded to the nearest
* value having a microsecond offset value between -50 to +49.
*
* Returns 0 on success and -1 on error.
***************************************************************************/
int
ms_hptime2tomsusecoffset (hptime_t hptime, hptime_t *toms, int8_t *usecoffset)
{
if (toms == NULL || usecoffset == NULL)
return -1;
/* Split time into tenths of milliseconds and microseconds */
*toms = hptime / (HPTMODULUS / 10000);
*usecoffset = (int8_t) (hptime - (*toms * (HPTMODULUS / 10000)));
/* Round tenths and adjust microsecond offset to -50 to +49 range */
if (*usecoffset > 49 && *usecoffset < 100)
{
*toms += 1;
*usecoffset -= 100;
}
else if (*usecoffset < -50 && *usecoffset > -100)
{
*toms -= 1;
*usecoffset += 100;
}
/* Convert tenths of milliseconds to be in hptime_t (HPTMODULUS) units */
*toms *= (HPTMODULUS / 10000);
return 0;
} /* End of ms_hptime2tomsusecoffset() */
/***************************************************************************
* ms_hptime2btime:
*
* Convert a high precision epoch time to a SEED binary time
* structure. The microseconds beyond the 1/10000 second range are
* truncated and *not* rounded, this is intentional and necessary.
*
* Returns 0 on success and -1 on error.
***************************************************************************/
int
ms_hptime2btime (hptime_t hptime, BTime *btime)
{
struct tm tms;
int64_t isec;
int ifract;
int bfract;
if (btime == NULL)
return -1;
/* Reduce to Unix/POSIX epoch time and fractional seconds */
isec = MS_HPTIME2EPOCH (hptime);
ifract = (int)(hptime - (isec * HPTMODULUS));
/* BTime only has 1/10000 second precision */
bfract = ifract / (HPTMODULUS / 10000);
/* Adjust for negative epoch times, round back when needed */
if (hptime < 0 && ifract != 0)
{
/* Isolate microseconds between 1e-4 and 1e-6 precision and adjust bfract if not zero */
if (ifract - bfract * (HPTMODULUS / 10000))
bfract -= 1;
isec -= 1;
bfract = 10000 - (-bfract);
}
if (!(ms_gmtime_r (&isec, &tms)))
return -1;
btime->year = tms.tm_year + 1900;
btime->day = tms.tm_yday + 1;
btime->hour = tms.tm_hour;
btime->min = tms.tm_min;
btime->sec = tms.tm_sec;
btime->unused = 0;
btime->fract = (uint16_t)bfract;
return 0;
} /* End of ms_hptime2btime() */
/***************************************************************************
* ms_hptime2isotimestr:
*
* Build a time string in ISO recommended format from a high precision
* epoch time.
*
* 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.
*
* Returns a pointer to the resulting string or NULL on error.
***************************************************************************/
char *
ms_hptime2isotimestr (hptime_t hptime, char *isotimestr, flag 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 = MS_HPTIME2EPOCH (hptime);
ifract = (int)(hptime - (isec * HPTMODULUS));
/* Adjust for negative epoch times */
if (hptime < 0 && ifract != 0)
{
isec -= 1;
ifract = HPTMODULUS - (-ifract);
}
if (!(ms_gmtime_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 ms_hptime2isotimestr() */
/***************************************************************************
* ms_hptime2mdtimestr:
*
* 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.
*
* Returns a pointer to the resulting string or NULL on error.
***************************************************************************/
char *
ms_hptime2mdtimestr (hptime_t hptime, char *mdtimestr, flag 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 = MS_HPTIME2EPOCH (hptime);
ifract = (int)(hptime - (isec * HPTMODULUS));
/* Adjust for negative epoch times */
if (hptime < 0 && ifract != 0)
{
isec -= 1;
ifract = HPTMODULUS - (-ifract);
}
if (!(ms_gmtime_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 ms_hptime2mdtimestr() */
/***************************************************************************
* ms_hptime2seedtimestr:
*
* Build a SEED 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.
*
* Returns a pointer to the resulting string or NULL on error.
***************************************************************************/
char *
ms_hptime2seedtimestr (hptime_t hptime, char *seedtimestr, flag 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 = MS_HPTIME2EPOCH (hptime);
ifract = (int)(hptime - (isec * HPTMODULUS));
/* Adjust for negative epoch times */
if (hptime < 0 && ifract != 0)
{
isec -= 1;
ifract = HPTMODULUS - (-ifract);
}
if (!(ms_gmtime_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
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 ms_hptime2seedtimestr() */
/***************************************************************************
* ms_time2hptime_int:
*
* Convert specified 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 epoch time on success and HPTERROR on error.
***************************************************************************/
static hptime_t
ms_time2hptime_int (int year, int day, int hour, int min, int sec, int usec)
{
BTime btime;
hptime_t hptime;
memset (&btime, 0, sizeof (BTime));
btime.day = 1;
/* Convert integer seconds using ms_btime2hptime */
btime.year = (int16_t)year;
btime.day = (int16_t)day;
btime.hour = (uint8_t)hour;
btime.min = (uint8_t)min;
btime.sec = (uint8_t)sec;
btime.fract = 0;
hptime = ms_btime2hptime (&btime);
if (hptime == HPTERROR)
{
ms_log (2, "ms_time2hptime(): Error converting with ms_btime2hptime()\n");
return HPTERROR;
}
/* Add the microseconds */
hptime += (hptime_t)usec * (1000000 / HPTMODULUS);
return hptime;
} /* End of ms_time2hptime_int() */
/***************************************************************************
* ms_time2hptime:
*
* Convert specified time values to a high precision epoch time. This
* is essentially a frontend for ms_time2hptime that does range
* checking for each input value.
*
* Expected ranges:
* year : 1800 - 5000
* day : 1 - 366
* hour : 0 - 23
* min : 0 - 59
* sec : 0 - 60
* usec : 0 - 999999
*
* Returns epoch time on success and HPTERROR on error.
***************************************************************************/
hptime_t
ms_time2hptime (int year, int day, int hour, int min, int sec, int usec)
{
if (year < 1800 || year > 5000)
{
ms_log (2, "ms_time2hptime(): Error with year value: %d\n", year);
return HPTERROR;
}
if (day < 1 || day > 366)
{
ms_log (2, "ms_time2hptime(): Error with day value: %d\n", day);
return HPTERROR;
}
if (hour < 0 || hour > 23)
{
ms_log (2, "ms_time2hptime(): Error with hour value: %d\n", hour);
return HPTERROR;
}
if (min < 0 || min > 59)
{
ms_log (2, "ms_time2hptime(): Error with minute value: %d\n", min);
return HPTERROR;
}
if (sec < 0 || sec > 60)
{
ms_log (2, "ms_time2hptime(): Error with second value: %d\n", sec);
return HPTERROR;
}
if (usec < 0 || usec > 999999)
{
ms_log (2, "ms_time2hptime(): Error with microsecond value: %d\n", usec);
return HPTERROR;
}
return ms_time2hptime_int (year, day, hour, min, sec, usec);
} /* End of ms_time2hptime() */
/***************************************************************************
* ms_seedtimestr2hptime:
*
* Convert a SEED time string (day-of-year style) to a high precision
* epoch time. The time format expected is
* "YYYY[,DDD,HH,MM,SS.FFFFFF]", the delimiter can be a dash [-],
* comma [,], colon [:] or period [.]. Additionally a [T] or space
* may be used to seprate the day and hour fields. The fractional
* seconds ("FFFFFF") must begin with a period [.] if present.
*
* 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 value.
*
* Returns epoch time on success and HPTERROR on error.
***************************************************************************/
hptime_t
ms_seedtimestr2hptime (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%*[-,:.Tt ]%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)
{
ms_log (2, "ms_seedtimestr2hptime(): Error converting time string: %s\n", seedtimestr);
return HPTERROR;
}
if (year < 1800 || year > 5000)
{
ms_log (2, "ms_seedtimestr2hptime(): Error with year value: %d\n", year);
return HPTERROR;
}
if (day < 1 || day > 366)
{
ms_log (2, "ms_seedtimestr2hptime(): Error with day value: %d\n", day);
return HPTERROR;
}
if (hour < 0 || hour > 23)
{
ms_log (2, "ms_seedtimestr2hptime(): Error with hour value: %d\n", hour);
return HPTERROR;
}
if (min < 0 || min > 59)
{
ms_log (2, "ms_seedtimestr2hptime(): Error with minute value: %d\n", min);
return HPTERROR;
}