-
-
Notifications
You must be signed in to change notification settings - Fork 392
/
Copy pathwebsocketserver.cpp
102 lines (81 loc) · 2.85 KB
/
websocketserver.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
/**
* Copyright (c) 2020-2021 Paul-Louis Ageneau
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/
#if RTC_ENABLE_WEBSOCKET
#include "websocketserver.hpp"
#include "common.hpp"
#include "internals.hpp"
#include "threadpool.hpp"
#include "utils.hpp"
namespace rtc::impl {
using namespace std::placeholders;
const string PemBeginCertificateTag = "-----BEGIN CERTIFICATE-----";
WebSocketServer::WebSocketServer(Configuration config_)
: config(std::move(config_)), mStopped(false) {
PLOG_VERBOSE << "Creating WebSocketServer";
// Create certificate
if (config.enableTls) {
if (config.certificatePemFile && config.keyPemFile) {
mCertificate = std::make_shared<Certificate>(
config.certificatePemFile->find(PemBeginCertificateTag) != string::npos
? Certificate::FromString(*config.certificatePemFile, *config.keyPemFile)
: Certificate::FromFile(*config.certificatePemFile, *config.keyPemFile,
config.keyPemPass.value_or("")));
} else if (!config.certificatePemFile && !config.keyPemFile) {
mCertificate = std::make_shared<Certificate>(
Certificate::Generate(CertificateType::Default, "localhost"));
} else {
throw std::invalid_argument(
"Either none or both certificate and key PEM files must be specified");
}
}
const char *bindAddress = nullptr;
if (config.bindAddress) {
bindAddress = config.bindAddress->c_str();
}
// Create TCP server
tcpServer = std::make_unique<TcpServer>(config.port, bindAddress);
// Create server thread
mThread = std::thread(&WebSocketServer::runLoop, this);
}
WebSocketServer::~WebSocketServer() {
PLOG_VERBOSE << "Destroying WebSocketServer";
stop();
}
void WebSocketServer::stop() {
if (mStopped.exchange(true))
return;
PLOG_DEBUG << "Stopping WebSocketServer thread";
tcpServer->close();
mThread.join();
}
void WebSocketServer::runLoop() {
utils::this_thread::set_name("RTC server");
PLOG_INFO << "Starting WebSocketServer";
try {
while (auto incoming = tcpServer->accept()) {
try {
if (!clientCallback)
continue;
WebSocket::Configuration clientConfig;
clientConfig.connectionTimeout = config.connectionTimeout;
clientConfig.maxMessageSize = config.maxMessageSize;
auto impl = std::make_shared<WebSocket>(std::move(clientConfig), mCertificate);
impl->changeState(WebSocket::State::Connecting);
impl->setTcpTransport(incoming);
clientCallback(std::make_shared<rtc::WebSocket>(impl));
} catch (const std::exception &e) {
PLOG_ERROR << "WebSocketServer: " << e.what();
}
}
} catch (const std::exception &e) {
PLOG_FATAL << "WebSocketServer: " << e.what();
}
PLOG_INFO << "Stopped WebSocketServer";
}
} // namespace rtc::impl
#endif