-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathTimer.cc
102 lines (92 loc) · 1.8 KB
/
Timer.cc
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
94
95
96
97
98
99
100
101
102
///
/// @file Timer.cc
/// @author yll(1711019653@qq.com)
/// @date 2019-02-20 19:52:12
///
#include "Timer.h"
#include <stdio.h>
#include <unistd.h>
#include <sys/timerfd.h>
#include <errno.h>
#include <poll.h>
#include <iostream>
using std::cout;
using std::endl;
namespace yll
{
Timer::Timer(TimerCallback && callback, int initialTime, int periodcTime)
:_fd(creatTimerfd())
,_initialTime(initialTime)
,_periodicTime(periodcTime)
,_callback(std::move(callback))
,_isStart(false)
{}
Timer::~Timer()
{
if(_isStart == false)
stop();
}
int Timer::creatTimerfd()
{
int fd = ::timerfd_create(CLOCK_REALTIME, 0);
if(fd == -1){
perror("timerfd_create");
}
return fd;
}
void Timer::handleRead()
{
uint64_t howmany = 0;
int ret = ::read(_fd, &howmany, sizeof(uint64_t));
if(ret != sizeof(howmany)){
perror(">> read");
}
}
void Timer::start()
{
struct pollfd pfd;
pfd.fd = _fd;
pfd.events = POLLIN;
_isStart = true;
setTimefd(_initialTime, _periodicTime);
while(_isStart)
{
int ready = ::poll(&pfd, 1, 5000);
if(ready == -1 && errno == EINTR)
continue;
else if(ready == -1)
{
perror(">> poll");
exit(EXIT_FAILURE);
}else if(ready == 0){
cout << ">> poll timeout!" << endl;
}else{
if(pfd.fd == _fd && (pfd.events & POLLIN)){
handleRead();
if(_callback)
_callback();
}
}
}
}
void Timer::stop()
{
if(_isStart == true)
{
_isStart = false;
setTimefd(0, 0);//new_value 设置= 0,表示停止定时器
}
}
void Timer::setTimefd(int initialTime, int periodcTime)
{
struct itimerspec value;
value.it_value.tv_sec = initialTime;
value.it_value.tv_nsec = 0;
value.it_interval.tv_sec = periodcTime;
value.it_interval.tv_nsec = 0;
int ret = timerfd_settime(_fd, 0, &value, nullptr);
if(ret == -1){
perror("timerfd_settime");
}
}
}// end of namespace yll