request_parser.c 3.92 KB
#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: