-
Notifications
You must be signed in to change notification settings - Fork 0
/
pacer.h
91 lines (76 loc) · 1.58 KB
/
pacer.h
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
#pragma once
#include <stdint.h>
#include <unistd.h>
#include <sys/timerfd.h>
#include "exceptions.h"
class pacer
{
public:
pacer() { }
pacer(const pacer &) = delete;
pacer operator=(const pacer &) = delete;
pacer(pacer &&) = delete;
pacer operator=(pacer &&) = delete;
~pacer()
{
close();
}
void set_period_ns(uint32_t nanoseconds)
{
if (fd == -1)
{
fd = timerfd_create(CLOCK_MONOTONIC, 0);
if (fd == -1)
{
throw posix_error("Failed to create timerfd");
}
}
struct itimerspec spec = { 0 };
spec.it_value.tv_nsec = 1;
spec.it_interval.tv_nsec = nanoseconds;
int result = timerfd_settime(fd, 0, &spec, NULL);
if (result == -1)
{
throw posix_error("Failed to set timerfd interval");
}
}
void set_period_s(uint32_t seconds)
{
if (fd == -1)
{
fd = timerfd_create(CLOCK_MONOTONIC, 0);
if (fd == -1)
{
throw posix_error("Failed to create timerfd");
}
}
struct itimerspec spec = { 0 };
spec.it_value.tv_sec = 1;
spec.it_interval.tv_sec = seconds;
int result = timerfd_settime(fd, 0, &spec, NULL);
if (result == -1)
{
throw posix_error("Failed to set timerfd interval");
}
}
uint64_t pace()
{
uint64_t expirations = 0;
ssize_t result = read(fd, &expirations, sizeof(expirations));
if (result != 8)
{
throw std::runtime_error("Failed to read from timer.");
}
return expirations;
}
void close()
{
if (fd != -1)
{
::close(fd);
fd = -1;
}
}
private:
int fd = -1;
};