-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebserver.h
More file actions
75 lines (65 loc) · 1.89 KB
/
webserver.h
File metadata and controls
75 lines (65 loc) · 1.89 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
#ifndef WEBSERVER_H
#define WEBSERVER_H
// #define TERMINAL_DEBUG
#include <arpa/inet.h>
#include <cassert>
#include <errno.h>
#include <fcntl.h>
#include <netinet/in.h>
#include <stdio.h>
#include <stdlib.h>
#include <sys/epoll.h>
#include <sys/socket.h>
#include <unistd.h>
#include "./http/http_conn.h"
#include "./threadpool/threadpool.h"
class WebServer {
public:
WebServer();
~WebServer();
void init(int port, string mysql_host, int mysql_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);
void thread_pool();
void sql_pool();
void log_write();
void trig_mode();
void eventListen();
void eventLoop();
void timer(int connfd, struct sockaddr_in client_address);
bool dealclientdata();
bool dealwithsignal(bool& timeout, bool& stop_server);
void dealwithread(int sockfd);
void dealwithwrite(int sockfd);
public:
// 基础
int m_port;
char* m_root;
int m_log_write;
int m_close_log;
int m_actormodel;
int m_pipefd[2];
int m_epollfd;
http_conn* users; // 维护与服务端建立连接的所有客户端
// 数据库相关
connection_pool* m_connPool;
string m_mysql_host; // 登陆数据库host
int m_mysql_port; // 数据库端口号
string m_user; // 登陆数据库用户名
string m_passWord; // 登陆数据库密码
string m_databaseName; // 使用数据库名
int m_sql_num;
// 线程池相关
threadpool<http_conn>* m_pool;
int m_thread_num;
// epoll_event相关:用于存储epoll事件表中就绪事件的event数组
epoll_event events[MAX_EVENT_NUMBER];
int m_listenfd;
int m_OPT_LINGER;
int m_TRIGMode;
int m_LISTENTrigmode;
int m_CONNTrigmode;
// Utils utils;
};
#endif