From 05cf212e79728c2bf1449ee5cfdf7dd6b1a8c4fd Mon Sep 17 00:00:00 2001 From: HampusM Date: Tue, 10 May 2022 15:47:05 +0200 Subject: refactor(minion): create request class --- minion/src/http/request.cpp | 107 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 107 insertions(+) create mode 100644 minion/src/http/request.cpp (limited to 'minion/src/http/request.cpp') diff --git a/minion/src/http/request.cpp b/minion/src/http/request.cpp new file mode 100644 index 0000000..9a35d37 --- /dev/null +++ b/minion/src/http/request.cpp @@ -0,0 +1,107 @@ +#include "request.hpp" + +#include "util.hpp" + +#include + +auto str_to_http_request_method(const char *http_request_method_str) -> HTTPRequestMethod +{ + if (util::streq(http_request_method_str, "GET")) + { + return HTTPRequestMethod::GET; + } + + if (util::streq(http_request_method_str, "POST")) + { + return HTTPRequestMethod::POST; + } + + if (util::streq(http_request_method_str, "PUT")) + { + return HTTPRequestMethod::PUT; + } + + if (util::streq(http_request_method_str, "HEAD")) + { + return HTTPRequestMethod::HEAD; + } + + if (util::streq(http_request_method_str, "DELETE")) + { + return HTTPRequestMethod::DELETE; + } + + if (util::streq(http_request_method_str, "CONNECT")) + { + return HTTPRequestMethod::CONNECT; + } + + if (util::streq(http_request_method_str, "OPTIONS")) + { + return HTTPRequestMethod::OPTIONS; + } + + if (util::streq(http_request_method_str, "TRACE")) + { + return HTTPRequestMethod::TRACE; + } + + if (util::streq(http_request_method_str, "PATCH")) + { + return HTTPRequestMethod::PATCH; + } + + return HTTPRequestMethod::GET; +} + +HTTPRequest::HTTPRequest( + size_t connection_id, + HTTPRequestMethod method, + char *http_version, // NOLINT(bugprone-easily-swappable-parameters) + char *path, + int data_length, + char *data +) noexcept + : _connection_id(connection_id), + _method(method), + _http_version(http_version), + _path(path), + _data_length(data_length), + _data(data) +{ +} + +HTTPRequest::~HTTPRequest() noexcept +{ + free(_data); +} + +auto HTTPRequest::connection_id() const noexcept -> size_t +{ + return _connection_id; +} + +auto HTTPRequest::method() const noexcept -> HTTPRequestMethod +{ + return _method; +} + +auto HTTPRequest::http_version() const noexcept -> const char * +{ + return _http_version; +} + +auto HTTPRequest::path() const noexcept -> const char * +{ + return _path; +} + +auto HTTPRequest::data_length() const noexcept -> int +{ + return _data_length; +} + +auto HTTPRequest::data() const noexcept -> const char * +{ + return _data; +} -- cgit v1.2.3-18-g5258