如何让 mongoose 管理多个 websocket URL
How to have mongoose managing multiple websocket URL
我的嵌入式平台上有适用于 Mongoose 6.12 运行 的 websocket 示例。
我想知道如何管理多个 URL websockets?
我们的目标是在我们的平台上拥有多个网页,每个网页都通过 websockets 从服务器定期检索数据。根据 websocket URL,将返回不同的数据集。
以"websocket_chat"为例,发送代码:
for (c = mg_next(nc->mgr, NULL); c != NULL; c = mg_next(nc->mgr, c)) {
if (c == nc) continue;
mg_send_websocket_frame(c, WEBSOCKET_OP_TEXT, buf, strlen(buf));
}
会理想地过滤掉与正在服务的 URL 无关的 URL:
for (c = mg_next(nc->mgr, NULL); c != NULL; c = mg_next(nc->mgr, c)) {
if ((c == nc) **|| (strcmp(c->uri, "/ws/page1") == 0)**) continue;
mg_send_websocket_frame(c, WEBSOCKET_OP_TEXT, buf, strlen(buf));
}
但该连接似乎不包含与该连接关联的 URL。
此代码由 Web 服务器定期调用,而不是基于 Mongoose 事件。
你对如何实现这一点有什么建议吗?
非常感谢。
弗雷德
我认为你可以捕获 MG_EV_WEBSOCKET_HANDSHAKE_REQUEST
事件,它可以访问 URI,并且可以在 user_data
:
中设置标记
static void ev_handler(struct mg_connection *c, int ev, void *ev_data) {
switch (ev) {
case MG_EV_WEBSOCKET_HANDSHAKE_REQUEST: {
struct http_message *hm = (struct http_message *) ev_data;
c->user_data = "foo";
if (mg_vcmp(&hm->uri, "/uri1") == 0) c->user_data = "bar";
break;
}
然后在广播处理程序中,检查该标记的值。
for (c = mg_next(nc->mgr, NULL); c != NULL; c = mg_next(nc->mgr, c)) {
if (c == nc) continue; /* Don't send to the sender. */
if (c->user_data && strcmp(c->user_data, "bar") == 0)
mg_send_websocket_frame(c, WEBSOCKET_OP_TEXT, buf, strlen(buf));
}
}
我的嵌入式平台上有适用于 Mongoose 6.12 运行 的 websocket 示例。
我想知道如何管理多个 URL websockets?
我们的目标是在我们的平台上拥有多个网页,每个网页都通过 websockets 从服务器定期检索数据。根据 websocket URL,将返回不同的数据集。
以"websocket_chat"为例,发送代码:
for (c = mg_next(nc->mgr, NULL); c != NULL; c = mg_next(nc->mgr, c)) {
if (c == nc) continue;
mg_send_websocket_frame(c, WEBSOCKET_OP_TEXT, buf, strlen(buf));
}
会理想地过滤掉与正在服务的 URL 无关的 URL:
for (c = mg_next(nc->mgr, NULL); c != NULL; c = mg_next(nc->mgr, c)) {
if ((c == nc) **|| (strcmp(c->uri, "/ws/page1") == 0)**) continue;
mg_send_websocket_frame(c, WEBSOCKET_OP_TEXT, buf, strlen(buf));
}
但该连接似乎不包含与该连接关联的 URL。
此代码由 Web 服务器定期调用,而不是基于 Mongoose 事件。
你对如何实现这一点有什么建议吗?
非常感谢。
弗雷德
我认为你可以捕获 MG_EV_WEBSOCKET_HANDSHAKE_REQUEST
事件,它可以访问 URI,并且可以在 user_data
:
static void ev_handler(struct mg_connection *c, int ev, void *ev_data) {
switch (ev) {
case MG_EV_WEBSOCKET_HANDSHAKE_REQUEST: {
struct http_message *hm = (struct http_message *) ev_data;
c->user_data = "foo";
if (mg_vcmp(&hm->uri, "/uri1") == 0) c->user_data = "bar";
break;
}
然后在广播处理程序中,检查该标记的值。
for (c = mg_next(nc->mgr, NULL); c != NULL; c = mg_next(nc->mgr, c)) {
if (c == nc) continue; /* Don't send to the sender. */
if (c->user_data && strcmp(c->user_data, "bar") == 0)
mg_send_websocket_frame(c, WEBSOCKET_OP_TEXT, buf, strlen(buf));
}
}