request_parser.c
2.28 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
#include <stdlib.h>
#include <string.h>
#include <stdlib.h>
#include <stdio.h>
#include <unistd.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(char * data, size_t * size);
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);
}
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;
httpRequestParserParse(this->buffer, &this->buffer_used);
}
return size;
}
INIT_IFACE(Class, ctor, dtor, _clone);
INIT_IFACE(StreamReader, get_data);
CREATE_CLASS(HttpRequestParser, NULL, IFACE(Class), IFACE(StreamReader));
static
void
httpRequestParserParse(char * data, size_t * size)
{
data[*size] = 0;
printf("%s", data);
*size = 0;
}
// vim: set ts=4 sw=4: