gpt4 book ai didi

c++ - 如何使用有限的 fork 数量运行类似 shell 的管道任务?

转载 作者:太空宇宙 更新时间:2023-11-04 09:09:48 26 4
gpt4 key购买 nike

我有一个简单的程序,我想模拟我没有足够的fork容量的情况,所以我在做管道任务时限制了fork数量。

让用 C++ 编写的类似 shell 的管道作业:

ls | cat | cat | cat | cat | cat | cat | cat | cat

我有运行 pipe() 的代码和 fork() :

#include <errno.h>
#include <fcntl.h>
#include <iostream>
#include <stdio.h>
#include <sys/wait.h>
#include <unistd.h>

const int fork_limit = 3;
int fork_counter = 0;

static void sig_chld_handler(int signo) {
int status;
pid_t pid;
while ((pid = waitpid(-1, &status, WNOHANG)) > 0) {
printf("received SIGCHLD from child process %d\n", pid);
fork_counter -= 1;
fprintf(stdout, "counter --, %d\n", fork_counter);
}
}

int main(int argc, char **argv) {

signal(SIGCHLD, sig_chld_handler);

char **cmds[9];

char *p1_args[] = {"ls", NULL};
char *p2_args[] = {"cat", NULL};

cmds[0] = p1_args;
cmds[1] = p2_args;
cmds[2] = p2_args;
cmds[3] = p2_args;
cmds[4] = p2_args;
cmds[5] = p2_args;
cmds[6] = p2_args;
cmds[7] = p2_args;
cmds[8] = p2_args;


int pipes[16];
pipe(pipes); // sets up 1st pipe
pipe(pipes + 2); // sets up 2nd pipe
pipe(pipes + 4);
pipe(pipes + 6);
pipe(pipes + 8);
pipe(pipes + 10);
pipe(pipes + 12);
pipe(pipes + 14);


pid_t pid;

for (int i = 0; i < 9; i++) {

// === comment this part to run correctly ===
while (fork_limit < fork_counter) {
usleep(10000);
}
// ===

pid = fork();
if (pid == 0) {
fprintf(stdout, "fork p%d\n", i);

// read
if (i != 0) {
if (dup2(pipes[(i - 1) * 2], 0) < 0) {
fprintf(stderr, "dup2 error\n");
exit(EXIT_FAILURE);
}
}

// write
if (i != 8) {
if (dup2(pipes[i * 2 + 1], 1) < 0) {
fprintf(stderr, "dup2 error\n");
exit(EXIT_FAILURE);
}
}

for (int j = 0; j < 16; j++) {
close(pipes[j]);
}

execvp(*cmds[i], cmds[i]);
} else {
fork_counter += 1;
fprintf(stdout, "counter ++, %d \n", fork_counter);
}
}

for (int j = 0; j < 16; j++) {
close(pipes[j]);
}

waitpid(pid, NULL, 0); // wait the last one.

std::cout << "Parent done." << std::endl;
}

while (fork_limit < fork_counter)就是我限制 child 的数量。如果我删除 while block ,代码运行良好,但如果我添加它,它会挂起。

我想以前的 child 会死,所以fork_counter -= 1 ,新的 child 可以 fork ,但行为不是,我不明白为什么。


没有 while 的结果.

counter ++, 1 
counter ++, 2
fork p0
fork p1
counter ++, 3
fork p2
counter ++, 4
counter ++, 5
fork p3
fork p4
counter ++, 6
fork p5
counter ++, 7
counter ++, 8
fork p6
fork p7
counter ++, 9
fork p8
received SIGCHLD from child process 13316
counter --, 8
Applications
Desktop
Documents
Downloads
Library
Movies
Music
Pictures
received SIGCHLD from child process 13319
counter --, 7
received SIGCHLD from child process 13318
counter --, 6
received SIGCHLD from child process 13317
counter --, 5
received SIGCHLD from child process 13320
counter --, 4
received SIGCHLD from child process 13322
counter --, 3
received SIGCHLD from child process 13321
counter --, 2
received SIGCHLD from child process 13323
counter --, 1
received SIGCHLD from child process 13324
counter --, 0
Parent done.

拥有 while 的结果,这意味着我限制了 fork 数量。

counter ++, 1 
counter ++, 2
fork p0
fork p1
counter ++, 3
counter ++, 4
fork p2
fork p3
received SIGCHLD from child process 13291
counter --, 3
counter ++, 4
fork p4

(hang)

最佳答案

main程序(按顺序)执行以下操作:

  1. 预先创建所有管道
  2. 使用管道 fork child (每个 child 关闭所有继承的管道)
  3. 关闭所有管道

问题在于“关闭所有管道”的时间。因为main正在等待第一个 child 完成 ( while (fork_limit < fork_counter) ),然后才能完成步骤 #2。

然而,cat children (例如,第一个 cat )在他们的输入管道被所有进程关闭之前无法完成,包括他 main ,正在等待他们完成。实际上是一个僵局。

考虑对 main 进行小的修改进程,一旦 child 被 fork ,它将关闭到每个 child 的管道:

if ( fork() ) {
// Children
...

} else {
// Main - close pipes ASAP.
close(pipes[(i-1)*2]) ;
close(pipes[(i-1)*2+1]);
fork_counter += 1;
fprintf(stdout, "counter ++, %d \n", fork_counter);
}

可能还需要对子项中的管道关闭进行一些修改。

关于c++ - 如何使用有限的 fork 数量运行类似 shell 的管道任务?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58686195/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com