简体   繁体   English

boost::asio::async_read_until 问题

[英]boost::asio::async_read_until problem

I'm trying to modify the echo server example from boost asio and I'm running into problem when I try to use boost::asio::async_read_until.我正在尝试从 boost asio 修改回显服务器示例,当我尝试使用 boost::asio::async_read_until 时遇到了问题。 Here's the code:这是代码:

    #include <cstdlib>
#include <iostream>
#include <boost/bind.hpp>
#include <boost/asio.hpp>

using boost::asio::ip::tcp;

class session
{
public:
  session(boost::asio::io_service& io_service)
    : socket_(io_service)
  {
  }

  tcp::socket& socket()
  {
    return socket_;
  }

  void start()
  {
    std::cout<<"starting"<<std::endl;  
  boost::asio::async_read_until(socket_, boost::asio::buffer(data_, max_length), ' ',
        boost::bind(&session::handle_read, this,
          boost::asio::placeholders::error,
          boost::asio::placeholders::bytes_transferred));
  }

  void handle_read(const boost::system::error_code& error,
      size_t bytes_transferred)
  {
    std::cout<<"handling read"<<std::endl;
    if (!error)
    {
      boost::asio::async_write(socket_,
          boost::asio::buffer(data_, bytes_transferred),
          boost::bind(&session::handle_write, this,
            boost::asio::placeholders::error));
    }
    else
    {
      delete this;
    }
  }

  void handle_write(const boost::system::error_code& error)
  {
    if (!error)
    {
    /*
      socket_.async_read_some(boost::asio::buffer(data_, max_length),
          boost::bind(&session::handle_read, this,
            boost::asio::placeholders::error,
            boost::asio::placeholders::bytes_transferred));
   */ }
    else
    {
      delete this;
    }
  }

private:
  tcp::socket socket_;
  enum { max_length = 1024 };
  char data_[max_length];
};

class server
{
public:
  server(boost::asio::io_service& io_service, short port)
    : io_service_(io_service),
      acceptor_(io_service, tcp::endpoint(tcp::v4(), port))
  {
    session* new_session = new session(io_service_);
    acceptor_.async_accept(new_session->socket(),
        boost::bind(&server::handle_accept, this, new_session,
          boost::asio::placeholders::error));
  }

  void handle_accept(session* new_session,
      const boost::system::error_code& error)
  {
    if (!error)
    {
      new_session->start();
      new_session = new session(io_service_);
      acceptor_.async_accept(new_session->socket(),
          boost::bind(&server::handle_accept, this, new_session,
            boost::asio::placeholders::error));
    }
    else
    {
      delete new_session;
    }
  }

private:
  boost::asio::io_service& io_service_;
  tcp::acceptor acceptor_;
};

int main(int argc, char* argv[])
{
  try
  {
    if (argc != 2)
    {
      std::cerr << "Usage: async_tcp_echo_server <port>\n";
      return 1;
    }

    boost::asio::io_service io_service;

    using namespace std; // For atoi.
    server s(io_service, atoi(argv[1]));

    io_service.run();
  }
  catch (std::exception& e)
  {
    std::cerr << "Exception: " << e.what() << "\n";
  }

  return 0;
}

The problem is when I try to compile I get this weird error:问题是当我尝试编译时出现这个奇怪的错误:

server.cpp: In member function 'void session::start()': server.cpp:27: error: no matching function for call to 'async_read_until(boost::asio::basic_stream_socket >&, boost::asio::mutable_buffers_1, char, boost::_bi::bind_t, boost::_bi::list3, boost::arg<1> ( )(), boost::arg<2> ( )()> >)' server.cpp:在成员函数“void session::start()”中:server.cpp:27:错误:没有匹配的函数调用“async_read_until(boost::asio::basic_stream_socket >&, boost::asio:: mutable_buffers_1, char, boost::_bi::bind_t, boost::_bi::list3, boost::arg<1> ( )(), boost::arg<2> ( )()> >)'

Can someone please explain what's going on?有人可以解释一下发生了什么吗? From what I can tell the arguments to async_read_until are correct.据我所知, async_read_until 的参数是正确的。

Thanks!谢谢!

The second argument of async_read_until should be a streambuf object into which the data will be read . async_read_until 的第二个参数应该是一个streambuf 对象,数据将被读取到该对象中 To put it simple, you need to pass a boost::asio::streambuf by reference, not a boost::asio::buffer by value.简单来说,您需要通过引用传递boost::asio::streambuf ,而不是通过值传递boost::asio::buffer

There is no need to use streambufs .无需使用streambufs There are overloads that accept dynamic buffers.有接受动态缓冲区的重载。 Dynamic is key since read_until implies the need for a buffer that can increase its size at the callee's discretion.动态是关键,因为read_until意味着需要一个可以由被调用者自行决定增加其大小的缓冲区。 Therefore, all you need is to replace the call to boost::asio::buffer with boost::asio::dynamic_buffer and call it on either std::string or std::vector<char> .因此,您所需要的只是用boost::asio::dynamic_buffer替换对boost::asio::buffer调用,并在std::stringstd::vector<char>上调用它。

...

  void start()
  {
    std::cout<<"starting"<<std::endl;  
    boost::asio::async_read_until(
        socket_, boost::asio::dynamic_buffer(data_), ' ', 
        boost::bind(&session::handle_read, this,
                    boost::asio::placeholders::error,
                    boost::asio::placeholders::bytes_transferred));
  }

...

 private:
  tcp::socket socket_;
  std::string data_;
  // or
  //std::vector<char> data_;
};

I would also get rid of boost::bind since it's an overkill and use a lambda (use them as much as you can)我也会摆脱boost::bind因为它是一种矫枉过正并使用 lambda (尽可能多地使用它们)

[this](const boost::system::error_code& error, size_t bytes_transferred) {
  handle_read(error, bytes_transferred);
}

const (in) 正确性也可能导致此类错误消息。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM