-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEventLoopThread.cc
More file actions
53 lines (45 loc) · 1.24 KB
/
Copy pathEventLoopThread.cc
File metadata and controls
53 lines (45 loc) · 1.24 KB
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
#include "EventLoopThread.h"
#include "EventLoop.h"
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_){
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,和上面的线程是一一对应的,one loop per thread */
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;
}