我正在写一个 shell,我似乎在某个时候关闭了标准输入,但我不知道在哪里。我已经倾注了这段代码,但找不到我可能在哪里关闭它。
只有当我使用这样的管道时它才会关闭:
cat f2.txt | cat
或者
cat < f2.txt | cat
或者
cat | cat | cat
处理此代码的行是 232 到 268,然后是 270 到 288
我似乎无法正确格式化,所以这里是格式化的代码: http: //pastebin.com/pe8BkVPV
我还将在下面粘贴有问题的部分。
有任何想法吗?
if (ct->recieve_input == 1 && ct->redirect_output == 0) {
ptr = dll_prev(tmp) ;
ctmp = jval_v(ptr->val) ;
//fprintf(stderr, "Previous->command = %s\n", ctmp->command) ;
fflush(stdout) ;
fs = fork() ;
if (fs == 0) {
if (ct->tdw == 1) { /* If we are redirecting output */
fprintf(stderr, "ct->tdw = 1\n") ;
if (dup2(ct->fd1, 1) != 1) { perror("dup2 tdw A") ; exit(1) ; }
if (close(ct->fd1) < 0) { perror("c1"); exit(1); }
} /* tdw == 1 */
if (ct->tdr == 1) { /* If we are recieving input */
fprintf(stderr, "ct->tdr = 1\n") ;
if (dup2(ct->fd0, 0) != 0) { perror("dup2 tdr A") ; exit(1) ; }
if (close(ct->fd0) < 0) { perror("c0"); exit(1); }
}
if (dup2(ctmp->pipefd[0], 0) != 0) {
perror("dup2 : 0, 0") ;
exit(1) ;
}
//close(ct->pipefd[1]) ;
//close(ct->pipefd[0]) ;
close(ctmp->pipefd[1]) ;
close(ct->pipefd[1]) ;
status = execvp(ct->command, ct->args) ;
fprintf(stderr, "execvp command failed\n") ;
exit(1) ;
}
}
if (ct->redirect_output == 1 && ct->recieve_input == 0) {
ptr = (to_exec)->blink ;
ctmp = jval_v(ptr->val) ;
ctmp->recieve_input = 1 ;
fflush(stdout) ;
fs = fork() ;
if (fs == 0) {
if (dup2(ct->pipefd[1], 1) == -1) {
perror("dup2 : RD== 1:1, 1") ;
exit(1) ;
}
//close(ct->pipefd[0]) ; // TODO
status = execvp(ct->command, ct->args) ;
fprintf(stderr, "exevp command failed\n") ;
exit(1) ;
}
} /* End redirect output */