-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwebhttpd.h
153 lines (123 loc) · 2.94 KB
/
webhttpd.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
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
#ifndef _WEBHTTPD_H_
#define _WEBHTTPD_H_
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <netdb.h>
#include <sys/uio.h>
#include <limits.h>
#include <unistd.h>
#include <pthread.h>
#include <map>
#include <string>
#include <sstream>
#include <vector>
#include <sys/types.h>
#include <sys/socket.h>
#include <cstdlib>
#include <set>
#define BUFFSIZE 256
namespace twebhttpd {
class WebHttpd;
class Header;
class HttpRequest;
class HttpResponse;
typedef void*HandlerFunction(HttpRequest*, HttpResponse) ;
typedef std::map<std::string, HandlerFunction*> router;
class Header {
public:
std::string method;
std::string http_version;
std::string path;
std::string status;
std::string status_code;
Header() {
this->header_.clear();
}
~Header() {
this->header_.clear();
}
inline std::string get(std::string key) {
return this->header_[key];
}
inline void set(std::string key, std::string value) {
this->header_[key] = value;
}
inline void add(std::string key, std::string value) {
this->set(key, value);
}
public:
std::map<std::string, std::string> header_;
};
struct HttpInfoTrans {
int sock_;
router* handler_route_;
sockaddr_in* client_addr_;
HandlerFunction* static_file_handler;
inline ~HttpInfoTrans() {
delete this->client_addr_;
}
};
class HttpRequest {
private:
std::vector<std::string> split_header(const char*, char*);
void parse_get_param(std::string);
void parse_post_param(std::string);
void parse_param(std::string);
public:
int parse_request(HttpInfoTrans*);
Header header;
private:
int sock_;
std::string body_;
};
class HttpResponse {
public:
Header header;
public:
HttpResponse();
~HttpResponse();
void init(HttpRequest*, HttpInfoTrans*);
void resp_error404();
void resp_error500(){}
void do_resp();
void do_resp(const std::string&);
void writer(const std::string&);
void send_line(char* line);
private:
int sock_;
std::string body_;
};
struct FileHandler {
std::string strip_prefix;
std::string path;
};
class WebHttpd {
public:
inline void set_port(int port) {
this->port_ = port;
}
WebHttpd();
~WebHttpd();
int start_service();
int stop();
static int read_line(int, std::string&);
static int read_bytes(int, std::string&, int);
void handle_func(std::string, HandlerFunction*);
public:
HandlerFunction* static_file_handler_;
// void* add_file_handler(std::string, std::string, std::string);
private:
static void* response_handler(void*);
int sock_;
uint port_;
u_int32_t server_addr_;
sockaddr_in server_sock_addr_;
static std::set<int> g_sock_sets;
std::map<std::string, HandlerFunction*>* handler_route_;
//static std::map<std::string, FileHandler>* file_handler_route_;
static void stop(int);
};
}
#endif