7

我正在尝试建立一个人们可以在线编译和运行代码的网站,因此我们需要找到一种交互方式让用户发送指令。

其实首先想到的是exec()or system(),但是当用户想输入某事时,这种方式是行不通的。所以我们必须使用proc_open().

例如下面的代码

int main()
{
    int a;
    printf("please input a integer\n");
    scanf("%d", &a);
    printf("Hello World %d!\n", a);
    return 0;
}

我用proc_open()的时候像这样

$descriptorspec = array(      
0 => array( 'pipe' , 'r' ) ,  
    1 => array( 'pipe' , 'w' ) ,  
    2 => array( 'file' , 'errors' , 'w' ) 
);  
$run_string = "cd ".$addr_base."; ./a.out 2>&1";
$process = proc_open($run_string, $descriptorspec, $pipes);
if (is_resource($process)) {
    //echo fgets($pipes[1])."<br/>";
    fwrite($pipes[0], '12');
    fclose($pipes[0]);
    while (!feof($pipes[1]))
        echo fgets($pipes[1])."<br/>";
    fclose($pipes[1]);
    proc_close($process);
}

运行 C 代码时,我想获取第一个 STDOUT 流,并输入数字,然后获取第二个 STDOUT 流。但是,如果我将注释行取消注释,则该页面将被阻止。

有没有办法解决这个问题?当并非所有数据都放在那里时,如何从管道中读取?或者有没有更好的方法来编写这种交互式程序?

4

2 回答 2

20

这更像是C一个glibc问题。你必须使用fflush(stdout).

为什么?a.out在终端中运行和从 PHP 调用它有什么区别?

答:如果您a.out在终端中运行(作为标准输入 tty),那么 glibc 将使用行缓冲 IO。但是,如果您从另一个程序(在这种情况下为 PHP)运行它并且它的标准输入是管道(或其他任何但不是 tty),则 glibc 将使用内部 IO 缓冲。这就是为什么fgets()如果未注释第一个块。有关更多信息,请查看这篇文章

stdbuf好消息:您可以使用该命令控制此缓冲。更改$run_string为:

$run_string = "cd ".$addr_base.";stdbuf -o0 ./a.out 2>&1";

这是一个工作示例。即使 C 代码不关心fflush()它也可以使用以下stdbuf命令:

启动子进程

$cmd = 'stdbuf -o0 ./a.out 2>&1';

// what pipes should be used for STDIN, STDOUT and STDERR of the child
$descriptorspec = array (
    0 => array("pipe", "r"),
    1 => array("pipe", "w"),
    2 => array("pipe", "w")
 );

// open the child
$proc = proc_open (
    $cmd, $descriptorspec, $pipes, getcwd()
);

将所有流设置为非阻塞模式

// set all streams to non blockin mode
stream_set_blocking($pipes[1], 0);
stream_set_blocking($pipes[2], 0);
stream_set_blocking(STDIN, 0);

// check if opening has succeed
if($proc === FALSE){
    throw new Exception('Cannot execute child process');
}

获取孩子 pid。我们稍后需要它

// get PID via get_status call
$status = proc_get_status($proc);
if($status === FALSE) {
    throw new Exception (sprintf(
        'Failed to obtain status information '
    ));
}
$pid = $status['pid'];

轮询直到孩子终止

// now, poll for childs termination
while(true) {
    // detect if the child has terminated - the php way
    $status = proc_get_status($proc);
    // check retval
    if($status === FALSE) {
        throw new Exception ("Failed to obtain status information for $pid");
    }
    if($status['running'] === FALSE) {
        $exitcode = $status['exitcode'];
        $pid = -1;
        echo "child exited with code: $exitcode\n";
        exit($exitcode);
    }

    // read from childs stdout and stderr
    // avoid *forever* blocking through using a time out (50000usec)
    foreach(array(1, 2) as $desc) {
        // check stdout for data
        $read = array($pipes[$desc]);
        $write = NULL;
        $except = NULL;
        $tv = 0;
        $utv = 50000;

        $n = stream_select($read, $write, $except, $tv, $utv);
        if($n > 0) {
            do {
                $data = fread($pipes[$desc], 8092);
                fwrite(STDOUT, $data);
            } while (strlen($data) > 0);
        }
    }


    $read = array(STDIN);
    $n = stream_select($read, $write, $except, $tv, $utv);
    if($n > 0) {
        $input = fread(STDIN, 8092);
        // inpput to program
        fwrite($pipes[0], $input);
    }
}
于 2013-05-03T04:14:20.813 回答
0

答案非常简单:$descriptorspec留空。如果这样做,子进程将简单地使用父进程的 STDIN/STDOUT/STDERR 流。

➜  ~  ✗ cat stdout_is_atty.php
<?php

var_dump(stream_isatty(STDOUT));
➜  ~  ✗ php -r 'proc_close(proc_open("php stdout_is_atty.php", [], $pipes));'
/home/chx/stdout_is_atty.php:3:
bool(true)
➜  ~  ✗ php -r 'passthru("php stdout_is_atty.php");'
/home/chx/stdout_is_atty.php:3:
bool(false)
➜  ~  ✗ php -r 'exec("php stdout_is_atty.php", $output); print_r($output);'
Array
(
    [0] => /home/chx/stdout_is_atty.php:3:
    [1] => bool(false)
)

归功于作曲家的维护者之一约翰史蒂文森。

如果您对为什么会发生这种情况感兴趣:PHP 对空描述符不做任何事情,并使用恰好是所需的 C/OS 默认值。

因此,负责proc_open始终只迭代描述符的 C 代码。如果没有指定描述符,那么所有代码​​都不会执行任何操作。之后,孩子的实际执行——至少在 POSIX 系统上——通过调用发生,fork(2)这使得孩子继承文件描述符(见这个答案)。然后孩子调用execvp(3)/ execle(3)/之一execl(3)。正如手册所说

exec() 系列函数用新的进程映像替换当前进程映像。

也许说包含父级的内存区域被新程序替换会更容易理解。这是可以访问的/proc/$pid/mem,请参阅此答案以获取更多信息。但是,系统会记录该区域之外打开的文件。您可以在 -- 中看到它们,/proc/$pid/fd/而 STDIN/STDOUT/STDERR 只是文件描述符 0/1/2 的简写。所以当孩子替换内存时,文件描述符就留在原地。

于 2021-03-28T18:41:17.000 回答