c++ - 如何使用管道发送动态分配的字符串

标签 c++ c operating-system pipe

我有一个作业,需要使用管道在进程之间发送一堆字符串。

当我使用管道从子进程向主进程发送编译时创建的字符串时,它已成功发送。这是我在主进程和子进程中所做的事情。

子进程:

    char* str ="from child";
    int lengthOfString=strlen(str)+1;//+1 for null terminator

  write(pipes[0][1],&lengthOfString,sizeof(int));//send the length of string beforehand
  write(pipes[0][1],&str,lengthOfString); //send the actual string

主要流程:

int numberOfChar;
    char* buffer;
    buffer=(char*)malloc(sizeof(char)*15);
        read(pipes[0][0],&numberOfChar,sizeof(int));//get length of upcoming string
        read(pipes[0][0],&buffer,numberOfChar);//read the actual sting
        printf("received from pipe :%s\n",buffer);

但是,如果我对动态分配的字符串尝试同样的操作,我在主进程中仅收到 NULL 作为字符串。这就是我所做的。

子进程:

    char* dynamicallyAllocatedString=(char*)malloc(sizeof(char)*strlen(str));
    strcpy(dynamicallyAllocatedString,str);
    int lengthOfString=strlen(dynamicallyAllocatedString)+1;//+1 for null terminator

  write(pipes[0][1],&lengthOfString,sizeof(int));//send the length of string beforehand
  write(pipes[0][1],&dynamicallyAllocatedString,lengthOfString); //send the actual string

主要流程:

   read(pipes[0][0],&numberOfChar,sizeof(int));//get length of upcoming string
        buffer=(char*)malloc(sizeof(char)*numberOfChar);
        read(pipes[0][0],&buffer,numberOfChar);//read the actual sting
        printf("received from pipe :%s\n",buffer);

完整代码如下:

#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
int main(int argc,char * argv[])
{
pid_t pid;
int numberOfPipe=1;
int ret;
int c;
int pipeNumber=-1;
int** pipes= (int**)malloc(numberOfPipe*sizeof(int));
 for(c=0;c<numberOfPipe;c++)//create pipe for each process
{
    pipes[c]= (int*)malloc(sizeof(int)*2);
    ret = pipe(pipes[c]);
    if(ret==-1)
        {
            perror("pipe error");
            exit(1);
        }
}


for(c=0;c<numberOfPipe;c++)//create child process
{
pid = fork();
pipeNumber++;
if(0==pid)
{
    break;
}
}
if(0==pid)
{
    // Child process
    int i=0;
    char* str ="from child";
    char* dynamicallyAllocatedString=(char*)malloc(sizeof(char)*strlen(str));
    strcpy(dynamicallyAllocatedString,str);
    int lengthOfString=strlen(dynamicallyAllocatedString)+1;//+1 for null terminator
    close(pipes[pipeNumber][0]); //close read side

  write(pipes[pipeNumber][1],&lengthOfString,sizeof(int));//send the length of string beforehand
  write(pipes[pipeNumber][1],&dynamicallyAllocatedString,lengthOfString); //send the actual string

    close(pipes[pipeNumber][1]); //close write side
    exit(0);
}
else
{
    //main process
    printf("main process\n");

    int numberOfChar;
    char* buffer;


    for(c=0;c<numberOfPipe;c++)//close write side of each pipe
    {
        close(pipes[c][1]);
    }

    for(c=0;c<numberOfPipe;c++)//iterate each pipe
    {
        read(pipes[c][0],&numberOfChar,sizeof(int));//get length of upcoming string
        buffer=(char*)malloc(sizeof(char)*numberOfChar);
        read(pipes[c][0],&buffer,numberOfChar);//read the actual sting
        printf("received from pipe :%s\n",buffer);
    }

    for(c=0;c<numberOfPipe;c++)//close read side of each pipe
    {
        close(pipes[c][0]);
    }
}

printf("end");
return 0;

}

如何获取实际字符串而不是 NULL ? 谢谢。

最佳答案

write(pipes[0][1],&dynamicallyAllocatedString,lengthOfString);

您传递一个指向动态分配字符串的指针,而不是指向实际字符串的指针。

代码中的第二个问题是您没有检查 read() 或 write() 的返回值。当您使用管道时,无法保证整个请求的写入或读取都会成功。

read() 和 write() 返回的读取或写入的字节数都少于请求的字节数。您的代码必须检查返回值并采取适当的操作。如果不这样做,最终将导致难以定位和调试的细微错误。

此外,对于您的“编译时”情况,您声称工作正常,但出于同样的原因,事实并非如此。这要么不是您使用的实际代码,要么您未能检测到相同的错误。

关于c++ - 如何使用管道发送动态分配的字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35965813/

相关文章:

c++ - 简单的 2D 应用程序,在使用 glutBitmapCharacter 时遇到问题

c - 嵌入式系统不需要操作系统的数据库

c - GDB 报告 "No line 92 in the current file."但我实际上有第 92 行

c - select() 在长时间运行后立即超时 (C++)

unix - 将虚拟地址转换为页表项

c++ - 如何为自定义模板化迭代器实现 std::distance()?

C++ 从数字数组创建 png/位图

c++ - boost Boost 属性树性能

c - 二进制文件读取

c - .txt 文件中的动态多维数组