From b2ab45f70b547440a57ffa9330418dda846cd8a5 Mon Sep 17 00:00:00 2001
From: zhaomingwork <61895407+zhaomingwork@users.noreply.github.com>
Date: 星期五, 11 八月 2023 15:39:23 +0800
Subject: [PATCH] use asio strand to keep the order of data (#838)
---
funasr/runtime/websocket/websocket-server-2pass.cpp | 15 +++++++++++----
1 files changed, 11 insertions(+), 4 deletions(-)
diff --git a/funasr/runtime/websocket/websocket-server-2pass.cpp b/funasr/runtime/websocket/websocket-server-2pass.cpp
index e6e6c51..917c328 100644
--- a/funasr/runtime/websocket/websocket-server-2pass.cpp
+++ b/funasr/runtime/websocket/websocket-server-2pass.cpp
@@ -203,6 +203,12 @@
data_msg->msg["is_eof"]=false; // if this connection is closed
data_msg->punc_cache =
std::make_shared<std::vector<std::vector<std::string>>>(2);
+ data_msg->strand_ = std::make_shared<asio::io_context::strand>(io_decoder_);
+ // std::vector<int> chunk_size = {5, 10, 5}; //TODO, need get from client
+ // FUNASR_HANDLE tpass_online_handle =
+ // FunTpassOnlineInit(tpass_handle, chunk_size);
+ // data_msg->tpass_online_handle = tpass_online_handle;
+
data_map.emplace(hdl, data_msg);
// LOG(INFO) << "on_open, active connections: " << data_map.size();
}catch (std::exception const& e) {
@@ -294,7 +300,8 @@
}
for (auto hdl : to_remove) {
remove_hdl(hdl, data_map);
- // LOG(INFO) << "remove one connection ";
+ //LOG(INFO) << "remove one connection ";
+
}
}
}
@@ -360,8 +367,8 @@
// if it is in final message, post the sample_data to decode
try{
- asio::post(
- io_decoder_,
+
+ msg_data->strand_->post(
std::bind(&WebSocketServer::do_decoder, this,
std::move(*(sample_data_p.get())), std::move(hdl),
std::ref(msg_data->msg), std::ref(*(punc_cache_p.get())),
@@ -400,7 +407,7 @@
try{
// post to decode
- asio::post(io_decoder_,
+ msg_data->strand_->post(
std::bind(&WebSocketServer::do_decoder, this,
std::move(subvector), std::move(hdl),
std::ref(msg_data->msg),
--
Gitblit v1.9.1