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
|
/** @file
* IPRT - Time.
*/
/*
* Copyright (C) 2006-2025 Oracle and/or its affiliates.
*
* This file is part of VirtualBox base platform packages, as
* available from https://www.virtualbox.org.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation, in version 3 of the
* License.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, see <https://www.gnu.org/licenses>.
*
* The contents of this file may alternatively be used under the terms
* of the Common Development and Distribution License Version 1.0
* (CDDL), a copy of it is provided in the "COPYING.CDDL" file included
* in the VirtualBox distribution, in which case the provisions of the
* CDDL are applicable instead of those of the GPL.
*
* You may elect to license modified versions of this file under the
* terms and conditions of either the GPL or the CDDL or both.
*
* SPDX-License-Identifier: GPL-3.0-only OR CDDL-1.0
*/
#ifndef IPRT_INCLUDED_time_h
#define IPRT_INCLUDED_time_h
#ifndef RT_WITHOUT_PRAGMA_ONCE
# pragma once
#endif
#include <iprt/cdefs.h>
#include <iprt/types.h>
#include <iprt/assertcompile.h>
RT_C_DECLS_BEGIN
/** @defgroup grp_rt_time RTTime - Time
* @ingroup grp_rt
* @{
*/
/** Time Specification.
*
* Use the inline RTTimeSpecGet/Set to operate on structure this so we
* can easily change the representation if required later.
*
* The current representation is in nanoseconds relative to the unix epoch
* (1970-01-01 00:00:00 UTC). This gives us an approximate span from
* 1678 to 2262 without sacrificing the resolution offered by the various
* host OSes (BSD & LINUX 1ns, NT 100ns).
*/
typedef struct RTTIMESPEC
{
/** Nanoseconds since epoch.
* The name is intentially too long to be comfortable to use because you should be
* using inline helpers! */
int64_t i64NanosecondsRelativeToUnixEpoch;
} RTTIMESPEC;
/** @name RTTIMESPEC methods
* @{ */
/**
* Gets the time as nanoseconds relative to the unix epoch.
*
* @returns Nanoseconds relative to unix epoch.
* @param pTime The time spec to interpret.
*/
DECLINLINE(int64_t) RTTimeSpecGetNano(PCRTTIMESPEC pTime)
{
return pTime->i64NanosecondsRelativeToUnixEpoch;
}
/**
* Sets the time give by nanoseconds relative to the unix epoch.
*
* @returns pTime.
* @param pTime The time spec to modify.
* @param i64Nano The new time in nanoseconds.
*/
DECLINLINE(PRTTIMESPEC) RTTimeSpecSetNano(PRTTIMESPEC pTime, int64_t i64Nano)
{
pTime->i64NanosecondsRelativeToUnixEpoch = i64Nano;
return pTime;
}
/**
* Gets the time as microseconds relative to the unix epoch.
*
* @returns microseconds relative to unix epoch.
* @param pTime The time spec to interpret.
*/
DECLINLINE(int64_t) RTTimeSpecGetMicro(PCRTTIMESPEC pTime)
{
return pTime->i64NanosecondsRelativeToUnixEpoch / RT_NS_1US;
}
/**
* Sets the time given by microseconds relative to the unix epoch.
*
* @returns pTime.
* @param pTime The time spec to modify.
* @param i64Micro The new time in microsecond.
*/
DECLINLINE(PRTTIMESPEC) RTTimeSpecSetMicro(PRTTIMESPEC pTime, int64_t i64Micro)
{
pTime->i64NanosecondsRelativeToUnixEpoch = i64Micro * RT_NS_1US;
return pTime;
}
/**
* Gets the time as milliseconds relative to the unix epoch.
*
* @returns milliseconds relative to unix epoch.
* @param pTime The time spec to interpret.
*/
DECLINLINE(int64_t) RTTimeSpecGetMilli(PCRTTIMESPEC pTime)
{
return pTime->i64NanosecondsRelativeToUnixEpoch / RT_NS_1MS;
}
/**
* Sets the time given by milliseconds relative to the unix epoch.
*
* @returns pTime.
* @param pTime The time spec to modify.
* @param i64Milli The new time in milliseconds.
*/
DECLINLINE(PRTTIMESPEC) RTTimeSpecSetMilli(PRTTIMESPEC pTime, int64_t i64Milli)
{
pTime->i64NanosecondsRelativeToUnixEpoch = i64Milli * RT_NS_1MS;
return pTime;
}
/**
* Gets the time as seconds relative to the unix epoch.
*
* @returns seconds relative to unix epoch.
* @param pTime The time spec to interpret.
*/
DECLINLINE(int64_t) RTTimeSpecGetSeconds(PCRTTIMESPEC pTime)
{
return pTime->i64NanosecondsRelativeToUnixEpoch / RT_NS_1SEC;
}
/**
* Sets the time given by seconds relative to the unix epoch.
*
* @returns pTime.
* @param pTime The time spec to modify.
* @param i64Seconds The new time in seconds.
*/
DECLINLINE(PRTTIMESPEC) RTTimeSpecSetSeconds(PRTTIMESPEC pTime, int64_t i64Seconds)
{
pTime->i64NanosecondsRelativeToUnixEpoch = i64Seconds * RT_NS_1SEC;
return pTime;
}
/**
* Makes the time spec absolute like abs() does (i.e. a positive value).
*
* @returns pTime.
* @param pTime The time spec to modify.
*/
DECLINLINE(PRTTIMESPEC) RTTimeSpecAbsolute(PRTTIMESPEC pTime)
{
if (pTime->i64NanosecondsRelativeToUnixEpoch < 0)
pTime->i64NanosecondsRelativeToUnixEpoch = -pTime->i64NanosecondsRelativeToUnixEpoch;
return pTime;
}
/**
* Negates the time.
*
* @returns pTime.
* @param pTime The time spec to modify.
*/
DECLINLINE(PRTTIMESPEC) RTTimeSpecNegate(PRTTIMESPEC pTime)
{
pTime->i64NanosecondsRelativeToUnixEpoch = -pTime->i64NanosecondsRelativeToUnixEpoch;
return pTime;
}
/**
* Adds a time period to the time.
*
* @returns pTime.
* @param pTime The time spec to modify.
* @param pTimeAdd The time spec to add to pTime.
*/
DECLINLINE(PRTTIMESPEC) RTTimeSpecAdd(PRTTIMESPEC pTime, PCRTTIMESPEC pTimeAdd)
{
pTime->i64NanosecondsRelativeToUnixEpoch += pTimeAdd->i64NanosecondsRelativeToUnixEpoch;
return pTime;
}
/**
* Adds a time period give as nanoseconds from the time.
*
* @returns pTime.
* @param pTime The time spec to modify.
* @param i64Nano The time period in nanoseconds.
*/
DECLINLINE(PRTTIMESPEC) RTTimeSpecAddNano(PRTTIMESPEC pTime, int64_t i64Nano)
{
pTime->i64NanosecondsRelativeToUnixEpoch += i64Nano;
return pTime;
}
/**
* Adds a time period give as microseconds from the time.
*
* @returns pTime.
* @param pTime The time spec to modify.
* @param i64Micro The time period in microseconds.
*/
DECLINLINE(PRTTIMESPEC) RTTimeSpecAddMicro(PRTTIMESPEC pTime, int64_t i64Micro)
{
pTime->i64NanosecondsRelativeToUnixEpoch += i64Micro * RT_NS_1US;
return pTime;
}
/**
* Adds a time period give as milliseconds from the time.
*
* @returns pTime.
* @param pTime The time spec to modify.
* @param i64Milli The time period in milliseconds.
*/
DECLINLINE(PRTTIMESPEC) RTTimeSpecAddMilli(PRTTIMESPEC pTime, int64_t i64Milli)
{
pTime->i64NanosecondsRelativeToUnixEpoch += i64Milli * RT_NS_1MS;
return pTime;
}
/**
* Adds a time period give as seconds from the time.
*
* @returns pTime.
* @param pTime The time spec to modify.
* @param i64Seconds The time period in seconds.
*/
DECLINLINE(PRTTIMESPEC) RTTimeSpecAddSeconds(PRTTIMESPEC pTime, int64_t i64Seconds)
{
pTime->i64NanosecondsRelativeToUnixEpoch += i64Seconds * RT_NS_1SEC;
return pTime;
}
/**
* Subtracts a time period from the time.
*
* @returns pTime.
* @param pTime The time spec to modify.
* @param pTimeSub The time spec to subtract from pTime.
*/
DECLINLINE(PRTTIMESPEC) RTTimeSpecSub(PRTTIMESPEC pTime, PCRTTIMESPEC pTimeSub)
{
pTime->i64NanosecondsRelativeToUnixEpoch -= pTimeSub->i64NanosecondsRelativeToUnixEpoch;
return pTime;
}
/**
* Subtracts a time period give as nanoseconds from the time.
*
* @returns pTime.
* @param pTime The time spec to modify.
* @param i64Nano The time period in nanoseconds.
*/
DECLINLINE(PRTTIMESPEC) RTTimeSpecSubNano(PRTTIMESPEC pTime, int64_t i64Nano)
{
pTime->i64NanosecondsRelativeToUnixEpoch -= i64Nano;
return pTime;
}
/**
* Subtracts a time period give as microseconds from the time.
*
* @returns pTime.
* @param pTime The time spec to modify.
* @param i64Micro The time period in microseconds.
*/
DECLINLINE(PRTTIMESPEC) RTTimeSpecSubMicro(PRTTIMESPEC pTime, int64_t i64Micro)
{
pTime->i64NanosecondsRelativeToUnixEpoch -= i64Micro * RT_NS_1US;
return pTime;
}
/**
* Subtracts a time period give as milliseconds from the time.
*
* @returns pTime.
* @param pTime The time spec to modify.
* @param i64Milli The time period in milliseconds.
*/
DECLINLINE(PRTTIMESPEC) RTTimeSpecSubMilli(PRTTIMESPEC pTime, int64_t i64Milli)
{
pTime->i64NanosecondsRelativeToUnixEpoch -= i64Milli * RT_NS_1MS;
return pTime;
}
/**
* Subtracts a time period give as seconds from the time.
*
* @returns pTime.
* @param pTime The time spec to modify.
* @param i64Seconds The time period in seconds.
*/
DECLINLINE(PRTTIMESPEC) RTTimeSpecSubSeconds(PRTTIMESPEC pTime, int64_t i64Seconds)
{
pTime->i64NanosecondsRelativeToUnixEpoch -= i64Seconds * RT_NS_1SEC;
return pTime;
}
/**
* Gives the time in seconds and nanoseconds.
*
* @param pTime The time spec to interpret.
* @param *pi32Seconds Where to store the time period in seconds.
* @param *pi32Nano Where to store the time period in nanoseconds.
*/
DECLINLINE(void) RTTimeSpecGetSecondsAndNano(PRTTIMESPEC pTime, int32_t *pi32Seconds, int32_t *pi32Nano)
{
int64_t i64 = RTTimeSpecGetNano(pTime);
int32_t i32Nano = (int32_t)(i64 % RT_NS_1SEC);
i64 /= RT_NS_1SEC;
if (i32Nano < 0)
{
i32Nano += RT_NS_1SEC;
i64--;
}
*pi32Seconds = (int32_t)i64;
*pi32Nano = i32Nano;
}
/** @def RTTIME_LINUX_KERNEL_PREREQ
* Prerequisite minimum linux kernel version.
* @note Cannot really be moved to iprt/cdefs.h, see the-linux-kernel.h */
/** @def RTTIME_LINUX_KERNEL_PREREQ_LT
* Prerequisite maxium linux kernel version (LT=less-than).
* @note Cannot really be moved to iprt/cdefs.h, see the-linux-kernel.h */
#if defined(RT_OS_LINUX) && defined(LINUX_VERSION_CODE) && defined(KERNEL_VERSION)
# define RTTIME_LINUX_KERNEL_PREREQ(a, b, c) (LINUX_VERSION_CODE >= KERNEL_VERSION(a, b, c))
# define RTTIME_LINUX_KERNEL_PREREQ_LT(a, b, c) (!RTTIME_LINUX_KERNEL_PREREQ(a, b, c))
#else
# define RTTIME_LINUX_KERNEL_PREREQ(a, b, c) 0
# define RTTIME_LINUX_KERNEL_PREREQ_LT(a, b, c) 0
#endif
/* PORTME: Add struct timeval guard macro here. */
#if defined(RTTIME_INCL_TIMEVAL) \
|| defined(_SYS__TIMEVAL_H_) \
|| defined(_SYS_TIME_H) \
|| defined(_TIMEVAL) \
|| defined(_STRUCT_TIMEVAL) \
|| ( defined(RT_OS_LINUX) \
&& defined(_LINUX_TIME_H) \
&& ( !defined(__KERNEL__) \
|| RTTIME_LINUX_KERNEL_PREREQ_LT(5,6,0) /* @bugref{9757} */ ) ) \
|| (defined(RT_OS_NETBSD) && defined(_SYS_TIME_H_))
/**
* Gets the time as POSIX timeval.
*
* @returns pTime.
* @param pTime The time spec to interpret.
* @param pTimeval Where to store the time as POSIX timeval.
*/
DECLINLINE(struct timeval *) RTTimeSpecGetTimeval(PCRTTIMESPEC pTime, struct timeval *pTimeval)
{
int64_t i64 = RTTimeSpecGetMicro(pTime);
int32_t i32Micro = (int32_t)(i64 % RT_US_1SEC);
i64 /= RT_US_1SEC;
if (i32Micro < 0)
{
i32Micro += RT_US_1SEC;
i64--;
}
pTimeval->tv_sec = (time_t)i64;
pTimeval->tv_usec = i32Micro;
return pTimeval;
}
/**
* Sets the time as POSIX timeval.
*
* @returns pTime.
* @param pTime The time spec to modify.
* @param pTimeval Pointer to the POSIX timeval struct with the new time.
*/
DECLINLINE(PRTTIMESPEC) RTTimeSpecSetTimeval(PRTTIMESPEC pTime, const struct timeval *pTimeval)
{
return RTTimeSpecAddMicro(RTTimeSpecSetSeconds(pTime, pTimeval->tv_sec), pTimeval->tv_usec);
}
#endif /* various ways of detecting struct timeval */
/* PORTME: Add struct timespec guard macro here. */
#if defined(RTTIME_INCL_TIMESPEC) \
|| defined(_SYS__TIMESPEC_H_) \
|| defined(TIMEVAL_TO_TIMESPEC) \
|| defined(_TIMESPEC) \
|| ( defined(_STRUCT_TIMESPEC) \
&& ( !defined(RT_OS_LINUX) \
|| !defined(__KERNEL__) \
|| RTTIME_LINUX_KERNEL_PREREQ_LT(5,6,0) /* @bugref{9757} */ ) ) \
|| (defined(RT_OS_NETBSD) && defined(_SYS_TIME_H_))
/**
* Gets the time as POSIX timespec.
*
* @returns pTimespec.
* @param pTime The time spec to interpret.
* @param pTimespec Where to store the time as POSIX timespec.
*/
DECLINLINE(struct timespec *) RTTimeSpecGetTimespec(PCRTTIMESPEC pTime, struct timespec *pTimespec)
{
int64_t i64 = RTTimeSpecGetNano(pTime);
int32_t i32Nano = (int32_t)(i64 % RT_NS_1SEC);
i64 /= RT_NS_1SEC;
if (i32Nano < 0)
{
i32Nano += RT_NS_1SEC;
i64--;
}
pTimespec->tv_sec = (time_t)i64;
pTimespec->tv_nsec = i32Nano;
return pTimespec;
}
/**
* Sets the time as POSIX timespec.
*
* @returns pTime.
* @param pTime The time spec to modify.
* @param pTimespec Pointer to the POSIX timespec struct with the new time.
*/
DECLINLINE(PRTTIMESPEC) RTTimeSpecSetTimespec(PRTTIMESPEC pTime, const struct timespec *pTimespec)
{
return RTTimeSpecAddNano(RTTimeSpecSetSeconds(pTime, pTimespec->tv_sec), pTimespec->tv_nsec);
}
#endif /* various ways of detecting struct timespec */
#if defined(RT_OS_LINUX) && defined(_LINUX_TIME64_H) /* since linux 3.17 */
/**
* Gets the time a linux 64-bit timespec structure.
* @returns pTimespec.
* @param pTime The time spec to modify.
* @param pTimespec Where to store the time as linux 64-bit timespec.
*/
DECLINLINE(struct timespec64 *) RTTimeSpecGetTimespec64(PCRTTIMESPEC pTime, struct timespec64 *pTimespec)
{
int64_t i64 = RTTimeSpecGetNano(pTime);
int32_t i32Nano = (int32_t)(i64 % RT_NS_1SEC);
i64 /= RT_NS_1SEC;
if (i32Nano < 0)
{
i32Nano += RT_NS_1SEC;
i64--;
}
pTimespec->tv_sec = i64;
pTimespec->tv_nsec = i32Nano;
return pTimespec;
}
/**
* Sets the time from a linux 64-bit timespec structure.
* @returns pTime.
* @param pTime The time spec to modify.
* @param pTimespec Pointer to the linux 64-bit timespec struct with the new time.
*/
DECLINLINE(PRTTIMESPEC) RTTimeSpecSetTimespec64(PRTTIMESPEC pTime, const struct timespec64 *pTimespec)
{
return RTTimeSpecAddNano(RTTimeSpecSetSeconds(pTime, pTimespec->tv_sec), pTimespec->tv_nsec);
}
#endif /* RT_OS_LINUX && _LINUX_TIME64_H */
/** The offset of the unix epoch and the base for NT time (in 100ns units).
* Nt time starts at 1601-01-01 00:00:00. */
#define RTTIME_NT_TIME_OFFSET_UNIX (116444736000000000LL)
/**
* Gets the time as NT time.
*
* @returns NT time.
* @param pTime The time spec to interpret.
*/
DECLINLINE(int64_t) RTTimeSpecGetNtTime(PCRTTIMESPEC pTime)
{
return pTime->i64NanosecondsRelativeToUnixEpoch / 100
+ RTTIME_NT_TIME_OFFSET_UNIX;
}
/**
* Sets the time given by Nt time.
*
* @returns pTime.
* @param pTime The time spec to modify.
* @param u64NtTime The new time in Nt time.
*/
DECLINLINE(PRTTIMESPEC) RTTimeSpecSetNtTime(PRTTIMESPEC pTime, uint64_t u64NtTime)
{
pTime->i64NanosecondsRelativeToUnixEpoch =
((int64_t)u64NtTime - RTTIME_NT_TIME_OFFSET_UNIX) * 100;
return pTime;
}
#ifdef _FILETIME_
/**
* Gets the time as NT file time.
*
* @returns pFileTime.
* @param pTime The time spec to interpret.
* @param pFileTime Pointer to NT filetime structure.
*/
DECLINLINE(PFILETIME) RTTimeSpecGetNtFileTime(PCRTTIMESPEC pTime, PFILETIME pFileTime)
{
*((uint64_t *)pFileTime) = RTTimeSpecGetNtTime(pTime);
return pFileTime;
}
/**
* Sets the time as NT file time.
*
* @returns pTime.
* @param pTime The time spec to modify.
* @param pFileTime Where to store the time as Nt file time.
*/
DECLINLINE(PRTTIMESPEC) RTTimeSpecSetNtFileTime(PRTTIMESPEC pTime, const FILETIME *pFileTime)
{
return RTTimeSpecSetNtTime(pTime, *(const uint64_t *)pFileTime);
}
#endif /* _FILETIME_ */
/** The offset to the start of DOS time.
* DOS time starts 1980-01-01 00:00:00. */
#define RTTIME_OFFSET_DOS_TIME (315532800000000000LL)
/**
* Gets the time as seconds relative to the start of dos time.
*
* @returns seconds relative to the start of dos time.
* @param pTime The time spec to interpret.
*/
DECLINLINE(int64_t) RTTimeSpecGetDosSeconds(PCRTTIMESPEC pTime)
{
return (pTime->i64NanosecondsRelativeToUnixEpoch - RTTIME_OFFSET_DOS_TIME)
/ RT_NS_1SEC;
}
/**
* Sets the time given by seconds relative to the start of dos time.
*
* @returns pTime.
* @param pTime The time spec to modify.
* @param i64Seconds The new time in seconds relative to the start of dos time.
*/
DECLINLINE(PRTTIMESPEC) RTTimeSpecSetDosSeconds(PRTTIMESPEC pTime, int64_t i64Seconds)
{
pTime->i64NanosecondsRelativeToUnixEpoch = i64Seconds * RT_NS_1SEC
+ RTTIME_OFFSET_DOS_TIME;
return pTime;
}
/**
* Compare two time specs.
*
* @returns true they are equal.
* @returns false they are not equal.
* @param pTime1 The 1st time spec.
* @param pTime2 The 2nd time spec.
*/
DECLINLINE(bool) RTTimeSpecIsEqual(PCRTTIMESPEC pTime1, PCRTTIMESPEC pTime2)
{
return pTime1->i64NanosecondsRelativeToUnixEpoch == pTime2->i64NanosecondsRelativeToUnixEpoch;
}
/**
* Compare two time specs.
*
* @returns 0 if equal, -1 if @a pLeft is smaller, 1 if @a pLeft is larger.
* @returns false they are not equal.
* @param pLeft The 1st time spec.
* @param pRight The 2nd time spec.
*/
DECLINLINE(int) RTTimeSpecCompare(PCRTTIMESPEC pLeft, PCRTTIMESPEC pRight)
{
if (pLeft->i64NanosecondsRelativeToUnixEpoch == pRight->i64NanosecondsRelativeToUnixEpoch)
return 0;
return pLeft->i64NanosecondsRelativeToUnixEpoch < pRight->i64NanosecondsRelativeToUnixEpoch ? -1 : 1;
}
/**
* Converts a time spec to a ISO date string.
*
* @returns psz on success.
* @returns NULL on buffer underflow.
* @param pTime The time spec.
* @param psz Where to store the string.
* @param cb The size of the buffer.
*/
RTDECL(char *) RTTimeSpecToString(PCRTTIMESPEC pTime, char *psz, size_t cb);
/**
* Attempts to convert an ISO date string to a time structure.
*
* We're a little forgiving with zero padding, unspecified parts, and leading
* and trailing spaces.
*
* @retval pTime on success,
* @retval NULL on failure.
* @param pTime The time spec.
* @param pszString The ISO date string to convert.
*/
RTDECL(PRTTIMESPEC) RTTimeSpecFromString(PRTTIMESPEC pTime, const char *pszString);
/**
* Formats duration as best we can according to ISO-8601, with no fraction.
*
* See RTTimeFormatDurationEx for details.
*
* @returns Number of characters in the output on success. VERR_BUFFER_OVEFLOW
* on failure.
* @param pszDst Pointer to the output buffer. In case of overflow,
* the max number of characters will be written and
* zero terminated, provided @a cbDst isn't zero.
* @param cbDst The size of the output buffer.
* @param pDuration The duration to format.
*/
RTDECL(int) RTTimeFormatDuration(char *pszDst, size_t cbDst, PCRTTIMESPEC pDuration);
/**
* Formats duration as best we can according to ISO-8601.
*
* The returned value is on the form "[-]PnnnnnWnDTnnHnnMnn.fffffffffS", where a
* sequence of 'n' can be between 1 and the given lenght, and all but the
* "nn.fffffffffS" part is optional and will only be outputted when the duration
* is sufficiently large. The code currently does not omit any inbetween
* elements other than the day count (D), so an exactly 7 day duration is
* formatted as "P1WT0H0M0.000000000S" when @a cFractionDigits is 9.
*
* @returns Number of characters in the output on success. VERR_BUFFER_OVEFLOW
* on failure.
* @retval VERR_OUT_OF_RANGE if @a cFractionDigits is too large.
* @param pszDst Pointer to the output buffer. In case of overflow,
* the max number of characters will be written and
* zero terminated, provided @a cbDst isn't zero.
* @param cbDst The size of the output buffer.
* @param pDuration The duration to format.
* @param cFractionDigits Number of digits in the second fraction part. Zero
* for whole no fraction. Max is 9 (nano seconds).
*/
RTDECL(ssize_t) RTTimeFormatDurationEx(char *pszDst, size_t cbDst, PCRTTIMESPEC pDuration, uint32_t cFractionDigits);
/** Max length of a RTTimeFormatDurationEx output string. */
#define RTTIME_DURATION_STR_LEN (sizeof("-P99999W7D23H59M59.123456789S") + 2)
/** @} */
/**
* Exploded time.
*/
typedef struct RTTIME
{
/** The year number. */
int32_t i32Year;
/** The month of the year (1-12). January is 1. */
uint8_t u8Month;
/** The day of the week (0-6). Monday is 0. */
uint8_t u8WeekDay;
/** The day of the year (1-366). January the 1st is 1. */
uint16_t u16YearDay;
/** The day of the month (1-31). */
uint8_t u8MonthDay;
/** Hour of the day (0-23). */
uint8_t u8Hour;
/** The minute of the hour (0-59). */
uint8_t u8Minute;
/** The second of the minute (0-60).
* (u32Nanosecond / 1000000) */
uint8_t u8Second;
/** The nanoseconds of the second (0-999999999). */
uint32_t u32Nanosecond;
/** Flags, of the RTTIME_FLAGS_* \#defines. */
uint32_t fFlags;
/** UTC time offset in minutes (-840-840). Positive for timezones east of
* UTC, negative for zones to the west. Same as what RTTimeLocalDeltaNano
* & RTTimeLocalDeltaNanoFor returns, just different unit. */
int32_t offUTC;
} RTTIME;
AssertCompileSize(RTTIME, 24);
/** Pointer to a exploded time structure. */
typedef RTTIME *PRTTIME;
/** Pointer to a const exploded time structure. */
typedef const RTTIME *PCRTTIME;
/** @name RTTIME::fFlags values.
* @{ */
/** Set if the time is UTC. If clear the time local time. */
#define RTTIME_FLAGS_TYPE_MASK 3
/** the time is UTC time. */
#define RTTIME_FLAGS_TYPE_UTC 2
/** The time is local time. */
#define RTTIME_FLAGS_TYPE_LOCAL 3
/** Set if the time is local and daylight saving time is in effect.
* Not bit is not valid if RTTIME_FLAGS_NO_DST_DATA is set. */
#define RTTIME_FLAGS_DST RT_BIT(4)
/** Set if the time is local and there is no data available on daylight saving time. */
#define RTTIME_FLAGS_NO_DST_DATA RT_BIT(5)
/** Set if the year is a leap year.
* This is mutual exclusiv with RTTIME_FLAGS_COMMON_YEAR. */
#define RTTIME_FLAGS_LEAP_YEAR RT_BIT(6)
/** Set if the year is a common year.
* This is mutual exclusiv with RTTIME_FLAGS_LEAP_YEAR. */
#define RTTIME_FLAGS_COMMON_YEAR RT_BIT(7)
/** The mask of valid flags. */
#define RTTIME_FLAGS_MASK UINT32_C(0xff)
/** @} */
/**
* Gets the current system time (UTC).
*
* @returns pTime.
* @param pTime Where to store the time.
*/
RTDECL(PRTTIMESPEC) RTTimeNow(PRTTIMESPEC pTime);
/**
* Sets the system time.
*
* @returns IPRT status code
* @param pTime The new system time (UTC).
*
* @remarks This will usually fail because changing the wall time is usually
* requires extra privileges.
*/
RTDECL(int) RTTimeSet(PCRTTIMESPEC pTime);
/**
* Explodes a time spec (UTC).
*
* @returns pTime.
* @param pTime Where to store the exploded time.
* @param pTimeSpec The time spec to exploded.
*/
RTDECL(PRTTIME) RTTimeExplode(PRTTIME pTime, PCRTTIMESPEC pTimeSpec);
/**
* Implodes exploded time to a time spec (UTC).
*
* @returns pTime on success.
* @returns NULL if the pTime data is invalid.
* @param pTimeSpec Where to store the imploded UTC time.
* If pTime specifies a time which outside the range, maximum or
* minimum values will be returned.
* @param pTime Pointer to the exploded time to implode.
* The fields u8Month, u8WeekDay and u8MonthDay are not used,
* and all the other fields are expected to be within their
* bounds. Use RTTimeNormalize() to calculate u16YearDay and
* normalize the ranges of the fields.
*/
RTDECL(PRTTIMESPEC) RTTimeImplode(PRTTIMESPEC pTimeSpec, PCRTTIME pTime);
/**
* Normalizes the fields of a time structure.
*
* It is possible to calculate year-day from month/day and vice
* versa. If you adjust any of of these, make sure to zero the
* other so you make it clear which of the fields to use. If
* it's ambiguous, the year-day field is used (and you get
* assertions in debug builds).
*
* All the time fields and the year-day or month/day fields will
* be adjusted for overflows. (Since all fields are unsigned, there
* is no underflows.) It is possible to exploit this for simple
* date math, though the recommended way of doing that to implode
* the time into a timespec and do the math on that.
*
* @returns pTime on success.
* @returns NULL if the data is invalid.
*
* @param pTime The time structure to normalize.
*
* @remarks This function doesn't work with local time, only with UTC time.
*/
RTDECL(PRTTIME) RTTimeNormalize(PRTTIME pTime);
/**
* Gets the current local system time.
*
* @returns pTime.
* @param pTime Where to store the local time.
*/
RTDECL(PRTTIMESPEC) RTTimeLocalNow(PRTTIMESPEC pTime);
/**
* Gets the current delta between UTC and local time.
*
* @code
* RTTIMESPEC LocalTime;
* RTTimeSpecAddNano(RTTimeNow(&LocalTime), RTTimeLocalDeltaNano());
* @endcode
*
* @returns Returns the nanosecond delta between UTC and local time.
*/
RTDECL(int64_t) RTTimeLocalDeltaNano(void);
/**
* Gets the delta between UTC and local time at the given time.
*
* @code
* RTTIMESPEC LocalTime;
* RTTimeNow(&LocalTime);
* RTTimeSpecAddNano(&LocalTime, RTTimeLocalDeltaNanoFor(&LocalTime));
* @endcode
*
* @param pTimeSpec The time spec giving the time to get the delta for.
* @returns Returns the nanosecond delta between UTC and local time.
*/
RTDECL(int64_t) RTTimeLocalDeltaNanoFor(PCRTTIMESPEC pTimeSpec);
/**
* Explodes a time spec to the localized timezone.
*
* @returns pTime.
* @param pTime Where to store the exploded time.
* @param pTimeSpec The time spec to exploded (UTC).
*/
RTDECL(PRTTIME) RTTimeLocalExplode(PRTTIME pTime, PCRTTIMESPEC pTimeSpec);
/**
* Normalizes the fields of a time structure containing local time.
*
* See RTTimeNormalize for details.
*
* @returns pTime on success.
* @returns NULL if the data is invalid.
* @param pTime The time structure to normalize.
*/
RTDECL(PRTTIME) RTTimeLocalNormalize(PRTTIME pTime);
/**
* Converts a time structure to UTC, relying on UTC offset information
* if it contains local time.
*
* @returns pTime on success.
* @returns NULL if the data is invalid.
* @param pTime The time structure to convert.
*/
RTDECL(PRTTIME) RTTimeConvertToZulu(PRTTIME pTime);
/**
* Converts a time spec to a ISO date string.
*
* @returns psz on success.
* @returns NULL on buffer underflow.
* @param pTime The time. Caller should've normalized this.
* @param psz Where to store the string.
* @param cb The size of the buffer.
*/
RTDECL(char *) RTTimeToString(PCRTTIME pTime, char *psz, size_t cb);
/**
* Converts a time spec to a ISO date string, extended version.
*
* @returns Output string length on success (positive), VERR_BUFFER_OVERFLOW
* (negative) or VERR_OUT_OF_RANGE (negative) on failure.
* @param pTime The time. Caller should've normalized this.
* @param psz Where to store the string.
* @param cb The size of the buffer.
* @param cFractionDigits Number of digits in the fraction. Max is 9.
*/
RTDECL(ssize_t) RTTimeToStringEx(PCRTTIME pTime, char *psz, size_t cb, unsigned cFractionDigits);
/** Suggested buffer length for RTTimeToString and RTTimeToStringEx output, including terminator. */
#define RTTIME_STR_LEN 40
/**
* Attempts to convert an ISO date string to a time structure.
*
* We're a little forgiving with zero padding, unspecified parts, and leading
* and trailing spaces.
*
* @retval pTime on success,
* @retval NULL on failure.
* @param pTime Where to store the time on success.
* @param pszString The ISO date string to convert.
*/
RTDECL(PRTTIME) RTTimeFromString(PRTTIME pTime, const char *pszString);
/**
* Formats the given time on a RTC-2822 compliant format.
*
* @returns Output string length on success (positive), VERR_BUFFER_OVERFLOW
* (negative) on failure.
* @param pTime The time. Caller should've normalized this.
* @param psz Where to store the string.
* @param cb The size of the buffer.
* @param fFlags RTTIME_RFC2822_F_XXX
* @sa RTTIME_RFC2822_LEN
*/
RTDECL(ssize_t) RTTimeToRfc2822(PRTTIME pTime, char *psz, size_t cb, uint32_t fFlags);
/** Suggested buffer length for RTTimeToRfc2822 output, including terminator. */
#define RTTIME_RFC2822_LEN 40
/** @name RTTIME_RFC2822_F_XXX
* @{ */
/** Use the deprecated GMT timezone instead of +/-0000.
* This is required by the HTTP RFC-7231 7.1.1.1. */
#define RTTIME_RFC2822_F_GMT RT_BIT_32(0)
/** @} */
/**
* Attempts to convert an RFC-2822 date string to a time structure.
*
* We're a little forgiving with zero padding, unspecified parts, and leading
* and trailing spaces.
*
* @retval pTime on success,
* @retval NULL on failure.
* @param pTime Where to store the time on success.
* @param pszString The ISO date string to convert.
*/
RTDECL(PRTTIME) RTTimeFromRfc2822(PRTTIME pTime, const char *pszString);
/**
* Checks if a year is a leap year or not.
*
* @returns true if it's a leap year.
* @returns false if it's a common year.
* @param i32Year The year in question.
*/
RTDECL(bool) RTTimeIsLeapYear(int32_t i32Year);
/**
* Compares two normalized time structures.
*
* @retval 0 if equal.
* @retval -1 if @a pLeft is earlier than @a pRight.
* @retval 1 if @a pRight is earlier than @a pLeft.
*
* @param pLeft The left side time. NULL is accepted.
* @param pRight The right side time. NULL is accepted.
*
* @note A NULL time is considered smaller than anything else. If both are
* NULL, they are considered equal.
*/
RTDECL(int) RTTimeCompare(PCRTTIME pLeft, PCRTTIME pRight);
/**
* Gets the current nanosecond timestamp.
*
* @returns nanosecond timestamp.
*/
RTDECL(uint64_t) RTTimeNanoTS(void);
/**
* Gets the current millisecond timestamp.
*
* @returns millisecond timestamp.
*/
RTDECL(uint64_t) RTTimeMilliTS(void);
/**
* Debugging the time api.
*
* @returns the number of 1ns steps which has been applied by RTTimeNanoTS().
*/
RTDECL(uint32_t) RTTimeDbgSteps(void);
/**
* Debugging the time api.
*
* @returns the number of times the TSC interval expired RTTimeNanoTS().
*/
RTDECL(uint32_t) RTTimeDbgExpired(void);
/**
* Debugging the time api.
*
* @returns the number of bad previous values encountered by RTTimeNanoTS().
*/
RTDECL(uint32_t) RTTimeDbgBad(void);
/**
* Debugging the time api.
*
* @returns the number of update races in RTTimeNanoTS().
*/
RTDECL(uint32_t) RTTimeDbgRaces(void);
RTDECL(const char *) RTTimeNanoTSWorkerName(void);
/** @name RTTimeNanoTS GIP worker functions, for TM.
* @{ */
/** Extra info optionally returned by the RTTimeNanoTS GIP workers. */
typedef struct RTITMENANOTSEXTRA
{
/** The TSC value used (delta adjusted). */
uint64_t uTSCValue;
} RTITMENANOTSEXTRA;
/** Pointer to extra info optionally returned by the RTTimeNanoTS GIP workers. */
typedef RTITMENANOTSEXTRA *PRTITMENANOTSEXTRA;
/** Pointer to a RTTIMENANOTSDATA structure. */
typedef struct RTTIMENANOTSDATA *PRTTIMENANOTSDATA;
/**
* Nanosecond timestamp data.
*
* This is used to keep track of statistics and callback so IPRT
* and TM (VirtualBox) can share code.
*
* @remark Keep this in sync with the assembly version in timesupA.asm.
*/
typedef struct RTTIMENANOTSDATA
{
/** Where the previous timestamp is stored.
* This is maintained to ensure that time doesn't go backwards or anything. */
uint64_t volatile *pu64Prev;
/**
* Helper function that's used by the assembly routines when something goes bust.
*
* @param pData Pointer to this structure.
* @param u64NanoTS The calculated nano ts.
* @param u64DeltaPrev The delta relative to the previously returned timestamp.
* @param u64PrevNanoTS The previously returned timestamp (as it was read it).
*/
DECLCALLBACKMEMBER(void, pfnBad,(PRTTIMENANOTSDATA pData, uint64_t u64NanoTS, uint64_t u64DeltaPrev, uint64_t u64PrevNanoTS));
/**
* Callback for when rediscovery is required.
*
* @returns Nanosecond timestamp.
* @param pData Pointer to this structure.
* @param pExtra Where to return extra time info. Optional.
*/
DECLCALLBACKMEMBER(uint64_t, pfnRediscover,(PRTTIMENANOTSDATA pData, PRTITMENANOTSEXTRA pExtra));
/**
* Callback for when some CPU index related stuff goes wrong.
*
* @returns Nanosecond timestamp.
* @param pData Pointer to this structure.
* @param pExtra Where to return extra time info. Optional.
* @param idApic The APIC ID if available, otherwise (UINT16_MAX-1).
* @param iCpuSet The CPU set index if available, otherwise
* (UINT16_MAX-1).
* @param iGipCpu The GIP CPU array index if available, otherwise
* (UINT16_MAX-1).
*/
DECLCALLBACKMEMBER(uint64_t, pfnBadCpuIndex,(PRTTIMENANOTSDATA pData, PRTITMENANOTSEXTRA pExtra,
uint16_t idApic, uint16_t iCpuSet, uint16_t iGipCpu));
/** Number of 1ns steps because of overshooting the period. */
uint32_t c1nsSteps;
/** The number of times the interval expired (overflow). */
uint32_t cExpired;
/** Number of "bad" previous values. */
uint32_t cBadPrev;
/** The number of update races. */
uint32_t cUpdateRaces;
} RTTIMENANOTSDATA;
#ifndef IN_RING3
/**
* The Ring-3 layout of the RTTIMENANOTSDATA structure.
*/
typedef struct RTTIMENANOTSDATAR3
{
R3PTRTYPE(uint64_t volatile *) pu64Prev;
DECLR3CALLBACKMEMBER(void, pfnBad,(PRTTIMENANOTSDATA pData, uint64_t u64NanoTS, uint64_t u64DeltaPrev, uint64_t u64PrevNanoTS));
DECLR3CALLBACKMEMBER(uint64_t, pfnRediscover,(PRTTIMENANOTSDATA pData, PRTITMENANOTSEXTRA pExtra));
DECLR3CALLBACKMEMBER(uint64_t, pfnBadCpuIndex,(PRTTIMENANOTSDATA pData, PRTITMENANOTSEXTRA pExtra,
uint16_t idApic, uint16_t iCpuSet, uint16_t iGipCpu));
uint32_t c1nsSteps;
uint32_t cExpired;
uint32_t cBadPrev;
uint32_t cUpdateRaces;
} RTTIMENANOTSDATAR3;
#else
typedef RTTIMENANOTSDATA RTTIMENANOTSDATAR3;
#endif
#ifndef IN_RING0
/**
* The Ring-3 layout of the RTTIMENANOTSDATA structure.
*/
typedef struct RTTIMENANOTSDATAR0
{
R0PTRTYPE(uint64_t volatile *) pu64Prev;
DECLR0CALLBACKMEMBER(void, pfnBad,(PRTTIMENANOTSDATA pData, uint64_t u64NanoTS, uint64_t u64DeltaPrev, uint64_t u64PrevNanoTS));
DECLR0CALLBACKMEMBER(uint64_t, pfnRediscover,(PRTTIMENANOTSDATA pData, PRTITMENANOTSEXTRA pExtra));
DECLR0CALLBACKMEMBER(uint64_t, pfnBadCpuIndex,(PRTTIMENANOTSDATA pData, PRTITMENANOTSEXTRA pExtra,
uint16_t idApic, uint16_t iCpuSet, uint16_t iGipCpu));
uint32_t c1nsSteps;
uint32_t cExpired;
uint32_t cBadPrev;
uint32_t cUpdateRaces;
} RTTIMENANOTSDATAR0;
#else
typedef RTTIMENANOTSDATA RTTIMENANOTSDATAR0;
#endif
#ifndef IN_RC
/**
* The RC layout of the RTTIMENANOTSDATA structure.
*/
typedef struct RTTIMENANOTSDATARC
{
RCPTRTYPE(uint64_t volatile *) pu64Prev;
DECLRCCALLBACKMEMBER(void, pfnBad,(PRTTIMENANOTSDATA pData, uint64_t u64NanoTS, uint64_t u64DeltaPrev, uint64_t u64PrevNanoTS));
DECLRCCALLBACKMEMBER(uint64_t, pfnRediscover,(PRTTIMENANOTSDATA pData, PRTITMENANOTSEXTRA pExtra));
DECLRCCALLBACKMEMBER(uint64_t, pfnBadCpuIndex,(PRTTIMENANOTSDATA pData, PRTITMENANOTSEXTRA pExtra,
uint16_t idApic, uint16_t iCpuSet, uint16_t iGipCpu));
uint32_t c1nsSteps;
uint32_t cExpired;
uint32_t cBadPrev;
uint32_t cUpdateRaces;
} RTTIMENANOTSDATARC;
#else
typedef RTTIMENANOTSDATA RTTIMENANOTSDATARC;
#endif
/** Internal RTTimeNanoTS worker (assembly). */
typedef DECLCALLBACKTYPE(uint64_t, FNTIMENANOTSINTERNAL,(PRTTIMENANOTSDATA pData, PRTITMENANOTSEXTRA pExtra));
/** Pointer to an internal RTTimeNanoTS worker (assembly). */
typedef FNTIMENANOTSINTERNAL *PFNTIMENANOTSINTERNAL;
#if defined(RT_ARCH_AMD64) || defined(RT_ARCH_X86)
RTDECL(uint64_t) RTTimeNanoTSLegacySyncInvarNoDelta(PRTTIMENANOTSDATA pData, PRTITMENANOTSEXTRA pExtra);
RTDECL(uint64_t) RTTimeNanoTSLFenceSyncInvarNoDelta(PRTTIMENANOTSDATA pData, PRTITMENANOTSEXTRA pExtra);
# ifdef IN_RING3
RTDECL(uint64_t) RTTimeNanoTSLegacyAsyncUseApicId(PRTTIMENANOTSDATA pData, PRTITMENANOTSEXTRA pExtra);
RTDECL(uint64_t) RTTimeNanoTSLegacyAsyncUseApicIdExt0B(PRTTIMENANOTSDATA pData, PRTITMENANOTSEXTRA pExtra);
RTDECL(uint64_t) RTTimeNanoTSLegacyAsyncUseApicIdExt8000001E(PRTTIMENANOTSDATA pData, PRTITMENANOTSEXTRA pExtra);
RTDECL(uint64_t) RTTimeNanoTSLegacyAsyncUseRdtscp(PRTTIMENANOTSDATA pData, PRTITMENANOTSEXTRA pExtra);
RTDECL(uint64_t) RTTimeNanoTSLegacyAsyncUseRdtscpGroupChNumCl(PRTTIMENANOTSDATA pData, PRTITMENANOTSEXTRA pExtra);
RTDECL(uint64_t) RTTimeNanoTSLegacyAsyncUseIdtrLim(PRTTIMENANOTSDATA pData, PRTITMENANOTSEXTRA pExtra);
RTDECL(uint64_t) RTTimeNanoTSLegacySyncInvarWithDeltaUseApicId(PRTTIMENANOTSDATA pData, PRTITMENANOTSEXTRA pExtra);
RTDECL(uint64_t) RTTimeNanoTSLegacySyncInvarWithDeltaUseApicIdExt0B(PRTTIMENANOTSDATA pData, PRTITMENANOTSEXTRA pExtra);
RTDECL(uint64_t) RTTimeNanoTSLegacySyncInvarWithDeltaUseApicIdExt8000001E(PRTTIMENANOTSDATA pData, PRTITMENANOTSEXTRA pExtra);
RTDECL(uint64_t) RTTimeNanoTSLegacySyncInvarWithDeltaUseRdtscp(PRTTIMENANOTSDATA pData, PRTITMENANOTSEXTRA pExtra);
RTDECL(uint64_t) RTTimeNanoTSLegacySyncInvarWithDeltaUseIdtrLim(PRTTIMENANOTSDATA pData, PRTITMENANOTSEXTRA pExtra);
RTDECL(uint64_t) RTTimeNanoTSLFenceAsyncUseApicId(PRTTIMENANOTSDATA pData, PRTITMENANOTSEXTRA pExtra);
RTDECL(uint64_t) RTTimeNanoTSLFenceAsyncUseApicIdExt0B(PRTTIMENANOTSDATA pData, PRTITMENANOTSEXTRA pExtra);
RTDECL(uint64_t) RTTimeNanoTSLFenceAsyncUseApicIdExt8000001E(PRTTIMENANOTSDATA pData, PRTITMENANOTSEXTRA pExtra);
RTDECL(uint64_t) RTTimeNanoTSLFenceAsyncUseRdtscp(PRTTIMENANOTSDATA pData, PRTITMENANOTSEXTRA pExtra);
RTDECL(uint64_t) RTTimeNanoTSLFenceAsyncUseRdtscpGroupChNumCl(PRTTIMENANOTSDATA pData, PRTITMENANOTSEXTRA pExtra);
RTDECL(uint64_t) RTTimeNanoTSLFenceAsyncUseIdtrLim(PRTTIMENANOTSDATA pData, PRTITMENANOTSEXTRA pExtra);
RTDECL(uint64_t) RTTimeNanoTSLFenceSyncInvarWithDeltaUseApicId(PRTTIMENANOTSDATA pData, PRTITMENANOTSEXTRA pExtra);
RTDECL(uint64_t) RTTimeNanoTSLFenceSyncInvarWithDeltaUseApicIdExt0B(PRTTIMENANOTSDATA pData, PRTITMENANOTSEXTRA pExtra);
RTDECL(uint64_t) RTTimeNanoTSLFenceSyncInvarWithDeltaUseApicIdExt8000001E(PRTTIMENANOTSDATA pData, PRTITMENANOTSEXTRA pExtra);
RTDECL(uint64_t) RTTimeNanoTSLFenceSyncInvarWithDeltaUseRdtscp(PRTTIMENANOTSDATA pData, PRTITMENANOTSEXTRA pExtra);
RTDECL(uint64_t) RTTimeNanoTSLFenceSyncInvarWithDeltaUseIdtrLim(PRTTIMENANOTSDATA pData, PRTITMENANOTSEXTRA pExtra);
# else
RTDECL(uint64_t) RTTimeNanoTSLegacyAsync(PRTTIMENANOTSDATA pData, PRTITMENANOTSEXTRA pExtra);
RTDECL(uint64_t) RTTimeNanoTSLegacySyncInvarWithDelta(PRTTIMENANOTSDATA pData, PRTITMENANOTSEXTRA pExtra);
RTDECL(uint64_t) RTTimeNanoTSLFenceAsync(PRTTIMENANOTSDATA pData, PRTITMENANOTSEXTRA pExtra);
RTDECL(uint64_t) RTTimeNanoTSLFenceSyncInvarWithDelta(PRTTIMENANOTSDATA pData, PRTITMENANOTSEXTRA pExtra);
# endif
#else
RTDECL(uint64_t) RTTimeNanoTSSyncInvarNoDelta(PRTTIMENANOTSDATA pData, PRTITMENANOTSEXTRA pExtra);
# ifdef IN_RING3
# ifdef RT_ARCH_ARM64
RTDECL(uint64_t) RTTimeNanoTSSyncInvarWithDeltaUseTpIdRRo(PRTTIMENANOTSDATA pData, PRTITMENANOTSEXTRA pExtra);
RTDECL(uint64_t) RTTimeNanoTSAsyncUseTpIdRRo(PRTTIMENANOTSDATA pData, PRTITMENANOTSEXTRA pExtra);
# endif
# else
RTDECL(uint64_t) RTTimeNanoTSSyncInvarWithDelta(PRTTIMENANOTSDATA pData, PRTITMENANOTSEXTRA pExtra);
RTDECL(uint64_t) RTTimeNanoTSAsync(PRTTIMENANOTSDATA pData, PRTITMENANOTSEXTRA pExtra);
# endif
#endif
/** @} */
/**
* Gets the current nanosecond timestamp.
*
* This differs from RTTimeNanoTS in that it will use system APIs and not do any
* resolution or performance optimizations.
*
* @returns nanosecond timestamp.
*/
RTDECL(uint64_t) RTTimeSystemNanoTS(void);
/**
* Gets the current millisecond timestamp.
*
* This differs from RTTimeNanoTS in that it will use system APIs and not do any
* resolution or performance optimizations.
*
* @returns millisecond timestamp.
*/
RTDECL(uint64_t) RTTimeSystemMilliTS(void);
/**
* Get the nanosecond timestamp relative to program startup.
*
* @returns Timestamp relative to program startup.
*/
RTDECL(uint64_t) RTTimeProgramNanoTS(void);
/**
* Get the microsecond timestamp relative to program startup.
*
* @returns Timestamp relative to program startup.
*/
RTDECL(uint64_t) RTTimeProgramMicroTS(void);
/**
* Get the millisecond timestamp relative to program startup.
*
* @returns Timestamp relative to program startup.
*/
RTDECL(uint64_t) RTTimeProgramMilliTS(void);
/**
* Get the second timestamp relative to program startup.
*
* @returns Timestamp relative to program startup.
*/
RTDECL(uint32_t) RTTimeProgramSecTS(void);
/**
* Get the RTTimeNanoTS() of when the program started.
*
* @returns Program startup timestamp.
*/
RTDECL(uint64_t) RTTimeProgramStartNanoTS(void);
/**
* Time zone information.
*/
typedef struct RTTIMEZONEINFO
{
/** Unix time zone name (continent/country[/city]|). */
const char *pszUnixName;
/** Windows time zone name. */
const char *pszWindowsName;
/** The length of the unix time zone name. */
uint8_t cchUnixName;
/** The length of the windows time zone name. */
uint8_t cchWindowsName;
/** Two letter country/territory code if applicable, otherwise 'ZZ'. */
char szCountry[3];
/** Two letter windows country/territory code if applicable.
* Empty string if no windows mapping. */
char szWindowsCountry[3];
#if 0 /* Add when needed and it's been extracted. */
/** The standard delta in minutes (add to UTC). */
int16_t cMinStdDelta;
/** The daylight saving time delta in minutes (add to UTC). */
int16_t cMinDstDelta;
#endif
/** closest matching windows time zone index. */
uint32_t idxWindows;
/** Flags, RTTIMEZONEINFO_F_XXX. */
uint32_t fFlags;
} RTTIMEZONEINFO;
/** Pointer to time zone info. */
typedef RTTIMEZONEINFO const *PCRTTIMEZONEINFO;
/** @name RTTIMEZONEINFO_F_XXX - time zone info flags.
* @{ */
/** Indicates golden mapping entry for a windows time zone name. */
#define RTTIMEZONEINFO_F_GOLDEN RT_BIT_32(0)
/** @} */
/**
* Looks up static time zone information by unix name.
*
* @returns Pointer to info entry if found, NULL if not.
* @param pszName The unix zone name (TZ).
*/
RTDECL(PCRTTIMEZONEINFO) RTTimeZoneGetInfoByUnixName(const char *pszName);
/**
* Looks up static time zone information by window name.
*
* @returns Pointer to info entry if found, NULL if not.
* @param pszName The windows zone name (reg key).
*/
RTDECL(PCRTTIMEZONEINFO) RTTimeZoneGetInfoByWindowsName(const char *pszName);
/**
* Looks up static time zone information by windows index.
*
* @returns Pointer to info entry if found, NULL if not.
* @param idxZone The windows timezone index.
*/
RTDECL(PCRTTIMEZONEINFO) RTTimeZoneGetInfoByWindowsIndex(uint32_t idxZone);
/**
* Get the current time zone (TZ).
*
* @returns IPRT status code.
* @param pszName Where to return the time zone name.
* @param cbName The size of the name buffer.
*/
RTDECL(int) RTTimeZoneGetCurrent(char *pszName, size_t cbName);
/** @} */
RT_C_DECLS_END
#endif /* !IPRT_INCLUDED_time_h */
|