-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEventLoop.cpp
57 lines (41 loc) · 1.18 KB
/
EventLoop.cpp
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
//
// Created by 裴沛东 on 2021/12/28.
//
#include "EventLoop.h"
EventLoop::EventLoop():ep(nullptr),quit(false),timer( new Timer(60000)),TimeOutFlag(false){
ep = new Epoll();
}
EventLoop::~EventLoop() {
delete ep;
}
void EventLoop::loop() {
while(!quit) {
int ret = -1;
if(TimeOutFlag) {
ret = timer->GetNextTick();
}
if(ep->poll(ret)) {
//LOG_INFO("%ld thread have new event=====================================================================",std::this_thread::get_id());
std::vector<Channel*> active;
active.swap(ep->ActiveEvents);
for(auto & it : active) {
it->handleEvent();
}
}
}
}
void EventLoop::updateChannel(Channel *channel) {
ep->updateChannel(channel);
}
void EventLoop::addTaskToQueue(std::function<void()> &task) {
//threadPool->addTask(task);
}
void EventLoop::deleteChannel(Channel *channel) {
ep->deleteChannel(channel);
}
void EventLoop::setTimeOut(bool flag) {
TimeOutFlag = flag;
}
EventLoop::EventLoop(bool flag):ep(nullptr),quit(false),timer( new Timer(60000)),TimeOutFlag(flag){
ep = new Epoll();
}