request_parser.c
3.92 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
#include <stdlib.h>
#include <string.h>
#include <stdlib.h>
#include <stdio.h>
#include <unistd.h>
#include <ctype.h>
#include <sys/types.h>
#include "class.h"
#include "http/request_parser.h"
#include "interface/class.h"
#include "interface/stream_reader.h"
//#include "http/request.h"
//#include "http/request_queue.h"
static
void
httpRequestParserParse(HttpRequestParser);
static
void
ctor(void * _this, va_list * params)
{
HttpRequestParser this = _this;
//this->request_queue = va_arg(*params, HttpRequestQueue);
this->buffer = malloc(HTTP_REQUEST_PARSER_READ_CHUNK);
this->buffer[0] = 0;
}
static
void
dtor(void * _this)
{
HttpRequestParser this = _this;
free(this->buffer);
}
static
void
_clone(void * _this, void * _base)
{
HttpRequestParser this = _this;
HttpRequestParser base = _base;
size_t chunks;
//this->request_queue = base->request_queue;
this->buffer_used = base->buffer_used;
chunks = this->buffer_used / HTTP_REQUEST_PARSER_READ_CHUNK;
chunks++;
this->buffer = malloc(chunks * HTTP_REQUEST_PARSER_READ_CHUNK);
memcpy(this->buffer, base->buffer, this->buffer_used);
}
static
size_t
get_data(void * _this, int fd)
{
HttpRequestParser this = _this;
size_t remaining, chunks;
char buffer[1024];
size_t size = read(fd, buffer, 1024);
if (0 < size) {
remaining = this->buffer_used % HTTP_REQUEST_PARSER_READ_CHUNK;
chunks = this->buffer_used / HTTP_REQUEST_PARSER_READ_CHUNK;
/**
* because a division always rounds down
* chunks holds exactly the currently allocated chunks if
* remaining equals 0 but there is no space left.
* Else chunks holds the actually allocated amount of chunks
* minus 1.
* For this reason chunks always has to be increased by 1.
*/
chunks++;
if (size >= remaining) {
this->buffer =
realloc(this->buffer, chunks * HTTP_REQUEST_PARSER_READ_CHUNK);
}
memcpy(this->buffer + this->buffer_used, buffer, size);
this->buffer_used += size;
this->buffer[this->buffer_used] = 0;
httpRequestParserParse(this);
}
return size;
}
INIT_IFACE(Class, ctor, dtor, _clone);
INIT_IFACE(StreamReader, get_data);
CREATE_CLASS(HttpRequestParser, NULL, IFACE(Class), IFACE(StreamReader));
static
inline
char *
httpRequestLineGet(char ** data)
{
char * line_end = strstr(*data, "\r\n");
char * ret = *data;
if (NULL == line_end) {
return NULL;
}
*line_end = 0;
*data = line_end + 2;
return ret;
}
static
inline
void
httpRequestSkip(char ** data)
{
for (; 0 != **data && ! isalpha(**data); *data++);
}
static
void
httpRequestParserParse(HttpRequestParser this)
{
//static HttpRequest request = NULL;
char * data = this->buffer;
char * line;
int cont = 1;
//if(NULL == HttpRequest) {
// request = new(HttpRequest);
//}
while(cont) {
switch(this->state) {
case HTTP_REQUEST_GARBAGE:
puts("==skip garbage==");
httpRequestSkip(&data);
this->state = HTTP_REQUEST_START;
break;
case HTTP_REQUEST_START:
puts("==request line==");
if (NULL == (line = httpRequestLineGet(&data))) {
cont = 0;
break;
}
printf("%s\n", line);
this->state = HTTP_REQUEST_REQEUST_LINE_DONE;
break;
case HTTP_REQUEST_REQEUST_LINE_DONE:
puts("==read header==");
if (NULL == (line = httpRequestLineGet(&data))) {
cont = 0;
break;
}
if (0 == strlen(line)) {
this->state = HTTP_REQUEST_HEADERS_DONE;
break;
}
printf("%s\n", line);
break;
case HTTP_REQUEST_HEADERS_DONE:
puts("==headers done==");
this->state = HTTP_REQUEST_DONE;
break;
case HTTP_REQUEST_DONE:
puts("==request done==");
memmove(this->buffer,
data,
this->buffer_used - (data - this->buffer) + 1);
this->buffer_used -= data - this->buffer;
if (0 == this->buffer_used) {
cont = 0;
}
this->state = HTTP_REQUEST_GARBAGE;
break;
default:
break;
}
}
}
// vim: set ts=4 sw=4: