-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebserver.cpp
More file actions
executable file
·456 lines (392 loc) · 14.5 KB
/
webserver.cpp
File metadata and controls
executable file
·456 lines (392 loc) · 14.5 KB
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
#include "webserver.h"
#include "devlop/threadpool_default_scheduler.h"
template<class HttpConn>
yumira::WebServer<HttpConn>::WebServer() {
//http_conn类对象
httpConnForUsers = new http_conn[MAX_FD];
//定时器
users_timer = new client_data_t[MAX_FD];
//root文件夹路径
char server_abspath[200];
getcwd(server_abspath, 200);
m_root = (char *) malloc(strlen(server_abspath) + strlen(resourceFolder) + 1);
strcpy(m_root, server_abspath);
strcat(m_root, resourceFolder);
/** store useful info */
Node *p_m_root = new StringNode(m_root);
Node *p_resourceFolder = new StringNode(resourceFolder);
Node *p_server_abspath = new StringNode(server_abspath);
server_configs.put("template_root", p_m_root);
server_configs.put("template_relative_path", p_resourceFolder);
server_configs.put("app_root", p_server_abspath);
__show_configs();
}
template<class HttpConn>
void
yumira::WebServer<HttpConn>::init(int port, string user,
string passWord, string databaseName,
int log_write,
int opt_linger,
int trigmode, int sql_num, int thread_num,
int close_log,
int actor_model) {
m_port = port;
m_user = user;
m_passWord = passWord;
m_databaseName = databaseName;
m_sql_num = sql_num;
m_thread_num = thread_num;
m_log_write = log_write;
SOCKET_OPT_LINGER = opt_linger;
m_TRIGMode = trigmode;
m_close_log = close_log;
actorMode = actor_model;
}
template<class HttpConn>
void yumira::WebServer<HttpConn>::setTrigMode() {
//LT + LT
if (0 == m_TRIGMode) {
m_LISTENTrigmode = 0;
m_CONNTrigmode = 0;
}
//LT + ET
else if (1 == m_TRIGMode) {
m_LISTENTrigmode = 0;
m_CONNTrigmode = 1;
}
//ET + LT
else if (2 == m_TRIGMode) {
m_LISTENTrigmode = 1;
m_CONNTrigmode = 0;
}
//ET + ET
else if (3 == m_TRIGMode) {
m_LISTENTrigmode = 1;
m_CONNTrigmode = 1;
}
}
template<class HttpConn>
void
yumira::WebServer<HttpConn>::init_log_write() {
if (M_ENABLED_LOG == m_close_log) {
//初始化日志
if (1 == m_log_write)
Logger::getInstance()->init(severLogPath, m_close_log, 2000, 800000, 800);
else
Logger::getInstance()->init(severLogPath, m_close_log, 2000, 800000, 0);
}
}
template<class HttpConn>
void yumira::WebServer<HttpConn>::sql_pool() {
//初始化数据库连接池
m_connPool = connection_pool::builder()
.url(M_DEFAULT_URL)
.user(m_user)
.passWord(m_passWord)
.dataBaseName(m_databaseName)
.port(M_DEFAULT_PORT)
.maxConn(m_sql_num)
.close_log(m_close_log).build();
//初始化数据库读取表
httpConnForUsers->initmysql_result(m_connPool);
}
template<class HttpConn>
void yumira::WebServer<HttpConn>::createThreadPool() {
//线程池
http_conn_pool = new threadPool<HttpConn>(m_thread_num);
auto scheduler = new ThreadPoolTaskDefaultScheduler<HttpConn>(http_conn_pool, actorMode, m_connPool);
}
template<class HttpConn>
void yumira::WebServer<HttpConn>::registerEventListen() {
//网络编程基础步骤
m_listenfd = socket(PF_INET, SOCK_STREAM, 0);
if (m_listenfd < 0) {
fprintf(stderr, "[WARN] create socket failed!\n%s\n", strerror(errno));
}
/** gracefully close connection.
* means when close a TCP connection,will send the residual data to client */
if (0 == SOCKET_OPT_LINGER) {
struct linger tmp = {0, 1}; // { on/off linger, risidual time }
/**
* l_onoff been not zero, l_linger > 0:
* close action determined by 2 conditions:
* 1) if there exist data ?
* 2) if the socket is block?
* for block socket, close will wait a period of time set in "l_linger" .
* */
setsockopt(m_listenfd, SOL_SOCKET, SO_LINGER, &tmp, sizeof(tmp));
} else if (1 == SOCKET_OPT_LINGER) {
struct linger tmp = {1, 1};
setsockopt(m_listenfd, SOL_SOCKET, SO_LINGER, &tmp, sizeof(tmp));
}
int ret = 0;
struct sockaddr_in address;
bzero(&address, sizeof(address));
address.sin_family = AF_INET;
address.sin_addr.s_addr = htonl(INADDR_ANY);
address.sin_port = htons(m_port);
// force recycling use local address 5.11
// force recycling use local address 5.11
constexpr int REUSE = 1;
setsockopt(m_listenfd, SOL_SOCKET, SO_REUSEADDR, &REUSE, sizeof(REUSE));
if ((ret = bind(m_listenfd, (struct sockaddr *) &address, sizeof(address))) < 0) {
throw NetworkExpcetion("[WARN] bind() failed!");
}
if ((ret = listen(m_listenfd, 5)) < 0) {
throw NetworkExpcetion("[WARN] listen() failed!");
}
utils.init(TIMESLOT);
//epoll创建内核事件表
// epoll_event events[MAX_EVENT_NUMBER];
m_epollfd = epoll_create(5);
assert(m_epollfd != -1);
utils.regist_fd(m_epollfd, m_listenfd, false, m_LISTENTrigmode);
http_conn::m_epollfd = m_epollfd;
/** create a pair of socket,store in m_pipefd */
assert((ret = socketpair(PF_UNIX, SOCK_STREAM, 0, m_pipefd)) != -1);
utils.setNonBlocking(m_pipefd[1]);
// m_pipefd[0] use for send signal to main thread
utils.regist_fd(m_epollfd, m_pipefd[0], false, 0);
utils.addsig(SIGPIPE, SIG_IGN);
utils.addsig(SIGALRM, utils.sig_handler, false);
utils.addsig(SIGTERM, utils.sig_handler, false);
alarm(TIMESLOT);
//工具类,信号和描述符基础操作
Utils::u_pipefd = m_pipefd;
Utils::u_epollfd = m_epollfd;
}
template<class HttpConn>
void
yumira::WebServer<HttpConn>::createTimerForUser(int connfd, struct sockaddr_in client_address) {
/** create work thread here
* */
httpConnForUsers[connfd].init(connfd,
client_address,
m_root,
m_CONNTrigmode,
m_user,
m_passWord,
m_databaseName);
//初始化client_data数据
//创建定时器,设置回调函数和超时时间,绑定用户数据,将定时器添加到链表中
users_timer[connfd].address = client_address;
users_timer[connfd].sockfd = connfd;
auto *userTimer = new util_timer;
userTimer->user_data = &users_timer[connfd];
userTimer->cb_func = close_user_fd;
time_t cur = time(nullptr);
userTimer->expire = cur + 3 * TIMESLOT;
users_timer[connfd].timer = userTimer;
utils.m_timer_lst.add_timer(userTimer);
}
//若有数据传输,则将定时器往后延迟3个单位
//并对新的定时器在链表上的位置进行调整
template<class HttpConn>
void
yumira::WebServer<HttpConn>::adjust_timer(util_timer *timer) {
time_t current_time = time(nullptr);
timer->expire = current_time + 3 * TIMESLOT;
utils.m_timer_lst.adjust_timer(timer);
LOG_INFO("%s", "adjust timer once");
}
template<class HttpConn>
void
yumira::WebServer<HttpConn>::remove_timer(util_timer *timer, int sock_fd) {
if (timer) {
timer->cb_func(&users_timer[sock_fd]);
utils.m_timer_lst.remove(timer);
LOG_INFO("close fd %d", users_timer[sock_fd].sockfd);
}
}
template<class HttpConn>
bool
yumira::WebServer<HttpConn>::deal_client_data() {
/**
* this function deal with new connection for user,accoding to mode set in ListenTriggerMode,
* will be little different when deal new connection
*
* @attention ERROR: when now more available fd for use.(not exceed than MAX_FD set in WebServer.h )
* */
auto acceptAndCreateTimer = [this]() {
struct sockaddr_in client_address;
socklen_t len_client_addr = sizeof(client_address);
int conn_fd = accept(m_listenfd, (struct sockaddr *) &client_address, &len_client_addr);
if (conn_fd < 0) {
LOG_ERROR("%s:errno is:%d", "accept error", errno);
return false;
}
if (http_conn::activeConnectionSize() >= MAX_FD) {
utils.show_error(conn_fd, "Internal server busy");
LOG_ERROR("%s", "Internal server busy.");
return false;
}
// allocate conn_fd to worker
createTimerForUser(conn_fd, client_address);
return true;
};
if (0 == m_LISTENTrigmode) {
return acceptAndCreateTimer();
} else {
while (!acceptAndCreateTimer()) {}
}
return true;
}
/**
* @param timeout: if timeout will be set true
* @param stopServer: output param
* */
template<class HttpConn>
bool
yumira::WebServer<HttpConn>::deal_sys_signal(bool &timeout, bool &stopServer) {
char signal_buffer[1024];
ssize_t ret = recv(m_pipefd[0], signal_buffer, sizeof(signal_buffer), 0);
// cout << ret << endl;
if (ret == -1) {
return false;
} else if (ret == 0) {
return false;
} else {
for (int i = 0; i < ret; ++i) {
switch (signal_buffer[i]) {
case SIGALRM: {
timeout = true;
break;
}
case SIGTERM: {
stopServer = true;
break;
}
}
}
}
return true;
}
template<class HttpConn>
void
yumira::WebServer<HttpConn>::deal_with_read(int sockfd) {
/** do EPOLL_IN event here */
util_timer *timer = users_timer[sockfd].timer;
//reactor
if (REACTOR_MODE == actorMode) {
if (timer) {
adjust_timer(timer);
}
LOG_INFO("append read event from sock fd: %d to Http Connection Pool:%d", sockfd, http_conn_pool);
//若监测到读事件,将该事件放入请求队列
http_conn_pool->append(httpConnForUsers + sockfd, 0);
// process down the http_request
while (true) {
if (1 == httpConnForUsers[sockfd].improv) {
if (1 == httpConnForUsers[sockfd].timer_flag) {
// callback
remove_timer(timer, sockfd);
httpConnForUsers[sockfd].timer_flag = 0;
}
httpConnForUsers[sockfd].improv = 0;
break;
}
}
} else if (PROACTOR_MODE == actorMode) {
//proactor
if (httpConnForUsers[sockfd].read_once()) {
// let main thread read finished, then submit to work thread do logical work
LOG_INFO("deal with client(%s)", inet_ntoa(httpConnForUsers[sockfd].get_address()->sin_addr));
//若监测到读事件,将该事件放入请求队列
http_conn_pool->append(httpConnForUsers + sockfd);
if (timer) {
adjust_timer(timer);
}
} else {
remove_timer(timer, sockfd);
}
} else {
LOG_WARN("Unsupport ActorMode(%d)", actorMode)
throw exception();
}
}
template<class HttpConn>
void
yumira::WebServer<HttpConn>::deal_with_write(int sockfd) {
util_timer *timer = users_timer[sockfd].timer;
//reactor
if (REACTOR_MODE == actorMode) {
if (timer) {
adjust_timer(timer);
}
// reactor means worker thread actually do the request, so put the quest to threadPool workQueue
LOG_INFO("append write event from sock fd: %d to Http Connection Pool:%d", sockfd, http_conn_pool);
http_conn_pool->append(httpConnForUsers + sockfd, 1);
while (true) {
if (1 == httpConnForUsers[sockfd].improv) {
// remove timer
if (1 == httpConnForUsers[sockfd].timer_flag) {
remove_timer(timer, sockfd);
httpConnForUsers[sockfd].timer_flag = 0;
}
httpConnForUsers[sockfd].improv = 0;
break;
}
}
} else {
//PROACTOR mode
if (httpConnForUsers[sockfd].write()) {
LOG_INFO("send data to the client(%s)", inet_ntoa(httpConnForUsers[sockfd].get_address()->sin_addr));
if (timer) {
adjust_timer(timer);
}
} else {
remove_timer(timer, sockfd);
}
}
}
template<class HttpConn>
void
yumira::WebServer<HttpConn>::eventLoop() {
/** the main thread only handler new request event or signal
* actually process is in worker thread of threadPool has been create before. */
// start de with event
bool timeout = false;
stop_server = false;
fprintf(stdout, "\n[INFO] server successfully running...\n");
while (!stop_server) {
int n_fd;
// main thread need call epoll_wait to wait for socket which has data to read
if ((n_fd = epoll_wait(m_epollfd, epollEvents, MAX_EVENT_NUMBER, -1)) < 0
&& errno != EINTR) {
LOG_ERROR("%s", "epoll failure");
break;
}
// detect read events, handle the events to worker threads
for (int i = 0; i < n_fd; ++i) {
int sockfd = epollEvents[i].data.fd;
//处理新到的客户连接
if (sockfd == m_listenfd) {
// allocate new connection for user if there are some free http connections.
bool flag = deal_client_data();
if (!flag) {
cout << "flag fail" << endl;
continue;
}
} else if (epollEvents[i].events & (EPOLLRDHUP | EPOLLHUP | EPOLLERR)) {
//服务器端关闭连接,移除对应的定时器
remove_timer(users_timer[sockfd].timer, sockfd);
} else if ((sockfd == m_pipefd[0]) && (epollEvents[i].events & EPOLLIN)) {
//处理信号
if (!deal_sys_signal(timeout, reinterpret_cast<bool &>(stop_server))) LOG_ERROR("%s",
"deal client data failure");
} else if (epollEvents[i].events & EPOLLIN) {
// a read event has been arrived. let worker thread handle it
//处理客户连接上接收到的数据
deal_with_read(sockfd);
} else if (epollEvents[i].events & EPOLLOUT) {
// a write event has been arrived.
deal_with_write(sockfd);
}
}
if (timeout) {
utils.timer_handler();
LOG_INFO("%s", "timer out");
timeout = false;
}
}
}