#include "subscriptionstore.h" #include "cassert" #include "rwlockguard.h" SubscriptionNode::SubscriptionNode(const std::string &subtopic) : subtopic(subtopic) { } SubscriptionStore::SubscriptionStore() : root(new SubscriptionNode("root")), sessionsByIdConst(sessionsById) { } void SubscriptionStore::addSubscription(Client_p &client, const std::string &topic) { const std::list subtopics = split(topic, '/'); RWLockGuard lock_guard(&subscriptionsRwlock); lock_guard.wrlock(); SubscriptionNode *deepestNode = root.get(); for(const std::string &subtopic : subtopics) { std::unique_ptr *selectedChildren = nullptr; if (subtopic == "#") selectedChildren = &deepestNode->childrenPound; else if (subtopic == "+") selectedChildren = &deepestNode->childrenPlus; else selectedChildren = &deepestNode->children[subtopic]; std::unique_ptr &node = *selectedChildren; if (!node) { node.reset(new SubscriptionNode(subtopic)); } deepestNode = node.get(); } if (deepestNode) { auto session_it = sessionsByIdConst.find(client->getClientId()); if (session_it != sessionsByIdConst.end()) { std::weak_ptr b = session_it->second; deepestNode->subscribers.push_front(b); } } lock_guard.unlock(); giveClientRetainedMessages(client, topic); } // 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; auto session_it = sessionsById.find(client->getClientId()); if (session_it != sessionsById.end()) { session = session_it->second; if (session && !session->clientDisconnected()) { std::shared_ptr 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); } // TODO: should I implement cache, this needs to be changed to returning a list of clients. void SubscriptionStore::publishNonRecursively(const MqttPacket &packet, const std::forward_list> &subscribers) const { for (const std::weak_ptr session_weak : subscribers) { if (!session_weak.expired()) // Shared pointer expires when session has been cleaned by 'clean session' connect. { const std::shared_ptr session = session_weak.lock(); if (!session->clientDisconnected()) { Client_p c = session->makeSharedClient(); c->writeMqttPacketAndBlameThisClient(packet); } } } } void SubscriptionStore::publishRecursively(std::vector::const_iterator cur_subtopic_it, std::vector::const_iterator end, std::unique_ptr &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->subscribers); 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->subscribers); } 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 subtopics = splitToVector(topic, '/'); RWLockGuard lock_guard(&subscriptionsRwlock); lock_guard.rdlock(); publishRecursively(subtopics.begin(), subtopics.end(), root, packet); } void SubscriptionStore::giveClientRetainedMessages(Client_p &client, const std::string &subscribe_topic) { 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)) client->writeMqttPacket(packet); } } 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)); }