c - 写入命名管道未显示字符串的全部内容

标签 c named-pipes

我正在尝试从 2 个命名管道读取数据并将其写入另一个命名管道以连接来自 2 个输入的内容。但为什么我的输出只显示第一个输入的字符串?

这是我的代码:

#include <stdio.h>
#include <fcntl.h>
#include <stdlib.h>
#include <string.h>

#define MAX_REC_SIZE 1024

int open_fifo(char *name, int mode) {
   mode = mode == O_RDONLY ? (O_RDONLY | O_NONBLOCK): mode;
   int fd;
   if (access(name, F_OK) == -1) {
      if(mkfifo(name, 0777) != 0) {
         fprintf(stderr, "Could not create fifo %s\n", name);
         exit(EXIT_FAILURE);
      }
   }
   fd = open(name, mode);;
   return fd;
}

void read_fifo(int fd, char *out_r) {
   memset (out_r, '\0', MAX_REC_SIZE);
   do {
      if(read(fd, out_r, MAX_REC_SIZE) > 0) {
         out_r = strtok(out_r, "\n");
         return;
      }
   } while (1);
}

void write_fifo(int fd, char *out_w) {
    write(fd, out_w, sizeof(out_w));
}

int main()
{
   int pipe_fd[3], i;
   char *pipe_nm[] = {"./in_pipe_1", "./in_pipe_2", "./out_pipe_1"};
   int read_mode = O_RDONLY;
   int write_mode = O_WRONLY;
   char out[MAX_REC_SIZE];
   char out_store[MAX_REC_SIZE];

   for(i=0; i<3; i++) {
      pipe_fd[i] = open_fifo(pipe_nm[i], i == 2 ? write_mode : read_mode);
   }

   read_fifo(pipe_fd[0], out);
   strcpy(out_store, out);
   read_fifo(pipe_fd[1], out);
   strcat(out_store, out);
   strcat(out_store, "\n");
   write_fifo(pipe_fd[2], out_store);
   return 0;
}

最佳答案

您的代码的可疑部分是:

write(fd, out_w, sizeof(out_w))

此处,out_w 不是数组,sizeof 运算符将产生 char * 指针的大小,而不是 block 。

您应该将 out_store 的长度传递给您的 write_fifo 函数。

此外,我不太确定您在使用 strtok 函数时的意图是什么。

关于c - 写入命名管道未显示字符串的全部内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27423830/

相关文章:

c# - C dll向C#返回多个变量

python - 嵌入式CPython,使用命名管道进行线程交互

windows - Windows 上的 CallNamedPipe 线程安全吗

c++ - 命名管道有时不起作用

c - C 中的命名管道读取奇怪的结果

c - ARMv7-A 裸机调用堆栈的问题

c - nuklear 简单示例中未显示窗口

c - 自由(): invalid next size (fast) string too long?

c - set_add 和 set_contains 错误

.net - 命名管道 : C++ vs . NET 4.0