2010-03-12 Jb Evain <jbevain@novell.com>
[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         LARGE_INTEGER value;
29
30         if (!freq.QuadPart && !QueryPerformanceFrequency (&freq))
31                 return mono_100ns_datetime ();
32         QueryPerformanceCounter (&value);
33         return value.QuadPart * MTICKS_PER_SEC / freq.QuadPart;
34 }
35
36 /*
37  * Magic number to convert FILETIME base Jan 1, 1601 to DateTime - base Jan, 1, 0001
38  */
39 #define FILETIME_ADJUST ((guint64)504911232000000000LL)
40
41 /* Returns the number of 100ns ticks since 1/1/1, UTC timezone */
42 gint64
43 mono_100ns_datetime (void)
44 {
45         ULARGE_INTEGER ft;
46
47         if (sizeof(ft) != sizeof(FILETIME))
48                 g_assert_not_reached ();
49
50         GetSystemTimeAsFileTime ((FILETIME*) &ft);
51         return FILETIME_ADJUST + ft.QuadPart;
52 }
53
54 #else
55
56 #ifdef HAVE_SYS_TIME_H
57 #include <sys/time.h>
58 #endif
59
60 #include <time.h>
61
62 static gint64
63 get_boot_time (void)
64 {
65         /* FIXME: use sysctl (kern.boottime) on OSX */
66         FILE *uptime = fopen ("/proc/uptime", "r");
67         if (uptime) {
68                 double upt;
69                 if (fscanf (uptime, "%lf", &upt) == 1) {
70                         gint64 now = mono_100ns_ticks ();
71                         fclose (uptime);
72                         return now - (gint64)(upt * MTICKS_PER_SEC);
73                 }
74                 fclose (uptime);
75         }
76         /* a made up uptime of 300 seconds */
77         return (gint64)300 * MTICKS_PER_SEC;
78 }
79
80 /* Returns the number of milliseconds from boot time: this should be monotonic */
81 guint32
82 mono_msec_ticks (void)
83 {
84         static gint64 boot_time = 0;
85         gint64 now;
86         if (!boot_time)
87                 boot_time = get_boot_time ();
88         now = mono_100ns_ticks ();
89         /*printf ("now: %llu (boot: %llu) ticks: %llu\n", (gint64)now, (gint64)boot_time, (gint64)(now - boot_time));*/
90         return (now - boot_time)/10000;
91 }
92
93 /* Returns the number of 100ns ticks from unspecified time: this should be monotonic */
94 gint64
95 mono_100ns_ticks (void)
96 {
97         struct timeval tv;
98 #ifdef CLOCK_MONOTONIC
99         struct timespec tspec;
100         static struct timespec tspec_freq = {0};
101         static int can_use_clock = 0;
102         if (!tspec_freq.tv_nsec) {
103                 can_use_clock = clock_getres (CLOCK_MONOTONIC, &tspec_freq) == 0;
104                 /*printf ("resolution: %lu.%lu\n", tspec_freq.tv_sec, tspec_freq.tv_nsec);*/
105         }
106         if (can_use_clock) {
107                 if (clock_gettime (CLOCK_MONOTONIC, &tspec) == 0) {
108                         /*printf ("time: %lu.%lu\n", tspec.tv_sec, tspec.tv_nsec); */
109                         return ((gint64)tspec.tv_sec * MTICKS_PER_SEC + tspec.tv_nsec / 100);
110                 }
111         }
112         
113 #endif
114         if (gettimeofday (&tv, NULL) == 0)
115                 return ((gint64)tv.tv_sec * 1000000 + tv.tv_usec) * 10;
116         return 0;
117 }
118
119 /*
120  * Magic number to convert a time which is relative to
121  * Jan 1, 1970 into a value which is relative to Jan 1, 0001.
122  */
123 #define EPOCH_ADJUST    ((guint64)62135596800LL)
124
125 /* Returns the number of 100ns ticks since 1/1/1, UTC timezone */
126 gint64
127 mono_100ns_datetime (void)
128 {
129         struct timeval tv;
130         if (gettimeofday (&tv, NULL) == 0)
131                 return (((gint64)tv.tv_sec + EPOCH_ADJUST) * 1000000 + tv.tv_usec) * 10;
132         return 0;
133 }
134
135 #endif
136