feat: decouple event loop from http
This commit is contained in:
parent
f3fced908f
commit
68f9227436
12 changed files with 136 additions and 112 deletions
|
|
@ -23,13 +23,12 @@ static int event_loop_fd_set_nb(int fd) {
|
|||
return 0;
|
||||
}
|
||||
|
||||
event_loop *event_loop_init(event_loop_gctx *gctx) {
|
||||
event_loop *event_loop_init() {
|
||||
event_loop *el = calloc(sizeof(event_loop), 1);
|
||||
|
||||
// No idea if this is a good starter value
|
||||
el->connections = calloc(sizeof(event_loop_conn), 16);
|
||||
el->connection_count = 16;
|
||||
el->gctx = gctx;
|
||||
|
||||
return el;
|
||||
}
|
||||
|
|
@ -71,7 +70,7 @@ int event_loop_accept(event_loop *el, int fd) {
|
|||
}
|
||||
|
||||
// creating the struct Conn
|
||||
event_loop_conn *conn = event_loop_conn_init(el->gctx);
|
||||
event_loop_conn *conn = event_loop_conn_init(el);
|
||||
|
||||
// Close the connectoin if we fail to allocate a connection struct
|
||||
if (conn == NULL) {
|
||||
|
|
@ -91,6 +90,8 @@ int event_loop_accept(event_loop *el, int fd) {
|
|||
return -4;
|
||||
}
|
||||
|
||||
debug("Connection established on fd %i", connfd);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
@ -182,7 +183,7 @@ void event_loop_run(event_loop *el, int port) {
|
|||
if (poll_args[i].revents) {
|
||||
conn = el->connections[poll_args[i].fd];
|
||||
|
||||
event_loop_conn_io(conn);
|
||||
event_loop_conn_io(el, conn);
|
||||
|
||||
if (conn->state == event_loop_conn_state_end) {
|
||||
// client closed normally, or something bad happened.
|
||||
|
|
@ -190,7 +191,8 @@ void event_loop_run(event_loop *el, int port) {
|
|||
el->connections[conn->fd] = NULL;
|
||||
|
||||
close(conn->fd);
|
||||
event_loop_conn_free(conn);
|
||||
debug("Connection closed on fd %i", conn->fd);
|
||||
event_loop_conn_free(el, conn);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,28 +1,13 @@
|
|||
#include "event_loop.h"
|
||||
|
||||
event_loop_gctx *event_loop_gctx_init() {
|
||||
event_loop_gctx *gctx = calloc(sizeof(event_loop_gctx), 1);
|
||||
|
||||
return gctx;
|
||||
}
|
||||
|
||||
event_loop_ctx *event_loop_ctx_init(event_loop_gctx *g) {
|
||||
event_loop_ctx *ctx = calloc(sizeof(event_loop_ctx), 1);
|
||||
ctx->g = g;
|
||||
|
||||
return ctx;
|
||||
}
|
||||
|
||||
void event_loop_ctx_free(event_loop_ctx *ctx) { free(ctx); }
|
||||
|
||||
event_loop_conn *event_loop_conn_init(event_loop_gctx *g) {
|
||||
event_loop_conn *event_loop_conn_init(event_loop *el) {
|
||||
event_loop_conn *conn = calloc(sizeof(event_loop_conn), 1);
|
||||
conn->ctx = event_loop_ctx_init(g);
|
||||
conn->ctx = el->ctx_init(el->gctx);
|
||||
|
||||
return conn;
|
||||
}
|
||||
|
||||
void event_loop_conn_free(event_loop_conn *conn) {
|
||||
event_loop_ctx_free(conn->ctx);
|
||||
void event_loop_conn_free(event_loop *el, event_loop_conn *conn) {
|
||||
el->ctx_free(conn->ctx);
|
||||
free(conn);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,19 +1,8 @@
|
|||
#include <errno.h>
|
||||
#include <fcntl.h>
|
||||
#include <netinet/in.h>
|
||||
#include <poll.h>
|
||||
#include <stdbool.h>
|
||||
#include <stdint.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <sys/socket.h>
|
||||
#include <unistd.h>
|
||||
|
||||
#include "picohttpparser.h"
|
||||
|
||||
#include "event_loop.h"
|
||||
#include "http.h"
|
||||
|
||||
void event_loop_conn_io_res(event_loop_conn *conn) {
|
||||
while (1) {
|
||||
|
|
@ -52,43 +41,13 @@ void event_loop_conn_io_res(event_loop_conn *conn) {
|
|||
}
|
||||
}
|
||||
|
||||
bool event_loop_handle_request(event_loop_conn *conn) {
|
||||
// Prevents the request handler function from looping indefinitely without
|
||||
// ever consuming new data
|
||||
if (conn->rbuf_size - conn->rbuf_read == 0) {
|
||||
return false;
|
||||
}
|
||||
|
||||
http_parse_error res = http_parse_request(
|
||||
&conn->ctx->req, (const char *)&conn->rbuf[conn->rbuf_read],
|
||||
conn->rbuf_size - conn->rbuf_read);
|
||||
|
||||
if (res == http_parse_error_ok) {
|
||||
// Perform the request
|
||||
http_route(conn);
|
||||
}
|
||||
// Both in the case of an invalid HTTP request or one that's larger than the
|
||||
// read buffer, we cannot determine when the next, possibly valid, HTTP
|
||||
// request begins in the data stream. Therefore, we close the connection,
|
||||
// even if additional pipelined requests are incoming.
|
||||
else if (res == http_parse_error_invalid ||
|
||||
(res == http_parse_error_incomplete &&
|
||||
conn->rbuf_size == EVENT_LOOP_BUFFER_SIZE)) {
|
||||
conn->state = event_loop_conn_state_end;
|
||||
}
|
||||
|
||||
// TODO in highly concurrent situations, it might actually be better to always
|
||||
// return false here, as this allows cycling better through all connections
|
||||
return conn->state == event_loop_conn_state_req;
|
||||
}
|
||||
|
||||
/**
|
||||
* Read new data into the read buffer. This command performs at most one
|
||||
* successful read syscall.
|
||||
*
|
||||
* Returns whether the function should be retried immediately or not.
|
||||
*/
|
||||
void event_loop_conn_io_req(event_loop_conn *conn) {
|
||||
void event_loop_conn_io_req(event_loop *el, event_loop_conn *conn) {
|
||||
do {
|
||||
// Move remaining data to start of buffer
|
||||
memmove(conn->rbuf, &conn->rbuf[conn->rbuf_read],
|
||||
|
|
@ -135,23 +94,22 @@ void event_loop_conn_io_req(event_loop_conn *conn) {
|
|||
conn->rbuf_size += (size_t)res;
|
||||
|
||||
// This loop allows processing multiple requests from a single read buffer
|
||||
while (event_loop_handle_request(conn))
|
||||
while (el->handle_data(conn))
|
||||
;
|
||||
}
|
||||
// We can keep reading as long as we're in request mode
|
||||
while (conn->state == event_loop_conn_state_req);
|
||||
}
|
||||
|
||||
void event_loop_conn_io(event_loop_conn *conn) {
|
||||
void event_loop_conn_io(event_loop *el, event_loop_conn *conn) {
|
||||
switch (conn->state) {
|
||||
case event_loop_conn_state_req:
|
||||
event_loop_conn_io_req(conn);
|
||||
event_loop_conn_io_req(el, conn);
|
||||
break;
|
||||
case event_loop_conn_state_res:
|
||||
event_loop_conn_io_res(conn);
|
||||
break;
|
||||
case event_loop_conn_state_end:
|
||||
printf("we shouldn't be here\n");
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
60
src/http_loop/http_loop.c
Normal file
60
src/http_loop/http_loop.c
Normal file
|
|
@ -0,0 +1,60 @@
|
|||
#include "http_loop.h"
|
||||
#include "http.h"
|
||||
|
||||
http_loop_gctx *http_loop_gctx_init() {
|
||||
http_loop_gctx *gctx = calloc(sizeof(http_loop_gctx), 1);
|
||||
|
||||
return gctx;
|
||||
}
|
||||
|
||||
http_loop_ctx *http_loop_ctx_init(http_loop_gctx *g) {
|
||||
http_loop_ctx *ctx = calloc(sizeof(http_loop_ctx), 1);
|
||||
ctx->g = g;
|
||||
|
||||
return ctx;
|
||||
}
|
||||
|
||||
void http_loop_ctx_free(http_loop_ctx *ctx) { free(ctx); }
|
||||
|
||||
bool http_loop_handle_request(event_loop_conn *conn) {
|
||||
// Prevents the request handler function from looping indefinitely without
|
||||
// ever consuming new data
|
||||
if (conn->rbuf_size - conn->rbuf_read == 0) {
|
||||
return false;
|
||||
}
|
||||
|
||||
http_loop_ctx *ctx = conn->ctx;
|
||||
|
||||
http_parse_error res =
|
||||
http_parse_request(&ctx->req, (const char *)&conn->rbuf[conn->rbuf_read],
|
||||
conn->rbuf_size - conn->rbuf_read);
|
||||
|
||||
if (res == http_parse_error_ok) {
|
||||
// Perform the request
|
||||
http_route(conn);
|
||||
}
|
||||
// Both in the case of an invalid HTTP request or one that's larger than the
|
||||
// read buffer, we cannot determine when the next, possibly valid, HTTP
|
||||
// request begins in the data stream. Therefore, we close the connection,
|
||||
// even if additional pipelined requests are incoming.
|
||||
else if (res == http_parse_error_invalid ||
|
||||
(res == http_parse_error_incomplete &&
|
||||
conn->rbuf_size == EVENT_LOOP_BUFFER_SIZE)) {
|
||||
conn->state = event_loop_conn_state_end;
|
||||
}
|
||||
|
||||
// TODO in highly concurrent situations, it might actually be better to always
|
||||
// return false here, as this allows cycling better through all connections
|
||||
return conn->state == event_loop_conn_state_req;
|
||||
}
|
||||
|
||||
event_loop *http_loop_init(http_loop_gctx *gctx) {
|
||||
event_loop *el = event_loop_init();
|
||||
|
||||
el->ctx_init = (void *(*)(void *))http_loop_ctx_init;
|
||||
el->ctx_free = (void (*)(void *))http_loop_ctx_free;
|
||||
el->handle_data = http_loop_handle_request;
|
||||
el->gctx = gctx;
|
||||
|
||||
return el;
|
||||
}
|
||||
|
|
@ -1,16 +1,13 @@
|
|||
#include "http.h"
|
||||
|
||||
const char http_404[] = "HTTP/1.1 404 Not Found\n"
|
||||
"Connection: close\n"
|
||||
"Content-Length: 0\n\n";
|
||||
const size_t http_404_len = sizeof(http_404) - 1;
|
||||
|
||||
const char http_405[] = "HTTP/1.1 405 Method Not Allowed\n"
|
||||
"Connection: close\n"
|
||||
"Content-Length: 0\n\n";
|
||||
const size_t http_405_len = sizeof(http_405) - 1;
|
||||
|
||||
const char http_500[] = "HTTP/1.1 500 Internal Server Error\n"
|
||||
"Connection: close\n"
|
||||
"Content-Length: 0\n\n";
|
||||
const size_t http_500_len = sizeof(http_500) - 1;
|
||||
|
|
@ -1,4 +1,5 @@
|
|||
#include "http.h"
|
||||
#include "string.h"
|
||||
|
||||
void http_write_standard_response(event_loop_conn *conn,
|
||||
http_response_type type) {
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
#include <stdio.h>
|
||||
|
||||
#include "event_loop.h"
|
||||
#include "http_loop.h"
|
||||
#include "log.h"
|
||||
|
||||
int main() {
|
||||
|
|
@ -17,9 +17,9 @@ int main() {
|
|||
|
||||
info("Trie initialized and populated with %i entries", count);
|
||||
|
||||
event_loop_gctx *gctx = event_loop_gctx_init();
|
||||
http_loop_gctx *gctx = http_loop_gctx_init();
|
||||
gctx->trie = trie;
|
||||
event_loop *el = event_loop_init(gctx);
|
||||
event_loop *el = http_loop_init(gctx);
|
||||
|
||||
event_loop_run(el, 8000);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue