subscriptionstore.cpp
7.02 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
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
#include "subscriptionstore.h"
#include "cassert"
#include "rwlockguard.h"
SubscriptionNode::SubscriptionNode(const std::string &subtopic) :
subtopic(subtopic)
{
}
std::vector<Subscription> &SubscriptionNode::getSubscribers()
{
return subscribers;
}
void SubscriptionNode::addSubscriber(const std::shared_ptr<Session> &subscriber, char qos)
{
Subscription sub;
sub.session = subscriber;
sub.qos = qos;
// I'll have to decide whether to keep the subscriber as a vector. Vectors are
// fast, and relatively, you don't often add subscribers.
if (std::find(subscribers.begin(), subscribers.end(), sub) == subscribers.end())
{
subscribers.push_back(sub);
}
}
SubscriptionStore::SubscriptionStore() :
root(new SubscriptionNode("root")),
sessionsByIdConst(sessionsById)
{
}
void SubscriptionStore::addSubscription(Client_p &client, const std::string &topic, char qos)
{
const std::list<std::string> subtopics = split(topic, '/');
RWLockGuard lock_guard(&subscriptionsRwlock);
lock_guard.wrlock();
SubscriptionNode *deepestNode = root.get();
for(const std::string &subtopic : subtopics)
{
std::unique_ptr<SubscriptionNode> *selectedChildren = nullptr;
if (subtopic == "#")
selectedChildren = &deepestNode->childrenPound;
else if (subtopic == "+")
selectedChildren = &deepestNode->childrenPlus;
else
selectedChildren = &deepestNode->children[subtopic];
std::unique_ptr<SubscriptionNode> &node = *selectedChildren;
if (!node)
{
node.reset(new SubscriptionNode(subtopic));
}
deepestNode = node.get();
}
assert(deepestNode);
if (deepestNode)
{
auto session_it = sessionsByIdConst.find(client->getClientId());
if (session_it != sessionsByIdConst.end())
{
const std::shared_ptr<Session> &ses = session_it->second;
deepestNode->addSubscriber(ses, qos);
giveClientRetainedMessages(ses, topic, qos);
}
}
lock_guard.unlock();
}
// Removes an existing client when it already exists [MQTT-3.1.4-2].
void SubscriptionStore::registerClientAndKickExistingOne(Client_p &client)
{
RWLockGuard lock_guard(&subscriptionsRwlock);
lock_guard.wrlock();
if (client->getClientId().empty())
throw ProtocolError("Trying to store client without an ID.");
std::shared_ptr<Session> session;
auto session_it = sessionsById.find(client->getClientId());
if (session_it != sessionsById.end())
{
session = session_it->second;
if (session && !session->clientDisconnected())
{
std::shared_ptr<Client> cl = session->makeSharedClient();
logger->logf(LOG_NOTICE, "Disconnecting existing client with id '%s'", cl->getClientId().c_str());
cl->setReadyForDisconnect();
cl->getThreadData()->removeClient(cl);
cl->markAsDisconnecting();
}
}
if (!session || client->getCleanSession())
{
session.reset(new Session());
sessionsById[client->getClientId()] = session;
}
session->assignActiveConnection(client);
client->assignSession(session);
session->sendPendingQosMessages();
}
// TODO: should I implement cache, this needs to be changed to returning a list of clients.
void SubscriptionStore::publishNonRecursively(const MqttPacket &packet, const std::vector<Subscription> &subscribers) const
{
for (const Subscription &sub : subscribers)
{
std::weak_ptr<Session> session_weak = sub.session;
if (!session_weak.expired()) // Shared pointer expires when session has been cleaned by 'clean session' connect.
{
const std::shared_ptr<Session> session = session_weak.lock();
session->writePacket(packet, sub.qos);
}
}
}
void SubscriptionStore::publishRecursively(std::vector<std::string>::const_iterator cur_subtopic_it, std::vector<std::string>::const_iterator end,
std::unique_ptr<SubscriptionNode> &this_node, const MqttPacket &packet) const
{
if (cur_subtopic_it == end) // This is the end of the topic path, so look for subscribers here.
{
publishNonRecursively(packet, this_node->getSubscribers());
return;
}
if (this_node->children.empty() && !this_node->childrenPlus && !this_node->childrenPound)
return;
std::string cur_subtop = *cur_subtopic_it;
const auto next_subtopic = ++cur_subtopic_it;
if (this_node->childrenPound)
{
publishNonRecursively(packet, this_node->childrenPound->getSubscribers());
}
auto sub_node = this_node->children.find(cur_subtop);
if (sub_node != this_node->children.end())
{
publishRecursively(next_subtopic, end, sub_node->second, packet);
}
if (this_node->childrenPlus)
{
publishRecursively(next_subtopic, end, this_node->childrenPlus, packet);
}
}
void SubscriptionStore::queuePacketAtSubscribers(const std::string &topic, const MqttPacket &packet, const Client_p &sender)
{
// TODO: keep a cache of topics vs clients
const std::vector<std::string> subtopics = splitToVector(topic, '/');
RWLockGuard lock_guard(&subscriptionsRwlock);
lock_guard.rdlock();
publishRecursively(subtopics.begin(), subtopics.end(), root, packet);
}
void SubscriptionStore::giveClientRetainedMessages(const std::shared_ptr<Session> &ses, const std::string &subscribe_topic, char max_qos)
{
RWLockGuard locker(&retainedMessagesRwlock);
locker.rdlock();
for(const RetainedMessage &rm : retainedMessages)
{
Publish publish(rm.topic, rm.payload, rm.qos);
publish.retain = true;
const MqttPacket packet(publish);
if (topicsMatch(subscribe_topic, rm.topic))
ses->writePacket(packet, max_qos);
}
}
void SubscriptionStore::setRetainedMessage(const std::string &topic, const std::string &payload, char qos)
{
RWLockGuard locker(&retainedMessagesRwlock);
locker.wrlock();
RetainedMessage rm(topic, payload, qos);
auto retained_ptr = retainedMessages.find(rm);
bool retained_found = retained_ptr != retainedMessages.end();
if (!retained_found && payload.empty())
return;
if (retained_found && payload.empty())
{
retainedMessages.erase(rm);
return;
}
if (retained_found)
retainedMessages.erase(rm);
retainedMessages.insert(std::move(rm));
}
// QoS is not used in the comparision. This means you upgrade your QoS by subscribing again. The
// specs don't specify what to do there.
bool Subscription::operator==(const Subscription &rhs) const
{
if (session.expired() && rhs.session.expired())
return true;
if (session.expired() || rhs.session.expired())
return false;
const std::shared_ptr<Session> lhs_ses = session.lock();
const std::shared_ptr<Session> rhs_ses = rhs.session.lock();
return lhs_ses->getClientId() == rhs_ses->getClientId();
}
void Subscription::reset()
{
session.reset();
qos = 0;
}