-
Notifications
You must be signed in to change notification settings - Fork 0
/
simple_websocket.hpp
427 lines (330 loc) · 14.4 KB
/
simple_websocket.hpp
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
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
#pragma once
#include <string>
#include <utility>
#include <vector>
#include <variant>
#include <memory>
#include <functional>
namespace SimpleWebSocket {
template<class... As>
struct visitor : As ... {
using As::operator()...;
};
template<class... As> visitor(As...) -> visitor<As...>;
struct Failure final {
explicit Failure(std::string value) : value_(std::move(value)) {}
friend std::ostream &operator<<(std::ostream &os, const Failure &failure) {
os << failure.value_;
return os;
}
[[nodiscard]] const std::string &value() const {
return value_;
}
private:
std::string value_;
};
struct PingFrame final {
explicit PingFrame(std::string value) : value_(std::move(value)) {}
bool operator==(const PingFrame &rhs) const {
return value_ == rhs.value_;
}
bool operator!=(const PingFrame &rhs) const {
return !(rhs == *this);
}
[[nodiscard]]
const std::string &value() const {
return value_;
}
private:
std::string value_;
};
struct PongFrame final {
explicit PongFrame(std::string value) : value_(std::move(value)) {}
bool operator==(const PongFrame &rhs) const {
return value_ == rhs.value_;
}
bool operator!=(const PongFrame &rhs) const {
return !(rhs == *this);
}
[[nodiscard]]
const std::string &value() const {
return value_;
}
private:
std::string value_;
};
struct TextFrame final {
explicit TextFrame(std::string value) : value_(std::move(value)) {}
bool operator==(const TextFrame &rhs) const {
return value_ == rhs.value_;
}
bool operator!=(const TextFrame &rhs) const {
return !(rhs == *this);
}
[[nodiscard]]
const std::string &value() const {
return value_;
}
private:
std::string value_;
};
struct BinaryFrame final {
explicit BinaryFrame(std::vector<char> value) : value_(std::move(value)) {}
bool operator==(const BinaryFrame &rhs) const {
return value_ == rhs.value_;
}
bool operator!=(const BinaryFrame &rhs) const {
return !(rhs == *this);
}
[[nodiscard]]
const std::vector<char> &value() const {
return value_;
}
private:
std::vector<char> value_;
};
struct CloseFrame final {
explicit CloseFrame(std::string value) : value_(std::move(value)) {}
bool operator==(const CloseFrame &rhs) const {
return value_ == rhs.value_;
}
bool operator!=(const CloseFrame &rhs) const {
return !(rhs == *this);
}
[[nodiscard]]
const std::string &value() const {
return value_;
}
private:
std::string value_;
};
struct UndefinedFrame final {
bool operator==(const UndefinedFrame &_) const {
return true;
}
bool operator!=(const UndefinedFrame &_) const {
return false;
}
};
struct FrameHandler {
virtual ~FrameHandler() = default;
virtual void handlePing(const PingFrame &pingFrame) = 0;
virtual void handlePong(const PongFrame &pongFrame) = 0;
virtual void handleText(const TextFrame &textFrame) = 0;
virtual void handleBinary(const BinaryFrame &binaryFrame) = 0;
virtual void handleClose(const CloseFrame &closeFrame) = 0;
virtual void handleUndefined(const UndefinedFrame &undefinedFrame) = 0;
};
template<class A>
struct FrameParser {
virtual ~FrameParser() = default;
virtual A handlePing(const PingFrame &pingFrame) = 0;
virtual A handlePong(const PongFrame &pongFrame) = 0;
virtual A handleText(const TextFrame &textFrame) = 0;
virtual A handleBinary(const BinaryFrame &binaryFrame) = 0;
virtual A handleClose(const CloseFrame &closeFrame) = 0;
virtual A handleUndefined(const UndefinedFrame &undefinedFrame) = 0;
};
struct Message final {
explicit Message(std::variant<PingFrame, PongFrame, TextFrame, BinaryFrame, CloseFrame, UndefinedFrame> value)
: value_(std::move(value)) {}
bool operator==(const Message &rhs) const {
if (std::holds_alternative<PingFrame>(value_) && std::holds_alternative<PingFrame>(rhs.value())) {
return std::get<PingFrame>(value_) == std::get<PingFrame>(rhs.value());
}
if (std::holds_alternative<PongFrame>(value_) && std::holds_alternative<PongFrame>(rhs.value())) {
return std::get<PongFrame>(value_) == std::get<PongFrame>(rhs.value());
}
if (std::holds_alternative<TextFrame>(value_) && std::holds_alternative<TextFrame>(rhs.value())) {
return std::get<TextFrame>(value_) == std::get<TextFrame>(rhs.value());
}
if (std::holds_alternative<BinaryFrame>(value_) && std::holds_alternative<BinaryFrame>(rhs.value())) {
return std::get<BinaryFrame>(value_) == std::get<BinaryFrame>(rhs.value());
}
if (std::holds_alternative<CloseFrame>(value_) && std::holds_alternative<CloseFrame>(rhs.value())) {
return std::get<CloseFrame>(value_) == std::get<CloseFrame>(rhs.value());
}
if (std::holds_alternative<UndefinedFrame>(value_) && std::holds_alternative<UndefinedFrame>(rhs.value())) {
return std::get<UndefinedFrame>(value_) == std::get<UndefinedFrame>(rhs.value());
}
return false;
}
bool operator!=(const Message &rhs) const {
return !(rhs == *this);
}
[[nodiscard]]
const std::variant<PingFrame, PongFrame, TextFrame, BinaryFrame, CloseFrame, UndefinedFrame> &value() const {
return value_;
}
private:
std::variant<PingFrame, PongFrame, TextFrame, BinaryFrame, CloseFrame, UndefinedFrame> value_;
};
struct MessageHandler final {
explicit MessageHandler(std::unique_ptr<FrameHandler> delegate) : delegate_(std::move(delegate)) {}
virtual ~MessageHandler() = default;
void handle(const Message &message) {
std::visit(visitor{
[this](const PingFrame &pingFrame) { delegate_->handlePing(pingFrame); },
[this](const PongFrame &pongFrame) { delegate_->handlePong(pongFrame); },
[this](const TextFrame &textFrame) { delegate_->handleText(textFrame); },
[this](const BinaryFrame &binaryFrame) { delegate_->handleBinary(binaryFrame); },
[this](const CloseFrame &closeFrame) { delegate_->handleClose(closeFrame); },
[this](const UndefinedFrame &undefinedFrame) { delegate_->handleUndefined(undefinedFrame); },
}, message.value());
}
private:
std::unique_ptr<FrameHandler> delegate_;
};
template<class A>
struct MessageParser final {
explicit MessageParser(std::unique_ptr<FrameParser<A>> delegate) : delegate_(std::move(delegate)) {}
virtual ~MessageParser() = default;
A parse(const Message &message) {
return std::visit(visitor{
[this](const PingFrame &pingFrame) { return delegate_->handlePing(pingFrame); },
[this](const PongFrame &pongFrame) { return delegate_->handlePong(pongFrame); },
[this](const TextFrame &textFrame) { return delegate_->handleText(textFrame); },
[this](const BinaryFrame &binaryFrame) { return delegate_->handleBinary(binaryFrame); },
[this](const CloseFrame &closeFrame) { return delegate_->handleClose(closeFrame); },
[this](const UndefinedFrame &undefinedFrame) { return delegate_->handleUndefined(undefinedFrame); },
}, message.value());
}
private:
std::unique_ptr<FrameParser<A>> delegate_;
};
struct WorkflowResult final {
explicit WorkflowResult(const std::monostate &unit) : value_(unit) {}
explicit WorkflowResult(const Failure &f) : value_(f) {}
explicit WorkflowResult(std::variant<Failure, std::monostate> value) : value_(std::move(value)) {}
[[nodiscard]] const std::variant<Failure, std::monostate> &value() const {
return value_;
}
[[nodiscard]] bool complete() const {
return std::holds_alternative<std::monostate>(value_);
}
template<class R>
[[nodiscard]] R
match(const std::function<R(const Failure &a)> aFn, const std::function<R(const std::monostate &unit)> uFn) {
return std::visit(visitor{
[&aFn](const Failure &a) { return aFn(a); },
[&uFn](const std::monostate &u) { return uFn(u); }
}, value_);
}
private:
std::variant<Failure, std::monostate> value_;
};
struct Workflow final {
explicit Workflow(std::function<WorkflowResult()> runFn,
std::function<void(const std::monostate &)> successFn,
std::function<void(const Failure &)> recoveryFn)
: runFn_(std::move(runFn))
, successFn_(std::move(successFn))
, recoveryFn_(std::move(recoveryFn))
{ }
void runUntilCancelled() {
WorkflowResult workflowResult = runFn_();
workflowResult.template match<void>(recoveryFn_, successFn_);
while (!workflowResult.complete()) {
workflowResult = runFn_();
workflowResult.template match<void>(recoveryFn_, successFn_);
}
}
private:
const std::function<WorkflowResult()> runFn_;
const std::function<void(const std::monostate &)> successFn_;
const std::function<void(const Failure &)> recoveryFn_;
};
struct ExecutionContext final {
ExecutionContext(std::string host, uint16_t port, std::string uri)
: host_(std::move(host)), port_(port), uri_(std::move(uri)) {}
[[nodiscard]] const std::string &host() const {
return host_;
}
[[nodiscard]] uint16_t port() const {
return port_;
}
[[nodiscard]] const std::string &uri() const {
return uri_;
}
private:
std::string host_;
uint16_t port_;
std::string uri_;
};
}
#if __has_include(<Poco/Net/WebSocket.h>)
#include <span>
#include <Poco/Net/WebSocket.h>
#include <Poco/Net/HTTPClientSession.h>
#include <Poco/Net/HTTPRequest.h>
#include <Poco/Net/HTTPResponse.h>
#include <Poco/Net/NetSSL.h>
#include <Poco/Net/HTTPSClientSession.h>
namespace SimpleWebSocket::Poco {
constexpr int PING_FRAME = static_cast<int>(::Poco::Net::WebSocket::FRAME_FLAG_FIN) |
static_cast<int>(::Poco::Net::WebSocket::FRAME_OP_PING);
constexpr int PONG_FRAME = static_cast<int>(::Poco::Net::WebSocket::FRAME_FLAG_FIN) |
static_cast<int>(::Poco::Net::WebSocket::FRAME_OP_PONG);
constexpr int TEXT_FRAME = static_cast<int>(::Poco::Net::WebSocket::FRAME_FLAG_FIN) |
static_cast<int>(::Poco::Net::WebSocket::FRAME_OP_TEXT);
constexpr int BINARY_FRAME = static_cast<int>(::Poco::Net::WebSocket::FRAME_FLAG_FIN) |
static_cast<int>(::Poco::Net::WebSocket::FRAME_OP_BINARY);
constexpr int CLOSE_FRAME = static_cast<int>(::Poco::Net::WebSocket::FRAME_FLAG_FIN) |
static_cast<int>(::Poco::Net::WebSocket::FRAME_OP_CLOSE);
inline SimpleWebSocket::Message fromPoco(int flags, const char *buf, int size) {
switch(flags) {
case PING_FRAME:
return SimpleWebSocket::Message{SimpleWebSocket::PingFrame{std::string(buf, size)}};
case PONG_FRAME:
return SimpleWebSocket::Message{SimpleWebSocket::PongFrame{std::string(buf, size)}};
case TEXT_FRAME:
return SimpleWebSocket::Message{SimpleWebSocket::TextFrame{std::string(buf, size)}};
case BINARY_FRAME:
return SimpleWebSocket::Message{SimpleWebSocket::BinaryFrame{std::vector<char>(buf, buf + size)}};
case CLOSE_FRAME:
return SimpleWebSocket::Message{SimpleWebSocket::CloseFrame{std::string(buf, size)}};
default:
return SimpleWebSocket::Message{SimpleWebSocket::UndefinedFrame{}};
}
}
template<int SIZE>
struct Wrapper final {
explicit Wrapper(const ::Poco::Net::WebSocket& webSocket) : webSocket_(webSocket) { }
~Wrapper() {
webSocket_.close();
}
[[nodiscard]] std::span<char> receive(int &flags) {
char buffer[SIZE];
int bytesReceived = webSocket_.receiveFrame(buffer, SIZE, flags);
return {buffer, static_cast<size_t>(bytesReceived)};
}
int send(const std::string &message, int opCode) {
return webSocket_.sendFrame(message.c_str(), static_cast<int>(message.length()), opCode);
}
int send(std::span<char> buffer, int opCode) {
return webSocket_.sendBytes(buffer.data(), static_cast<int>(buffer.size()), opCode);
}
private:
::Poco::Net::WebSocket webSocket_;
};
template<int SIZE>
inline Wrapper<SIZE> wrapper(const std::string& host,
::Poco::UInt16 port,
const std::string& uri) {
::Poco::Net::HTTPClientSession session{host, port};
::Poco::Net::HTTPRequest request{::Poco::Net::HTTPRequest::HTTP_GET, uri, ::Poco::Net::HTTPMessage::HTTP_1_1};
::Poco::Net::HTTPResponse response;
return Wrapper<SIZE>{::Poco::Net::WebSocket{session, request, response}};
}
template<int SIZE>
inline Wrapper<SIZE> tls_wrapper(const std::string& host,
::Poco::UInt16 port,
const std::string& uri) {
::Poco::Net::initializeSSL();
::Poco::Net::HTTPSClientSession session{host, port};
::Poco::Net::HTTPRequest request{::Poco::Net::HTTPRequest::HTTP_GET, uri, ::Poco::Net::HTTPMessage::HTTP_1_1};
::Poco::Net::HTTPResponse response;
return Wrapper<SIZE>{::Poco::Net::WebSocket{session, request, response}};
}
}
#endif