-
Notifications
You must be signed in to change notification settings - Fork 0
/
TcpConnection.cc
260 lines (226 loc) · 7.47 KB
/
TcpConnection.cc
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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
#include "TcpConnection.h"
#include "Logger.h"
#include "Socket.h"
#include "Channel.h"
#include "EventLoop.h"
#include <functional>
#include <errno.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <strings.h>
#include <netinet/tcp.h>
#include <sys/socket.h>
#include <string>
#include <unistd.h>
static EventLoop* CheckLoopNotNull(EventLoop* loop) {
if(loop == nullptr) {
LOG_FATAL("%s:%s:%d TcpConnection is null! \n", __FILE__, __FUNCTION__, __LINE__);
}
return loop;
}
TcpConnection::TcpConnection(EventLoop* loop, const std::string &name, int sockfd
, const InetAddress& localAddr
, const InetAddress& peerAddr)
: loop_(CheckLoopNotNull(loop))
, name_(name)
, state_(kConnecting)
, reading_(true)
, socket_(new Socket(sockfd))
, channel_(new Channel(loop, sockfd))
, localAddr_(localAddr)
, peerAddr_(peerAddr)
, highWaterMark_(64*1024*1024) {
channel_->setReadCallback(std::bind(&TcpConnection::handleRead, this, std::placeholders::_1));
channel_->setWriteCallback(std::bind(&TcpConnection::handleWrite, this));
channel_->setCloseCallback(std::bind(&TcpConnection::handleClose, this));
channel_->setErrorCallback(std::bind(&TcpConnection::handleError, this));
LOG_INFO("TcpConnection::ctor[%s] at fd=%d\n", name_.c_str(), sockfd);
socket_->setKeepAlive(true);
}
TcpConnection::~TcpConnection() {
LOG_INFO("TcpConnection::dtor[%s] at fd=%d state=%d \n", name_.c_str(), channel_->fd(), (int)state_);
}
void TcpConnection::handleRead(Timestamp receiveTime) {
int saveError = 0;
// 从fd中读取
int n = inputBuffer_.readFd(channel_->fd(), &saveError);
if(n > 0) {
messageCallback_(shared_from_this(), &inputBuffer_, receiveTime);
}
else if(n == 0) {
handleClose();
}
else {
errno = saveError;
LOG_ERROR("TcpConnection::handleRead");
handleError();
}
}
void TcpConnection::handleWrite() {
if(channel_->isWriteEvent()) {
int saveError = 0;
int n = outputBuffer_.writeFd(channel_->fd(), &saveError);
if(n > 0) {
outputBuffer_.retrieve(n);
if(outputBuffer_.readableBytes() == 0) {
channel_->disableWriting();
if(writeCompleteCallback_) {
loop_->queueInLoop(
std::bind(writeCompleteCallback_, shared_from_this())
);
}
}
if(state_ == kDisconnecting) {
shutdownInLoop();
}
}
else {
LOG_ERROR("TcpConnection::handleWrite");
}
}
else {
LOG_ERROR("TcpConnection fd=%d is down, no more writing \n", channel_->fd());
}
}
void TcpConnection::send(const void* data, int len) {
send(std::string(static_cast<const char*>(data), len));
}
void TcpConnection::send(const std::string& data) {
if(state_ == kConnected) {
if(loop_->isInLoopThread()) {
sendInLoop(data.c_str(), data.size());
}
else {
loop_->runInLoop(
std::bind(&TcpConnection::sendInLoop, this, data.c_str(), data.size())
);
}
}
}
void TcpConnection::send(Buffer* buf) {
if(state_ == kConnected) {
if(loop_->isInLoopThread()) {
sendInLoop(buf->peek(), buf->readableBytes());
buf->retrieveAll();
}
else {
std::string data = buf->retrieveAllAsString();
loop_->runInLoop(
std::bind(&TcpConnection::sendInLoop, this, data.c_str(), data.size())
);
}
}
}
//void TcpConnection::sendInLoop(const std::string& message) {
// sendInLoop(message.c_str(), message.size());
//}
void TcpConnection::sendInLoop(const void *message, size_t len) {
ssize_t nwrote = 0;
size_t remaining = len;
bool faultError = false;
// 判断连接状态
if(state_ == kDisconnected) {
LOG_ERROR("disconnected, give up writing!");
return ;
}
// 第一次发送数据,且缓冲区没有待发送数据
if(!channel_->isWriteEvent() && outputBuffer_.readableBytes() == 0) {
nwrote = ::write(channel_->fd(), message, len);
if(nwrote >= 0) {
remaining = len - nwrote;
// 一次性发送完成,调用写完成事件
if(remaining == 0 && writeCompleteCallback_) {
loop_->queueInLoop(
std::bind(writeCompleteCallback_, shared_from_this())
);
}
}
else {
nwrote = 0;
if(errno != EWOULDBLOCK) {
LOG_ERROR("TcpConnection::sendInLoop");
if(errno == EPIPE || errno == ECONNRESET) { //对方关闭管道或连接重置
faultError = true;
}
}
}
}
// 还有剩余数据未发送,将剩余数据保存到输出buffer中,并给channel注册epollout事件
// poller发现发送缓冲区有空间,通知对应的channel调用handlewrite事件
if(!faultError && remaining > 0) {
size_t oldlen = outputBuffer_.readableBytes();
if(oldlen + remaining >= highWaterMark_ && oldlen < highWaterMark_ && highWaterMarkCallback_) {
loop_->queueInLoop(
std::bind(highWaterMarkCallback_, shared_from_this(), oldlen+remaining)
);
}
outputBuffer_.append((char*)message+nwrote, remaining);
if(!channel_->isWriteEvent()) {
channel_->enableWriting();
}
}
}
// 关闭写端
void TcpConnection::shutdown() {
if(state_ == kConnected) {
setState(kDisconnecting);
loop_->runInLoop(
std::bind(&TcpConnection::shutdownInLoop, this)
);
}
}
void TcpConnection::shutdownInLoop() {
if(!channel_->isWriteEvent()) {
socket_->shutdownWrite();
}
}
void TcpConnection::setTcpNoDelay(bool on) {
socket_->setTcpNoDelay(on);
}
void TcpConnection::forceClose() {
if(state_ == kConnected || state_ == kDisconnecting) {
setState(kDisconnecting);
loop_->queueInLoop(std::bind(&TcpConnection::forceCloseInLoop, shared_from_this()));
}
}
void TcpConnection::forceCloseInLoop() {
if(state_ == kConnected || state_ == kDisconnecting) {
handleClose();
}
}
// 连接建立
void TcpConnection::connectEstableished() {
setState(kConnected);
channel_->tie(shared_from_this()); // 绑定
channel_->enableReading(); // 设置可读
connectionCallback_(shared_from_this());
}
// 连接销毁
// FIXME: 多线程时,客户端关闭时多次调用??在centos上有这bug,在ubuntu上无bug
void TcpConnection::connectDestroyed() {
if(state_ == kConnected) {
setState(kDisconnected);
channel_->disableAll();
connectionCallback_(shared_from_this());
}
channel_->remove();
}
void TcpConnection::handleClose() {
LOG_INFO("fd=%d, state=%d \n", channel_->fd(), (int)state_);
setState(kDisconnected);
TcpConnectionPtr connPtr(shared_from_this());
connectionCallback_(connPtr);
closeCallback_(connPtr);
}
void TcpConnection::handleError() {
int optval;
socklen_t optlen = sizeof optval;
int err = 0;
if(::getsockopt(channel_->fd(), SOL_SOCKET, SO_ERROR, &optval, &optlen) < 0) {
err = errno;
}
else {
err = optval;
}
LOG_ERROR("TcpConnection::handleError name:%s - SO_ERROR:%d \n", name_.c_str(), err);
}