summaryrefslogtreecommitdiff
path: root/minion/src/http/request.hpp
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2022-05-10 15:47:05 +0200
committerHampusM <hampus@hampusmat.com>2022-05-11 23:14:41 +0200
commit05cf212e79728c2bf1449ee5cfdf7dd6b1a8c4fd (patch)
treef613790a2df7b0ac6a5a339f83e43dbd9d547a6a /minion/src/http/request.hpp
parent6decaf83fc2b1e751876a76d72c4370b3b66a507 (diff)
refactor(minion): create request class
Diffstat (limited to 'minion/src/http/request.hpp')
-rw-r--r--minion/src/http/request.hpp65
1 files changed, 65 insertions, 0 deletions
diff --git a/minion/src/http/request.hpp b/minion/src/http/request.hpp
new file mode 100644
index 0000000..85af722
--- /dev/null
+++ b/minion/src/http/request.hpp
@@ -0,0 +1,65 @@
+#pragma once
+
+#include <stddef.h>
+
+enum HTTPRequestMethod
+{
+ GET,
+ POST,
+ PUT,
+ HEAD,
+ DELETE,
+ CONNECT,
+ OPTIONS,
+ TRACE,
+ PATCH
+};
+
+constexpr const char *http_request_method_strs[] = { "GET", "POST", "PUT",
+ "HEAD", "DELETE", "CONNECT",
+ "OPTIONS", "TRACE", "PATCH" };
+
+auto str_to_http_request_method(const char *http_request_method_str) -> HTTPRequestMethod;
+
+class HTTPRequest
+{
+public:
+ explicit HTTPRequest(
+ size_t connection_id,
+ HTTPRequestMethod method,
+ char *http_version,
+ char *path,
+ int data_length,
+ char *data
+ ) noexcept;
+
+ HTTPRequest(const HTTPRequest &other) noexcept = delete;
+
+ HTTPRequest(HTTPRequest &&other) noexcept = delete;
+
+ ~HTTPRequest() noexcept;
+
+ auto connection_id() const noexcept -> size_t;
+
+ auto method() const noexcept -> HTTPRequestMethod;
+
+ auto http_version() const noexcept -> const char *;
+
+ auto path() const noexcept -> const char *;
+
+ auto data_length() const noexcept -> int;
+
+ auto data() const noexcept -> const char *;
+
+ auto operator=(const HTTPRequest &other) noexcept -> HTTPRequest & = delete;
+
+ auto operator=(HTTPRequest &&other) noexcept -> HTTPRequest & = delete;
+
+private:
+ const size_t _connection_id;
+ const HTTPRequestMethod _method;
+ char *_http_version;
+ char *_path;
+ const int _data_length;
+ char *_data;
+};