-
-
Notifications
You must be signed in to change notification settings - Fork 392
/
Copy pathpollservice.hpp
82 lines (61 loc) · 1.76 KB
/
pollservice.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
/**
* Copyright (c) 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/.
*/
#ifndef RTC_IMPL_POLL_SERVICE_H
#define RTC_IMPL_POLL_SERVICE_H
#include "common.hpp"
#include "internals.hpp"
#include "pollinterrupter.hpp"
#include "socket.hpp"
#if RTC_ENABLE_WEBSOCKET
#include <chrono>
#include <functional>
#include <mutex>
#include <thread>
#include <unordered_map>
#include <vector>
namespace rtc::impl {
class PollService {
public:
using clock = std::chrono::steady_clock;
static PollService &Instance();
PollService(const PollService &) = delete;
PollService &operator=(const PollService &) = delete;
PollService(PollService &&) = delete;
PollService &operator=(PollService &&) = delete;
void start();
void join();
enum class Direction { Both, In, Out };
enum class Event { None, Error, Timeout, In, Out };
struct Params {
Direction direction;
optional<clock::duration> timeout;
std::function<void(Event)> callback;
};
void add(socket_t sock, Params params);
void remove(socket_t sock);
private:
PollService();
~PollService();
void prepare(std::vector<struct pollfd> &pfds, optional<clock::time_point> &next);
void process(std::vector<struct pollfd> &pfds);
void runLoop();
struct SocketEntry {
Params params;
optional<clock::time_point> until;
};
using SocketMap = std::unordered_map<socket_t, SocketEntry>;
unique_ptr<SocketMap> mSocks;
unique_ptr<PollInterrupter> mInterrupter;
std::recursive_mutex mMutex;
std::thread mThread;
bool mStopped;
};
std::ostream &operator<<(std::ostream &out, PollService::Direction direction);
} // namespace rtc::impl
#endif
#endif