通信的套接字类

TcpSocket.h

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
#pragma once

/* 用于通信的套接字类 */
// 超时的时间
static const int TIMEOUT = 1000;
class TcpSocket
{
public:
enum ErrorType {ParamError = 3001, TimeoutError, PeerCloseError, MallocError};
TcpSocket();
// 使用一个可以用于通信的套接字实例化套接字对象
TcpSocket(int connfd);
~TcpSocket();

// 连接服务器
int connectToHost(char* ip, unsigned short port, int timeout = TIMEOUT);
// 发送数据
int sendMsg(char* sendData, int dataLen, int timeout = TIMEOUT);
// 接收数据
int recvMsg(char** recvData, int &recvLen, int timeout = TIMEOUT);
// 断开连接
void disConnect();
// 释放内存
void freeMemory(char** buf);

private:
// 设置I/O为非阻塞模式
int blockIO(int fd);
// 设置I/O为阻塞模式
int noBlockIO(int fd);
// 读超时检测函数,不含读操作
int readTimeout(unsigned int wait_seconds);
// 写超时检测函数, 不包含写操作
int writeTimeout(unsigned int wait_seconds);
// 带连接超时的connect函数
int connectTimeout(struct sockaddr_in *addr, unsigned int wait_seconds);
// 每次从缓冲区中读取n个字符
int readn(void *buf, int count);
// 每次往缓冲区写入n个字符
int writen(const void *buf, int count);

private:
int m_socket; // 用于通信的套接字
};


TcpSocket.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
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
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
#include "TcpSocket.h"
#include <unistd.h>
#include <sys/types.h>
#include <fcntl.h>
#include <sys/select.h>
#include <sys/time.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <netdb.h>
#include <stdio.h>
#include <errno.h>
#include <string.h>
#include <stdlib.h>

TcpSocket::TcpSocket()
{
}


TcpSocket::TcpSocket(int connfd)
{
m_socket = connfd;
}

TcpSocket::~TcpSocket()
{
printf("TcpSocket 被析构...\n");
}

int TcpSocket::connectToHost(char * ip, unsigned short port, int timeout)
{
int ret = 0;
if (ip == NULL || port <= 0 || port > 65535 || timeout < 0)
{
ret = ParamError;
return ret;
}

m_socket = socket(PF_INET, SOCK_STREAM, IPPROTO_TCP);
if (m_socket < 0)
{
ret = errno;
printf("func socket() err: %d\n", ret);
return ret;
}

struct sockaddr_in servaddr;
memset(&servaddr, 0, sizeof(servaddr));
servaddr.sin_family = AF_INET;
servaddr.sin_port = htons(port);
servaddr.sin_addr.s_addr = inet_addr(ip);

ret = connectTimeout((struct sockaddr_in*) (&servaddr), (unsigned int)timeout);
if (ret < 0)
{
if (ret == -1 && errno == ETIMEDOUT)
{
ret = TimeoutError;
return ret;
}
else
{
//printf("func connect_timeout() err: %d\n", ret);
}
}

return ret;
}

int TcpSocket::sendMsg(char * sendData, int dataLen, int timeout)
{
int ret = 0;

if (sendData == NULL || dataLen <= 0)
{
ret = ParamError;
return ret;
}

ret = writeTimeout(timeout);
if (ret == 0)
{
int writed = 0;
unsigned char *netdata = (unsigned char *)malloc(dataLen + 4);
if (netdata == NULL)
{
ret = MallocError;
printf("func sckClient_send() mlloc Err:%d\n ", ret);
return ret;
}
int netlen = htonl(dataLen);
memcpy(netdata, &netlen, 4);
memcpy(netdata + 4, sendData, dataLen);

writed = writen(netdata, dataLen + 4);
if (writed < (dataLen + 4))
{
if (netdata != NULL)
{
free(netdata);
netdata = NULL;
}
return writed;
}

if (netdata != NULL) //wangbaoming 20150630 modify bug
{
free(netdata);
netdata = NULL;
}
}

if (ret < 0)
{
//失败返回-1,超时返回-1并且errno = ETIMEDOUT
if (ret == -1 && errno == ETIMEDOUT)
{
ret = TimeoutError;
printf("func sckClient_send() mlloc Err:%d\n ", ret);
return ret;
}
return ret;
}

return ret;
}

int TcpSocket::recvMsg(char ** recvData, int & recvLen, int timeout)
{
int ret = 0;

if (recvData == NULL || recvLen == NULL)
{
ret = ParamError;
printf("func sckClient_rev() timeout , err:%d \n", TimeoutError);
return ret;
}

ret = readTimeout(timeout); //bugs modify bombing
if (ret != 0)
{
if (ret == -1 || errno == ETIMEDOUT)
{
ret = TimeoutError;
return ret;
}
else
{
return ret;
}
}

int netdatalen = 0;
ret = readn(&netdatalen, 4); //读包头 4个字节
if (ret == -1)
{
//printf("func readn() err:%d \n", ret);
return ret;
}
else if (ret < 4)
{
ret = PeerCloseError;
//printf("func readn() err peer closed:%d \n", ret);
return ret;
}

int n;
n = ntohl(netdatalen);
char* tmpBuf = (char *)malloc(n + 1);
if (tmpBuf == NULL)
{
ret = MallocError;
return ret;
}


ret = readn(tmpBuf, n); //根据长度读数据
if (ret == -1)
{
//printf("func readn() err:%d \n", ret);
return ret;
}
else if (ret < n)
{
ret = PeerCloseError;
//printf("func readn() err peer closed:%d \n", ret);
return ret;
}

*recvData = tmpBuf;
recvLen = n;
tmpBuf[n] = '\0'; //多分配一个字节内容,兼容可见字符串 字符串的真实长度仍然为n

return 0;
}

void TcpSocket::disConnect()
{
if (m_socket >= 0)
{
close(m_socket);
}
}

void TcpSocket::freeMemory(char ** buf)
{
if (*buf != NULL)
{
free(*buf);
*buf = NULL;
}
}

/////////////////////////////////////////////////
////// 子函数 //////
/////////////////////////////////////////////////
/*
* blockIO - 设置I/O为非阻塞模式
* @fd: 文件描符符
*/
int TcpSocket::blockIO(int fd)
{
int ret = 0;
int flags = fcntl(fd, F_GETFL);
if (flags == -1)
{
ret = flags;
return ret;
}

flags |= O_NONBLOCK;
ret = fcntl(fd, F_SETFL, flags);
if (ret == -1)
{
return ret;
}
return ret;
}

/*
* noBlockIO - 设置I/O为阻塞模式
* @fd: 文件描符符
*/
int TcpSocket::noBlockIO(int fd)
{
int ret = 0;
int flags = fcntl(fd, F_GETFL);
if (flags == -1)
{
ret = flags;
return ret;
}

flags &= ~O_NONBLOCK;
ret = fcntl(fd, F_SETFL, flags);
if (ret == -1)
{
return ret;
}
return ret;
}

/*
* readTimeout - 读超时检测函数,不含读操作
* @wait_seconds: 等待超时秒数,如果为0表示不检测超时
* 成功(未超时)返回0,失败返回-1,超时返回-1并且errno = ETIMEDOUT
*/
int TcpSocket::readTimeout(unsigned int wait_seconds)
{
int ret = 0;
if (wait_seconds > 0)
{
fd_set read_fdset;
struct timeval timeout;

FD_ZERO(&read_fdset);
FD_SET(m_socket, &read_fdset);

timeout.tv_sec = wait_seconds;
timeout.tv_usec = 0;

//select返回值三态
//1 若timeout时间到(超时),没有检测到读事件 ret返回=0
//2 若ret返回<0 && errno == EINTR 说明select的过程中被别的信号中断(可中断睡眠原理)
//2-1 若返回-1,select出错
//3 若ret返回值>0 表示有read事件发生,返回事件发生的个数

do
{
ret = select(m_socket + 1, &read_fdset, NULL, NULL, &timeout);

} while (ret < 0 && errno == EINTR);

if (ret == 0)
{
ret = -1;
errno = ETIMEDOUT;
}
else if (ret == 1)
ret = 0;
}

return ret;
}

/*
* writeTimeout - 写超时检测函数,不含写操作
* @wait_seconds: 等待超时秒数,如果为0表示不检测超时
* 成功(未超时)返回0,失败返回-1,超时返回-1并且errno = ETIMEDOUT
*/
int TcpSocket::writeTimeout(unsigned int wait_seconds)
{
int ret = 0;
if (wait_seconds > 0)
{
fd_set write_fdset;
struct timeval timeout;

FD_ZERO(&write_fdset);
FD_SET(m_socket, &write_fdset);

timeout.tv_sec = wait_seconds;
timeout.tv_usec = 0;
do
{
ret = select(m_socket + 1, NULL, &write_fdset, NULL, &timeout);
} while (ret < 0 && errno == EINTR);

if (ret == 0)
{
ret = -1;
errno = ETIMEDOUT;
}
else if (ret == 1)
ret = 0;
}

return ret;
}

/*
* connectTimeout - connect
* @addr: 要连接的对方地址
* @wait_seconds: 等待超时秒数,如果为0表示正常模式
* 成功(未超时)返回0,失败返回-1,超时返回-1并且errno = ETIMEDOUT
*/
int TcpSocket::connectTimeout(sockaddr_in *addr, unsigned int wait_seconds)
{
int ret;
socklen_t addrlen = sizeof(struct sockaddr_in);

if (wait_seconds > 0)
blockIO(m_socket);

ret = connect(m_socket, (struct sockaddr*)addr, addrlen);
if (ret < 0 && errno == EINPROGRESS)
{
//printf("11111111111111111111\n");
fd_set connect_fdset;
struct timeval timeout;
FD_ZERO(&connect_fdset);
FD_SET(m_socket, &connect_fdset);
timeout.tv_sec = wait_seconds;
timeout.tv_usec = 0;
do
{
// 一但连接建立,则套接字就可写 所以connect_fdset放在了写集合中
ret = select(m_socket + 1, NULL, &connect_fdset, NULL, &timeout);
} while (ret < 0 && errno == EINTR);
if (ret == 0)
{
ret = -1;
errno = ETIMEDOUT;
}
else if (ret < 0)
return -1;
else if (ret == 1)
{
//printf("22222222222222222\n");
/* ret返回为1(表示套接字可写),可能有两种情况,一种是连接建立成功,一种是套接字产生错误,*/
/* 此时错误信息不会保存至errno变量中,因此,需要调用getsockopt来获取。 */
int err;
socklen_t socklen = sizeof(err);
int sockoptret = getsockopt(m_socket, SOL_SOCKET, SO_ERROR, &err, &socklen);
if (sockoptret == -1)
{
return -1;
}
if (err == 0)
{
//printf("3333333333333\n");
ret = 0;
}
else
{
//printf("4444444444444444:%d\n", err);
errno = err;
ret = -1;
}
}
}
if (wait_seconds > 0)
{
noBlockIO(m_socket);
}
return ret;
}

/*
* readn - 读取固定字节数
* @fd: 文件描述符
* @buf: 接收缓冲区
* @count: 要读取的字节数
* 成功返回count,失败返回-1,读到EOF返回<count
*/
int TcpSocket::readn(void *buf, int count)
{
size_t nleft = count;
ssize_t nread;
char *bufp = (char*)buf;

while (nleft > 0)
{
if ((nread = read(m_socket, bufp, nleft)) < 0)
{
if (errno == EINTR)
continue;
return -1;
}
else if (nread == 0)
return count - nleft;

bufp += nread;
nleft -= nread;
}

return count;
}

/*
* writen - 发送固定字节数
* @buf: 发送缓冲区
* @count: 要读取的字节数
* 成功返回count,失败返回-1
*/
int TcpSocket::writen(const void *buf, int count)
{
size_t nleft = count;
ssize_t nwritten;
char *bufp = (char*)buf;

while (nleft > 0)
{
if ((nwritten = write(m_socket, bufp, nleft)) < 0)
{
if (errno == EINTR)
continue;
return -1;
}
else if (nwritten == 0)
continue;

bufp += nwritten;
nleft -= nwritten;
}

return count;
}