vote up 1 vote down star

In a C program (p1), how to launch a dynamically constructed command (and its arguments) that reads its standard input from p1's standard output?

Note that:

  1. A method other than this stdout --> stdin piping is also OK provided it is PORTABLE across Windows and Linux.

  2. I cannot use C++, Java, Perl, Ruby, Python, etc here.

Also, will this have a MinGW dependency for its Windows build?

REOPENED: The question below answers it for Linux, but this question wants a portable method. http://stackoverflow.com/questions/70842/execute-program-from-within-a-c-program

flag

25% accept rate
Note that, I would prefer a C solution only. (Sorry for the incovenience!) – simonsharry Oct 23 '08 at 14:42

5 Answers

vote up 3 vote down

Answered: http://stackoverflow.com/questions/70842/execute-program-from-within-a-c-program

link|flag
Hey Martin - thanks for your quick response. I intuitively know that there would be M ways one could do this in Linux and N ways in Windows. What I'm trying to ask is a portable way? fork(3) eg is not available on Windows, but then, linking in MinGW could take care of that. Don't know, hence asking. – simonsharry Oct 23 '08 at 13:19
popen is _popen() in Windows, since MS decided to rename virtually every POSIX function with a leading _. A quick search on MSDN would have told you this. – Zathrus Oct 23 '08 at 13:48
vote up 2 vote down

It's not 100% clear to me what you're trying to achieve exactly to be honest.

But as I understand it, you could take a look at Boost.Process

You can do things like

 bp::child cs = p.start();
 bp::postream& os = cs.get_stdin();

And then use the os as any stream to dump stuff in the standard input of your child process.

Anyway, an awful lot can be achieved with the library w.r.t. pipe redirecting and chaining.

link|flag
Hmm, boost. An 800-pound gorilla that I will need to link and shake hands with. I will still be watching out for any overall lightweight, C responses. Thanks, though. (Note that I'm now dropping the C++ from the condition.) – simonsharry Oct 23 '08 at 14:37
vote up 1 vote down

The linked anser (which you reject) refers to POSIX pipes. POSIX is an extension to C, which adds features missing from standard C. POSIX pipes are a good example of such a feature: they were added to POSIX because standard C does not have that functionality.

link|flag
vote up 3 vote down

The Microsoft C runtime calls it _popen instead of popen, but it appears to have the same functionality in Windows (for console applications) and Linux.

link|flag
vote up 1 vote down

The glib library is written in C and has implementations that are well tested on both Linux and Windows. The manual section on spawning new processes will give you information about how to start a new process and hook into its stdin and stdout handles using the g_spawn_async_with_pipes call.

link|flag

Your Answer

Get an OpenID
or

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