以下是故事:
在C中编写一个程序,用于创建子进程和granchild进程(子进程的子进程!)。 父进程应该读取文件的内容,该文件在运行程序时将作为参数。 父亲应该将阅读的文本发送给孩子,这需要转换'o'中找到的'a'字符。 更改后的文本会将子项发送给孙子(孙子)将计算文本中的行数和“o”字符数,并在屏幕上打印结果(以及可选的文件output.txt)。 / p>
所以我创建了一个内部带有'a'字符的文件,我无法将这些字符转换为'o'。
问题是我应该使用什么样的命令进行字符转换?
任何帮助都非常感激。
以下是我到目前为止所做的事情:
#include <stdio.h>
#include <stdlib.h>
#include <fcntl.h>
#include <errno.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <unistd.h>
#include <string.h>
int main() {
int fd_1[2],fd_2[2],pointer,pointer2,pid1,pid2,i,n;
char filename[200];
char buffer[500000];
printf("Input filename:");
fflush(stdout);
fflush(stdin);
scanf("%s", filename);
pointer = open(filename, O_RDONLY);
if (pointer == -1) {
printf("file does not exist\n");
}
pipe(fd_1);
if ( pipe(fd_1) == -1) {
perror("pipe");
exit(1);
}
pid1=fork();
switch(pid1){
case -1: {
perror("fork");
exit(10);
break;
}
case 0: { //child process
pipe(fd_2);
if ( pipe(fd_2) == -1) {
perror("pipe");
exit(1);
}
pid2=fork();
switch(pid2) {
case -1: {
perror("fork");
exit(10);
break;
}
case 0: { //grandchild process
close (fd_2[1]);
break;
}
default: { //child process
close (fd_1[1]);
dup2(fd_1[0],1);
pointer2 = open(buffer, O_WRONLY);
for (i=0; i< sizeof(buffer) ; i++)
if (buffer[i] == 'a' ) {
buffer[i] = 'o';
}
write(fd_1[1], buffer, sizeof(buffer));
wait(&pid2);
break;
}
}
}
default: { //parent process
close (fd_1[0]);
dup2(fd_1[1],0);
n = read(pointer, buffer, 200);
write(fd_1[1], buffer, n);
wait(&pid1);
break;
}
}
return 0;
}
答案 0 :(得分:1)
假设孩子已经将管道读入缓冲区,那么就像:
for (int i = 0; i < bytes_read; ++i)
{
if (buffer[i] == 'a')
buffer[i] = 'o';
}