1 Star 0 Fork 1

向海/mymuduo

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Channel.h 2.95 KB
一键复制 编辑 原始数据 按行查看 历史
xianghai 提交于 2023-02-25 00:44 . initialize
#pragma once
#include "noncopyable.h"
#include "Timestamp.h"
#include <functional>
#include <memory>
/*
EventLoop 组合了Channel和Poller, 在reactor模型上对应了多路事件分发器
Channel 理解为通道,封装了sockfd和其感兴趣的event, 如EPOLL_IN事件
还绑定了poller返回的具体事件
*/
class EventLoop;
class Channel : noncopyable
{
public:
using EventCallback = std::function<void()>;
using ReadEventCallback = std::function<void(Timestamp)>;
Channel(EventLoop *loop, int fd);
~Channel();
// fd得到poller通知后处理事件,调用响应的回调方法
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被手动remove掉,channel还在执行回调操作
void tie(const std::shared_ptr<void> &);
int fd() const { return fd_; }
int events() const { return events_; }
int set_revents(int revents) { revents_ = revents; }
// 设置fd相应的事件状态
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();
}
// 返回fd当前的事件状态
bool isNoneEvent() const { return events_ == kNoneEvent; }
bool isWriting() const { return events_ & kWriteEvent; }
bool isReading() const { return events_ & kReadEvent; }
int index() { return index_; }
void set_index(int idx) { index_ = idx; }
// one loop per thread
EventLoop *ownerLoop() { return loop_; }
void remove();
private:
// 当改变channel所表示fd的events事件后,向poller中更新fd响应的事件
void update();
void handleEventWithGuard(Timestamp receiveTime);
static const int kNoneEvent;
static const int kReadEvent;
static const int kWriteEvent;
EventLoop *loop_; // 事件循环
const int fd_; // poller监听的对象
int events_; // 注册fd感兴趣的事件
int revents_; // poller返回的具体发生的事件
int index_; //
std::weak_ptr<void> tie_;
bool tied_;
// 因为channel通道里面能够获知fd最终发生的具体事件revents,所以它负责调用具体事件的回调操作
ReadEventCallback readCallback_;
EventCallback writeCallback_;
EventCallback closeCallback_;
EventCallback errorCallback_;
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/to-the-sea/mymuduo.git
git@gitee.com:to-the-sea/mymuduo.git
to-the-sea
mymuduo
mymuduo
master

搜索帮助