vote up 2 vote down star

What's a good way to download HTTP URLs (e.g. such as http://0.0.0.0/foo.htm ) in C++ on Linux ? I strongly prefer something asynchronous. My program will have an event loop that repeatedly initiates multiple (very small) downloads and acts on them when they finish (either by polling or being notified somehow). I would rather not have to spawn multiple threads/processes to accomplish this. That shouldn't be necessary.

Should I look into libraries like libcurl? I suppose I could implement it manually with non-blocking TCP sockets and select() calls, but that would likely be less convenient.

flag
Note: libcurl seems to have the functionality I want: curl.haxx.se/libcurl/c/libcurl-multi.html . – Joey Adams Nov 6 at 3:07

3 Answers

vote up 4 vote down check

Libcurl is the way to go. See http://curlpp.org for C++ bindings and an excellent set of tutorials.

link|flag
Thanks. However, I'm not seeing anything about the multi interface (needed for the asynchronous stuff I was talking about) in the documentation. It's implemented in curlpp, though. I think I'll just stick to the C API to stay on the safe side. – Joey Adams Nov 6 at 6:22
vote up 5 vote down

You can use boost::asio to perform async IO operations. Heres an example of an async http client.

link|flag
vote up 0 vote down

Have you considered Qt's network module? They provide some classes for asynchronous download for example QNetworkAccessManager.

link|flag

Your Answer

Get an OpenID
or

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