-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathserver_old.cpp
338 lines (301 loc) · 6.37 KB
/
server_old.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
/***********************************************
File Name: server.cpp
Author: Abby Cin
Mail: [email protected]
Created Time: 9/9/16 7:51 PM
***********************************************/
#include <iostream>
#include <thread>
#include <boost/asio.hpp>
#include <mutex>
#include <queue>
#include <sys/wait.h>
using boost::asio::io_service;
using namespace boost::asio::ip;
using boost::system::error_code;
using boost::asio::async_read_until;
using boost::asio::async_write;
using Callback = std::function<void()>;
/// \brief User defined business processing unit
/**
* This class is just a sample class which aim to demostrating
* how to use the infrastructure 'loop-per-thread', you can
* define your own 'Session' that has the same structure but with
* different task processing functions to match your own needs.
*/
class Session : public std::enable_shared_from_this<Session> {
public:
static std::shared_ptr<Session> make_session(io_service &io)
{
return std::make_shared<Session>(io);
}
Session(io_service &io) : socket_(io), cb_()
{
}
~Session()
{
if (socket_.is_open())
socket_.close();
}
tcp::socket &socket()
{
return socket_;
}
void set_callback(Callback &&cb)
{
cb_ = std::move(cb);
}
void run()
{
do_read();
}
private:
tcp::socket socket_;
Callback cb_;
boost::asio::streambuf buf_;
void do_read()
{
// NOTE: client may never send a '\n'
async_read_until(socket_,
buf_,
'\n',
[this, self = shared_from_this()](
const error_code &ec, size_t bytes)
{
buf_.consume(bytes);
processing(ec, bytes);
});
}
void processing(const error_code &e, size_t)
{
if (e) {
std::cerr << e.message() << std::endl;
return;
}
async_write(socket_,
boost::asio::buffer("pong\n"),
[this, self = shared_from_this()](
const error_code &ec, size_t)
{
if (ec)
std::cerr << ec.message()
<< std::endl;
else
do_read();
if (cb_)
cb_();
});
}
};
using SessionPtr = std::shared_ptr<Session>;
/// \brief This is a slave class which manage a bunch of tasks.
/**
* This class is designed to enqueue new tasks and dequeue tasks
* which are about to executing. Also, it has ability to cancel
* queued tasks from the eventloop.
*/
class Worker {
public:
Worker()
: rbuf_(0)
, wbuf_(0)
, reader_(io_)
, writer_(io_)
, read_buf_(&rbuf_, sizeof rbuf_)
, write_buf_(&wbuf_, sizeof wbuf_)
, thread_([this] { thread_func(); })
{
}
~Worker()
{
if (thread_.joinable())
thread_.join();
}
io_service &get_io_service()
{
return io_;
}
void enqueue(SessionPtr session)
{
enqueue_writer(session);
}
void stop()
{
std::lock_guard<std::mutex> lg(mtx_);
io_.stop();
}
private:
char rbuf_, wbuf_;
io_service io_;
boost::asio::local::stream_protocol::socket reader_, writer_;
boost::asio::mutable_buffers_1 read_buf_;
boost::asio::const_buffers_1 write_buf_;
std::thread thread_;
std::queue<SessionPtr> tasks_;
std::mutex mtx_;
void enqueue_reader()
{
reader_.async_read_some(
read_buf_,
[this](const error_code &ec, size_t bytes)
{ read_handle(ec, bytes); });
}
void enqueue_writer(SessionPtr session)
{
std::lock_guard<std::mutex> lg(mtx_);
tasks_.push(session);
writer_.write_some(write_buf_);
}
void read_handle(const error_code &ec, size_t)
{
if (ec)
return;
std::lock_guard<std::mutex> lg(mtx_);
while (!tasks_.empty()) {
auto session = tasks_.front();
session->run();
tasks_.pop();
}
enqueue_reader();
}
void thread_func()
{
boost::asio::local::connect_pair(reader_, writer_);
enqueue_reader();
io_.run();
}
};
using WorkerPtr = std::shared_ptr<Worker>;
/// \brief This class manage loops on threads
/**
* - passively wait client's connection
* - create session for each connection
* - assign session to worker thread
*/
class Manager {
public:
Manager(io_service &io, tcp::endpoint &&ep, unsigned long num)
: num_(num), cur_(0), acceptor_(io, std::move(ep), true)
{
for (unsigned long i = 0; i < num_; ++i)
workers_.emplace_back(std::make_shared<Worker>());
acceptor_.listen();
start_accept();
}
~Manager()
{
}
void stop()
{
acceptor_.cancel();
for (auto &x : workers_)
x->stop();
}
private:
unsigned long num_;
unsigned long cur_;
tcp::acceptor acceptor_;
std::vector<WorkerPtr> workers_;
void accept_handle(SessionPtr session,
WorkerPtr worker,
const error_code &ec)
{
if (!ec) {
++cur_;
worker->enqueue(session);
start_accept();
}
}
void start_accept()
{
if (cur_ == num_)
cur_ = 0;
auto worker = workers_.at(cur_);
auto session(Session::make_session(worker->get_io_service()));
acceptor_.async_accept(
session->socket(),
[this, session, worker](const error_code &ec)
{ accept_handle(session, worker, ec); });
}
};
/// \brief A wrapper class for users
/**
* - supplying eventloop for manager class
* - monitor specific signals
* - control manager class's start and stop
*/
class Server {
public:
Server(tcp::endpoint &&ep, unsigned long num = 1)
: sg_(io_), manager_(io_, std::move(ep), num)
{
sg_.add(SIGINT);
sg_.add(SIGQUIT);
sg_.add(SIGTERM);
sg_.async_wait(
[this](const error_code &ec, int sig)
{
if (ec)
std::cerr << ec.message() << std::endl;
std::cerr << "Caught signal " << sig
<< ", exit.\n";
stop();
});
}
void run()
{
io_.run();
}
void stop()
{
manager_.stop();
io_.stop();
}
private:
io_service io_;
boost::asio::signal_set sg_;
Manager manager_;
};
void loop(int port, int num)
{
try {
Server se(tcp::endpoint(address_v4::any(), port), num);
se.run();
}
catch (const boost::system::system_error &e) {
std::cerr << e.what() << std::endl;
}
}
int main(int argc, char *argv[])
{
if (argc != 4) {
fprintf(stderr,
"%s child_num thread_num_per_child start_port\n",
argv[0]);
fprintf(stderr,
"Example:\n%s 10 2 8888\ncreate 10 child process, 2 "
"thread"
" per child, listen port range from 8888 to (8888 + "
"10)\n",
argv[0]);
return 1;
}
int child_num = std::stoi(argv[1]);
int thread_num = std::stoi(argv[2]);
int port = std::stoi(argv[3]);
pid_t pid = 0;
for (int i = 0; i < child_num; ++i, ++port) {
switch ((pid = fork())) {
case -1:
perror("fork");
return 1;
case 0:
loop(port, thread_num);
return 0;
default:
break;
}
}
while (wait(NULL) != -1)
continue;
}