我有一个功课,我需要在使用管道的进程之间发送一串字符串。
当我使用管道从子进程向主进程发送创建编译时的字符串时,会成功发送。这是我在主要和子进程中所做的。
子进程:
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? 感谢。
答案 0 :(得分:0)
write(pipes[0][1],&dynamicallyAllocatedString,lengthOfString);
将指针传递给指向动态分配字符串的指针,而不是指向实际字符串的指针。
代码中的第二个问题是您没有检查read()或write()的返回值。当您使用管道时,无法保证您的整个请求的写入或读取都会成功。
read()和write()都可以返回比请求的读取或写入更少的字节。您的代码必须检查返回值并采取适当的操作。如果不这样做,最终将导致难以定位和调试的细微错误。
此外,对于您的“编译时”案例,您声称工作正常,但出于同样的原因。这不是您使用的实际代码,或者您未能检测到相同的错误。