1 Star 0 Fork 1

向海/mymuduo

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
EventLoopThread.cc 1.30 KB
一键复制 编辑 原始数据 按行查看 历史
xianghai 提交于 2023-02-25 00:44 . initialize
#include "EventLoopThread.h"
#include "EventLoop.h"
#include <memory>
EventLoopThread::EventLoopThread(const ThreadInitCallback &cb,
const std::string &name)
: loop_(nullptr)
, exiting_(false)
, thread_(std::bind(&EventLoopThread::threadFunc, this), name)
, mutex_()
, cond_()
, callback_(cb)
{
}
EventLoopThread::~EventLoopThread()
{
exiting_ = true;
if(loop_ != nullptr)
{
loop_->quit();
thread_.join();
}
}
EventLoop *EventLoopThread::startLoop()
{
thread_.start(); // 启动底层的新线程
EventLoop *loop = nullptr;
{
std::unique_lock<std::mutex> lock(mutex_);
while(loop_ == nullptr)
{
cond_.wait(lock);
}
loop = loop_;
}
return loop;
}
// 下面这个方法,是在单独的新线程里面运行的
void EventLoopThread::threadFunc()
{
EventLoop loop; // 创建一个独立的eventloop,和上面的线程一一对应
if(callback_)
{
callback_(&loop);
}
{
std::unique_lock<std::mutex> lock(mutex_);
loop_ = &loop;
cond_.notify_one();
}
loop.loop(); // EventLoop loop ==> Poller.poll 开启事件循环
// 事件循环关闭
std::unique_lock<std::mutex> lock(mutex_);
loop_ = nullptr;
}
马建仓 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

搜索帮助