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 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210
|
/*
* SPDX-FileCopyrightText: 2016 Mathieu Stefani
*
* SPDX-License-Identifier: Apache-2.0
*/
/* http_server.cc
Mathieu Stefani, 07 février 2016
Example of an http server
*/
#include <pistache/common.h>
#include <pistache/cookie.h>
#include <pistache/endpoint.h>
#include <pistache/http.h>
#include <pistache/http_headers.h>
#include <pistache/net.h>
#include <pistache/peer.h>
using namespace Pistache;
struct LoadMonitor
{
LoadMonitor(const std::shared_ptr<Http::Endpoint>& endpoint)
: endpoint_(endpoint)
, interval(std::chrono::seconds(1))
{ }
void setInterval(std::chrono::seconds secs)
{
interval = secs;
}
void start()
{
shutdown_ = false;
thread = std::make_unique<std::thread>([this] { run(); });
}
void shutdown()
{
shutdown_ = true;
}
~LoadMonitor()
{
shutdown_ = true;
if (thread)
thread->join();
}
private:
std::shared_ptr<Http::Endpoint> endpoint_;
std::unique_ptr<std::thread> thread;
std::chrono::seconds interval;
std::atomic<bool> shutdown_;
void run()
{
Tcp::Listener::Load old;
while (!shutdown_)
{
if (!endpoint_->isBound())
continue;
endpoint_->requestLoad(old).then([&](const Tcp::Listener::Load& load) {
old = load;
double global = load.global;
if (global > 100)
global = 100;
if (global > 1)
std::cout << "Global load is " << global << "%" << std::endl;
else
std::cout << "Global load is 0%" << std::endl;
},
Async::NoExcept);
std::this_thread::sleep_for(std::chrono::seconds(interval));
}
}
};
class MyHandler : public Http::Handler
{
HTTP_PROTOTYPE(MyHandler)
void onRequest(
const Http::Request& req,
Http::ResponseWriter response) override
{
if (req.resource() == "/ping")
{
if (req.method() == Http::Method::Get)
{
using namespace Http;
const auto& query = req.query();
if (query.has("chunked"))
{
std::cout << "Using chunked encoding" << std::endl;
response.headers()
.add<Header::Server>("pistache/0.1")
.add<Header::ContentType>(MIME(Text, Plain));
response.cookies()
.add(Cookie("lang", "en-US"));
auto stream = response.stream(Http::Code::Ok);
stream << "PO";
stream << "NG";
stream << ends;
}
else
{
response.send(Http::Code::Ok, "PONG");
}
}
}
else if (req.resource() == "/echo")
{
if (req.method() == Http::Method::Post)
{
response.send(Http::Code::Ok, req.body(), MIME(Text, Plain));
}
else
{
response.send(Http::Code::Method_Not_Allowed);
}
}
else if (req.resource() == "/stream_binary")
{
auto stream = response.stream(Http::Code::Ok);
char binary_data[] = "some \0\r\n data\n";
size_t chunk_size = 14;
for (size_t i = 0; i < 10; ++i)
{
stream.write(binary_data, chunk_size);
stream.flush();
}
stream.ends();
}
else if (req.resource() == "/exception")
{
throw std::runtime_error("Exception thrown in the handler");
}
else if (req.resource() == "/timeout")
{
response.timeoutAfter(std::chrono::seconds(2));
}
else if (req.resource() == "/static")
{
if (req.method() == Http::Method::Get)
{
Http::serveFile(response, "README.md").then([](PST_SSIZE_T bytes) {
std::cout << "Sent " << bytes << " bytes" << std::endl;
},
Async::NoExcept);
}
}
else
{
response.send(Http::Code::Not_Found);
}
}
void onTimeout(
const Http::Request& /*req*/,
Http::ResponseWriter response) override
{
response
.send(Http::Code::Request_Timeout, "Timeout")
.then([](PST_SSIZE_T) {}, PrintException());
}
};
int main(int argc, char* argv[])
{
Port port(9080);
int thr = 2;
if (argc >= 2)
{
port = static_cast<uint16_t>(std::stol(argv[1]));
if (argc == 3)
thr = std::stoi(argv[2]);
}
Address addr(Ipv4::any(), port);
std::cout << "Cores = " << hardware_concurrency() << std::endl;
std::cout << "Using " << thr << " threads" << std::endl;
auto server = std::make_shared<Http::Endpoint>(addr);
auto opts = Http::Endpoint::options()
.threads(thr);
server->init(opts);
server->setHandler(Http::make_handler<MyHandler>());
server->serve();
}
|