NcEngine
SignalInternal.h
1#pragma once
2
3#include <functional>
4#include <memory>
5#include <mutex>
6#include <utility>
7#include <vector>
8
9namespace nc::detail
10{
17{
18 public:
19 ConnectionBacklink() = default;
22 ConnectionBacklink& operator=(const ConnectionBacklink&) = delete;
23 ConnectionBacklink& operator=(ConnectionBacklink&&) = delete;
24
25 auto HasPendingDisconnections() const noexcept -> bool
26 {
27 return !m_pending.empty();
28 }
29
30 auto GetPendingDisconnections() -> std::vector<int>
31 {
32 auto lock = std::lock_guard{m_mutex};
33 return std::exchange(m_pending, std::vector<int>{});
34 }
35
36 void StageDisconnect(int id)
37 {
38 auto lock = std::lock_guard{m_mutex};
39 m_pending.push_back(id);
40 }
41
42 private:
43 std::vector<int> m_pending;
44 std::mutex m_mutex;
45};
46
48{
49 public:
50 SharedConnectionState(ConnectionBacklink* link, int id) noexcept
51 : m_link{link}, m_id{id}, m_connected{true}
52 {
53 }
54
55 auto Id() const noexcept -> int
56 {
57 return m_id;
58 }
59
60 auto IsConnected() const noexcept -> bool
61 {
62 return m_connected;
63 }
64
65 auto Disconnect() noexcept -> bool
66 {
67 const auto connected = std::exchange(m_connected, false);
68 if (connected)
69 {
70 m_link->StageDisconnect(m_id);
71 }
72
73 return connected;
74 }
75
76 private:
77 ConnectionBacklink* m_link;
78 int m_id;
79 bool m_connected;
80};
81
82template<class... Args>
83class Slot
84{
85 public:
86 Slot(std::move_only_function<void(Args...)> func, ConnectionBacklink* link, size_t priority, int id)
87 : m_func{std::move(func)},
88 m_state{std::make_shared<SharedConnectionState>(link, id)},
89 m_priority{priority},
90 m_id{id}
91 {
92 }
93
94 auto Id() const noexcept -> int
95 {
96 return m_id;
97 }
98
99 auto Priority() const noexcept -> size_t
100 {
101 return m_priority;
102 }
103
104 void operator()(Args... args)
105 {
106 m_func(args...);
107 }
108
109 auto GetState() const -> std::weak_ptr<SharedConnectionState>
110 {
111 return m_state;
112 }
113
114 private:
115 std::move_only_function<void(Args...)> m_func;
116 std::shared_ptr<SharedConnectionState> m_state;
117 size_t m_priority;
118 int m_id;
119};
120} // namespace nc::internal
Definition: SignalInternal.h:48
Definition: SignalInternal.h:84