Bunch of stuff

This commit is contained in:
Alex Hultman
2018-09-10 22:00:08 +02:00
parent 335b7e1dcd
commit 03d249ab48
7 changed files with 208 additions and 1 deletions
+81
View File
@@ -0,0 +1,81 @@
#ifndef HTTPCONTEXT_H
#define HTTPCONTEXT_H
// a more Cish implementaion
#include <string_view>
#include <functional>
// we depend on loop I guess
// yes, the loop does not depend on us
#include "Loop.h"
// we of course depend on our own data type
#include "HttpContextData.h"
// we should opaqeuly depend on HttpResponse
namespace uWS {
template<bool>
struct HttpResponse;
}
// we parse everything only in the context?
// would it be okay to depend on the context?
// we depend on libusockets
#include <libusockets.h>
template <bool SSL>
struct HttpContext {
private:
HttpContext() = delete;
// helper to get the socket context
us_socket_context *getSocketContext() {
return (us_socket_context *) this;
}
HttpContextData<SSL> *getSocketContextData() {
return (HttpContextData<SSL> *) us_socket_context_ext(getSocketContext());
}
public:
static HttpContext *create(us_loop *loop) {
// todo: inplace initialize the data struct!
return (HttpContext *) us_create_socket_context(loop, sizeof(HttpContextData<SSL>));
}
void free() {
us_socket_context_free((us_socket_context *) this);
}
void onGet(std::string_view pattern, std::function<void(uWS::HttpResponse<SSL> *)> handler) {
HttpContextData<SSL> *data = getSocketContextData();
// add things to the router
data->handler = handler;
}
void listen() {
// simulate routing and parsing a request
HttpContextData<SSL> *data = getSocketContextData();
// we need to pass an actual socket! not nullptr!
// simulare
data->handler(nullptr);
}
};
#endif // HTTPCONTEXT_H