20

我需要知道如何在超时的情况下读取(同步或异步无关紧要)。我想检查设备是否与串行端口连接。

为此,我使用asio::write然后等待设备的响应。

如果设备连接asio::read(serial, boost::asio::buffer(&r,1))正常,但如果没有设备程序停止,这就是我需要超时的原因

我知道我需要 adeadline_timer但我不知道如何在async_read函数中使用它。

一个关于它如何工作的例子真的很有帮助。

我知道有很多类似的线程,我阅读了很多,但我找不到可以帮助我解决问题的解决方案!

4

4 回答 4

14

Igor R. 发布的代码没有为我编译。这是我改进的他的代码版本,效果很好。它使用 lambdas 来摆脱set_result辅助函数。

template <typename SyncReadStream, typename MutableBufferSequence>
void readWithTimeout(SyncReadStream& s, const MutableBufferSequence& buffers, const boost::asio::deadline_timer::duration_type& expiry_time)
{
    boost::optional<boost::system::error_code> timer_result;
    boost::asio::deadline_timer timer(s.get_io_service());
    timer.expires_from_now(expiry_time);
    timer.async_wait([&timer_result] (const boost::system::error_code& error) { timer_result.reset(error); });

    boost::optional<boost::system::error_code> read_result;
    boost::asio::async_read(s, buffers, [&read_result] (const boost::system::error_code& error, size_t) { read_result.reset(error); });

    s.get_io_service().reset();
    while (s.get_io_service().run_one())
    { 
        if (read_result)
            timer.cancel();
        else if (timer_result)
            s.cancel();
    }

    if (*read_result)
        throw boost::system::system_error(*read_result);
}
于 2014-07-29T15:15:12.947 回答
7

曾几何时,库作者提出了如下方式来实现超时同步读取(本例涉及到tcp::socket,但可以改用串口):

  void set_result(optional<error_code>* a, error_code b) 
  { 
    a->reset(b); 
  } 


  template <typename MutableBufferSequence> 
  void read_with_timeout(tcp::socket& sock, 
      const MutableBufferSequence& buffers) 
  { 
    optional<error_code> timer_result; 
    deadline_timer timer(sock.io_service()); 
    timer.expires_from_now(seconds(1)); 
    timer.async_wait(boost::bind(set_result, &timer_result, _1)); 


    optional<error_code> read_result; 
    async_read(sock, buffers, 
        boost::bind(set_result, &read_result, _1)); 

    sock.io_service().reset(); 
    while (sock.io_service().run_one()) 
    { 
      if (read_result) 
        timer.cancel(); 
      else if (timer_result) 
        sock.cancel(); 
    } 


    if (*read_result) 
      throw system_error(*read_result); 
  } 
于 2012-10-30T17:49:31.653 回答
6

你不使用deadline_timerin async_read。但是您可以启动两个异步进程:

  1. async_read串口上的一个进程。boost::asio::serial_port有一个cancel方法可以取消所有异步操作。
  2. 具有所需超时的截止时间计时器。在完成处理程序中,deadline_timer您可以cancel使用串行端口。这应该关闭async_read操作并调用其完成处理程序并出现错误。

代码:

#include <iostream>
#include <boost/asio.hpp>
#include <boost/bind.hpp>
#include <boost/date_time/posix_time/posix_time.hpp>
#include <boost/array.hpp>

class timed_connection
{
    public:
        timed_connection( int timeout ) :
            timer_( io_service_, boost::posix_time::seconds( timeout ) ),
            serial_port_( io_service_ )
        {
        }

        void start()
        {
              timer_.async_wait
                (
                 boost::bind
                 (
                  &timed_connection::stop, this
                 )
                );

            // Connect socket
            // Write to socket

            // async read from serial port
            boost::asio::async_read
                (
                 serial_port_, boost::asio::buffer( buffer_ ),
                 boost::bind
                 (
                  &timed_connection::handle_read, this,
                  boost::asio::placeholders::error
                 )
                );

            io_service_.run();
        }

    private:
        void stop()
        {  
            serial_port_.cancel();
        }

        void handle_read ( const boost::system::error_code& ec)
        {  
            if( ec )
            {  
                // handle error
            }
            else
            {  
                // do something
            }
        }

    private:
        boost::asio::io_service io_service_;
        boost::asio::deadline_timer timer_;
        boost::asio::serial_port serial_port_;
        boost::array< char, 8192 > buffer_;
};

int main()
{
    timed_connection conn( 5 );
    conn.start();

    return 0;
}
于 2012-10-30T16:36:42.523 回答
0

本身没有一个或简单的答案,因为即使您进行异步读取,回调也永远不会被调用,并且您现在在某个地方有一个松散的线程。

您认为这deadline_timer是可能的解决方案之一是正确的,但它需要一些摆弄和共享状态。有阻塞 TCP 示例,但那是因为async_connect它在无事可做时返回,这是一件很酷的事情。read不会那样做,最坏的情况——它会因为无效资源而崩溃和烧毁。所以deadline timer事情是你的选择之一,但实际上有一个更简单的,有点像这样:

boost::thread *newthread = new boost::thread(boost::bind(&::try_read));
if (!newthread->timed_join(boost::posix_time::seconds(5))) {
    newthread->interrupt();
}

基本上,在另一个线程中读取并在超时时将其关闭。您应该阅读Boost.Threads

如果中断它,请确保资源全部关闭。

于 2012-10-30T16:35:46.137 回答