- r - 以节省内存的方式增长 data.frame
- ruby-on-rails - ruby/ruby on rails 内存泄漏检测
- android - 无法解析导入android.support.v7.app
- UNIX 域套接字与共享内存(映射文件)
下面是我的代码
boost::asio::io_service io;
boost::asio::ip::tcp::acceptor::reuse_address option(true);
boost::asio::ip::tcp::acceptor accept(io);
boost::asio::ip::tcp::resolver resolver(io);
boost::asio::ip::tcp::resolver::query query("0.0.0.0", "8080");
boost::asio::ip::tcp::endpoint endpoint = *resolver.resolve(query);
accept.open(endpoint.protocol());
accept.set_option(option);
accept.bind(endpoint);
accept.listen(30);
boost::asio::ip::tcp::socket ps(io);
accept.accept(ps);
struct timeval tv;
tv.tv_sec = 1;
tv.tv_usec = 0;
//setsockopt(ps.native(), SOL_SOCKET, SO_SNDTIMEO, &tv, sizeof(tv));
setsockopt(ps.native(), SOL_SOCKET, SO_RCVTIMEO, &tv, sizeof(tv));
char buf[1024];
ps.async_receive(boost::asio::buffer(buf, 1024), boost::bind(fun));
io.run();
最佳答案
在Boost.Asio中使用SO_RCVTIMEO
和SO_SNDTIMEO
套接字选项很少会产生所需的行为。考虑使用以下两种模式之一:
使用async_wait()
进行组合操作
可以通过使用Boost.Asio计时器和带有async_wait()
操作的async_receive()
操作来构成具有超时的异步读取操作。 Boost.Asio timeout examples演示了这种方法,类似于:
// Start a timeout for the read.
boost::asio::deadline_timer timer(io_service);
timer.expires_from_now(boost::posix_time::seconds(1));
timer.async_wait(
[&socket, &timer](const boost::system::error_code& error)
{
// On error, such as cancellation, return early.
if (error) return;
// Timer has expired, but the read operation's completion handler
// may have already ran, setting expiration to be in the future.
if (timer.expires_at() > boost::asio::deadline_timer::traits_type::now())
{
return;
}
// The read operation's completion handler has not ran.
boost::system::error_code ignored_ec;
socket.close(ignored_ec);
});
// Start the read operation.
socket.async_receive(buffer,
[&socket, &timer](const boost::system::error_code& error,
std::size_t bytes_transferred)
{
// Update timeout state to indicate the handler has ran. This
// will cancel any pending timeouts.
timer.expires_at(boost::posix_time::pos_infin);
// On error, such as cancellation, return early.
if (error) return;
// At this point, the read was successful and buffer is populated.
// However, if the timeout occurred and its completion handler ran first,
// then the socket is closed (!socket.is_open()).
});
std::future
boost::asio::use_future
作为异步操作的完成处理程序提供时,初始化函数将返回一个
std::future
,该代码将在操作完成后得到满足。由于
std::future
支持定时等待,因此可以利用它来使操作超时。请注意,由于调用线程将被阻塞以等待将来,因此至少另一个线程必须正在处理
io_service
,以允许
async_receive()
操作进行并实现 promise :
// Use an asynchronous operation so that it can be cancelled on timeout.
std::future<std::size_t> read_result = socket.async_receive(
buffer, boost::asio::use_future);
// If timeout occurs, then cancel the read operation.
if (read_result.wait_for(std::chrono::seconds(1)) ==
std::future_status::timeout)
{
socket.cancel();
}
// Otherwise, the operation completed (with success or error).
else
{
// If the operation failed, then read_result.get() will throw a
// boost::system::system_error.
auto bytes_transferred = read_result.get();
// process buffer
}
SO_RCVTIMEO
无法使用
SO_RCVTIMEO
文档指出,该选项仅影响执行套接字I/O的系统调用,例如
read()
和
recvmsg()
。它不影响事件多路分解器,例如
select()
和
poll()
,它们仅监视文件描述符来确定何时可以发生I/O而不会阻塞。此外,当确实发生超时时,I/O调用将无法返回
-1
,并将
errno
设置为
EAGAIN
或
EWOULDBLOCK
失败。
Specify the receiving or sending timeouts until reporting an error. [...] if no data has been transferred and the timeout has been reached then
-1
is returned with errno set toEAGAIN
orEWOULDBLOCK
[...] Timeouts only have effect for system calls that perform socket I/O (e.g.,read()
,recvmsg()
, [...]; timeouts have no effect forselect()
,poll()
,epoll_wait()
, and so on.
EAGAIN
或
EWOULDBLOCK
。对于非阻塞套接字,
SO_RCVTIMEO
不会有任何影响,因为成功或失败后,调用将立即返回。因此,为了使
SO_RCVTIMEO
影响系统I/O调用,套接字必须处于阻塞状态。
select()
或
poll()
。因此,
SO_RCVTIMEO
不会影响异步操作。
native_non_blocking()
模式大致对应于文件描述符的非阻塞状态。此模式影响系统I/O调用。例如,如果调用socket.native_non_blocking(true)
,则recv(socket.native_handle(), ...)
可能会失败,并且errno
设置为EAGAIN
或EWOULDBLOCK
。每当在套接字上启动异步操作时,Boost.Asio都会启用此模式。 non_blocking()
模式会影响Boost.Asio的同步套接字操作。当设置为true
时,Boost.Asio会将基础文件描述符设置为非阻塞和同步Boost.Asio套接字操作可能因boost::asio::error::would_block
失败(或等效的系统错误)。当设置为false
时,即使基础文件描述符是非阻塞的,Boost.Asio也会阻塞,方法是轮询文件描述符并重新尝试系统I/O操作(如果返回EAGAIN
或EWOULDBLOCK
)。 non_blocking()
的行为会阻止
SO_RCVTIMEO
产生所需的行为。假设
socket.receive()
被调用并且数据既不可用也不接收:
non_blocking()
为false,则每个SO_RCVTIMEO
的系统I/O调用将超时。但是,Boost.Asio随后将立即阻止对文件描述符的轮询以使其可读,这不受SO_RCVTIMEO
的影响。最终结果是调用者被阻止在socket.receive()
中,直到接收到数据或发生故障(例如远程对等方关闭连接)为止。 non_blocking()
为true,则基础文件描述符也是非阻塞的。因此,系统I/O调用将忽略SO_RCVTIMEO
,立即以EAGAIN
或EWOULDBLOCK
返回,从而导致socket.receive()
失败,并以boost::asio::error::would_block
失败。 SO_RCVTIMEO
与Boost.Asio一起运行,需要将
native_non_blocking()
设置为false,以便
SO_RCVTIMEO
可以生效,但也需要将
non_blocking()
设置为true,以防止对描述符进行轮询。但是,Boost.Asio并不
support this:
socket::native_non_blocking(bool mode)
If the mode is
false
, but the current value ofnon_blocking()
istrue
, this function fails withboost::asio::error::invalid_argument
, as the combination does not make sense.
关于c++ - SO_RCVTIME和SO_RCVTIMEO不影响Boost.Asio操作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30410265/
使用 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
我是一名优秀的程序员,十分优秀!