Could you please tell me the best way to do it? I can use popen, but it is nesessary to create a large buffer for arguments every time I need to launch my application. I can use fork + execv, but then the program writes to stdout and I cant read the output ( to display it in the text field ) Is there any other solution?

link|improve this question
1  
I'm quite sure that the creation of the arguments buffer isn't such a performance bottleneck. – Matteo Italia Sep 4 '11 at 14:58
Of course not, but my app itself uses quite a small amount of memory & cpu. – im-ieee Sep 4 '11 at 15:12
You can create a pipe and still use fork-exec: stackoverflow.com/questions/5953386/… – Blagovest Buyukliev Sep 4 '11 at 15:14
feedback

1 Answer

Could you please tell me the best way to do it? I can use popen, but it is nesessary to create a large buffer for arguments every time I need to launch my application.

popen() is one good standard way if you only need one way communication with the child application, like writing to its stdin or reading from stdout, but not both.

When using C one needs to be comfortable with strings. It helps a lot to use a string library for C to ease string operations, such as string concatenation in your case, because the standard C library provides only basic low-level functions for that.

I can use fork + execv, but then the program writes to stdout and I cant read the output ( to display it in the text field )

popen() gives you a FILE* pointer to the child program's stdout from which you can read its output using the standard C I/O function fread() or fscanf(). Again, the standard C library has this functionality and it pays to familiarize yourself with it.

Is there any other solution?

You can make the child program write to a file and then read that file, but in any case you need to be able to construct the command line string and read the file.

link|improve this answer
You can make the child program write to a file and then read that file, but in any case you need to be able to construct the command line string and read the file. - that is a totally half-assed solution. The "other" solution is to implement the essential functionality of popen yourself - create a pipe(2), do a fork(2), then in the child do dup2(2) on stdout and the write end of the pipe, and finally execve(2). – Blagovest Buyukliev Sep 4 '11 at 15:25
Not sure what prompted your response, I did not say that one can't do pipe-fork-exec. Still, you need to read from FILE* or a file descriptor, this is what I meant by being able to read the file. – Maxim Yegorushkin Sep 4 '11 at 15:30
Thank you Blagovest, it's exactly what I need. Maxim, my prog is too small to link with any libraries, except libc. – im-ieee Sep 4 '11 at 15:48
feedback

Your Answer

 
or
required, but never shown

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