Merge pull request #1404 from woodsb02/mono-route
[mono.git] / mono / utils / mono-time.c
1 /*
2  * Time utility functions.
3  * Author: Paolo Molaro (<lupus@ximian.com>)
4  * Copyright (C) 2008 Novell, Inc.
5  */
6
7 #include <utils/mono-time.h>
8 #include <stdlib.h>
9 #include <stdio.h>
10
11 #define MTICKS_PER_SEC 10000000
12
13 #ifdef HOST_WIN32
14 #include <windows.h>
15
16 guint32
17 mono_msec_ticks (void)
18 {
19         /* GetTickCount () is reportedly monotonic */
20         return GetTickCount ();
21 }
22
23 /* Returns the number of 100ns ticks from unspecified time: this should be monotonic */
24 gint64
25 mono_100ns_ticks (void)
26 {
27         static LARGE_INTEGER freq;
28         static UINT64 start_time;
29         UINT64 cur_time;
30         LARGE_INTEGER value;
31
32         if (!freq.QuadPart) {
33                 if (!QueryPerformanceFrequency (&freq))
34                         return mono_100ns_datetime ();
35                 QueryPerformanceCounter (&value);
36                 start_time = value.QuadPart;
37         }
38         QueryPerformanceCounter (&value);
39         cur_time = value.QuadPart;
40         /* we use unsigned numbers and return the difference to avoid overflows */
41         return (cur_time - start_time) * (double)MTICKS_PER_SEC / freq.QuadPart;
42 }
43
44 /*
45  * Magic number to convert FILETIME base Jan 1, 1601 to DateTime - base Jan, 1, 0001
46  */
47 #define FILETIME_ADJUST ((guint64)504911232000000000LL)
48
49 /* Returns the number of 100ns ticks since 1/1/1, UTC timezone */
50 gint64
51 mono_100ns_datetime (void)
52 {
53         ULARGE_INTEGER ft;
54
55         if (sizeof(ft) != sizeof(FILETIME))
56                 g_assert_not_reached ();
57
58         GetSystemTimeAsFileTime ((FILETIME*) &ft);
59         return FILETIME_ADJUST + ft.QuadPart;
60 }
61
62 #else
63
64 #ifdef HAVE_SYS_TIME_H
65 #include <sys/time.h>
66 #endif
67
68 #if defined (HAVE_SYS_PARAM_H)
69 #include <sys/param.h>
70 #endif
71 #if defined(HAVE_SYS_SYSCTL_H)
72 #include <sys/sysctl.h>
73 #endif
74
75 #if defined(PLATFORM_MACOSX)
76 #include <mach/mach.h>
77 #include <mach/mach_time.h>
78 #endif
79
80 #include <time.h>
81
82 static gint64
83 get_boot_time (void)
84 {
85 #if defined (HAVE_SYS_PARAM_H) && defined (KERN_BOOTTIME)
86         int mib [2];
87         size_t size;
88         time_t now;
89         struct timeval boottime;
90
91         (void)time(&now);
92
93         mib [0] = CTL_KERN;
94         mib [1] = KERN_BOOTTIME;
95
96         size = sizeof(boottime);
97
98         if (sysctl(mib, 2, &boottime, &size, NULL, 0) != -1)
99                 return (gint64)((now - boottime.tv_sec) * MTICKS_PER_SEC);
100 #else
101         FILE *uptime = fopen ("/proc/uptime", "r");
102         if (uptime) {
103                 double upt;
104                 if (fscanf (uptime, "%lf", &upt) == 1) {
105                         gint64 now = mono_100ns_ticks ();
106                         fclose (uptime);
107                         return now - (gint64)(upt * MTICKS_PER_SEC);
108                 }
109                 fclose (uptime);
110         }
111 #endif
112         /* a made up uptime of 300 seconds */
113         return (gint64)300 * MTICKS_PER_SEC;
114 }
115
116 /* Returns the number of milliseconds from boot time: this should be monotonic */
117 guint32
118 mono_msec_ticks (void)
119 {
120         static gint64 boot_time = 0;
121         gint64 now;
122         if (!boot_time)
123                 boot_time = get_boot_time ();
124         now = mono_100ns_ticks ();
125         /*printf ("now: %llu (boot: %llu) ticks: %llu\n", (gint64)now, (gint64)boot_time, (gint64)(now - boot_time));*/
126         return (now - boot_time)/10000;
127 }
128
129 /* Returns the number of 100ns ticks from unspecified time: this should be monotonic */
130 gint64
131 mono_100ns_ticks (void)
132 {
133         struct timeval tv;
134 #ifdef CLOCK_MONOTONIC
135         struct timespec tspec;
136         static struct timespec tspec_freq = {0};
137         static int can_use_clock = 0;
138         if (!tspec_freq.tv_nsec) {
139                 can_use_clock = clock_getres (CLOCK_MONOTONIC, &tspec_freq) == 0;
140                 /*printf ("resolution: %lu.%lu\n", tspec_freq.tv_sec, tspec_freq.tv_nsec);*/
141         }
142         if (can_use_clock) {
143                 if (clock_gettime (CLOCK_MONOTONIC, &tspec) == 0) {
144                         /*printf ("time: %lu.%lu\n", tspec.tv_sec, tspec.tv_nsec); */
145                         return ((gint64)tspec.tv_sec * MTICKS_PER_SEC + tspec.tv_nsec / 100);
146                 }
147         }
148         
149 #elif defined(PLATFORM_MACOSX)
150         /* http://developer.apple.com/library/mac/#qa/qa1398/_index.html */
151         static mach_timebase_info_data_t timebase;
152         guint64 now = mach_absolute_time ();
153         if (timebase.denom == 0) {
154                 mach_timebase_info (&timebase);
155                 timebase.denom *= 100; /* we return 100ns ticks */
156         }
157         return now * timebase.numer / timebase.denom;
158 #endif
159         if (gettimeofday (&tv, NULL) == 0)
160                 return ((gint64)tv.tv_sec * 1000000 + tv.tv_usec) * 10;
161         return 0;
162 }
163
164 /*
165  * Magic number to convert a time which is relative to
166  * Jan 1, 1970 into a value which is relative to Jan 1, 0001.
167  */
168 #define EPOCH_ADJUST    ((guint64)62135596800LL)
169
170 /* Returns the number of 100ns ticks since 1/1/1, UTC timezone */
171 gint64
172 mono_100ns_datetime (void)
173 {
174         struct timeval tv;
175         if (gettimeofday (&tv, NULL) == 0)
176                 return (((gint64)tv.tv_sec + EPOCH_ADJUST) * 1000000 + tv.tv_usec) * 10;
177         return 0;
178 }
179
180 #endif
181