gpt4 book ai didi

c - 只有一条消息通过管道

转载 作者:太空宇宙 更新时间:2023-11-03 23:55:36 24 4
gpt4 key购买 nike

我一直在做这个作业,这已经是第 10 个版本了。问题是只有一条消息通过管道,并计算出正确的结果。以下字符串根本不通过,或者在摆弄缓冲区后只有一些字符。请帮忙,我真的在这个问题上浪费了很多时间,我需要学习这些东西以便即将进行的测试。

#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);
}

该程序是一个计算器。它的目的是学习IPC。父进程接受来自标准输入的字符串(例如 3 5 +)并将其发送给子进程。 child 解析字符串并计算结果。然后它将结果发送回父进程,然后将其打印到标准输出。

我在将字符串发送给 child 的部分卡住了。第一个接受的字符串被发送给 child 。它计算结果很好。第二个字符串和之后的每个字符串都是空的,或者至少看起来是空的。

最佳答案

注意行 fwrite(input1, 17, 1, send);parent 进程可能已将 '\n' 字符后的随机内容发送到 child 进程。在 child while(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 是危险的。请记住,PIPE 是一个连续的字符流。

关于c - 只有一条消息通过管道,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8631252/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com