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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740
|
/***************************************************************************
* 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;
}
if (sec < 0 || sec > 60)
{
ms_log (2, "ms_seedtimestr2hptime(): Error with second value: %d\n", sec);
return HPTERROR;
}
if (usec < 0 || usec > 999999)
{
ms_log (2, "ms_seedtimestr2hptime(): Error with fractional second value: %d\n", usec);
return HPTERROR;
}
return ms_time2hptime_int (year, day, hour, min, sec, usec);
} /* End of ms_seedtimestr2hptime() */
/***************************************************************************
* ms_timestr2hptime:
*
* Convert a generic time string to a high precision epoch time. The
* time format expected is "YYYY[/MM/DD HH:MM:SS.FFFF]", the delimiter
* can be a dash [-], comma[,], slash [/], colon [:], or period [.].
* Additionally a 'T' or space may be used between the date and time
* 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 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 value.
*
* Returns epoch time on success and HPTERROR on error.
***************************************************************************/
hptime_t
ms_timestr2hptime (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%*[-,/:.Tt ]%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)
{
ms_log (2, "ms_timestr2hptime(): Error converting time string: %s\n", timestr);
return HPTERROR;
}
if (year < 1800 || year > 5000)
{
ms_log (2, "ms_timestr2hptime(): Error with year value: %d\n", year);
return HPTERROR;
}
if (mon < 1 || mon > 12)
{
ms_log (2, "ms_timestr2hptime(): Error with month value: %d\n", mon);
return HPTERROR;
}
if (mday < 1 || mday > 31)
{
ms_log (2, "ms_timestr2hptime(): Error with day value: %d\n", mday);
return HPTERROR;
}
/* Convert month and day-of-month to day-of-year */
if (ms_md2doy (year, mon, mday, &day))
{
return HPTERROR;
}
if (hour < 0 || hour > 23)
{
ms_log (2, "ms_timestr2hptime(): Error with hour value: %d\n", hour);
return HPTERROR;
}
if (min < 0 || min > 59)
{
ms_log (2, "ms_timestr2hptime(): Error with minute value: %d\n", min);
return HPTERROR;
}
if (sec < 0 || sec > 60)
{
ms_log (2, "ms_timestr2hptime(): Error with second value: %d\n", sec);
return HPTERROR;
}
if (usec < 0 || usec > 999999)
{
ms_log (2, "ms_timestr2hptime(): Error with fractional second value: %d\n", usec);
return HPTERROR;
}
return ms_time2hptime_int (year, day, hour, min, sec, usec);
} /* End of ms_timestr2hptime() */
/***************************************************************************
* ms_nomsamprate:
*
* Calculate a sample rate from SEED sample rate factor and multiplier
* as stored in the fixed section header of data records.
*
* Returns the positive sample rate.
***************************************************************************/
double
ms_nomsamprate (int factor, int multiplier)
{
double samprate = 0.0;
if (factor > 0)
samprate = (double)factor;
else if (factor < 0)
samprate = -1.0 / (double)factor;
if (multiplier > 0)
samprate = samprate * (double)multiplier;
else if (multiplier < 0)
samprate = -1.0 * (samprate / (double)multiplier);
return samprate;
} /* End of ms_nomsamprate() */
/***************************************************************************
* ms_readleapseconds:
*
* Read leap seconds from a file indicated by the specified
* environment variable and populate the global leapsecondlist.
*
* Returns positive number of leap seconds read, -1 on file read
* error, and -2 when the environment variable is not set.
***************************************************************************/
int
ms_readleapseconds (char *envvarname)
{
char *filename;
if ((filename = getenv (envvarname)))
{
return ms_readleapsecondfile (filename);
}
return -2;
} /* End of ms_readleapseconds() */
/***************************************************************************
* ms_readleapsecondfile:
*
* Read leap seconds from the specified file and populate the global
* leapsecondlist. The file is expected to be standard IETF leap
* second list format. The list is usually available from:
* https://www.ietf.org/timezones/data/leap-seconds.list
*
* Returns positive number of leap seconds read on success and -1 on error.
***************************************************************************/
int
ms_readleapsecondfile (char *filename)
{
FILE *fp = NULL;
LeapSecond *ls = NULL;
LeapSecond *lastls = NULL;
int64_t expires;
char readline[200];
char *cp;
int64_t leapsecond;
int TAIdelta;
int fields;
int count = 0;
if (!filename)
return -1;
if (!(fp = fopen (filename, "rb")))
{
ms_log (2, "Cannot open leap second file %s: %s\n", filename, strerror (errno));
return -1;
}
/* Free existing leapsecondlist */
while (leapsecondlist != NULL)
{
LeapSecond *next = leapsecondlist->next;
free(leapsecondlist);
leapsecondlist = next;
}
while (fgets (readline, sizeof (readline) - 1, fp))
{
/* Guarantee termination */
readline[sizeof (readline) - 1] = '\0';
/* Terminate string at first newline character if any */
if ((cp = strchr (readline, '\n')))
*cp = '\0';
/* Skip empty lines */
if (!strlen (readline))
continue;
/* Check for and parse expiration date */
if (!strncmp (readline, "#@", 2))
{
expires = 0;
fields = sscanf (readline, "#@ %" SCNd64, &expires);
if (fields == 1)
{
/* Convert expires to Unix epoch */
expires = expires - NTPPOSIXEPOCHDELTA;
/* Compare expire time to current time */
if (time (NULL) > expires)
{
char timestr[100];
ms_hptime2mdtimestr (MS_EPOCH2HPTIME (expires), timestr, 0);
ms_log (1, "Warning: leap second file (%s) has expired as of %s\n",
filename, timestr);
}
}
continue;
}
/* Skip comment lines */
if (*readline == '#')
continue;
fields = sscanf (readline, "%" SCNd64 " %d ", &leapsecond, &TAIdelta);
if (fields == 2)
{
if ((ls = malloc (sizeof (LeapSecond))) == NULL)
{
ms_log (2, "Cannot allocate LeapSecond, out of memory?\n");
return -1;
}
/* Convert NTP epoch time to Unix epoch time and then to HPT */
ls->leapsecond = MS_EPOCH2HPTIME ((leapsecond - NTPPOSIXEPOCHDELTA));
ls->TAIdelta = TAIdelta;
ls->next = NULL;
count++;
/* Add leap second to global list */
if (!leapsecondlist)
{
leapsecondlist = ls;
lastls = ls;
}
else
{
lastls->next = ls;
lastls = ls;
}
}
else
{
ms_log (1, "Unrecognized leap second file line: '%s'\n", readline);
}
}
if (ferror (fp))
{
ms_log (2, "Error reading leap second file (%s): %s\n", filename, strerror (errno));
}
fclose (fp);
return count;
} /* End of ms_readleapsecondfile() */
/***************************************************************************
* ms_reduce_rate:
*
* Reduce the specified sample rate into two "factors" (in some cases
* the second factor is actually a divisor).
*
* Integer rates between 1 and 32767 can be represented exactly.
*
* Integer rates higher than 32767 will be matched as closely as
* possible with the deviation becoming larger as the integers reach
* (32767 * 32767).
*
* Non-integer rates between 32767.0 and 1.0/32767.0 are represented
* exactly when possible and approximated otherwise.
*
* Non-integer rates greater than 32767 or less than 1/32767 are not supported.
*
* Returns 0 on success and -1 on error.
***************************************************************************/
int
ms_reduce_rate (double samprate, int16_t *factor1, int16_t *factor2)
{
int num;
int den;
int32_t intsamprate = (int32_t) (samprate + 0.5);
int32_t searchfactor1;
int32_t searchfactor2;
int32_t closestfactor;
int32_t closestdiff;
int32_t diff;
/* Handle case of integer sample values. */
if (ms_dabs (samprate - intsamprate) < 0.0000001)
{
/* If integer sample rate is less than range of 16-bit int set it directly */
if (intsamprate <= 32767)
{
*factor1 = intsamprate;
*factor2 = 1;
return 0;
}
/* If integer sample rate is within the maximum possible nominal rate */
else if (intsamprate <= (32767 * 32767))
{
/* Determine the closest factors that represent the sample rate.
* The approximation gets worse as the values increase. */
searchfactor1 = (int)(1.0 / ms_rsqrt64 (samprate));
closestdiff = searchfactor1;
closestfactor = searchfactor1;
while ((intsamprate % searchfactor1) != 0)
{
searchfactor1 -= 1;
/* Track the factor that generates the closest match */
searchfactor2 = intsamprate / searchfactor1;
diff = intsamprate - (searchfactor1 * searchfactor2);
if (diff < closestdiff)
{
closestdiff = diff;
closestfactor = searchfactor1;
}
/* If the next iteration would create a factor beyond the limit
* we accept the closest factor */
if ((intsamprate / (searchfactor1 - 1)) > 32767)
{
searchfactor1 = closestfactor;
break;
}
}
searchfactor2 = intsamprate / searchfactor1;
if (searchfactor1 <= 32767 && searchfactor2 <= 32767)
{
*factor1 = searchfactor1;
*factor2 = searchfactor2;
return 0;
}
}
}
/* Handle case of non-integer less than 16-bit int range */
else if (samprate <= 32767.0)
{
/* For samples/seconds, determine, potentially approximate, numerator and denomiator */
ms_ratapprox (samprate, &num, &den, 32767, 1e-8);
/* Negate the factor2 to denote a division operation */
*factor1 = (int16_t)num;
*factor2 = (int16_t)-den;
return 0;
}
return -1;
} /* End of ms_reduce_rate() */
/***************************************************************************
* ms_genfactmult:
*
* Generate an appropriate SEED sample rate factor and multiplier from
* a double precision sample rate.
*
* If the samplerate > 0.0 it is expected to be a rate in SAMPLES/SECOND.
* If the samplerate < 0.0 it is expected to be a period in SECONDS/SAMPLE.
*
* Results use SAMPLES/SECOND notation when sample rate >= 1.0
* Results use SECONDS/SAMPLE notation when samles rates < 1.0
*
* Returns 0 on success and -1 on error or calculation not possible.
***************************************************************************/
int
ms_genfactmult (double samprate, int16_t *factor, int16_t *multiplier)
{
int16_t factor1;
int16_t factor2;
if (!factor || !multiplier)
return -1;
/* Convert sample period to sample rate */
if (samprate < 0.0)
samprate = -1.0 / samprate;
/* Handle special case of zero */
if (samprate == 0.0)
{
*factor = 0;
*multiplier = 0;
return 0;
}
/* Handle sample rates >= 1.0 with the SAMPLES/SECOND representation */
else if (samprate >= 1.0)
{
if (ms_reduce_rate (samprate, &factor1, &factor2) == 0)
{
*factor = factor1;
*multiplier = factor2;
return 0;
}
}
/* Handle sample rates < 1 with the SECONDS/SAMPLE representation */
else
{
/* Reduce rate as a sample period and invert factor/multiplier */
if (ms_reduce_rate (1.0 / samprate, &factor1, &factor2) == 0)
{
*factor = -factor1;
*multiplier = -factor2;
return 0;
}
}
return -1;
} /* End of ms_genfactmult() */
/***************************************************************************
* ms_ratapprox:
*
* Find an approximate rational number for a real through continued
* fraction expansion. Given a double precsion 'real' find a
* numerator (num) and denominator (den) whose absolute values are not
* larger than 'maxval' while trying to reach a specified 'precision'.
*
* Returns the number of iterations performed.
***************************************************************************/
int
ms_ratapprox (double real, int *num, int *den, int maxval, double precision)
{
double realj, preal;
char pos;
int pnum, pden;
int iterations = 1;
int Aj1, Aj2, Bj1, Bj2;
int bj = 0;
int Aj = 0;
int Bj = 1;
if (real >= 0.0)
{
pos = 1;
realj = real;
}
else
{
pos = 0;
realj = -real;
}
preal = realj;
bj = (int)(realj + precision);
realj = 1 / (realj - bj);
Aj = bj;
Aj1 = 1;
Bj = 1;
Bj1 = 0;
*num = pnum = Aj;
*den = pden = Bj;
if (!pos)
*num = -*num;
while (ms_dabs (preal - (double)Aj / (double)Bj) > precision &&
Aj < maxval && Bj < maxval)
{
Aj2 = Aj1;
Aj1 = Aj;
Bj2 = Bj1;
Bj1 = Bj;
bj = (int)(realj + precision);
realj = 1 / (realj - bj);
Aj = bj * Aj1 + Aj2;
Bj = bj * Bj1 + Bj2;
*num = pnum;
*den = pden;
if (!pos)
*num = -*num;
pnum = Aj;
pden = Bj;
iterations++;
}
if (pnum < maxval && pden < maxval)
{
*num = pnum;
*den = pden;
if (!pos)
*num = -*num;
}
return iterations;
}
/***************************************************************************
* ms_bigendianhost:
*
* Determine the byte order of the host machine. Due to the lack of
* portable defines to determine host byte order this run-time test is
* provided. The code below actually tests for little-endianess, the
* only other alternative is assumed to be big endian.
*
* Returns 0 if the host is little endian, otherwise 1.
***************************************************************************/
int
ms_bigendianhost (void)
{
int16_t host = 1;
return !(*((int8_t *)(&host)));
} /* End of ms_bigendianhost() */
/***************************************************************************
* ms_dabs:
*
* Determine the absolute value of an input double, actually just test
* if the input double is positive multiplying by -1.0 if not and
* return it.
*
* Returns the positive value of input double.
***************************************************************************/
double
ms_dabs (double val)
{
if (val < 0.0)
val *= -1.0;
return val;
} /* End of ms_dabs() */
/***************************************************************************
* ms_rsqrt64:
*
* An optimized reciprocal square root calculation from:
* Matthew Robertson (2012). "A Brief History of InvSqrt"
* https://cs.uwaterloo.ca/~m32rober/rsqrt.pdf
*
* Further reference and description:
* https://en.wikipedia.org/wiki/Fast_inverse_square_root
*
* Modifications:
* Add 2 more iterations of Newton's method to increase accuracy,
* specifically for large values.
* Use memcpy instead of assignment through differing pointer types.
*
* Returns 0 if the host is little endian, otherwise 1.
***************************************************************************/
double
ms_rsqrt64 (double val)
{
uint64_t i;
double x2;
double y;
x2 = val * 0.5;
y = val;
memcpy (&i, &y, sizeof(i));
i = 0x5fe6eb50c7b537a9ULL - (i >> 1);
memcpy (&y, &i, sizeof(y));
y = y * (1.5 - (x2 * y * y));
y = y * (1.5 - (x2 * y * y));
y = y * (1.5 - (x2 * y * y));
return y;
} /* End of ms_rsqrt64() */
/***************************************************************************
* ms_gmtime_r:
*
* An internal version of gmtime_r() that is 64-bit compliant and
* works with years beyond 2038.
*
* The original was called pivotal_gmtime_r() by Paul Sheer, all
* required copyright and other hoohas are below. Modifications were
* made to integrate the original to this code base, avoid name
* collisions and formatting so I could read it.
*
* Returns a pointer to the populated tm struct on success and NULL on error.
***************************************************************************/
/* pivotal_gmtime_r - a replacement for gmtime/localtime/mktime
that works around the 2038 bug on 32-bit
systems. (Version 4)
Copyright (C) 2009 Paul Sheer
Redistribution and use in source form, with or without modification,
is permitted provided that the above copyright notice, this list of
conditions, the following disclaimer, and the following char array
are retained.
Redistribution and use in binary form must reproduce an
acknowledgment: 'With software provided by http://2038bug.com/' in
the documentation and/or other materials provided with the
distribution, and wherever such acknowledgments are usually
accessible in Your program.
This software is provided "AS IS" and WITHOUT WARRANTY, either
express or implied, including, without limitation, the warranties of
NON-INFRINGEMENT, MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY OF THIS SOFTWARE IS WITH
YOU. Under no circumstances and under no legal theory, whether in
tort (including negligence), contract, or otherwise, shall the
copyright owners be liable for any direct, indirect, special,
incidental, or consequential damages of any character arising as a
result of the use of this software including, without limitation,
damages for loss of goodwill, work stoppage, computer failure or
malfunction, or any and all other commercial damages or losses. This
limitation of liability shall not apply to liability for death or
personal injury resulting from copyright owners' negligence to the
extent applicable law prohibits such limitation. Some jurisdictions
do not allow the exclusion or limitation of incidental or
consequential damages, so this exclusion and limitation may not apply
to You.
*/
const char pivotal_gmtime_r_stamp_lm[] =
"pivotal_gmtime_r. Copyright (C) 2009 Paul Sheer. Terms and "
"conditions apply. Visit http://2038bug.com/ for more info.";
static const int tm_days[4][13] = {
{31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31},
{31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31},
{0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334, 365},
{0, 31, 60, 91, 121, 152, 182, 213, 244, 274, 305, 335, 366},
};
#define TM_LEAP_CHECK(n) ((!(((n) + 1900) % 400) || (!(((n) + 1900) % 4) && (((n) + 1900) % 100))) != 0)
#define TM_WRAP(a, b, m) ((a) = ((a) < 0) ? ((b)--, (a) + (m)) : (a))
static struct tm *
ms_gmtime_r (int64_t *timep, struct tm *result)
{
int v_tm_sec, v_tm_min, v_tm_hour, v_tm_mon, v_tm_wday, v_tm_tday;
int leap;
long m;
int64_t tv;
if (!timep || !result)
return NULL;
tv = *timep;
v_tm_sec = ((int64_t)tv % (int64_t)60);
tv /= 60;
v_tm_min = ((int64_t)tv % (int64_t)60);
tv /= 60;
v_tm_hour = ((int64_t)tv % (int64_t)24);
tv /= 24;
v_tm_tday = (int)tv;
TM_WRAP (v_tm_sec, v_tm_min, 60);
TM_WRAP (v_tm_min, v_tm_hour, 60);
TM_WRAP (v_tm_hour, v_tm_tday, 24);
if ((v_tm_wday = (v_tm_tday + 4) % 7) < 0)
v_tm_wday += 7;
m = (long)v_tm_tday;
if (m >= 0)
{
result->tm_year = 70;
leap = TM_LEAP_CHECK (result->tm_year);
while (m >= (long)tm_days[leap + 2][12])
{
m -= (long)tm_days[leap + 2][12];
result->tm_year++;
leap = TM_LEAP_CHECK (result->tm_year);
}
v_tm_mon = 0;
while (m >= (long)tm_days[leap][v_tm_mon])
{
m -= (long)tm_days[leap][v_tm_mon];
v_tm_mon++;
}
}
else
{
result->tm_year = 69;
leap = TM_LEAP_CHECK (result->tm_year);
while (m < (long)-tm_days[leap + 2][12])
{
m += (long)tm_days[leap + 2][12];
result->tm_year--;
leap = TM_LEAP_CHECK (result->tm_year);
}
v_tm_mon = 11;
while (m < (long)-tm_days[leap][v_tm_mon])
{
m += (long)tm_days[leap][v_tm_mon];
v_tm_mon--;
}
m += (long)tm_days[leap][v_tm_mon];
}
result->tm_mday = (int)m + 1;
result->tm_yday = tm_days[leap + 2][v_tm_mon] + m;
result->tm_sec = v_tm_sec;
result->tm_min = v_tm_min;
result->tm_hour = v_tm_hour;
result->tm_mon = v_tm_mon;
result->tm_wday = v_tm_wday;
return result;
} /* End of ms_gmtime_r() */
|