2

我正在使用各种 Boost 函数开发一个事件驱动的应用程序。我一直在计划将我的多线程架构基于 ASIO 的 io_service 对象,其中每个工作原子将由一个线程组分派,该线程组由 1 个或多个线程组成,每个线程调用run().

该引擎的早期“概念证明”版本使用单个io_service对象来分派许多不同的任务,包括截止时间计时器、网络 i/o 和发布的操作。由于这些早期版本有时可能是这样,因此这个早期版本一次调度的事件不超过几个。在确信自己走在正确的轨道上之后,我重构了引擎的一部分以支持更精细的粒度和更高的可扩展性。io_service但是这个新版本正在崩溃,对象中的指针似乎是错误的。

我将尝试为我遇到的问题开发一个简化且可重现的测试用例。但在此之前,我想确认一下我的架构所基于的假设……</p>

单个io_service对象可以在多个网络对象之间共享——tcp 和 udp 解析、套接字、计时器和任何其他需要io_service对象引用的野兽。

我问的原因是我无法在文档或在线讨论中找到明确的说明。我的 io_service 出现问题的另一个提示是,我在调用async_connect()具有有效端点和处理程序的 tcp::socket 的下游某处遇到崩溃。最后一行执行async_connect()调用this->get_service()。stream_socket_serviceget_service()应该返回的指针最终是 0x2,这自 ENIAC 以来一直不是一个很好的指针值。

我的环境……</p>

  • 我试过用 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_ = &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_ = &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;
}
4

1 回答 1

2

为了他人的利益,我将自己回答这个问题。

我所描述的问题的原因是,在从 gcc 4.2 转换到 gcc 4.6.3 并启用 c++0x 语言支持后,我需要链接到我在构建编译器时构建的 libstdc++ 库。现在我正在与正确的运行时库链接,不再发生运行时错误。

于 2012-12-19T20:28:06.343 回答