-
Notifications
You must be signed in to change notification settings - Fork 5
/
httpworker.cpp
139 lines (126 loc) · 3.7 KB
/
httpworker.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
/*
Copyright © 2023 Oliver Lau <[email protected]>, Heise Medien GmbH & Co. KG - Redaktion c't
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#include <iostream>
#include <iomanip>
#include "server.hpp"
#include "httpworker.hpp"
namespace beast = boost::beast;
namespace http = beast::http;
namespace net = boost::asio;
using tcp = boost::asio::ip::tcp;
HttpWorker::HttpWorker(
tcp::acceptor &acceptor,
log_callback_t *logCallback)
: mAcceptor(acceptor)
, mLogCallback(logCallback)
{ /* ... */ }
void HttpWorker::start() {
accept();
checkTimeout();
}
void HttpWorker::accept()
{
beast::error_code ec;
mSocket.close(ec);
mBuffer.consume(mBuffer.size());
mAcceptor.async_accept(
mSocket,
[this](beast::error_code ec) {
if (ec) {
accept();
}
else {
mReqTimeout.expires_after(Timeout);
readRequest();
}
});
}
void HttpWorker::readRequest()
{
mParser.emplace();
http::async_read(
mSocket,
mBuffer,
*mParser,
[this](beast::error_code ec, std::size_t) {
if (ec) {
accept();
}
else {
processRequest(mParser->get());
}
});
}
void HttpWorker::processRequest(http::request<http::string_body> const &req)
{
if (mLogCallback != nullptr) {
std::ostringstream ss;
ss << mSocket.remote_endpoint().address().to_string() << ' '
<< req.target();
(*mLogCallback)(ss.str());
}
if (req.method() == http::verb::get && req.target() == "/test") {
mResponse.emplace();
mResponse->result(http::status::ok);
mResponse->set(http::field::server, std::string("Micro server ") + SERVER_VERSION);
mResponse->set(http::field::content_type, "text/plain");
mResponse->set(http::field::access_control_allow_origin, "*");
mResponse->body() = "Hallo, Welt!";
mResponse->prepare_payload();
mSerializer.emplace(*mResponse);
http::async_write(
mSocket,
*mSerializer,
[this](boost::beast::error_code ec, std::size_t) {
mSocket.shutdown(tcp::socket::shutdown_send, ec);
mSerializer.reset();
mResponse.reset();
accept();
});
}
else {
sendBadResponse(http::status::bad_request, "");
}
}
void HttpWorker::sendBadResponse(http::status status, const std::string &error)
{
mResponse.emplace();
mResponse->result(status);
mResponse->set(http::field::server, std::string("Micro server ") + SERVER_VERSION);
mResponse->set(http::field::content_type, "text/plain");
mResponse->body() = error;
mResponse->prepare_payload();
mSerializer.emplace(*mResponse);
http::async_write(
mSocket,
*mSerializer,
[this](beast::error_code ec, std::size_t) {
mSocket.shutdown(tcp::socket::shutdown_send, ec);
mSerializer.reset();
mResponse.reset();
accept();
});
}
void HttpWorker::checkTimeout()
{
if (mReqTimeout.expiry() <= std::chrono::steady_clock::now())
{
mSocket.close();
mReqTimeout.expires_at(std::chrono::steady_clock::time_point::max());
}
mReqTimeout.async_wait(
[this](beast::error_code) {
checkTimeout();
});
}