只有一条消息通过管道

时间:2011-12-25 19:47:47

标签: c pipe

我一直在做这个任务,这是关于第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。父进程接受来自stdin的字符串(例如3 5 +)并将其发送给子进程。子解析字符串并计算结果。然后它将结果发送回父进程,然后将其打印到stdout。

我被困在将字符串发送给孩子身上。接受的第一个字符串被发送给孩子。它计算结果很好。第二个字符串,每个字符串后面都是空的,或者至少看起来像是空的。

1 个答案:

答案 0 :(得分:1)

注意第fwrite(input1, 17, 1, send);行。 进程可能会在'\ n'字符后向进程发送随机内容。在孩子 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是一个连续的字符流。