我认为我的问题非常普遍,但我不能完全看出我在这里做错了什么。
我正在做一些boost :: asio的东西并尝试编写一个模板化的异步读取函数。
这是一个功能。
template <typename Handler>
void AsyncRead(std::vector<boost::uint8_t>& _inMsg, Handler _handler)
{
#if debug
std::cout<< "IConnection::AsyncRead" << std::endl;
#endif
using namespace protocols;
typedef boost::tuple<Handler> tHandler;
typedef boost::function< void(const boost::system::error_code &, std::vector<boost::uint8_t> &, tHandler ) > HeaderReaderFunc;
//void (AConnection::*f)(const boost::system::error_code&, std::vector<boost::uint8_t>&, boost::tuple<Handler>) = &AConnection::HandleReadHeader<Handler>;
tHandler t(boost::make_tuple(_handler));
HeaderReaderFunc x(boost::bind(&AConnection::HandleReadHeader<Handler>, this, boost::asio::placeholders::error, boost::ref(_inMsg), t));
inboundHeader.resize(sizeof(SocketIO::MsgData));
boost::asio::async_read(socket, boost::asio::buffer(inboundHeader), x);
}
在这个函数的最后一个陈述中事情开始变坏。
boost::asio::async_read(socket, boost::asio::buffer(inboundHeader), x);
当我尝试将变量'x'作为参数传递给async_read函数时。
错误在长度和缺乏可辨认的意义方面都具有传奇色彩。
只是错误输出的一个小例子:
boost_1_38_0/boost/asio/detail/bind_handler.hpp: In member function ‘void boost::asio::detail::binder2<Handler, Arg1, Arg2>::operator()() [with Handler = boost::function<void ()(const boost::system::error_code&, std::vector<unsigned char, std::allocator<unsigned char> >&, boost::tuples::tuple<boost::function<void ()(const boost::system::error_code&)>, boost::tuples::null_type, boost::tuples::null_type, boost::tuples::null_type, boost::tuples::null_type, boost::tuples::null_type, boost::tuples::null_type, boost::tuples::null_type, boost::tuples::null_type, boost::tuples::null_type>)>, Arg1 = boost::system::error_code, Arg2 = unsigned int]’:
如果我不在这里使用boost函数,而是使用注释掉的行作为成员函数的引用,事情似乎有效,但我无法理解为什么会这样。
AConnection :: HandleReadHeader函数模板的函数签名是:
template <typename Handler>
void HandleReadHeader(const boost::system::error_code& _e,
std::vector<boost::uint8_t> & _inMsg,
boost::tuple<Handler> _handler)
处理程序的类型为:
boost::function<void (const boost::system::error_code & ) >
函数AsyncRead和HandleReadHeader是我自己的类的成员 连接(可能不重要)。
要么我缺少关于创建boost :: function的语法 对象的签名包括boost :: tuple,或 boost :: asio :: async_read函数的第三个参数类型与我的匹配 变量'x'。
任何帮助将不胜感激。 谢谢。
编辑:
这是可行的代码,但使用成员函数引用而不是boost :: functon。
template <typename Handler>
void AsyncRead(std::vector<boost::uint8_t>& _inMsg, Handler _handler)
{
#if debug
std::cout<< "Connection::AsyncRead" << std::endl;
#endif
using namespace protocols;
// Issue a read operation to read exactly the number of bytes in a header.
void (Connection::*f)(
const boost::system::error_code&,
std::vector<boost::uint8_t>&, boost::tuple<Handler>)
= &Connection::HandleReadHeader<Handler>;
inboundHeader.resize(sizeof(simple::message_header));
boost::asio::async_read(socket, boost::asio::buffer(inboundHeader),
boost::bind(f,
this, boost::asio::placeholders::error, boost::ref(_inMsg),
boost::make_tuple(_handler)));
}
答案 0 :(得分:0)
您的变量x
具有以下类型:
boost::function< void(const boost::system::error_code &,
std::vector<boost::uint8_t> &, boost::tuple<Handler>) >
与此签名类似:
void handler(const boost::system::error_code &,
std::vector<boost::uint8_t> &, boost::tuple<Handler>)
然而,Boost Asio文档说处理程序签名应该是这样的:
void handler(const boost::system::error_code&,
std::size_t bytes_transferred)
所以,你的签名不匹配 - 甚至不接近。您使用的是我在Boost文档中无法找到的重载,或者您需要更改HeaderReaderFunc类型以匹配async_read所期望的类型。