VirtualBox

source: vbox/trunk/include/iprt/time.h@ 35517

Last change on this file since 35517 was 28800, checked in by vboxsync, 14 years ago

Automated rebranding to Oracle copyright/license strings via filemuncher

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 26.7 KB
Line 
1/** @file
2 * IPRT - Time.
3 */
4
5/*
6 * Copyright (C) 2006-2007 Oracle Corporation
7 *
8 * This file is part of VirtualBox Open Source Edition (OSE), as
9 * available from http://www.virtualbox.org. This file is free software;
10 * you can redistribute it and/or modify it under the terms of the GNU
11 * General Public License (GPL) as published by the Free Software
12 * Foundation, in version 2 as it comes in the "COPYING" file of the
13 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
14 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
15 *
16 * The contents of this file may alternatively be used under the terms
17 * of the Common Development and Distribution License Version 1.0
18 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
19 * VirtualBox OSE distribution, in which case the provisions of the
20 * CDDL are applicable instead of those of the GPL.
21 *
22 * You may elect to license modified versions of this file under the
23 * terms and conditions of either the GPL or the CDDL or both.
24 */
25
26#ifndef ___iprt_time_h
27#define ___iprt_time_h
28
29#include <iprt/cdefs.h>
30#include <iprt/types.h>
31
32RT_C_DECLS_BEGIN
33
34/** @defgroup grp_rt_time RTTime - Time
35 * @ingroup grp_rt
36 * @{
37 */
38
39/** Time Specification.
40 *
41 * Use the inline RTTimeSpecGet/Set to operate on structure this so we
42 * can easily change the representation if required later.
43 *
44 * The current representation is in nanoseconds relative to the unix epoch
45 * (1970-01-01 00:00:00 UTC). This gives us an approximate span from
46 * 1678 to 2262 without sacrificing the resolution offered by the various
47 * host OSes (BSD & LINUX 1ns, NT 100ns).
48 */
49typedef struct RTTIMESPEC
50{
51 /** Nanoseconds since epoch.
52 * The name is intentially too long to be comfortable to use because you should be
53 * using inline helpers! */
54 int64_t i64NanosecondsRelativeToUnixEpoch;
55} RTTIMESPEC;
56/** Pointer to a time spec structure. */
57typedef RTTIMESPEC *PRTTIMESPEC;
58/** Pointer to a const time spec structure. */
59typedef const RTTIMESPEC *PCRTTIMESPEC;
60
61
62/** @name RTTIMESPEC methods
63 * @{ */
64
65/**
66 * Gets the time as nanoseconds relative to the unix epoch.
67 *
68 * @returns Nanoseconds relative to unix epoch.
69 * @param pTime The time spec to interpret.
70 */
71DECLINLINE(int64_t) RTTimeSpecGetNano(PCRTTIMESPEC pTime)
72{
73 return pTime->i64NanosecondsRelativeToUnixEpoch;
74}
75
76
77/**
78 * Sets the time give by nanoseconds relative to the unix epoch.
79 *
80 * @returns pTime.
81 * @param pTime The time spec to modify.
82 * @param i64Nano The new time in nanoseconds.
83 */
84DECLINLINE(PRTTIMESPEC) RTTimeSpecSetNano(PRTTIMESPEC pTime, int64_t i64Nano)
85{
86 pTime->i64NanosecondsRelativeToUnixEpoch = i64Nano;
87 return pTime;
88}
89
90
91/**
92 * Gets the time as microseconds relative to the unix epoch.
93 *
94 * @returns microseconds relative to unix epoch.
95 * @param pTime The time spec to interpret.
96 */
97DECLINLINE(int64_t) RTTimeSpecGetMicro(PCRTTIMESPEC pTime)
98{
99 return pTime->i64NanosecondsRelativeToUnixEpoch / 1000;
100}
101
102
103/**
104 * Sets the time given by microseconds relative to the unix epoch.
105 *
106 * @returns pTime.
107 * @param pTime The time spec to modify.
108 * @param i64Micro The new time in microsecond.
109 */
110DECLINLINE(PRTTIMESPEC) RTTimeSpecSetMicro(PRTTIMESPEC pTime, int64_t i64Micro)
111{
112 pTime->i64NanosecondsRelativeToUnixEpoch = i64Micro * 1000;
113 return pTime;
114}
115
116
117/**
118 * Gets the time as milliseconds relative to the unix epoch.
119 *
120 * @returns milliseconds relative to unix epoch.
121 * @param pTime The time spec to interpret.
122 */
123DECLINLINE(int64_t) RTTimeSpecGetMilli(PCRTTIMESPEC pTime)
124{
125 return pTime->i64NanosecondsRelativeToUnixEpoch / 1000000;
126}
127
128
129/**
130 * Sets the time given by milliseconds relative to the unix epoch.
131 *
132 * @returns pTime.
133 * @param pTime The time spec to modify.
134 * @param i64Milli The new time in milliseconds.
135 */
136DECLINLINE(PRTTIMESPEC) RTTimeSpecSetMilli(PRTTIMESPEC pTime, int64_t i64Milli)
137{
138 pTime->i64NanosecondsRelativeToUnixEpoch = i64Milli * 1000000;
139 return pTime;
140}
141
142
143/**
144 * Gets the time as seconds relative to the unix epoch.
145 *
146 * @returns seconds relative to unix epoch.
147 * @param pTime The time spec to interpret.
148 */
149DECLINLINE(int64_t) RTTimeSpecGetSeconds(PCRTTIMESPEC pTime)
150{
151 return pTime->i64NanosecondsRelativeToUnixEpoch / 1000000000;
152}
153
154
155/**
156 * Sets the time given by seconds relative to the unix epoch.
157 *
158 * @returns pTime.
159 * @param pTime The time spec to modify.
160 * @param i64Seconds The new time in seconds.
161 */
162DECLINLINE(PRTTIMESPEC) RTTimeSpecSetSeconds(PRTTIMESPEC pTime, int64_t i64Seconds)
163{
164 pTime->i64NanosecondsRelativeToUnixEpoch = i64Seconds * 1000000000;
165 return pTime;
166}
167
168
169/**
170 * Makes the time spec absolute like abs() does (i.e. a positive value).
171 *
172 * @returns pTime.
173 * @param pTime The time spec to modify.
174 */
175DECLINLINE(PRTTIMESPEC) RTTimeSpecAbsolute(PRTTIMESPEC pTime)
176{
177 if (pTime->i64NanosecondsRelativeToUnixEpoch < 0)
178 pTime->i64NanosecondsRelativeToUnixEpoch = -pTime->i64NanosecondsRelativeToUnixEpoch;
179 return pTime;
180}
181
182
183/**
184 * Negates the time.
185 *
186 * @returns pTime.
187 * @param pTime The time spec to modify.
188 */
189DECLINLINE(PRTTIMESPEC) RTTimeSpecNegate(PRTTIMESPEC pTime)
190{
191 pTime->i64NanosecondsRelativeToUnixEpoch = -pTime->i64NanosecondsRelativeToUnixEpoch;
192 return pTime;
193}
194
195
196/**
197 * Adds a time period to the time.
198 *
199 * @returns pTime.
200 * @param pTime The time spec to modify.
201 * @param pTimeAdd The time spec to add to pTime.
202 */
203DECLINLINE(PRTTIMESPEC) RTTimeSpecAdd(PRTTIMESPEC pTime, PCRTTIMESPEC pTimeAdd)
204{
205 pTime->i64NanosecondsRelativeToUnixEpoch += pTimeAdd->i64NanosecondsRelativeToUnixEpoch;
206 return pTime;
207}
208
209
210/**
211 * Adds a time period give as nanoseconds from the time.
212 *
213 * @returns pTime.
214 * @param pTime The time spec to modify.
215 * @param i64Nano The time period in nanoseconds.
216 */
217DECLINLINE(PRTTIMESPEC) RTTimeSpecAddNano(PRTTIMESPEC pTime, int64_t i64Nano)
218{
219 pTime->i64NanosecondsRelativeToUnixEpoch += i64Nano;
220 return pTime;
221}
222
223
224/**
225 * Adds a time period give as microseconds from the time.
226 *
227 * @returns pTime.
228 * @param pTime The time spec to modify.
229 * @param i64Micro The time period in microseconds.
230 */
231DECLINLINE(PRTTIMESPEC) RTTimeSpecAddMicro(PRTTIMESPEC pTime, int64_t i64Micro)
232{
233 pTime->i64NanosecondsRelativeToUnixEpoch += i64Micro * 1000;
234 return pTime;
235}
236
237
238/**
239 * Adds a time period give as milliseconds from the time.
240 *
241 * @returns pTime.
242 * @param pTime The time spec to modify.
243 * @param i64Milli The time period in milliseconds.
244 */
245DECLINLINE(PRTTIMESPEC) RTTimeSpecAddMilli(PRTTIMESPEC pTime, int64_t i64Milli)
246{
247 pTime->i64NanosecondsRelativeToUnixEpoch += i64Milli * 1000000;
248 return pTime;
249}
250
251
252/**
253 * Adds a time period give as seconds from the time.
254 *
255 * @returns pTime.
256 * @param pTime The time spec to modify.
257 * @param i64Seconds The time period in seconds.
258 */
259DECLINLINE(PRTTIMESPEC) RTTimeSpecAddSeconds(PRTTIMESPEC pTime, int64_t i64Seconds)
260{
261 pTime->i64NanosecondsRelativeToUnixEpoch += i64Seconds * 1000000000;
262 return pTime;
263}
264
265
266/**
267 * Subtracts a time period from the time.
268 *
269 * @returns pTime.
270 * @param pTime The time spec to modify.
271 * @param pTimeSub The time spec to subtract from pTime.
272 */
273DECLINLINE(PRTTIMESPEC) RTTimeSpecSub(PRTTIMESPEC pTime, PCRTTIMESPEC pTimeSub)
274{
275 pTime->i64NanosecondsRelativeToUnixEpoch -= pTimeSub->i64NanosecondsRelativeToUnixEpoch;
276 return pTime;
277}
278
279
280/**
281 * Subtracts a time period give as nanoseconds from the time.
282 *
283 * @returns pTime.
284 * @param pTime The time spec to modify.
285 * @param i64Nano The time period in nanoseconds.
286 */
287DECLINLINE(PRTTIMESPEC) RTTimeSpecSubNano(PRTTIMESPEC pTime, int64_t i64Nano)
288{
289 pTime->i64NanosecondsRelativeToUnixEpoch -= i64Nano;
290 return pTime;
291}
292
293
294/**
295 * Subtracts a time period give as microseconds from the time.
296 *
297 * @returns pTime.
298 * @param pTime The time spec to modify.
299 * @param i64Micro The time period in microseconds.
300 */
301DECLINLINE(PRTTIMESPEC) RTTimeSpecSubMicro(PRTTIMESPEC pTime, int64_t i64Micro)
302{
303 pTime->i64NanosecondsRelativeToUnixEpoch -= i64Micro * 1000;
304 return pTime;
305}
306
307
308/**
309 * Subtracts a time period give as milliseconds from the time.
310 *
311 * @returns pTime.
312 * @param pTime The time spec to modify.
313 * @param i64Milli The time period in milliseconds.
314 */
315DECLINLINE(PRTTIMESPEC) RTTimeSpecSubMilli(PRTTIMESPEC pTime, int64_t i64Milli)
316{
317 pTime->i64NanosecondsRelativeToUnixEpoch -= i64Milli * 1000000;
318 return pTime;
319}
320
321
322/**
323 * Subtracts a time period give as seconds from the time.
324 *
325 * @returns pTime.
326 * @param pTime The time spec to modify.
327 * @param i64Seconds The time period in seconds.
328 */
329DECLINLINE(PRTTIMESPEC) RTTimeSpecSubSeconds(PRTTIMESPEC pTime, int64_t i64Seconds)
330{
331 pTime->i64NanosecondsRelativeToUnixEpoch -= i64Seconds * 100000000;
332 return pTime;
333}
334
335
336/* PORTME: Add struct timeval guard macro here. */
337#if defined(RTTIME_INCL_TIMEVAL) || defined(_STRUCT_TIMEVAL) || defined(_SYS__TIMEVAL_H_) || defined(_SYS_TIME_H) || defined(_TIMEVAL) || defined(_LINUX_TIME_H)
338/**
339 * Gets the time as POSIX timeval.
340 *
341 * @returns pTime.
342 * @param pTime The time spec to interpret.
343 * @param pTimeval Where to store the time as POSIX timeval.
344 */
345DECLINLINE(struct timeval *) RTTimeSpecGetTimeval(PCRTTIMESPEC pTime, struct timeval *pTimeval)
346{
347 int64_t i64 = RTTimeSpecGetMicro(pTime);
348 int32_t i32Micro = (int32_t)(i64 % 1000000);
349 i64 /= 1000000;
350 if (i32Micro < 0)
351 {
352 i32Micro += 1000000;
353 i64--;
354 }
355 pTimeval->tv_sec = (time_t)i64;
356 pTimeval->tv_usec = i32Micro;
357 return pTimeval;
358}
359
360/**
361 * Sets the time as POSIX timeval.
362 *
363 * @returns pTime.
364 * @param pTime The time spec to modify.
365 * @param pTimeval Pointer to the POSIX timeval struct with the new time.
366 */
367DECLINLINE(PRTTIMESPEC) RTTimeSpecSetTimeval(PRTTIMESPEC pTime, const struct timeval *pTimeval)
368{
369 return RTTimeSpecAddMicro(RTTimeSpecSetSeconds(pTime, pTimeval->tv_sec), pTimeval->tv_usec);
370}
371#endif /* various ways of detecting struct timeval */
372
373
374/* PORTME: Add struct timespec guard macro here. */
375#if defined(RTTIME_INCL_TIMESPEC) || defined(_STRUCT_TIMESPEC) || defined(_SYS__TIMESPEC_H_) || defined(TIMEVAL_TO_TIMESPEC) || defined(_TIMESPEC)
376/**
377 * Gets the time as POSIX timespec.
378 *
379 * @returns pTime.
380 * @param pTime The time spec to interpret.
381 * @param pTimespec Where to store the time as POSIX timespec.
382 */
383DECLINLINE(struct timespec *) RTTimeSpecGetTimespec(PCRTTIMESPEC pTime, struct timespec *pTimespec)
384{
385 int64_t i64 = RTTimeSpecGetNano(pTime);
386 int32_t i32Nano = (int32_t)(i64 % 1000000000);
387 i64 /= 1000000000;
388 if (i32Nano < 0)
389 {
390 i32Nano += 1000000000;
391 i64--;
392 }
393 pTimespec->tv_sec = (time_t)i64;
394 pTimespec->tv_nsec = i32Nano;
395 return pTimespec;
396}
397
398/**
399 * Sets the time as POSIX timespec.
400 *
401 * @returns pTime.
402 * @param pTime The time spec to modify.
403 * @param pTimespec Pointer to the POSIX timespec struct with the new time.
404 */
405DECLINLINE(PRTTIMESPEC) RTTimeSpecSetTimespec(PRTTIMESPEC pTime, const struct timespec *pTimespec)
406{
407 return RTTimeSpecAddNano(RTTimeSpecSetSeconds(pTime, pTimespec->tv_sec), pTimespec->tv_nsec);
408}
409#endif /* various ways of detecting struct timespec */
410
411
412
413/** The offset of the unix epoch and the base for NT time (in 100ns units).
414 * Nt time starts at 1601-01-01 00:00:00. */
415#define RTTIME_NT_TIME_OFFSET_UNIX (116444736000000000LL)
416
417
418/**
419 * Gets the time as NT time.
420 *
421 * @returns Nt time.
422 * @param pTime The time spec to interpret.
423 */
424DECLINLINE(uint64_t) RTTimeSpecGetNtTime(PCRTTIMESPEC pTime)
425{
426 return pTime->i64NanosecondsRelativeToUnixEpoch / 100
427 + RTTIME_NT_TIME_OFFSET_UNIX;
428}
429
430
431/**
432 * Sets the time given by Nt time.
433 *
434 * @returns pTime.
435 * @param pTime The time spec to modify.
436 * @param u64NtTime The new time in Nt time.
437 */
438DECLINLINE(PRTTIMESPEC) RTTimeSpecSetNtTime(PRTTIMESPEC pTime, uint64_t u64NtTime)
439{
440 pTime->i64NanosecondsRelativeToUnixEpoch =
441 ((int64_t)u64NtTime - RTTIME_NT_TIME_OFFSET_UNIX) * 100;
442 return pTime;
443}
444
445
446#ifdef _FILETIME_
447/**
448 * Gets the time as NT file time.
449 *
450 * @returns pFileTime.
451 * @param pTime The time spec to interpret.
452 * @param pFileTime Pointer to NT filetime structure.
453 */
454DECLINLINE(PFILETIME) RTTimeSpecGetNtFileTime(PCRTTIMESPEC pTime, PFILETIME pFileTime)
455{
456 *((uint64_t *)pFileTime) = RTTimeSpecGetNtTime(pTime);
457 return pFileTime;
458}
459
460/**
461 * Sets the time as NT file time.
462 *
463 * @returns pTime.
464 * @param pTime The time spec to modify.
465 * @param pFileTime Where to store the time as Nt file time.
466 */
467DECLINLINE(PRTTIMESPEC) RTTimeSpecSetNtFileTime(PRTTIMESPEC pTime, const FILETIME *pFileTime)
468{
469 return RTTimeSpecSetNtTime(pTime, *(const uint64_t *)pFileTime);
470}
471#endif
472
473
474/** The offset to the start of DOS time.
475 * DOS time starts 1980-01-01 00:00:00. */
476#define RTTIME_OFFSET_DOS_TIME (315532800000000000LL)
477
478
479/**
480 * Gets the time as seconds relative to the start of dos time.
481 *
482 * @returns seconds relative to the start of dos time.
483 * @param pTime The time spec to interpret.
484 */
485DECLINLINE(int64_t) RTTimeSpecGetDosSeconds(PCRTTIMESPEC pTime)
486{
487 return (pTime->i64NanosecondsRelativeToUnixEpoch - RTTIME_OFFSET_DOS_TIME)
488 / 1000000000;
489}
490
491
492/**
493 * Sets the time given by seconds relative to the start of dos time.
494 *
495 * @returns pTime.
496 * @param pTime The time spec to modify.
497 * @param i64Seconds The new time in seconds relative to the start of dos time.
498 */
499DECLINLINE(PRTTIMESPEC) RTTimeSpecSetDosSeconds(PRTTIMESPEC pTime, int64_t i64Seconds)
500{
501 pTime->i64NanosecondsRelativeToUnixEpoch = i64Seconds * 1000000000
502 + RTTIME_OFFSET_DOS_TIME;
503 return pTime;
504}
505
506
507/**
508 * Compare two time specs.
509 *
510 * @returns true they are equal.
511 * @returns false they are not equal.
512 * @param pTime1 The 1st time spec.
513 * @param pTime2 The 2nd time spec.
514 */
515DECLINLINE(bool) RTTimeSpecIsEqual(PCRTTIMESPEC pTime1, PCRTTIMESPEC pTime2)
516{
517 return pTime1->i64NanosecondsRelativeToUnixEpoch == pTime2->i64NanosecondsRelativeToUnixEpoch;
518}
519
520/**
521 * Converts a time spec to a ISO date string.
522 *
523 * @returns psz on success.
524 * @returns NULL on buffer underflow.
525 * @param pTime The time spec.
526 * @param psz Where to store the string.
527 * @param cb The size of the buffer.
528 */
529RTDECL(char *) RTTimeSpecToString(PCRTTIMESPEC pTime, char *psz, size_t cb);
530
531/** @} */
532
533
534/**
535 * Exploded time.
536 */
537#pragma pack(1)
538typedef struct RTTIME
539{
540 /** The year number. */
541 int32_t i32Year;
542 /** The month of the year (1-12). January is 1. */
543 uint8_t u8Month;
544 /** The day of the week (0-6). Monday is 0. */
545 uint8_t u8WeekDay;
546 /** The day of the year (1-366). January the 1st is 1. */
547 uint16_t u16YearDay;
548 /** The day of the month (1-31). */
549 uint8_t u8MonthDay;
550 /** Hour of the day (0-23). */
551 uint8_t u8Hour;
552 /** The minute of the hour (0-59). */
553 uint8_t u8Minute;
554 /** The second of the minute (0-60).
555 * (u32Nanosecond / 1000000) */
556 uint8_t u8Second;
557 /** The nanoseconds of the second (0-999999999). */
558 uint32_t u32Nanosecond;
559 /** Flags, of the RTTIME_FLAGS_* \#defines. */
560 uint32_t fFlags;
561 /** UCT time offset in minutes (-840-840).
562 * @remarks The implementation of RTTimeLocal* isn't quite there yet, so this might not be 100% correct. */
563 int32_t offUTC;
564} RTTIME;
565#pragma pack()
566/** Pointer to a exploded time structure. */
567typedef RTTIME *PRTTIME;
568/** Pointer to a const exploded time structure. */
569typedef const RTTIME *PCRTTIME;
570
571/** @name RTTIME::fFlags values.
572 * @{ */
573/** Set if the time is UTC. If clear the time local time. */
574#define RTTIME_FLAGS_TYPE_MASK 3
575/** the time is UTC time. */
576#define RTTIME_FLAGS_TYPE_UTC 2
577/** The time is local time. */
578#define RTTIME_FLAGS_TYPE_LOCAL 3
579
580/** Set if the time is local and daylight saving time is in effect.
581 * Not bit is not valid if RTTIME_FLAGS_NO_DST_DATA is set. */
582#define RTTIME_FLAGS_DST RT_BIT(4)
583/** Set if the time is local and there is no data available on daylight saving time. */
584#define RTTIME_FLAGS_NO_DST_DATA RT_BIT(5)
585/** Set if the year is a leap year.
586 * This is mutual exclusiv with RTTIME_FLAGS_COMMON_YEAR. */
587#define RTTIME_FLAGS_LEAP_YEAR RT_BIT(6)
588/** Set if the year is a common year.
589 * This is mutual exclusiv with RTTIME_FLAGS_LEAP_YEAR. */
590#define RTTIME_FLAGS_COMMON_YEAR RT_BIT(7)
591/** The mask of valid flags. */
592#define RTTIME_FLAGS_MASK UINT32_C(0xff)
593/** @} */
594
595
596/**
597 * Gets the current system time (UTC).
598 *
599 * @returns pTime.
600 * @param pTime Where to store the time.
601 */
602RTDECL(PRTTIMESPEC) RTTimeNow(PRTTIMESPEC pTime);
603
604/**
605 * Sets the system time.
606 *
607 * @returns IPRT status code
608 * @param pTime The new system time (UTC).
609 *
610 * @remarks This will usually fail because changing the wall time is usually
611 * requires extra privileges.
612 */
613RTDECL(int) RTTimeSet(PCRTTIMESPEC pTime);
614
615/**
616 * Explodes a time spec (UTC).
617 *
618 * @returns pTime.
619 * @param pTime Where to store the exploded time.
620 * @param pTimeSpec The time spec to exploded.
621 */
622RTDECL(PRTTIME) RTTimeExplode(PRTTIME pTime, PCRTTIMESPEC pTimeSpec);
623
624/**
625 * Implodes exploded time to a time spec (UTC).
626 *
627 * @returns pTime on success.
628 * @returns NULL if the pTime data is invalid.
629 * @param pTimeSpec Where to store the imploded UTC time.
630 * If pTime specifies a time which outside the range, maximum or
631 * minimum values will be returned.
632 * @param pTime Pointer to the exploded time to implode.
633 * The fields u8Month, u8WeekDay and u8MonthDay are not used,
634 * and all the other fields are expected to be within their
635 * bounds. Use RTTimeNormalize() to calculate u16YearDay and
636 * normalize the ranges of the fields.
637 */
638RTDECL(PRTTIMESPEC) RTTimeImplode(PRTTIMESPEC pTimeSpec, PCRTTIME pTime);
639
640/**
641 * Normalizes the fields of a time structure.
642 *
643 * It is possible to calculate year-day from month/day and vice
644 * versa. If you adjust any of of these, make sure to zero the
645 * other so you make it clear which of the fields to use. If
646 * it's ambiguous, the year-day field is used (and you get
647 * assertions in debug builds).
648 *
649 * All the time fields and the year-day or month/day fields will
650 * be adjusted for overflows. (Since all fields are unsigned, there
651 * is no underflows.) It is possible to exploit this for simple
652 * date math, though the recommended way of doing that to implode
653 * the time into a timespec and do the math on that.
654 *
655 * @returns pTime on success.
656 * @returns NULL if the data is invalid.
657 *
658 * @param pTime The time structure to normalize.
659 *
660 * @remarks This function doesn't work with local time, only with UTC time.
661 */
662RTDECL(PRTTIME) RTTimeNormalize(PRTTIME pTime);
663
664/**
665 * Gets the current local system time.
666 *
667 * @returns pTime.
668 * @param pTime Where to store the local time.
669 */
670RTDECL(PRTTIMESPEC) RTTimeLocalNow(PRTTIMESPEC pTime);
671
672/**
673 * Gets the delta between UTC and local time.
674 *
675 * @code
676 * RTTIMESPEC LocalTime;
677 * RTTimeSpecAddNano(RTTimeNow(&LocalTime), RTTimeLocalDeltaNano());
678 * @endcode
679 *
680 * @returns Returns the nanosecond delta between UTC and local time.
681 */
682RTDECL(int64_t) RTTimeLocalDeltaNano(void);
683
684/**
685 * Explodes a time spec to the localized timezone.
686 *
687 * @returns pTime.
688 * @param pTime Where to store the exploded time.
689 * @param pTimeSpec The time spec to exploded (UTC).
690 */
691RTDECL(PRTTIME) RTTimeLocalExplode(PRTTIME pTime, PCRTTIMESPEC pTimeSpec);
692
693/**
694 * Normalizes the fields of a time structure containing local time.
695 *
696 * See RTTimeNormalize for details.
697 *
698 * @returns pTime on success.
699 * @returns NULL if the data is invalid.
700 * @param pTime The time structure to normalize.
701 */
702RTDECL(PRTTIME) RTTimeLocalNormalize(PRTTIME pTime);
703
704/**
705 * Converts a time spec to a ISO date string.
706 *
707 * @returns psz on success.
708 * @returns NULL on buffer underflow.
709 * @param pTime The time. Caller should've normalized this.
710 * @param psz Where to store the string.
711 * @param cb The size of the buffer.
712 */
713RTDECL(char *) RTTimeToString(PCRTTIME pTime, char *psz, size_t cb);
714
715/**
716 * Checks if a year is a leap year or not.
717 *
718 * @returns true if it's a leap year.
719 * @returns false if it's a common year.
720 * @param i32Year The year in question.
721 */
722RTDECL(bool) RTTimeIsLeapYear(int32_t i32Year);
723
724/**
725 * Gets the current nanosecond timestamp.
726 *
727 * @returns nanosecond timestamp.
728 */
729RTDECL(uint64_t) RTTimeNanoTS(void);
730
731/**
732 * Gets the current millisecond timestamp.
733 *
734 * @returns millisecond timestamp.
735 */
736RTDECL(uint64_t) RTTimeMilliTS(void);
737
738/**
739 * Debugging the time api.
740 *
741 * @returns the number of 1ns steps which has been applied by RTTimeNanoTS().
742 */
743RTDECL(uint32_t) RTTimeDbgSteps(void);
744
745/**
746 * Debugging the time api.
747 *
748 * @returns the number of times the TSC interval expired RTTimeNanoTS().
749 */
750RTDECL(uint32_t) RTTimeDbgExpired(void);
751
752/**
753 * Debugging the time api.
754 *
755 * @returns the number of bad previous values encountered by RTTimeNanoTS().
756 */
757RTDECL(uint32_t) RTTimeDbgBad(void);
758
759/**
760 * Debugging the time api.
761 *
762 * @returns the number of update races in RTTimeNanoTS().
763 */
764RTDECL(uint32_t) RTTimeDbgRaces(void);
765
766/** @name RTTimeNanoTS GIP worker functions, for TM.
767 * @{ */
768/** Pointer to a RTTIMENANOTSDATA structure. */
769typedef struct RTTIMENANOTSDATA *PRTTIMENANOTSDATA;
770
771/**
772 * Nanosecond timestamp data.
773 *
774 * This is used to keep track of statistics and callback so IPRT
775 * and TM (VirtualBox) can share code.
776 *
777 * @remark Keep this in sync with the assembly version in timesupA.asm.
778 */
779typedef struct RTTIMENANOTSDATA
780{
781 /** Where the previous timestamp is stored.
782 * This is maintained to ensure that time doesn't go backwards or anything. */
783 uint64_t volatile *pu64Prev;
784
785 /**
786 * Helper function that's used by the assembly routines when something goes bust.
787 *
788 * @param pData Pointer to this structure.
789 * @param u64NanoTS The calculated nano ts.
790 * @param u64DeltaPrev The delta relative to the previously returned timestamp.
791 * @param u64PrevNanoTS The previously returned timestamp (as it was read it).
792 */
793 DECLCALLBACKMEMBER(void, pfnBad)(PRTTIMENANOTSDATA pData, uint64_t u64NanoTS, uint64_t u64DeltaPrev, uint64_t u64PrevNanoTS);
794
795 /**
796 * Callback for when rediscovery is required.
797 *
798 * @returns Nanosecond timestamp.
799 * @param pData Pointer to this structure.
800 */
801 DECLCALLBACKMEMBER(uint64_t, pfnRediscover)(PRTTIMENANOTSDATA pData);
802
803 /** Just a dummy alignment member. */
804 void *pvDummy;
805
806 /** Number of 1ns steps because of overshooting the period. */
807 uint32_t c1nsSteps;
808 /** The number of times the interval expired (overflow). */
809 uint32_t cExpired;
810 /** Number of "bad" previous values. */
811 uint32_t cBadPrev;
812 /** The number of update races. */
813 uint32_t cUpdateRaces;
814} RTTIMENANOTSDATA;
815
816#ifndef IN_RING3
817/**
818 * The Ring-3 layout of the RTTIMENANOTSDATA structure.
819 */
820typedef struct RTTIMENANOTSDATAR3
821{
822 R3PTRTYPE(uint64_t volatile *) pu64Prev;
823 DECLR3CALLBACKMEMBER(void, pfnBad,(PRTTIMENANOTSDATA pData, uint64_t u64NanoTS, uint64_t u64DeltaPrev, uint64_t u64PrevNanoTS));
824 DECLR3CALLBACKMEMBER(uint64_t, pfnRediscover,(PRTTIMENANOTSDATA pData));
825 RTR3PTR pvDummy;
826 uint32_t c1nsSteps;
827 uint32_t cExpired;
828 uint32_t cBadPrev;
829 uint32_t cUpdateRaces;
830} RTTIMENANOTSDATAR3;
831#else
832typedef RTTIMENANOTSDATA RTTIMENANOTSDATAR3;
833#endif
834
835#ifndef IN_RING0
836/**
837 * The Ring-3 layout of the RTTIMENANOTSDATA structure.
838 */
839typedef struct RTTIMENANOTSDATAR0
840{
841 R0PTRTYPE(uint64_t volatile *) pu64Prev;
842 DECLR0CALLBACKMEMBER(void, pfnBad,(PRTTIMENANOTSDATA pData, uint64_t u64NanoTS, uint64_t u64DeltaPrev, uint64_t u64PrevNanoTS));
843 DECLR0CALLBACKMEMBER(uint64_t, pfnRediscover,(PRTTIMENANOTSDATA pData));
844 RTR0PTR pvDummy;
845 uint32_t c1nsSteps;
846 uint32_t cExpired;
847 uint32_t cBadPrev;
848 uint32_t cUpdateRaces;
849} RTTIMENANOTSDATAR0;
850#else
851typedef RTTIMENANOTSDATA RTTIMENANOTSDATAR0;
852#endif
853
854#ifndef IN_RC
855/**
856 * The RC layout of the RTTIMENANOTSDATA structure.
857 */
858typedef struct RTTIMENANOTSDATARC
859{
860 RCPTRTYPE(uint64_t volatile *) pu64Prev;
861 DECLRCCALLBACKMEMBER(void, pfnBad,(PRTTIMENANOTSDATA pData, uint64_t u64NanoTS, uint64_t u64DeltaPrev, uint64_t u64PrevNanoTS));
862 DECLRCCALLBACKMEMBER(uint64_t, pfnRediscover,(PRTTIMENANOTSDATA pData));
863 RCPTRTYPE(void *) pvDummy;
864 uint32_t c1nsSteps;
865 uint32_t cExpired;
866 uint32_t cBadPrev;
867 uint32_t cUpdateRaces;
868} RTTIMENANOTSDATARC;
869#else
870typedef RTTIMENANOTSDATA RTTIMENANOTSDATARC;
871#endif
872
873/** Internal RTTimeNanoTS worker (assembly). */
874typedef DECLCALLBACK(uint64_t) FNTIMENANOTSINTERNAL(PRTTIMENANOTSDATA pData);
875/** Pointer to an internal RTTimeNanoTS worker (assembly). */
876typedef FNTIMENANOTSINTERNAL *PFNTIMENANOTSINTERNAL;
877
878RTDECL(uint64_t) RTTimeNanoTSLegacySync(PRTTIMENANOTSDATA pData);
879RTDECL(uint64_t) RTTimeNanoTSLegacyAsync(PRTTIMENANOTSDATA pData);
880RTDECL(uint64_t) RTTimeNanoTSLFenceSync(PRTTIMENANOTSDATA pData);
881RTDECL(uint64_t) RTTimeNanoTSLFenceAsync(PRTTIMENANOTSDATA pData);
882/** @} */
883
884
885/**
886 * Gets the current nanosecond timestamp.
887 *
888 * This differs from RTTimeNanoTS in that it will use system APIs and not do any
889 * resolution or performance optimizations.
890 *
891 * @returns nanosecond timestamp.
892 */
893RTDECL(uint64_t) RTTimeSystemNanoTS(void);
894
895/**
896 * Gets the current millisecond timestamp.
897 *
898 * This differs from RTTimeNanoTS in that it will use system APIs and not do any
899 * resolution or performance optimizations.
900 *
901 * @returns millisecond timestamp.
902 */
903RTDECL(uint64_t) RTTimeSystemMilliTS(void);
904
905/**
906 * Get the nanosecond timestamp relative to program startup.
907 *
908 * @returns Timestamp relative to program startup.
909 */
910RTDECL(uint64_t) RTTimeProgramNanoTS(void);
911
912/**
913 * Get the microsecond timestamp relative to program startup.
914 *
915 * @returns Timestamp relative to program startup.
916 */
917RTDECL(uint64_t) RTTimeProgramMicroTS(void);
918
919/**
920 * Get the millisecond timestamp relative to program startup.
921 *
922 * @returns Timestamp relative to program startup.
923 */
924RTDECL(uint64_t) RTTimeProgramMilliTS(void);
925
926/**
927 * Get the second timestamp relative to program startup.
928 *
929 * @returns Timestamp relative to program startup.
930 */
931RTDECL(uint32_t) RTTimeProgramSecTS(void);
932
933/**
934 * Get the RTTimeNanoTS() of when the program started.
935 *
936 * @returns Program startup timestamp.
937 */
938RTDECL(uint64_t) RTTimeProgramStartNanoTS(void);
939
940/** @} */
941
942RT_C_DECLS_END
943
944#endif
945
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette