我一遍又一遍地做这个作业,这大概是第十个版本问题是只有一条消息通过管道,并计算出正确的结果以下字符串根本不传递,或者在修改缓冲区后只传递一些字符请帮帮我,我真的在这方面浪费了很多时间,我需要为即将到来的考试学习这些东西。
#include <ctype.h>
#include <unistd.h>
#include <stdio.h>
#include <stdlib.h>
#include <sys/wait.h>
#include <string.h>
#include <stdio_ext.h>
/* Prototypes */
void usage(void);
void calchild(void);
char command[] = "<not yet set>";
int main(int argc, char **argv)
{
char input1[512];
char input2[512];
char tmp[512];
char *endptr;
char c = 0;
int a, b, result;
pid_t cpid;
int status = 0;
int stocpipe[2]; /* Server to client pipe. [0] -read; [1]- write*/
int ctospipe[2]; /* Client to server pipe. - || - */
int i = 0;
FILE *send, *receive;
if(argc > 1)
{
usage();
}
/* Pipe Setup */
if(pipe(stocpipe) != 0 || pipe(ctospipe) != 0)
{
fprintf(stderr, "ERROR: Can't create unnamed pipe! \n");
exit(EXIT_FAILURE);
}
switch(cpid = fork())
{
case -1:
fprintf(stderr, "ERROR: Can't fork! \n");
exit(EXIT_FAILURE);
break;
case 0:
/* calchild */
close(stocpipe[1]);
close(ctospipe[0]);
receive = fdopen(stocpipe[0], "r");
send = fdopen(ctospipe[1], "w");
/*Gets the string from the parent process and does the computation.*/
while(fgets(input2, 17, receive) != NULL)
{
strcpy(tmp, input2);
fprintf(stdout, "After receive: %s", tmp);
a = strtol(tmp, &endptr, 10);
fprintf(stdout, "a = %d\n", a);
b = strtol(endptr, &endptr, 10);
fprintf(stdout, "b = %d\n", b);
c = endptr[0];
/*Loops until it finds a non-space char*/
for(i = 0; isspace(c = endptr[i]); i++);
switch(c)
{
case '+':
/*add*/
result = a + b;
break;
case '-':
/*subtract*/
result = a - b;
break;
case '*':
/*multiply*/
result = a * b;
break;
case '/':
/*divide*/
result = a / b;
break;
default:
fprintf(stderr, "the funk!? %c\n", c);
break;
}
fprintf(stderr, "%d\n", result);
fprintf(send, "%d", result);
}
break;
default:
close(stocpipe[0]);
close(ctospipe[1]);
send = fdopen(stocpipe[1], "w");
receive = fdopen(ctospipe[0], "r");
/*Reads string from stdin and sends it to the child process through a pipe. */
while(fgets(input1, 17, stdin) != NULL)
{
fprintf(stdout, "Before send: %s", input1);
fwrite(input1, 17, 1, send);
if(fflush(send) == EOF)
{
fprintf(stderr, "Flush error!");
}
}
(void) waitpid(cpid, &status, 0);
if(status != 0)
{
fprintf(stderr, "ERROR: Child calculator exited with %d \n", status);
}
break;
}
return 0;
}
void usage(void)
{
fprintf(stderr,"Usage: %s", command);
exit(EXIT_FAILURE);
}
这个程序是一个计算器它的目的是学习工控机父进程接受来自stdin的字符串(例如35+),并将其发送给子进程子项分析字符串并计算结果然后它将结果发送回父进程,然后父进程将其打印到stdout。
我在给孩子送绳子的时候卡住了接受的第一个字符串将发送给子字符串计算结果很好第二个字符串和之后的每个字符串都是空的,或者至少看起来是空的。
最佳答案
注意线fwrite(input1, 17, 1, send);
父进程可能向子进程发送了“\n”字符后的随机内容在childwhile(fgets(input2, 17, receive) != NULL)
中,fgets
在获取'\n'时停止,并且可能获得少于17-1个字符它的下一个读数管将得到随机的东西。
一个即时解决方案是fwrite(input1, strlen(input1), 1, send);
提到“man fwrite”,最好使用fwrite(input1, sizeof (input1[0]), strlen(input1), send);
。
不管怎样,使用魔法数字17是危险的请记住,管道是一个连续的字符流。
关于c - 仅一条消息通过管道,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/8631252/