tidy code for asynchronous IO - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T06:25:22Z http://stackoverflow.com/feeds/question/883156 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/883156/tidy-code-for-asynchronous-io 4 tidy code for asynchronous IO Will 2009-05-19T14:33:58Z 2009-05-20T06:20:07Z <p>Whilst asynchronous IO (non-blocking descriptors with select/poll/epoll/kqueue etc) is not the most documented thing on the web, there are a handful of good examples.</p> <p>However, all these examples, having determined the handles that are returned by the call, just have a '<code>do_some_io(fd)</code>' stub. They don't really explain how to best approach the actual asynchronous IO in such a method.</p> <p>Blocking IO is very tidy and straightforward to read code. Non-blocking, async IO is, on the other hand, hairy and messy.</p> <p>What approaches are there? What are robust and readable?</p> <pre><code>void do_some_io(int fd) { switch(state) { case STEP1: ... async calls if(io_would_block) return; state = STEP2; case STEP2: ... more async calls if(io_would_block) return; state = STEP3; case STEP3: ... } } </code></pre> <p>or perhaps (ab)using GCC's computed gotos:</p> <pre><code>#define concatentate(x,y) x##y #define async_read_xx(var,bytes,line) concatentate(jmp,line): if(!do_async_read(bytes,&amp;var)) { schedule(EPOLLIN); jmp_read = &amp;&amp;concatentate(jmp,line); return; } // macros for making async code read like sync code #define async_read(var,bytes) async_read_xx(var,bytes,__LINE__) #define async_resume() if(jmp_read) { void* target = jmp_read; jmp_read = NULL; goto *target; } void do_some_io() { async_resume(); async_read(something,sizeof(something)); async_read(something_else,sizeof(something_else)); } </code></pre> <p>Or perhaps C++ exceptions and a state machine, so worker functions can trigger the abort/resume bit, or perhaps a table-driven state-machine?</p> <p>Its not how to make it work, its how to make it maintainable that I'm chasing!</p> http://stackoverflow.com/questions/883156/tidy-code-for-asynchronous-io/883255#883255 2 Answer by dwc for tidy code for asynchronous IO dwc 2009-05-19T14:51:14Z 2009-05-19T14:51:14Z <p>State machines are one nice approach. It's a bit of complexity up front that'll save you headaches in the future, where the future starts really, really soon. ;-)</p> <p>Another method is to use threads and do blocking I/O on a single fd in each thread. The trade-off here is that you make I/O simple but <em>may</em> introduce complexity in synchronization.</p> http://stackoverflow.com/questions/883156/tidy-code-for-asynchronous-io/883372#883372 3 Answer by Artyom for tidy code for asynchronous IO Artyom 2009-05-19T15:13:47Z 2009-05-20T06:20:07Z <p>I suggest take a look on: <a href="http://www.kegel.com/c10k.html" rel="nofollow">http://www.kegel.com/c10k.html</a>, second take a look on existing libraries like libevent, Boost.Asio that already do the job and see how they work.</p> <p>The point is that the approach may be different for each type of system call:</p> <ul> <li>select is simple reactor</li> <li>epoll have both edge or level triggered interface that require different approach</li> <li>iocp is proactor require other approach</li> </ul> <p>Suggestion: use good existing library like Boost.Asio for C++ or libevent for C.</p> <p>EDIT: This is how ASIO handles this</p> <pre><code>class connection { boost::asio:ip::tcp::socket socket_; public: void run() { // for variable length chunks async_read_until(socket_,resizable_buffer,'\n', boost::bind(&amp;run::on_line_recieved,this,errorplacehplder); // or constant length chunks async_read(socket_,buffer(some_buf,buf_size), boost::bind(&amp;run::on_line_recieved,this,errorplacehplder); } void on_line_recieved(error e) { // handle it run(); } }; </code></pre> <p>Because ASIO works as proactor it notifies you when operation is complete and handles EWOULDBLOCK internally.</p> <p>If you word as reactor you may simulate this behavior:</p> <pre><code> class conn { // Application logic void run() { read_chunk(&amp;conn::on_chunk_read,size); } void on_chunk_read() { /* do something;*/ } // Proactor wrappers void read_chunk(void (conn::*callback),int size, int start_point=0) { read(socket,buffer+start,size) if( complete ) (this-&gt;*callback() else { this -&gt; tmp_size-=size-read; this -&gt; tmp_start=start+read; this -&gt; tmp_callback=callback your_event_library_register_op_on_readable(callback,socket,this); } } void callback() { read_chunk(tmp_callback,tmp_size,tmp_start); } } </code></pre> <p>Something like that.</p> http://stackoverflow.com/questions/883156/tidy-code-for-asynchronous-io/884370#884370 0 Answer by James Antill for tidy code for asynchronous IO James Antill 2009-05-19T18:35:45Z 2009-05-19T18:35:45Z <p>You want to decouple "io" from processing, at which point the code you read will become very readable. Basically you have:</p> <pre><code> int read_io_event(...) { /* triggers when we get a read event from epoll/poll/whatever */ /* read data from "fd" into a vstr/buffer/whatever */ if (/* read failed */) /* return failure code to event callback */ ; if (/* "message" received */) return process_io_event(); if (/* we've read "too much" */) /* return failure code to event callback */ ; return /* keep going code for event callback */ ; } int process_io_event(...) { /* this is where you process the HTTP request/whatever */ } </code></pre> <p>...then the real code is in process event, and even if you have multiple requests responses it's pretty readable, you just do "return read_io_event()" after setting a state or whatever.</p>