#include<iostream>#include<fstream>#include<cstring>#include<sys/types.h>#include<sys/stat.h>#include<fcntl.h>#include<unistd.h>// 封装函数,返回当前进程的PID
pid_t get_current_process_id(){returngetpid();}intmain(){constchar* fifo_name ="/tmp/my_fifo";// 创建FIFO,如果已存在则不创建mkfifo(fifo_name,0666);// 打开FIFO以写入数据int fd =open(fifo_name, O_WRONLY);if(fd ==-1){perror("open");return1;}constchar* data ="Hello from producer!";ssize_t num_bytes =write(fd, data,strlen(data)+1);// 包含字符串结束符'\0'if(num_bytes ==-1){perror("write");return1;}close(fd);std::cout <<"Current process ID:"<<get_current_process_id()<<" Data written to FIFO."<< std::endl;return0;}
消费者
#include<iostream>#include<fstream>#include<cstring>#include<sys/types.h>#include<sys/stat.h>#include<fcntl.h>#include<unistd.h>// 封装函数,返回当前进程的PID
pid_t get_current_process_id(){returngetpid();}intmain(){constchar* fifo_name ="/tmp/my_fifo";// 打开FIFO以读取数据int fd =open(fifo_name, O_RDONLY);if(fd ==-1){perror("open");return1;}char buffer[256];ssize_t num_bytes =read(fd, buffer,sizeof(buffer)-1);// 保留一个位置给'\0'if(num_bytes ==-1){perror("read");return1;}buffer[num_bytes]='\0';// 添加字符串结束符close(fd);std::cout <<"Current process ID:"<<get_current_process_id()<<" Data read from FIFO: "<< buffer << std::endl;return0;}