如何从我的C程序中运行另一个程序,我需要能够将数据写入STDIN(执行程序时我必须通过stdin不止一次提供输入)编程的启动(并且读取行从它的STDOUT开始)
我需要解决方案才能在Linux下运行。
通过net我发现下面的代码:
#include <sys/types.h>
#include <unistd.h>
#include <stdio.h>
void error(char *s);
char *data = "Some input data\n";
main()
{
int in[2], out[2], n, pid;
char buf[255];
/* In a pipe, xx[0] is for reading, xx[1] is for writing */
if (pipe(in) < 0) error("pipe in");
if (pipe(out) < 0) error("pipe out");
if ((pid=fork()) == 0) {
/* This is the child process */
/* Close stdin, stdout, stderr */
close(0);
close(1);
close(2);
/* make our pipes, our new stdin,stdout and stderr */
dup2(in[0],0);
dup2(out[1],1);
dup2(out[1],2);
/* Close the other ends of the pipes that the parent will use, because if
* we leave these open in the child, the child/parent will not get an EOF
* when the parent/child closes their end of the pipe.
*/
close(in[1]);
close(out[0]);
/* Over-write the child process with the hexdump binary */
execl("/usr/bin/hexdump", "hexdump", "-C", (char *)NULL);
error("Could not exec hexdump");
}
printf("Spawned 'hexdump -C' as a child process at pid %d\n", pid);
/* This is the parent process */
/* Close the pipe ends that the child uses to read from / write to so
* the when we close the others, an EOF will be transmitted properly.
*/
close(in[0]);
close(out[1]);
printf("<- %s", data);
/* Write some data to the childs input */
write(in[1], data, strlen(data));
/* Because of the small amount of data, the child may block unless we
* close it's input stream. This sends an EOF to the child on it's
* stdin.
*/
close(in[1]);
/* Read back any output */
n = read(out[0], buf, 250);
buf[n] = 0;
printf("-> %s",buf);
exit(0);
}
void error(char *s)
{
perror(s);
exit(1);
}
但是如果我的C程序(需要执行usng exec)从stdin只读取一次输入并返回输出,那么这段代码工作正常 一次。但是如果我的Cprogram(需要执行exec执行)多次输入(不知道从stdin读取输入的确切次数) 和显示输出放mork比一次(执行显示输出逐行stdout) 那么这段代码就崩溃了。任何机构都可以建议如何解决这个问题? 实际上我的C程序(需要执行usng exec)逐行显示一些输出,并根据输出我必须在stdin上提供输入 并且这个读/写的数量不是恒定的。
请帮我解决这个问题。
答案 0 :(得分:1)
当您可以读取/写入文件描述符时,可以使用select api获得通知。 所以你基本上把你的读写调用放到一个循环中,并运行select以找出外部程序何时消耗了一些字节或者写了一些东西到stdout。