blob: 2b94bf3a68a8d36da78d3472785cb8a1eabe62c8 (
plain)
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
|
// Copyright The OpenTelemetry Authors
// SPDX-License-Identifier: Apache-2.0
#pragma once
#include <atomic>
#include <string>
#include "opentelemetry/ext/http/server/http_server.h"
namespace
{
class HttpServer : public HTTP_SERVER_NS::HttpRequestCallback
{
protected:
HTTP_SERVER_NS::HttpServer server_;
std::string server_url_;
uint16_t port_;
std::atomic<bool> is_running_{false};
public:
HttpServer(std::string server_name = "test_server", uint16_t port = 8800) : port_(port)
{
server_.setServerName(server_name);
server_.setKeepalive(false);
}
void AddHandler(std::string path, HTTP_SERVER_NS::HttpRequestCallback *request_handler)
{
server_.addHandler(path, *request_handler);
}
void Start()
{
if (!is_running_.exchange(true))
{
server_.addListeningPort(port_);
server_.start();
}
}
void Stop()
{
if (is_running_.exchange(false))
{
server_.stop();
}
}
~HttpServer() { Stop(); }
};
} // namespace
|