-
Notifications
You must be signed in to change notification settings - Fork 240
/
Copy pathPingPongServer.cpp
81 lines (69 loc) · 2.36 KB
/
PingPongServer.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
#include <atomic>
#include <brynet/base/AppStatus.hpp>
#include <brynet/net/EventLoop.hpp>
#include <brynet/net/TcpService.hpp>
#include <brynet/net/wrapper/ServiceBuilder.hpp>
#include <iostream>
#include <mutex>
using namespace brynet;
using namespace brynet::net;
std::atomic_llong TotalRecvSize = ATOMIC_VAR_INIT(0);
std::atomic_llong total_client_num = ATOMIC_VAR_INIT(0);
std::atomic_llong total_packet_num = ATOMIC_VAR_INIT(0);
int main(int argc, char** argv)
{
if (argc != 3)
{
fprintf(stderr, "Usage: <listen port> <net work thread num>\n");
exit(-1);
}
auto service = IOThreadTcpService::Create();
service->startWorkerThread(atoi(argv[2]));
auto enterCallback = [](const TcpConnection::Ptr& session) {
total_client_num++;
session->setDataCallback([session](brynet::base::BasePacketReader& reader) {
session->send(reader.begin(), reader.size());
TotalRecvSize += reader.size();
total_packet_num++;
reader.consumeAll();
});
session->setDisConnectCallback([](const TcpConnection::Ptr& session) {
(void) session;
total_client_num--;
});
};
wrapper::ListenerBuilder listener;
listener.WithService(service)
.AddSocketProcess({[](TcpSocket& socket) {
socket.setNodelay();
}})
.WithMaxRecvBufferSize(1024)
.AddEnterCallback(enterCallback)
.WithAddr(false, "0.0.0.0", atoi(argv[1]))
.asyncRun();
EventLoop mainLoop;
while (true)
{
mainLoop.loop(1000);
if (TotalRecvSize / 1024 == 0)
{
std::cout << "total recv : " << TotalRecvSize << " bytes/s, of client num:" << total_client_num << std::endl;
}
else if ((TotalRecvSize / 1024) / 1024 == 0)
{
std::cout << "total recv : " << TotalRecvSize / 1024 << " K/s, of client num:" << total_client_num << std::endl;
}
else
{
std::cout << "total recv : " << (TotalRecvSize / 1024) / 1024 << " M/s, of client num:" << total_client_num << std::endl;
}
std::cout << "packet num:" << total_packet_num << std::endl;
total_packet_num = 0;
TotalRecvSize = 0;
if (brynet::base::app_kbhit())
{
break;
}
}
return 0;
}