Best documentation for Boost:asio?

C++BoostBoost Asio

C++ Problem Overview


The documentation available on the boost website is... limited.

From what I've been able to read, the general consensus is that it is simply difficult to find good documentation on the boost::asio library.

Is this really the case? If so, why?

Notes:

  • I have already found the (non-boost) Asio website - and the documentation looks to be identical to that on the boost website.
  • I know that Boost::asio is new! I'm looking for solutions not excuses.

Edit:

  • There is a proposal to add a networking library to standard library for TR2 written by the author of Boost:asio (Christopher Kohlhoff). While it isn't documentation for boost:asio, it does use it as a base for the TR2 proposal. Since the author put more effort into this document, I have found it to be somewhat helpful, if not as a reference, then at least as an overview.

C++ Solutions


Solution 1 - C++

Some nice documentation on boost including a chapter on asio can be found in a (free) boost book at http://en.highscore.de/cpp/boost/index.html. The chapter on asio provides a general overview and then goes as far as how to develop your own custom asio extensions. Really fantastic effort by Boris Schäling!

Solution 2 - C++

First, I've been using Boost.Asio for quite a while already -- and I share your concern. To address your question:

  • There really is very scarce documentation about Boost.Asio aside from the introduction and tutorial. I am not the author, but this is mostly because there are just too many things to document for something as low-level as an Asynchronous IO Library.
  • The examples give more away than the tutorials do. If you don't mind spending a little time looking at the different examples, I would think they should suffice to get you started. If you want to run away with it, then the reference documentation should help you a lot.
  • Ask around in the Boost Users and Boost Developers mailing list if you're really stuck or looking for specific guidance. I'm pretty sure a lot of people will be willing to address your concerns on the mailing lists.

There are efforts (not part of Boost.Asio) to expose a lot of the functionality and possible alternative use cases. This at best is scattered around the web in blogs and other forms of non-packaged documentation.

One thing that is unclear and which will really need close coordination with the author and developers of the Boost.Asio library would be as far as extending and customizing it for a specific platform or adding specific new functionality. This should be improved though but the good thing is it's looking like Asio will be a reference implementation for a standard library technical report (for an asynchronous IO library in the STL) in the future.

Solution 3 - C++

I wrote two small articles that could be used as introductions to boost.asio. They are available from my site

Solution 4 - C++

NOTE: I have contacted gamedev.net to let them know about the formatting issues. Unfortunately at the time of writing this comment, this resource is more difficult to recommend because of some changes with their website which hide/delete the #include statements + a missing .zip file resource.

A relatively new and very good beginner tutorial for Boost.Asio (which also introduces how to use it effectively with bind, shared_ptr, and threads) can be found here:

http://www.gamedev.net/blog/950/entry-2249317-a-guide-to-getting-started-with-boostasio?pg=1

Note: If you're using c++0x features many of the simple uses of bind for creating a functor can be replaced with lambdas, and shared_ptr/bind are also available in the latest version of visual studio (or gcc which also includes threads.)

When I was searching for documentation or a tutorial this question kept popping up at the top of search results, so it is important to keep it updated as new tutorials come around.

Solution 5 - C++

Solution 6 - C++

The asio documentation, the one available in boost, is minimalist but very precise, each word is significant. That said,I have learned asio (and continue to learn) mainly from SO.

In my opinion, the answer to 'Confused when boost::asio::io_service run method blocks/unblocks' is the very first step, read an read again until you really understand it, second answer is also helpful.

Then I have RSS subscribed to newest SO boost-asio tag question and to these two answerers:

http://i.stack.imgur.com/CsApR.jpg" width="15" height="30"> Tanner Sansburry, the author of the answer above, his answers are always very precise, comprehensive, with references, even beautiful schemas. RSS feed
http://i.stack.imgur.com/Ne80A.jpg" width="15" height="30"> Sehe (sorry Sehe, only 2nd). RSS feed

With all that material, you will soon be an asio expert !

Solution 7 - C++

I was quite curious about that, too but this page gave me some head start. It's in French, but you could use google translate which is pretty readable (I had to follow down this path myself).

http://gwenael-dunand.developpez.com/tutoriels/cpp/boost/asio/

Solution 8 - C++

A little late to the party but there's a book out called "Boost Asio Network Programming" (Packt publishing).

I bought a copy of this, read it over the weekend and then wrote a full on server in C++ without much problem.

Disclaimer: I have nothing to do with the book

Solution 9 - C++

I stumbled on the following pdf: http://boost.cowic.de/rc/pdf/asio_doc.pdf

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionmmocnyView Question on Stackoverflow
Solution 1 - C++RalfView Answer on Stackoverflow
Solution 2 - C++Dean MichaelView Answer on Stackoverflow
Solution 3 - C++Alex OttView Answer on Stackoverflow
Solution 4 - C++M2tMView Answer on Stackoverflow
Solution 5 - C++GhitaView Answer on Stackoverflow
Solution 6 - C++Jean DavyView Answer on Stackoverflow
Solution 7 - C++A. NovikovView Answer on Stackoverflow
Solution 8 - C++Dave FView Answer on Stackoverflow
Solution 9 - C++KisalayView Answer on Stackoverflow