Sane C++ Libraries
C++ Platform Abstraction Libraries
HttpServer.h
1// Copyright (c) Stefano Cristiano
2// SPDX-License-Identifier: MIT
3#pragma once
4#include "HttpParser.h"
5
6#include "../Containers/ArenaMapKey.h"
7#include "../Containers/Vector.h"
8#include "../Foundation/Buffer.h"
9#include "../Foundation/Function.h"
10#include "../Strings/StringView.h"
11
12namespace SC
13{
14struct SC_COMPILER_EXPORT HttpServer;
15struct SC_COMPILER_EXPORT HttpRequest;
16struct SC_COMPILER_EXPORT HttpResponse;
17struct SC_COMPILER_EXPORT HttpRequest;
18
19struct AsyncEventLoop;
20struct SocketDescriptor;
21struct HttpServerClient;
22} // namespace SC
23
26
27namespace SC
28{
29namespace detail
30{
31struct SC_COMPILER_EXPORT HttpHeaderOffset
32{
34
35 uint32_t start = 0;
36 uint32_t length = 0;
37};
38} // namespace detail
39
40#if !DOXYGEN
41SC_COMPILER_EXTERN template struct SC_COMPILER_EXPORT Vector<detail::HttpHeaderOffset>;
42SC_COMPILER_EXTERN template struct SC_COMPILER_EXPORT ArenaMapKey<HttpServerClient>;
43#endif
44} // namespace SC
45
48{
53 [[nodiscard]] bool find(HttpParser::Result result, StringView& res) const;
54
56 const HttpParser& getParser() const { return parser; }
57
59 StringView getURL() const { return url; }
60
61 private:
62 friend struct HttpServer;
63 using HttpHeaderOffset = detail::HttpHeaderOffset; // TODO: hide class implementation
64
65 bool headersEndReceived = false;
66 bool parsedSuccessfully = true;
67
68 HttpParser parser;
69 StringView url;
70 Buffer headerBuffer;
71
72 Vector<HttpHeaderOffset> headerOffsets;
73};
74
77{
78 ArenaMapKey<HttpServerClient> getClientKey() const { return key; }
79
81 [[nodiscard]] Result startResponse(int httpCode);
82
84 [[nodiscard]] Result addHeader(StringView headerName, StringView headerValue);
85
87 [[nodiscard]] Result write(Span<const char> data);
88
91 [[nodiscard]] Result end(Span<const char> data);
92
93 HttpServer& getServer() { return *server; }
94
95 private:
96 friend struct HttpServer;
97 [[nodiscard]] bool mustBeFlushed() const { return responseEnded or outputBuffer.size() > highwaterMark; }
98
99 HttpServer* server = nullptr;
100
101 ArenaMapKey<HttpServerClient> key;
102
103 Buffer outputBuffer;
104
105 bool responseEnded = false;
106 size_t highwaterMark = 1024;
107};
108
109namespace SC
110{
111SC_COMPILER_EXTERN template struct SC_COMPILER_EXPORT Function<void(HttpRequest&, HttpResponse&)>;
112}
113
124{
125 HttpServer();
126 ~HttpServer();
127 HttpServer(const HttpServer&) = delete;
128 HttpServer& operator=(const HttpServer&) = delete;
129 HttpServer(HttpServer&&) = delete;
130 HttpServer& operator=(HttpServer&&) = delete;
131
138 [[nodiscard]] Result start(AsyncEventLoop& loop, uint32_t maxConcurrentRequests, StringView address, uint16_t port);
139
141 [[nodiscard]] Result stopAsync();
142
144 [[nodiscard]] Result stopSync();
145
147 [[nodiscard]] bool isStarted() const;
148
154
158
162
166
168 [[nodiscard]] uint32_t getMaxConcurrentRequests() const;
169
170 private:
171 struct Internal;
172#if SC_PLATFORM_WINDOWS
173 uint64_t internalRaw[72];
174#else
175 uint64_t internalRaw[32];
176#endif
177 Internal& internal;
178};
179
#define SC_COMPILER_EXPORT
Macro for symbol visibility in non-MSVC compilers.
Definition: Compiler.h:78
#define SC_COMPILER_EXTERN
Define compiler-specific export macros for DLL visibility.
Definition: Compiler.h:74
unsigned long long uint64_t
Platform independent (8) bytes unsigned int.
Definition: PrimitiveTypes.h:42
unsigned int uint32_t
Platform independent (4) bytes unsigned int.
Definition: PrimitiveTypes.h:38
unsigned short uint16_t
Platform independent (2) bytes unsigned int.
Definition: PrimitiveTypes.h:37
A sparse vector keeping objects at a stable memory location.
Definition: ArenaMapKey.h:22
Asynchronous I/O (files, sockets, timers, processes, fs events, threads wake-up) (see Async) AsyncEve...
Definition: Async.h:965
An heap allocated byte buffer that can optionally use an inline buffer.
Definition: Buffer.h:28
Wraps function pointers, member functions and lambdas without ever allocating.
Definition: Function.h:19
Incremental HTTP request or response parser.
Definition: HttpParser.h:17
Result
One possible Result reported by the parser.
Definition: HttpParser.h:42
@ Method
Http method has been found.
Http request received from a client.
Definition: HttpServer.h:48
const HttpParser & getParser() const
Gets the associated HttpParser.
Definition: HttpServer.h:56
bool find(HttpParser::Result result, StringView &res) const
Finds a specific HttpParser::Result in the list of parsed header.
StringView getURL() const
Gets the request URL.
Definition: HttpServer.h:59
Http response that will be sent to a client.
Definition: HttpServer.h:77
Result startResponse(int httpCode)
Starts the response with a http standard code (200 OK, 404 NOT FOUND etc.)
Result addHeader(StringView headerName, StringView headerValue)
Writes an http header to this response.
Result write(Span< const char > data)
Appends some data to the response.
Result end(Span< const char > data)
Finalizes response appending some data.
Async Http server.
Definition: HttpServer.h:124
Result stopAsync()
Stops http server asyncronously pushing cancel and close requests for next SC::AsyncEventLoop::runOnc...
HttpRequest * getRequest(ArenaMapKey< HttpServerClient > key) const
Obtain client request (or a nullptr if it doesn't exists) with the key returned by SC::HttpResponse::...
uint32_t getMaxConcurrentRequests() const
Return maximum number of concurrent requests, corresponding to size of clients arena.
SocketDescriptor * getSocket(ArenaMapKey< HttpServerClient > key) const
Obtain client socket (or a nullptr if it doesn't exists) with the key returned by SC::HttpResponse::g...
Result stopSync()
Stops http server synchronously waiting for SC::AsyncEventLoop::runNoWait to cancel or close all requ...
Function< void(HttpRequest &, HttpResponse &)> onRequest
Called after enough data from a newly connected client has arrived, causing all headers to be parsed.
Definition: HttpServer.h:153
bool isStarted() const
Check if the server is started.
Result start(AsyncEventLoop &loop, uint32_t maxConcurrentRequests, StringView address, uint16_t port)
Starts the http server on the given AsyncEventLoop, address and port.
HttpResponse * getResponse(ArenaMapKey< HttpServerClient > key) const
Obtain client response (or a nullptr if it doesn't exists) with the key returned by SC::HttpResponse:...
An ascii string used as boolean result. SC_TRY macro forwards errors to caller.
Definition: Result.h:12
Low-level OS socket handle.
Definition: SocketDescriptor.h:147
View over a contiguous sequence of items (pointer + size in elements).
Definition: Span.h:32
Non-owning view over a range of characters with UTF Encoding.
Definition: StringView.h:47
A contiguous sequence of heap allocated elements.
Definition: Vector.h:189