-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSubscription.h
More file actions
177 lines (137 loc) · 4.71 KB
/
Copy pathSubscription.h
File metadata and controls
177 lines (137 loc) · 4.71 KB
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
#pragma once
#include"RxObserver/IncludeExtLibs.h"
#include"RxObserver/SubscriptionBase.h"
#include"RxObserver/ObserverBase.h"
#include"RxObserver/Export.h"
namespace BaseLib { namespace Concurrent
{
// --------------------------------------------------
// TODO: Support list of (id, signaller) in every Subscription
// TODO: Support pull last n events
// TODO: Support pull "current submitted event"
// --------------------------------------------------
class DLL_STATE Subscription
: public BaseLib::Concurrent::SubscriptionBase
{
public:
Subscription(std::shared_ptr<ObserverAction> observer)
: observer_(observer)
, eventIdentification_(observer->EventId())
{}
virtual ~Subscription()
{
// NB! Since this is a ptr, only use Disconnect from outside the class!
// Otherwise a deadlock occurs when this is removed from SignalSlot
// TODO: let signaller implement a lazy disconnect: "Disconnect as soon as you can", to avoid any simultaneous deletes?
}
CLASS_TRAITS(Subscription)
// -----------------------------------------
// Template functions
// -----------------------------------------
template <typename Delegate>
bool UnsubscribeType(Delegate *observer)
{
std::shared_ptr<ObserverAction> observerPtr = observer_.lock();
if(!observerPtr) return false;
DelegateIdentification delegateKey(observer);
if(observerPtr->Delegate() == delegateKey)
{
return observerPtr->Unsubscribe();
}
return false;
}
template <typename Delegate, typename FunctionPointer>
bool UnsubscribeType(Delegate *observer, FunctionPointer func)
{
std::shared_ptr<ObserverAction> observerPtr = observer_.lock();
if(!observerPtr) return false;
if(observerPtr->EventId() == EventIdentification(observer, func))
{
return observerPtr->Unsubscribe();
}
return false;
}
virtual bool AddFilter(FilterCriterion::Ptr filter)
{
std::shared_ptr<ObserverAction> observerPtr = observer_.lock();
if(!observerPtr) return false;
return observerPtr->AddFilter(filter);
}
// -----------------------------------------
// Interface Subscription
// -----------------------------------------
virtual bool Unsubscribe()
{
std::shared_ptr<ObserverAction> observerPtr = observer_.lock();
if(!observerPtr) return false;
return observerPtr->Unsubscribe();
}
virtual bool Block()
{
std::shared_ptr<ObserverAction> observerPtr = observer_.lock();
if(!observerPtr) return false;
return observerPtr->Block();
}
virtual bool Unblock()
{
std::shared_ptr<ObserverAction> observerPtr = observer_.lock();
if(!observerPtr) return false;
return observerPtr->Unblock();
}
virtual bool IsBlocked() const
{
std::shared_ptr<ObserverAction> observerPtr = observer_.lock();
if(!observerPtr) return false;
return observerPtr->IsBlocked();
}
virtual bool IsSubscribed() const
{
std::shared_ptr<ObserverAction> observerPtr = observer_.lock();
if(!observerPtr) return false;
return observerPtr->IsSubscribed();
}
virtual ObserverEvents History() const
{
std::shared_ptr<ObserverAction> observerPtr = observer_.lock();
if(!observerPtr) return ObserverEvents();
return observerPtr->History();
}
virtual ObserverPolicy Policy() const
{
std::shared_ptr<ObserverAction> observerPtr = observer_.lock();
if(!observerPtr) return ObserverPolicy::Default();
return observerPtr->Policy();
}
EventIdentification EventId() const
{
return eventIdentification_;
}
// virtual const Status::ObserverStatus &StatusConst() const
// {
// std::shared_ptr<ObserverAction> observerPtr = observer_.lock();
// if(!observerPtr) return Status::ObserverStatus();
// return observerPtr->StatusConst();
// }
template <typename T>
std::list<T> History()
{
std::shared_ptr<ObserverAction> observerPtr = observer_.lock();
if(!observerPtr) return std::list<T>();
std::list<T> history;
for(ObserverEvent::Ptr event : observerPtr->History())
{
T eventData = std::dynamic_pointer_cast<T>(event->Data());
if(eventData == nullptr) continue;
history.push_back(eventData);
}
return history;
}
std::shared_ptr<ObserverAction> Observer() const
{
return observer_.lock();
}
private:
std::weak_ptr<ObserverAction> observer_;
EventIdentification eventIdentification_;
};
}}