-
Notifications
You must be signed in to change notification settings - Fork 211
/
Copy pathEventLoop.cpp
executable file
·143 lines (123 loc) · 2.74 KB
/
EventLoop.cpp
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
/*
Copyright © 2017-2020, orcaer@yeah.net All rights reserved.
Author: orcaer@yeah.net
Last modified: 2019-6-17
Description: https://github.com/wlgq2/uv-cpp
*/
#include "include/EventLoop.hpp"
#include "include/TcpConnection.hpp"
#include "include/Async.hpp"
using namespace uv;
EventLoop::EventLoop()
:EventLoop(EventLoop::Mode::New)
{
}
EventLoop::EventLoop(EventLoop::Mode mode)
:loop_(nullptr),
async_(nullptr),
status_(NotStarted)
{
if (mode == EventLoop::Mode::New)
{
loop_ = new uv_loop_t();
::uv_loop_init(loop_);
}
else
{
loop_ = uv_default_loop();
}
async_ = new Async(this);
}
EventLoop::~EventLoop()
{
if (loop_ != uv_default_loop())
{
uv_loop_close(loop_);
delete async_;
delete loop_;
}
}
EventLoop* uv::EventLoop::DefaultLoop()
{
static EventLoop defaultLoop(EventLoop::Mode::Default);
return &defaultLoop;
}
uv_loop_t* EventLoop::handle()
{
return loop_;
}
int EventLoop::run()
{
if (status_ == Status::NotStarted)
{
async_->init();
loopThreadId_ = std::this_thread::get_id();
status_ = Status::Started;
auto rst = ::uv_run(loop_, UV_RUN_DEFAULT);
status_ = Status::Stopped;
return rst;
}
return -1;
}
int uv::EventLoop::runNoWait()
{
if (status_ == Status::NotStarted)
{
async_->init();
loopThreadId_ = std::this_thread::get_id();
status_ = Status::Started;
auto rst = ::uv_run(loop_, UV_RUN_NOWAIT);
status_ = Status::NotStarted;
return rst;
}
return -1;
}
int uv::EventLoop::stop()
{
if (status_ == Status::Started)
{
async_->close([](Async* ptr)
{
::uv_stop(ptr->Loop()->handle());
});
return 0;
}
return -1;
}
bool EventLoop::isStopped()
{
return status_ == Status::Stopped;
}
EventLoop::Status EventLoop::getStatus()
{
return status_;
}
bool EventLoop::isRunInLoopThread()
{
if (status_ == Status::Started)
{
return std::this_thread::get_id() == loopThreadId_;
}
//EventLoop未运行.
return false;
}
void uv::EventLoop::runInThisLoop(const DefaultCallback func)
{
if (nullptr == func)
return;
if (isRunInLoopThread() || isStopped())
{
func();
return;
}
async_->runInThisLoop(func);
}
const char* EventLoop::GetErrorMessage(int status)
{
if (WriteInfo::Disconnected == status)
{
static char info[] = "the connection is disconnected";
return info;
}
return uv_strerror(status);
}