c++ - 来自 boost asio io_service get_service() 的错误指针

标签 c++ multithreading boost boost-asio

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

该引擎的早期“概念验证”版本使用单个 io_service对象调度许多不同的任务,包括截止时间计时器、网络 I/O 和发布操作。正如这些早期的演绎有时可能会发生的那样,这个早期版本一次只安排了几个事件。在确信自己走在正确的轨道上之后,我重构了引擎的一部分以支持更细的粒度和 boost 的可扩展性。但是这个新版本崩溃了,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 编译器版本。

  • 在出现此损坏问题之前,我之前在 session 中执行的异步操作包括一些计时器、udp 解析和 tcp 解析。

  • 我正在做的套接字 async_connect() on 在调用之前分配在堆中,并在其构造函数中传递 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;
}

最佳答案

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

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

关于c++ - 来自 boost asio io_service get_service() 的错误指针,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13925465/

相关文章:

c++ - 第一次尝试时循环失败

c++ - Eigen - 从 map 中获取矩阵?

c++ - 如何从使用 for 循环中的 vector 大小的 vector 中删除元素

c++ - boost::spirit 可选解析为融合适应结构

Android 等待 AsyncTask 完成

c++ - 重载模板函数的 std 绑定(bind)

java - 阻塞当前线程执行,直到一个变量被另一个线程更新

java - 具有 ExecutorService 的消费者/生产者被卡住

c++ - 如何确保始终为特定 C++ 实例返回相同的 Python 实例?

c++ - 未解析的外部符号 "public: void __thiscall..."