Optimize big message publishing, fix unreferenced publishes

This commit is contained in:
root
2021-09-28 23:22:38 +00:00
parent 814a7ee53e
commit 0ede7e5d8e
6 changed files with 68 additions and 17 deletions
+21 -6
View File
@@ -27,6 +27,11 @@ namespace uWS {
/*OpCode*/ int opCode; /*OpCode*/ int opCode;
bool compress; bool compress;
}; };
struct TopicTreeBigMessage {
std::string_view message;
/*OpCode*/ int opCode;
bool compress;
};
} }
/* An app is a convenience wrapper of some of the most used fuctionalities and allows a /* An app is a convenience wrapper of some of the most used fuctionalities and allows a
@@ -69,7 +74,7 @@ private:
public: public:
TopicTree<TopicTreeMessage> *topicTree = nullptr; TopicTree<TopicTreeMessage, TopicTreeBigMessage> *topicTree = nullptr;
/* Server name */ /* Server name */
TemplatedApp &&addServerName(std::string hostname_pattern, SocketContextOptions options = {}) { TemplatedApp &&addServerName(std::string hostname_pattern, SocketContextOptions options = {}) {
@@ -113,8 +118,18 @@ public:
/* Publishes a message to all websocket contexts - conceptually as if publishing to the one single /* Publishes a message to all websocket contexts - conceptually as if publishing to the one single
* TopicTree of this app (technically there are many TopicTrees, however the concept is that one * TopicTree of this app (technically there are many TopicTrees, however the concept is that one
* app has one conceptual Topic tree) */ * app has one conceptual Topic tree) */
void publish(std::string_view topic, std::string_view message, OpCode opCode, bool compress = false) { bool publish(std::string_view topic, std::string_view message, OpCode opCode, bool compress = false) {
topicTree->publish(nullptr, topic, {std::string(message), opCode, compress}); /* Anything big bypasses corking efforts */
if (message.length() >= LoopData::CORK_BUFFER_SIZE) {
return topicTree->publishBig(nullptr, topic, {message, opCode, compress}, [](Subscriber *s, TopicTreeBigMessage &message) {
auto *ws = (WebSocket<SSL, true, int> *) s->user;
/* Send will drain if needed */
ws->send(message.message, (OpCode)message.opCode, message.compress);
});
} else {
return topicTree->publish(nullptr, topic, {std::string(message), opCode, compress});
}
} }
/* Returns number of subscribers for this topic, or 0 for failure. /* Returns number of subscribers for this topic, or 0 for failure.
@@ -225,7 +240,7 @@ public:
if (!topicTree) { if (!topicTree) {
bool needsUncork = false; bool needsUncork = false;
topicTree = new TopicTree<TopicTreeMessage>([needsUncork](Subscriber *s, TopicTreeMessage &message, TopicTree<TopicTreeMessage>::IteratorFlags flags) mutable { topicTree = new TopicTree<TopicTreeMessage, TopicTreeBigMessage>([needsUncork](Subscriber *s, TopicTreeMessage &message, TopicTree<TopicTreeMessage, TopicTreeBigMessage>::IteratorFlags flags) mutable {
/* Subscriber's user is the socket */ /* Subscriber's user is the socket */
/* Unfortunately we need to cast is to PerSocketData = int /* Unfortunately we need to cast is to PerSocketData = int
* since many different WebSocketContexts use the same * since many different WebSocketContexts use the same
@@ -233,7 +248,7 @@ public:
auto *ws = (WebSocket<SSL, true, int> *) s->user; auto *ws = (WebSocket<SSL, true, int> *) s->user;
/* If this is the first message we try and cork */ /* If this is the first message we try and cork */
if (flags & TopicTree<TopicTreeMessage>::IteratorFlags::FIRST) { if (flags & TopicTree<TopicTreeMessage, TopicTreeBigMessage>::IteratorFlags::FIRST) {
if (ws->canCork() && !ws->isCorked()) { if (ws->canCork() && !ws->isCorked()) {
((AsyncSocket<SSL> *)ws)->cork(); ((AsyncSocket<SSL> *)ws)->cork();
needsUncork = true; needsUncork = true;
@@ -251,7 +266,7 @@ public:
} }
/* If this is the last message we uncork if we are corked */ /* If this is the last message we uncork if we are corked */
if (flags & TopicTree<TopicTreeMessage>::IteratorFlags::LAST) { if (flags & TopicTree<TopicTreeMessage, TopicTreeBigMessage>::IteratorFlags::LAST) {
/* We should not uncork in all cases? */ /* We should not uncork in all cases? */
if (needsUncork) { if (needsUncork) {
((AsyncSocket<SSL> *)ws)->uncork(); ((AsyncSocket<SSL> *)ws)->uncork();
+1 -1
View File
@@ -49,7 +49,7 @@ struct AsyncSocket {
template <bool, bool, typename> friend struct WebSocketContext; template <bool, bool, typename> friend struct WebSocketContext;
template <bool> friend struct TemplatedApp; template <bool> friend struct TemplatedApp;
template <bool, typename> friend struct WebSocketContextData; template <bool, typename> friend struct WebSocketContextData;
template <typename> friend struct TopicTree; template <typename, typename> friend struct TopicTree;
protected: protected:
/* Returns SSL pointer or FD as pointer */ /* Returns SSL pointer or FD as pointer */
+35 -5
View File
@@ -45,7 +45,7 @@ struct Topic : std::unordered_set<Subscriber *> {
struct Subscriber { struct Subscriber {
template <typename> friend struct TopicTree; template <typename, typename> friend struct TopicTree;
private: private:
/* We use a factory */ /* We use a factory */
@@ -74,7 +74,7 @@ public:
} }
}; };
template <typename T> template <typename T, typename B>
struct TopicTree { struct TopicTree {
enum IteratorFlags { enum IteratorFlags {
@@ -275,6 +275,27 @@ public:
} }
} }
/* Big messages bypass all buffering and land directly in backpressure */
template <typename F>
bool publishBig(Subscriber *sender, std::string_view topic, B &&bigMessage, F cb) {
/* Do we even have this topic? */
auto it = topics.find(topic);
if (it == topics.end()) {
return false;
}
/* For all subscribers in topic */
for (Subscriber *s : *it->second) {
/* If we are sender then ignore us */
if (sender != s) {
cb(s, bigMessage);
}
}
return true;
}
/* Linear in number of affected subscribers */ /* Linear in number of affected subscribers */
bool publish(Subscriber *sender, std::string_view topic, T &&message) { bool publish(Subscriber *sender, std::string_view topic, T &&message) {
/* Do we even have this topic? */ /* Do we even have this topic? */
@@ -290,12 +311,18 @@ public:
drain(); drain();
} }
/* If nobody references this message, don't buffer it */
bool referencedMessage = false;
/* For all subscribers in topic */ /* For all subscribers in topic */
for (Subscriber *s : *it->second) { for (Subscriber *s : *it->second) {
/* If we are sender then ignore us */ /* If we are sender then ignore us */
if (sender != s) { if (sender != s) {
/* At least one subscriber wants this message */
referencedMessage = true;
/* If we already have too many outgoing messages on this subscriber, drain it now */ /* If we already have too many outgoing messages on this subscriber, drain it now */
if (s->numMessageIndices == 32) { if (s->numMessageIndices == 32) {
/* This one does not need to check needsDrainage here but still does. */ /* This one does not need to check needsDrainage here but still does. */
@@ -318,10 +345,13 @@ public:
} }
/* Push this message and return with success */ /* Push this message and return with success */
outgoingMessages.emplace_back(message); if (referencedMessage) {
return true; outgoingMessages.emplace_back(message);
} }
/* Success if someone wants it */
return referencedMessage;
}
}; };
} }
+8 -2
View File
@@ -304,9 +304,15 @@ public:
} }
/* Publish as sender, does not receive its own messages even if subscribed to relevant topics */ /* Publish as sender, does not receive its own messages even if subscribed to relevant topics */
bool success = webSocketContextData->topicTree->publish(webSocketData->subscriber, topic, {std::string(message), opCode, compress}); if (message.length() >= LoopData::CORK_BUFFER_SIZE) {
return webSocketContextData->topicTree->publishBig(webSocketData->subscriber, topic, {message, opCode, compress}, [](Subscriber *s, TopicTreeBigMessage &message) {
auto *ws = (WebSocket<SSL, true, int> *) s->user;
return success; ws->send(message.message, (OpCode)message.opCode, message.compress);
});
} else {
return webSocketContextData->topicTree->publish(webSocketData->subscriber, topic, {std::string(message), opCode, compress});
}
} }
}; };
+1 -1
View File
@@ -404,7 +404,7 @@ private:
public: public:
/* WebSocket contexts are always child contexts to a HTTP context so no SSL options are needed as they are inherited */ /* WebSocket contexts are always child contexts to a HTTP context so no SSL options are needed as they are inherited */
static WebSocketContext *create(Loop */*loop*/, us_socket_context_t *parentSocketContext, TopicTree<TopicTreeMessage> *topicTree) { static WebSocketContext *create(Loop */*loop*/, us_socket_context_t *parentSocketContext, TopicTree<TopicTreeMessage, TopicTreeBigMessage> *topicTree) {
WebSocketContext *webSocketContext = (WebSocketContext *) us_create_child_socket_context(SSL, parentSocketContext, sizeof(WebSocketContextData<SSL, USERDATA>)); WebSocketContext *webSocketContext = (WebSocketContext *) us_create_child_socket_context(SSL, parentSocketContext, sizeof(WebSocketContextData<SSL, USERDATA>));
if (!webSocketContext) { if (!webSocketContext) {
return nullptr; return nullptr;
+2 -2
View File
@@ -42,7 +42,7 @@ private:
public: public:
/* This one points to the App's shared topicTree */ /* This one points to the App's shared topicTree */
TopicTree<TopicTreeMessage> *topicTree; TopicTree<TopicTreeMessage, TopicTreeBigMessage> *topicTree;
/* The callbacks for this context */ /* The callbacks for this context */
MoveOnlyFunction<void(WebSocket<SSL, true, USERDATA> *)> openHandler = nullptr; MoveOnlyFunction<void(WebSocket<SSL, true, USERDATA> *)> openHandler = nullptr;
@@ -85,7 +85,7 @@ public:
} }
WebSocketContextData(TopicTree<TopicTreeMessage> *topicTree) : topicTree(topicTree) { WebSocketContextData(TopicTree<TopicTreeMessage, TopicTreeBigMessage> *topicTree) : topicTree(topicTree) {
} }
}; };