-
Notifications
You must be signed in to change notification settings - Fork 0
/
Channel.h
86 lines (66 loc) · 2.78 KB
/
Channel.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
#pragma once
#include "noncopyable.h"
#include <functional>
#include "Timestamp.h"
#include <memory>
class EventLoop;
/**
* 通道类,封装了一个socketfd及其感兴趣的event,存在一系列回调函数,绑定了poller返回的具体事件
*/
class Channel : noncopyable {
public:
// 回调函数
using EventCallback = std::function<void()>;
using ReadEventCallback = std::function<void(Timestamp)>;
Channel(EventLoop* loop, int fd);
~Channel();
// 处理事件的接口
void HandleEvent(Timestamp receiveTime);
// 设置回调函数,有读,写,关闭,错误事件
void setReadCallback(ReadEventCallback cb) { readCallback_ = std::move(cb); }
void setWriteCallback(EventCallback cb) { writeCallback_ = std::move(cb); }
void setCloseCallback(EventCallback cb) { closeCallback_ = std::move(cb); }
void setErrorCallback(EventCallback cb) { errorCallback_ = std::move(cb); }
// 绑定指针,将弱指针转为共享指针
// 防止channel被手动关闭时,channel还在执行回调函数
void tie(const std::shared_ptr<void>& );
int fd() const { return fd_; }
int events() const { return events_; }
void set_revents(int revt) { revents_ = revt; }
// 更新fd感兴趣的事件events
void enableReading() { events_ |= KReadEvent; update(); }
void disableReading() { events_ &= ~KReadEvent; update(); }
void enableWriting() { events_ |= KWriteEvent; update(); }
void disableWriting() { events_ &= ~KWriteEvent; update(); }
void disableAll() { events_ = KNoneEvent; update(); }
bool isNoneEvent() const { return events_ == KNoneEvent; }
bool isWriteEvent() const { return events_ & KWriteEvent; }
bool inReadEvent() const { return events_ & KReadEvent; }
int index() { return index_; }
void set_index(int idx) { index_ = idx; }
// 返回所属于的loop
EventLoop* ownerLoop() { return loop_; }
void remove();
private:
// 通知所属的eventloop更新events
void update();
// 根据事件event类型进行相应的处理
void handleEventWithGuard(Timestamp receiveTime);
// 三种事件
static const int KNoneEvent;
static const int KReadEvent;
static const int KWriteEvent;
EventLoop *loop_; // 事件循环
const int fd_; // 绑定的fd,poller监听的对象
int events_; // 注册fd感兴趣的事件
int revents_; // poller返回的具体发生的事件
int index_;
std::weak_ptr<void> tie_;
bool tied_;
// 四种回调函数
// channel通道里面能够获知fd最终发生的具体的事件events,所以它负责调用具体的回调函数
ReadEventCallback readCallback_;
EventCallback writeCallback_;
EventCallback closeCallback_;
EventCallback errorCallback_;
};