vote up 0 vote down star

So,

I've been playing around with the Boost asio functions and sockets (specifically the async read/write). Now, I thought that boost::asio::async_read only called the handler when a new buffer came in from the network connection... however it doesn't stop reading the same buffer and thus keeps calling the handler. I've been able to mitigate it by checking the number of bytes transferred, however it is basically in a busy-waiting loop wasting CPU cycles.

Here is what I have:

class tcp_connection : : public boost::enable_shared_from_this<tcp_connection> 
{
public:
    // other functions here

    void start()
    {
    boost::asio::async_read(socket_, boost::asio::buffer(buf, TERRAINPACKETSIZE),
        boost::bind(&tcp_connection::handle_read, shared_from_this(),
          boost::asio::placeholders::error,
          boost::asio::placeholders::bytes_transferred));
    }

private:
    const unsigned int TERRAINPACKETSIZE = 128;
    char buf[TERRAINPACKETSIZE];


    void handle_read(const boost::system::error_code& error, size_t bytesT)
    {
        if (bytesT > 0)
        { 
             // Do the packet handling stuff here
        }

        boost::asio::async_read(socket_, boost::asio::buffer(buf, TERRAINPACKETSIZE),
        boost::bind(&tcp_connection::handle_read, shared_from_this(),
          boost::asio::placeholders::error,
          boost::asio::placeholders::bytes_transferred));
    }
};

Some stuff is cut out, but basically a new connection gets created then start() is called. Is there something I'm missing so that the handle_read method doesn't get continuously called?

flag

1  
Could you show us how "buf" is initialized (and what is TERRAINPACKETSIZE)? I'm asking because I wonder if you could be in the same situation than the one discussed at: lists.boost.org/boost-users/2009/… – Éric Malenfant Oct 29 at 12:55
Eric, buf is a character array and TERRAINPACKETSIZE is a const holding the size of the buffer – Polaris878 Oct 30 at 16:29
1  
I'm sorry, I'm nearly out of ideas to help you :( I took the "asynchronous echo tcp server" example from the asio docs and modified it so that its session does the same than the one you show here (plus checking on !error in handle_read) and it works fine. I tried that on Windows; on what platform are you running this? – Éric Malenfant Oct 30 at 19:11
No worries man :). I'm running it on Windows, I found that if you call async_write then call async_read again it doesn't go into the loop. – Polaris878 Oct 30 at 23:39

1 Answer

vote up 4 vote down check

A wild guess: Do you check error in handle_read? If the socket is in an error state for some reason, I guess that the nested call to async_read made from handle_read will immediately "complete", resulting in an immediate call to handle_read

link|flag
I tried checking the error flag and its saying no errors :( – Polaris878 Oct 29 at 1:10
You should only schedule another async_read if there is no error condition (if (!error) ...). – Dan Oct 29 at 12:40

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.