vote up 2 vote down star

I need to execute a program and retrieve its stdout output in c++. I'd like my code to be cross-platform too.

Having recently discovered the wonderful world of the Boost c++ libraries for all your cross platform needs, I figured I'd just go to boost.org and read up on the documentation of Boost.Process. Much to my surprise, it wasn't there! I then proceeded to figure out what name Boost gave their cross-platform library to start external processes, but haven't managed to find it so far.

A Google search brought me to Julio M. Merino Vidal's Boost.Process, which seems to be the unofficial Boost library I was looking for. Strangely enough, I cannot seem to find a download link on that website. It also seems like there haven't been any recent developments regarding the project.

I was finally able to find a download link for Vidal's Boost.Process on an external site and will use that for now, but I'm quite amazed at the effort I had to put in to get my hands on a cross platform c++ library to interact with external processes.

So, why is there no official Boost.Process? It seems like it would be a very valuable addition. Or am I totally overlooking the obvious solution here? Could you perhaps suggest other cross-platform libraries for managing simple starting of and interation with external processes?

flag

Congratulations on the discovery -- Boost rocks! – Andrei Nov 5 at 21:31
Boost rocks, but there's no official Process library yet. For what it's worth, I successfully used the Poco Process library in the past (Google for the Poco C++ libraries for more information). – StackedCrooked Nov 5 at 22:52
@StackedCrook: While i was looking up the links you already commented on POCO - telepathy? ;) – gf Nov 5 at 23:03

4 Answers

vote up 2 vote down check

Julio M. Merino Vidal, who is, I beleive, the original author, wrote in this 2007 post that he did not have time to complete it.

Development was taken over by Boris Schaeling. This is the version that you found at http://www.highscore.de/boost/process/. According to this post, he is still actively developing it.

There is another version, by Ilya Sokolov.

For your other question:

Could you perhaps suggest other cross-platform libraries for managing simple starting of and interation with external processes?

you could look at this wiki page listing alternatives.

Depending on your needs, popen() could also do the job.

link|flag
vote up 1 vote down

Another option might be the modularly designed POCO, see Process::launch() which has an overload that takes Pipes for in, out and error.

link|flag
vote up 2 vote down

It looks like Boost.Process is in the sandbox area, which would suggest that it has been proposed for inclusion and is probably still being work on, but hasn't been deemed stable, documented and/or useful enough to be included in the main boost release.

link|flag
vote up 0 vote down

Parts of Boost.Process are available in several stand-alone libraries in Boost now: Boost.Interprocess, Program Options, etc.

link|flag

Your Answer

Get an OpenID
or

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