summaryrefslogtreecommitdiff
path: root/time.c
blob: b21705ec51cfedf184d116d80ca002c7ee0d527f (plain)
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
#include <time.h>
#include <errno.h>
#include <sys/stat.h>
#if _WIN32
#include <sysinfoapi.h>
#endif

static struct timespec time_last_modified(char const *filename) {
#if __unix__
	struct stat statbuf = {0};
	stat(filename, &statbuf);
	return statbuf.st_mtim;
#else
	// windows' _stat does not have st_mtim
	struct _stat statbuf = {0};
	struct timespec ts = {0};
	_stat(filename, &statbuf);
	ts.tv_sec = statbuf.st_mtime;
	return ts;
#endif
}

static int timespec_cmp(struct timespec a, struct timespec b) {
	if (a.tv_sec  > b.tv_sec)  return 1;
	if (a.tv_sec  < b.tv_sec)  return -1;
	if (a.tv_nsec > b.tv_nsec) return 1;
	if (a.tv_nsec < b.tv_nsec) return -1;
	return 0;
}

static bool timespec_eq(struct timespec a, struct timespec b) {
	return timespec_cmp(a, b) == 0;
}

static struct timespec timespec_max(struct timespec a, struct timespec b) {
	return timespec_cmp(a, b) < 0 ? b : a;
}

static double timespec_to_seconds(struct timespec ts) {
	return (double)ts.tv_sec
		+ (double)ts.tv_nsec * 1e-9;
}

// returns a-b in seconds
static double timespec_sub(struct timespec a, struct timespec b) {
	return (double)(a.tv_sec - b.tv_sec)
		+ (double)(a.tv_nsec - b.tv_nsec) * 1e-9;
}

static struct timespec time_get(void) {
	struct timespec ts = {0};
#if _WIN32
	timespec_get(&ts, TIME_UTC);
#else
	clock_gettime(CLOCK_REALTIME, &ts);
#endif
	return ts;
}

static double time_get_seconds(void) {
	return timespec_to_seconds(time_get());
}

// sleep for a certain number of nanoseconds
static void sleep_ns(u64 ns) {
#if __unix__
	struct timespec rem = {0}, req = {
		(time_t)(ns / 1000000000),
		(long)(ns % 1000000000)
	};
	
	while (nanosleep(&req, &rem) == EINTR) // sleep interrupted by signal
		req = rem;
#else
	// windows....
	Sleep((DWORD)(ns / 1000000));
#endif
}

// sleep for microseconds
static void time_sleep_us(u64 us) {
	sleep_ns(us * 1000);
}

// sleep for milliseconds
static void time_sleep_ms(u64 ms) {
	sleep_ns(ms * 1000000);
}

// sleep for seconds
static void time_sleep_s(u64 s) {
	sleep_ns(s * 1000000000);
}