-
-
Notifications
You must be signed in to change notification settings - Fork 392
/
Copy pathinit.cpp
181 lines (148 loc) · 3.65 KB
/
init.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
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
/**
* Copyright (c) 2020-2022 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/.
*/
#include "init.hpp"
#include "certificate.hpp"
#include "dtlstransport.hpp"
#include "icetransport.hpp"
#include "internals.hpp"
#include "pollservice.hpp"
#include "sctptransport.hpp"
#include "threadpool.hpp"
#include "tls.hpp"
#include "utils.hpp"
#if RTC_ENABLE_WEBSOCKET
#include "tlstransport.hpp"
#endif
#if RTC_ENABLE_MEDIA
#include "dtlssrtptransport.hpp"
#endif
#ifdef _WIN32
#include <winsock2.h>
#endif
#include <thread>
namespace rtc::impl {
struct Init::TokenPayload {
TokenPayload(std::shared_future<void> *cleanupFuture) {
Init::Instance().doInit();
if (cleanupFuture)
*cleanupFuture = cleanupPromise.get_future().share();
}
~TokenPayload() {
std::thread t(
[](std::promise<void> promise) {
utils::this_thread::set_name("RTC cleanup");
try {
Init::Instance().doCleanup();
promise.set_value();
} catch (const std::exception &e) {
PLOG_WARNING << e.what();
promise.set_exception(std::make_exception_ptr(e));
}
},
std::move(cleanupPromise));
t.detach();
}
std::promise<void> cleanupPromise;
};
Init &Init::Instance() {
static Init *instance = new Init;
return *instance;
}
Init::Init() {
std::promise<void> p;
p.set_value();
mCleanupFuture = p.get_future(); // make it ready
}
Init::~Init() {}
init_token Init::token() {
std::lock_guard lock(mMutex);
if (auto locked = mWeak.lock())
return locked;
mGlobal = std::make_shared<TokenPayload>(&mCleanupFuture);
mWeak = *mGlobal;
return *mGlobal;
}
void Init::preload() {
std::lock_guard lock(mMutex);
if (!mGlobal) {
mGlobal = std::make_shared<TokenPayload>(&mCleanupFuture);
mWeak = *mGlobal;
}
}
std::shared_future<void> Init::cleanup() {
std::lock_guard lock(mMutex);
mGlobal.reset();
return mCleanupFuture;
}
void Init::setSctpSettings(SctpSettings s) {
std::lock_guard lock(mMutex);
if (mGlobal)
SctpTransport::SetSettings(s);
mCurrentSctpSettings = std::move(s); // store for next init
}
void Init::doInit() {
// mMutex needs to be locked
if (std::exchange(mInitialized, true))
return;
PLOG_DEBUG << "Global initialization";
#ifdef _WIN32
WSADATA wsaData;
if (WSAStartup(MAKEWORD(2, 2), &wsaData))
throw std::runtime_error("WSAStartup failed, error=" + std::to_string(WSAGetLastError()));
#endif
int concurrency = std::thread::hardware_concurrency();
int count = std::max(concurrency, MIN_THREADPOOL_SIZE);
PLOG_DEBUG << "Spawning " << count << " threads";
ThreadPool::Instance().spawn(count);
#if RTC_ENABLE_WEBSOCKET
PollService::Instance().start();
#endif
#if USE_GNUTLS
// Nothing to do
#elif USE_MBEDTLS
// Nothing to do
#else
openssl::init();
#endif
SctpTransport::Init();
SctpTransport::SetSettings(mCurrentSctpSettings);
DtlsTransport::Init();
#if RTC_ENABLE_WEBSOCKET
TlsTransport::Init();
#endif
#if RTC_ENABLE_MEDIA
DtlsSrtpTransport::Init();
#endif
IceTransport::Init();
}
void Init::doCleanup() {
std::lock_guard lock(mMutex);
if (mGlobal)
return;
if (!std::exchange(mInitialized, false))
return;
PLOG_DEBUG << "Global cleanup";
ThreadPool::Instance().join();
ThreadPool::Instance().clear();
#if RTC_ENABLE_WEBSOCKET
PollService::Instance().join();
#endif
SctpTransport::Cleanup();
DtlsTransport::Cleanup();
#if RTC_ENABLE_WEBSOCKET
TlsTransport::Cleanup();
#endif
#if RTC_ENABLE_MEDIA
DtlsSrtpTransport::Cleanup();
#endif
IceTransport::Cleanup();
#ifdef _WIN32
WSACleanup();
#endif
}
} // namespace rtc::impl