gpt4 book ai didi

PHP:需要关闭 STDIN 才能读取 STDOUT?

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:19:19 25 4
gpt4 key购买 nike

我最近尝试使用 PHP 函数 proc_open 与我的 Ubuntu 网络服务器 [1] 上的二进制文件进行通信。我可以建立连接并定义管道 STDIN、STDOUT 和 STDERR。不错。

现在我正在使用的 bimary 是一个交互式计算机代数软件 - 因此我想在第一个命令之后让 STDOUT 和 STDIN 保持事件状态,这样我仍然可以在几行之后以交互方式使用该应用程序(直接来自 Web 前端的用户输入)。

然而,事实证明,读取二进制文件(stream_get_contents 或 fgets)的 STDOUT 的 PHP 函数需要一个封闭的 STDIN 才能工作。否则程序会死锁。

这是一个严重的缺点,因为我无法在关闭后重新打开已关闭的 STDIN。所以我的问题是:如果我想在我的 STDIN 仍然存在时读取 STDOUT,为什么我的脚本会死锁?

谢谢延斯

[1] proc_open returns false but does not write in error file - permissions issue?

我的来源:

$descriptorspec = array(
0 => array("pipe","r"),
1 => array("pipe","w"),
2 => array("file","./error.log","a")
) ;

// define current working directory where files would be stored
$cwd = './' ;

// open reduce
$process = proc_open('./reduce/reduce', $descriptorspec, $pipes, $cwd) ;

if (is_resource($process)) {

// some valid Reduce commands
fwrite($pipes[0], 'load excalc; operator x; x(0) := t; x(1) := r;');

// if the following line is removed, the script deadlocks
fclose($pipes[0]);

echo "output: " . stream_get_contents($pipes[1]);

// close pipes & close process
fclose($pipes[0]);
fclose($pipes[1]);
fclose($pipes[2]);
proc_close($process);

}

编辑:

这段代码可以工作。有点因为它使用 usleep 来等待非阻塞的 STDOUT 被数据填充。我该如何更优雅地做到这一点?

@ Elias:通过轮询 $status['running'] 条目,您只能确定整个进程是否仍在运行,但不能确定进程是忙还是闲……这就是为什么我必须包括这些 usleep .

define('TIMEOUT_IN_MS', '100');
define('TIMEOUT_STEPS', '100');

function getOutput ($pipes) {
$result = "";
$stage = 0;
$buffer = 0;
do {
$char = fgets($pipes[1], 4096);
if ($char != null) {
$buffer = 0;
$stage = 1;
$result .= $char;
} else if ($stage == "1") {
usleep(TIMEOUT_IN_MS/TIMEOUT_STEPS);
$buffer++;
if ($buffer > TIMEOUT_STEPS) {
$stage++;
}
}
} while ($stage < 2);
return $result;
}

$descriptorspec = array( 0 => array("pipe", "r"), 1 => array("pipe", "w") ) ;

// define current working directory where files would be stored
$cwd = './' ;

// open reduce
$process = proc_open('./reduce/reduce', $descriptorspec, $pipes, $cwd);

if (is_resource($process)) {

stream_set_blocking($pipes[1], 0);

echo "startup output:<br><pre>" . getOutput($pipes) . "</pre>";

fwrite($pipes[0], 'on output; load excalc; operator x; x(0) := t; x(1) := r;' . PHP_EOL);
echo "output 1:<br><pre>" . getOutput($pipes) . "</pre>";

fwrite($pipes[0], 'coframe o(t) = sqrt(1-2m/r) * d t, o(r) = 1/sqrt(1-2m/r) * d r with metric g = -o(t)*o(t) + o(r)*o(r); displayframe;' . PHP_EOL);
echo "output 2:<br><pre>" . getOutput($pipes) . "</pre>";

// close pipes & close process
fclose($pipes[0]);
fclose($pipes[1]);
fclose($pipes[2]);
proc_close($process);

}

最佳答案

这让我想起了 a script I wrote a while back .虽然它可能会激发您(或其他人)的灵感,但它并不能满足您的需求。它包含的是一个示例,说明您如何读取流的输出,而无需关闭任何流。
也许您可以将相同的逻辑应用于您的情况:

$allInput = array(
'load excalc; operator x; x(0) := t; x(1) := r;'
);//array with strings to pass to proc
if (is_resource($process))
{
$output = '';
$input = array_shift($allInput);
do
{
usleep(200);//make sure the running process is ready
fwrite(
$pipes,
$input.PHP_EOL,//add EOL
strlen($input)+1
);
fflush($pipes[0]);//flush buffered data, write to stream
usleep(200);
$status = proc_get_status($process);
while($out = fread($pipes[1], 1024) && !feof($pipes[1]))
$output .= $out;
} while($status['running'] && $input = array_shift($allInput));
//proc_close & fclose calls here
}

现在,由于我不知道您到底想做什么,因此需要对这段代码进行相当多的调整。例如,您可能会发现自己必须将 STDIN 和 STDOUT 管道设置为非阻塞。
不过,在调用 proc_open 之后添加这个很简单:

 stream_set_blocking($pipes[0], 0);
stream_set_blocking($pipes[1], 0);

四处游玩,玩得开心,也许让我知道这个答案是否有任何帮助...

关于PHP:需要关闭 STDIN 才能读取 STDOUT?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24826537/

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