gpt4 book ai didi

c++ - 如何通知我的用户读取尚未完成?

转载 作者:行者123 更新时间:2023-11-30 03:36:20 26 4
gpt4 key购买 nike

我有一个类封装了与使用 Asio 读写通用流套接字相关的所有业务逻辑。我想添加一个标志,以便我的用户知道他们是否可以从 getter 检索数据,或者我们是否仍在等待后端。

这通常是如何完成的?写入后将标志设置为忙碌并在单独的线程中在后台读取?该标志类似于 PQisBusy

最佳答案

不知道您是否正在寻找异步解决方案,例如使用回调或轮询方法。从这个问题看来,您似乎正在寻找一种轮询方法,因为您想要一个标志,用户可以检查该标志以查看数据是否已完全准备好。在这种情况下,只需在您的类 .h 文件中定义一个变量和函数:

#include <atomic>
#include <thread>

class MySocket
{
public:
~MySocket();
bool IsReady();
void StartDataGather();
private:
void GatherDataThread();
static std::atomic<bool> _isReady;
std::thread _thread;
}

在您的 .cpp 文件中:

#include "MySocket.h"

static std::atomic<bool> MySocket::_isReady(false); // Default flag to false.

MySocket::~MySocket()
{
// Make sure to kill the thread if this class is destroyed.
if (_thread.joinable())
_thread.join();
}

bool MySocket::IsReady() { return _isReady; }

void MySocket::StartDataGather()
{
_isReady = false; // Reset flag.

// If your gather thread is running then stop it or wait for it
// to finish before starting it again.
if(_thread.joinable())
_thread.join();

// Start the background thread to gather data.
_thread = std::thread(GatherDataThread());
}

void MySocket::GatherDataThread()
{
// This is your thread that gathers data.
// Once all of the data is gathered, do the following:
_isReady = true;
}

要从您的客户端类外部使用此方法,请执行以下操作:

MySocket mySock;

mySock.StartDataGather();

while(!mySock.IsReady())
{
// Do some other code here until data is ready.
// Once the MySocket::GatherDataThread() finishes it will
// set _isReady = true which will cause mySock.IsReady() to
// return true.
}

你现在有一个其他人可以检查的标志,并且它是线程安全的,因为 std::atomic<>模板。以下使用 C++ 11 或更新版本 -std=c++11 .

关于c++ - 如何通知我的用户读取尚未完成?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40774771/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com