-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPoller.h
41 lines (31 loc) · 1.01 KB
/
Poller.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
#pragma once
#include<vector>
#include<unordered_map>
#include"noncopyable.h"
#include"Timestamp.h"
#include "EventLoop.h"
class Channel;
/**
* @brief 多路事件分发器的核心IO复用模块
*
*/
class Poller : noncopyable {
public:
using ChannelList = std::vector<Channel*>;
Poller(EventLoop *loop);
virtual ~Poller();
// 给所有IO复用保留统一的接口
virtual Timestamp poll(int timeoutMS, ChannelList *activeChannel) = 0;
virtual void updateChannel(Channel *channel) = 0;
virtual void removeChannel(Channel *channel) = 0;
// 判断参数channel是否在当前Poller中
bool hasChannel(Channel *channel) const;
// EventLoop可以通过该接口获取默认的IO复用的具体实现
static Poller* newDefaultPoller(EventLoop *loop);
protected:
// map的key:sockfd , value:socket所属的channel通道类型
using ChannelMap = std::unordered_map<int, Channel*>;
ChannelMap channels_;
private:
EventLoop *ownerLoop_; // 定义Poller所属的事件循环EventLoop
};