我正在使用各种Boost函数开发一个事件驱动的应用程序。我一直计划将我的多线程体系结构基于ASIO的io_service对象,每个工作原子将由一个或多个线程的线程组调度,每个线程都调用run()
。
此引擎的早期“概念验证”版本使用单个io_service
对象来分派许多不同的任务,包括截止时间计时器,网络I / O和发布的操作。由于这些早期版本有时可以,这个早期版本没有多次安排一次发送的事件。在确信自己走在正确的轨道上后,我重构了一部分引擎以支持更精细的粒度和更高的可扩展性。但是这个新版本在io_service
对象中看起来是一个坏指针时崩溃了。
我将尝试针对我遇到的问题开发一个简化且可重现的测试用例。但在此之前,我想确认我的架构所基于的假设...
单个io_service
对象可以在众多网络对象之间共享 - tcp& udp解析,套接字,定时器和任何其他带有io_service
对象引用的野兽。
我问的原因是我无法在文档或在线讨论中明确指出这一点。我的io_service的另一个暗示是我遇到了崩溃,我遇到了一个带有有效端点和处理程序的tcp :: socket async_connect()
调用下游的某个地方。 async_connect()
执行的最后一行调用this->get_service()
。 stream_socket_service get_service()
应返回的指针最终为0x2,这自ENIAC以来一直不是一个很好的指针值。
我的环境......
我尝试使用Boost版本48到52调试此问题。
我正在开发OSX并尝试过各种从4.2到4.7.3的gcc 4.x编译器版本。
我在此次腐败问题之前的会话中所做的异步操作包括一些定时器,一个udp解析和一个tcp解析。
我正在进行async_connect()
打开的套接字在调用之前已在堆中分配,并在其构造函数中传递了io_service。
我有一个io_service::work
对象。
我还没有使用股线。
这是否足以让任何人提供帮助,或者我是否需要提交可编辑的代码?我也喜欢io_service
服务的入门知识,我也很确定其他SO读者。
更新#1:这是我遇到的问题的最小特征,我已经确认仍然崩溃。我在最新的osx ML上使用Boost 1.52.0,gcc 4.6.3构建它。
#include <stdlib.h>
#include <string>
#include <boost/bind.hpp>
#include <boost/function.hpp>
#include <boost/thread.hpp>
#include <boost/thread/mutex.hpp>
#include <boost/asio.hpp>
namespace foo {
namespace asio = boost::asio;
class ios_threads : private boost::noncopyable
{
public:
ios_threads(bool strt = false)
: work_(new asio::io_service::work(ios_))
{
if (strt)
start();
}
static asio::io_service &ios()
{
return ios_;
}
void start()
{
threads_.create_thread(boost::bind(&ios_threads::run, this));
}
void wait()
{
threads_.join_all();
}
private:
void run()
{
while (true) {
try {
ios_.run();
}
catch (std::exception &e) {
delete work_;
break;
}
}
printf("Shutting down.\n");
}
static asio::io_service ios_;
asio::io_service::work *work_;
boost::thread_group threads_;
};
asio::io_service ios_threads::ios_;
struct op;
typedef op * opPtr;
struct op
{
typedef boost::recursive_mutex mutex_type;
op(op *del)
: delegate_(del)
{
}
virtual ~op()
{
}
bool start_async()
{
boost::unique_lock< mutex_type > lock(mutex_);
return start_it();
}
protected:
virtual bool start_it()
{
return false;
}
virtual void did_it(const boost::system::error_code& error)
{
}
void completion_handler(const boost::system::error_code& error)
{
boost::unique_lock< mutex_type > lock(mutex_);
did_it(error);
}
opPtr delegate_;
mutable mutex_type mutex_;
};
struct interface_search : public op
{
typedef op super;
interface_search(op *del)
: super(del),
udp_resolver_(ios_threads::ios())
{
it_ = NULL;
}
bool start_it()
{
try {
std::string hostname = boost::asio::ip::host_name();
asio::ip::udp::resolver::query query(hostname, "", asio::ip::resolver_query_base::numeric_service | boost::asio::ip::resolver_query_base::passive);
udp_resolver_.async_resolve(query, boost::bind(&interface_search::udp_handler, this, asio::placeholders::error, asio::placeholders::iterator));
}
catch (std::exception& e) {
printf("UDP resolve operation failed. Exception: %s", e.what());
}
return super::start_it();
}
protected:
void udp_handler(const boost::system::error_code& error, asio::ip::udp::resolver::iterator it)
{
it_ = ⁢
completion_handler(error);
}
void did_it(const boost::system::error_code& error)
{
if (error == asio::error::operation_aborted)
return;
op *del = delegate_;
if (del)
del->start_async();
}
asio::ip::udp::resolver udp_resolver_;
asio::ip::udp::resolver::iterator *it_;
};
struct google_connect : public op
{
typedef op super;
google_connect()
: super(NULL),
socket_(ios_threads::ios())
{
}
void endpoint(asio::ip::tcp::endpoint &endpoint)
{
endpoint_ = endpoint;
}
bool start_it()
{
try {
// Crashes in the following call!
socket_.async_connect(endpoint_, boost::bind(&google_connect::connect_handler, this, asio::placeholders::error));
}
catch (std::exception& e) {
printf(e.what());
}
return super::start_it();
}
void connect_handler(const boost::system::error_code& error)
{
completion_handler(error);
}
void did_it(const boost::system::error_code& error)
{
if (error == asio::error::operation_aborted)
return;
boost::asio::ip::address addr = socket_.local_endpoint().address();
printf(addr.to_string().c_str());
}
asio::ip::tcp::socket socket_;
asio::ip::tcp::endpoint endpoint_;
};
struct google_resolve : public op
{
typedef op super;
google_resolve()
: super(new google_connect()),
resolver_(ios_threads::ios())
{
it_ = NULL;
}
bool start_it()
{
try {
asio::ip::tcp::resolver::query query(asio::ip::tcp::v4(), "google.com", "http");
resolver_.async_resolve(query, boost::bind(&google_resolve::tcp_handler, this, asio::placeholders::error, asio::placeholders::iterator));
}
catch (std::exception& e) {
printf(e.what());
}
return super::start_it();
}
protected:
void tcp_handler(const boost::system::error_code& error, asio::ip::tcp::resolver::iterator it)
{
it_ = ⁢
completion_handler(error);
}
void did_it(const boost::system::error_code& error)
{
if (error == asio::error::operation_aborted)
return;
asio::ip::tcp::resolver::iterator last;
if (*it_ != last) {
google_connect *gc = static_cast< google_connect * >(delegate_);
if (gc) {
asio::ip::tcp::endpoint ep = **it_;
gc->endpoint(ep);
gc->start_async();
super::did_it(error);
}
}
}
asio::ip::tcp::resolver resolver_;
asio::ip::tcp::resolver::iterator *it_;
};
} // namespace foo
int main(int argc, const char * argv[])
{
try {
foo::ios_threads threads(false);
foo::opPtr ops_;
ops_ = new foo::interface_search(
new foo::google_resolve()
);
ops_->start_async();
threads.start();
threads.wait();
}
catch (std::exception& e) {
printf(e.what());
}
return 0;
}
答案 0 :(得分:2)
为了别人的利益,我会自己回答这个问题。
我所描述的问题的原因是,在从gcc 4.2转换到gcc 4.6.3并启用c ++ 0x语言支持之后,我需要链接我在构建编译器时构建的libstdc ++库。现在,我正在使用正确的运行时库链接,不再出现运行时错误。