-
Notifications
You must be signed in to change notification settings - Fork 0
/
http_conn.h
136 lines (120 loc) · 4.09 KB
/
http_conn.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
#ifndef HTTPCONNECTION_H
#define HTTPCONNECTION_H
#include <unistd.h>
#include <signal.h>
#include <sys/types.h>
#include <sys/epoll.h>
#include <fcntl.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <assert.h>
#include <sys/stat.h>
#include <string.h>
#include <pthread.h>
#include <stdio.h>
#include <stdlib.h>
#include <sys/mman.h>
#include <stdarg.h>
#include <errno.h>
#include "locker.h"
class http_conn
{
public:
/*文件名的最大长度*/
static const int FILENAME_LEN = 200;
/*读缓冲区的大小*/
static const int READ_BUFFER_SIZE = 2048;
/*写缓冲区的大小*/
static const int WRITE_BUFFER_SIZE = 1024;
/*HTTP请求方法,但我们进支持GET*/
enum METHOD { GET = 0, POST, HEAD, PUT, DELETE, TRACE, OPTIONS, CONNECT, PATCH };
/*解析客户请求时,主状态机所处的状态*/
enum CHECK_STATE { CHECK_STATE_REQUESTLINE = 0, CHECK_STATE_HEADER, CHECK_STATE_CONTENT };
/*服务器处理HTTP请求时的可能结果*/
enum HTTP_CODE { NO_REQUEST, GET_REQUEST, BAD_REQUEST, NO_RESOURCE, FORBIDDEN_REQUEST, FILE_REQUEST, INTERNAL_ERROR, CLOSED_CONNECTION };
/*行的读取状态*/
enum LINE_STATUS { LINE_OK = 0, LINE_BAD, LINE_OPEN };
public:
http_conn(){}
~http_conn(){}
public:
/*初始化新接手的连接*/
void init( int sockfd, const sockaddr_in& addr );
/*关闭连接*/
void close_conn( bool real_close = true );
/*处理客户请求*/
void process();
/*非阻塞读操作*/
bool read();
/*非阻塞写操作*/
bool write();
private:
/*初始化连接*/
void init();
/*解析HTTP请求*/
HTTP_CODE process_read();
/*填充HTPTP应答*/
bool process_write( HTTP_CODE ret );
/*下面这一组函数被process_read调用以分析HTTP请求*/
HTTP_CODE parse_request_line( char* text );
HTTP_CODE parse_headers( char* text );
HTTP_CODE parse_content( char* text );
HTTP_CODE do_request();
char* get_line() { return m_read_buf + m_start_line; }
LINE_STATUS parse_line();
/*下面这一组函数被process_write调用以填充HTTP应答*/
void unmap();
bool add_response( const char* format, ... );
bool add_content( const char* content );
bool add_status_line( int status, const char* title );
bool add_headers( int content_length );
bool add_content_length( int content_length );
bool add_linger();
bool add_blank_line();
public:
/*所有socket上的事件都被注册到同一个epoll内核事件上,所有将epoll文件描述符设置为静态的*/
static int m_epollfd;
/*统计用户数量*/
static int m_user_count;
private:
/*读HTTP连接的socket和对方的socket地址*/
int m_sockfd;
sockaddr_in m_address;
/*读缓冲区*/
char m_read_buf[ READ_BUFFER_SIZE ];
/*标识读缓冲区中已经读入的客户数据的最后一个字节的下一个位置*/
int m_read_idx;
/*当前正在分析的字符在读缓冲区中的位置*/
int m_checked_idx;
/*当前正在解析的行的起始位置*/
int m_start_line;
/*写缓冲区*/
char m_write_buf[ WRITE_BUFFER_SIZE ];
/*写缓冲区中待发送的字节数*/
int m_write_idx;
/*主状态机当前所处的状态*/
CHECK_STATE m_check_state;
/*请求方法*/
METHOD m_method;
/*客户请求的目标文件的完整路径,其内容等于doc_toot+m_url,doc_root是网站跟目录*/
char m_real_file[ FILENAME_LEN ];
/*客户请求的目标文件名*/
char* m_url;
/*HTTP协议版本号,我们进支持HTTP/1.1*/
char* m_version;
/*主机名*/
char* m_host;
/*HTTP请求的消息体的长度*/
int m_content_length;
/*HTTP请求是否要求保持连接*/
bool m_linger;
/*客户请求的目标文件被mmap到内存中的起始位置*/
char* m_file_address;
/*目标文件的状态。通过它我们可以判断文件是否存在、是否为目录、是否可读,并获取文件大小等信息*/
struct stat m_file_stat;
/*我们将采取writev来执行写操作,所以定义下面两个成员,其中m_iv_count表示被写内存块的数量*/
struct iovec m_iv[2];
int m_iv_count;
};
#endif