- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
所以我制作了一个使用 boost::asio 库进行异步读写的套接字类。它有效,但我有几个问题。
这是一个基本的代码示例:
class Socket
{
public:
void doRead()
{
m_sock->async_receive_from(boost::asio::buffer(m_recvBuffer), m_from, boost::bind(&Socket::handleRecv, this, boost::asio::placeholders::error(), boost::asio::placeholders::bytes_transferred()));
}
void handleRecv(boost::system::error_code e, int bytes)
{
if (e.value() || !bytes)
{
handle_error();
return;
}
//do something with data read
do_something(m_recvBuffer);
doRead(); //read another packet
}
protected:
boost::array<char, 1024> m_recvBuffer;
boost::asio::ip::udp::endpoint m_from;
};
程序似乎会读取一个数据包,处理它,然后准备读取另一个数据包。简单的。但是如果我设置一个线程池呢?下一次调用 doRead()
应该在处理读取数据之前还是之后?似乎如果它放在 do_something()
之前,程序可以立即开始读取另一个数据包,如果它放在之后,线程就会被捆绑起来做任何事情 do_something()
可以,这可能需要一段时间。如果我将 doRead()
放在处理之前,这是否意味着 m_readBuffer
中的数据可能会在我处理它时发生变化?
此外,如果我正在使用 async_send_to()
,我是否应该将要发送的数据复制到临时缓冲区中,因为实际发送可能要等到数据超出范围后才会发生?即
void send()
{
char data[] = {1, 2, 3, 4, 5};
m_sock->async_send_to(boost::buffer(&data[0], 5), someEndpoint, someHandler);
} //"data" gets deallocated, but the write might not have happened yet!
此外,当套接字关闭时,将调用 handleRecv 并显示错误,表明它已被中断。如果我这样做
Socket* mySocket = new Socket()...
...
mySocket->close();
delete mySocket;
它会导致错误吗,因为 mySocket
有可能在 handleRecv()
被调用/完成之前被删除?
最佳答案
这里有很多问题,我将尝试一次解决一个问题。
But what if I set up a thread pool?
在 Boost.Asio 中使用线程池的传统方法是调用 io_service::run()
from multiple threads .请注意,这不是一个放之四海而皆准的答案,可能存在可扩展性或性能问题,但这种方法是迄今为止最容易实现的方法。类似的还有很多questions在 Stackoverflow 上了解更多信息。
Should the next call to doRead be before or after handling the read data? It seems that if it is put before do_something(), the program can immediately begin reading another packet, and if it is put after, the thread is tied up doing whatever do_something does, which could possibly take a while.
这实际上取决于 do_something()
需要对 m_recvBuffer
做什么。如果您希望使用 io_service::post()
与 doRead()
并行调用 do_something()
,您可能需要复制一份的 m_recvBuffer
。
If I put the doRead() before the handling, does that mean the data in m_readBuffer might change while I'm handling it?
正如我之前提到的,是的,这可能而且将会发生。
Also, if I'm using
async_send_to()
, should I copy the data to be sent into a temporary buffer, because the actual send might not happen until after the data has fallen out of scope?
作为documentation describes ,由调用者(您)确保缓冲区在异步操作期间保持在范围内。正如您所怀疑的那样,您当前的示例调用了未定义的行为,因为 data[]
将超出范围。
Additionally, when the socket is closed, the
handleRecv()
will be called with an error indicating it was interrupted.
如果你想继续使用套接字,使用cancel()
到interrupt outstanding异步操作。否则,close()
将起作用。在这两种情况下传递给未完成的异步操作的错误是 boost::asio::error::operation_aborted
。
关于c++ - boost::asio 异步操作和资源,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7295360/
使用 asio 库,我想为 asio::serial_port 读/写调用使用超时。 是否可以使用相同的 asio::serial_port asio::io_context 和用于 asio 的相同
对于我正在从事的副业项目应该使用哪种类型的解析器,我有点困惑。我在 asio 文档中找不到答案。 我知道 DNS 可以与 UDP 或 TCP 一起使用,并且通常通过 TCP 发送较大的响应。 asio
在仅从一个线程调用 io_service::run() 的情况下,从不同线程调用 async_write 和 async_read 是否安全?谢谢! 最佳答案 Is it safe to call a
我想知道Boost ASIO 有多受欢迎。它是否被用于任何流行的网络密集型软件中? 最佳答案 用于管理 IBM Blue Gene/Q 的系统软件 super 计算机广泛使用Boost.Asio。
我想使用一个函数来读取套接字端口,并在收到 IP 数据包时交还控制权。 boost::asio::ip::udp::socket 有一个函数接收(或 async_receive),它返回读取了多少字节
我试图调整 Boost 文档中的 SSL 服务器示例 here但我想制作一个应用程序,您可以在其中使用普通 boost::asio::ip::tcp::socket或 SSL 套接字,但我还没有找到将
在查看 boost asio co_spawn 文档 ( https://www.boost.org/doc/libs/1_78_0/doc/html/boost_asio/reference/co_
我正在尝试使用 Boost.ASIO 库,但我找不到如何列出 boost 的可用端口(带有串行端口服务)或套接字(带有网络服务)。 你知道这是否可能吗? 谢谢你。 最佳答案 Boost.Asio 不提
我想使用boost::asio从多个stdout中同时读取stderr和boost::process。但是,我在使用boost::asio时遇到了编译问题,可以重建以下无法编译的最小示例: #incl
提前为一个愚蠢的问题道歉 - 我对这一切都很陌生。 所以我从 here 下载了 asio ,并尝试#include asio.hpp,但出现以下错误; fatal error: boost/confi
我是使用 boost 的项目的一部分作为一个 C++ 库。现在我们要使用 SMTP/POP3/SSL/HTTP/HTTPS。我在 Poco::Net 中检测到几个拟合类和函数 Poco::Net::P
有谁知道有任何实现 Web Sockets 的尝试吗?使用 Boost asio 的 API? 最佳答案 我意识到这是一个旧线程,但想更新以帮助那些寻找答案的人:WebSocket++完全符合要求。
和 asio::thread_pool 有什么区别和一个 asio::io_context谁的run()函数是从多个线程调用的?我可以更换我的 boost::thread_group调用 io_con
我想连接到由目标 IP 地址和端口号指定的服务器套接字。 boost::asio::connect 似乎不允许使用它。我有 ip 目的地作为无符号 int 值。 更新:我能够做到 ba::ip::tc
我在 pc 上有 3 个网络接口(interface),并且想确保当我进行 udp 套接字发送时,它通过特定的网络接口(interface)发送(我有发送数据时使用的 ip 地址)。 这是代码。 ud
我正在使用 ASIO 开发网络应用程序并提到了Chat-Server/Client 我问过类似的问题Here 为了更好地解释,我在这里添加了更多代码: 我的 Cserver Class class C
我已经阅读了 boost asio 引用资料,浏览了教程并查看了一些示例。尽管如此,我还是看不出应该如何拆除套接字: 我应该调用 close() 还是由套接字的析构函数完成? 什么时候应该调用 shu
我认为标题已经说明了大部分内容,但我也有兴趣了解在没有现有解决方案的情况下如何将 DTLS 支持引入 asio 最佳答案 ASIO 本身不支持DTLS 但有一个GitHub 库asio_dtls已向
我正在将 async_read 与 streambuf 一起使用。但是,我想将读取的数据量限制为 4,这样我就可以在进入正文之前正确处理 header 。 我如何使用 async_read 做到这一点
从this example开始,我想用 async_read_until() 替换 async_read()。 所以我查了一下this example ,并查看了如何调用 async_read_unt
我是一名优秀的程序员,十分优秀!