我目前正在开发PHP中的部署框架,并在线程和流方面遇到了一些问题。
我想启动一个进程,读取它的stdout和stderr(单独!),回显它并在进程终止时返回流的完整内容。
为了实现功能,我使用两个线程,每个线程都在读取不同的流(stdout | stderr)。现在我遇到的问题是,当第二次调用fgets时,php会崩溃。 (错误代码0x5,错误偏移0x000610e7)。
经过大量的跟踪和错误后,我发现当我向run
函数添加一个虚拟数组时,崩溃并不总是发生并且它按预期工作。
有谁知道为什么会这样?
我使用的是Windows 7,PHP 5.4.22,MSVC9,pthreads 2.0.9
private static $pipeSpecsSilent = array(
0 => array("pipe", "r"), // stdin
1 => array("pipe", "w"), // stdout
2 => array("pipe", "w")); // stderr
public function start()
{
$this->procID = proc_open($this->executable, $this::$pipeSpecsSilent, $this->pipes);
if (is_resource($this->procID))
{
$stdoutThread = new POutputThread($this->pipes[1]);
$stderrThread = new POutputThread($this->pipes[2]);
$stderrThread->start();
$stdoutThread->start();
$stdoutThread->join();
$stderrThread->join();
$stdout = trim($stdoutThread->getStreamValue());
$stderr = trim($stderrThread->getStreamValue());
$this->stop();
return array('stdout' => $stdout, 'stderr' => $stderr);
}
return null;
}
/**
* Closes all pipes and the process handle
*/
private function stop()
{
for ($x = 0; $x < count($this->pipes); $x++)
{
fclose($this->pipes[$x]);
}
$this->resultValue = proc_close($this->procID);
}
class POutputThread extends Thread
{
private $pipe;
private $content;
public function __construct($pipe)
{
$this->pipe = $pipe;
}
public function run()
{
$content = '';
// this line is requires as we get a crash without it.
// it seems like there is something odd happening?
$stackDummy = array('', '');
while (($line = fgets($this->pipe)))
{
PLog::i($line);
$content .= $line;
}
$this->content = $content;
}
/**
* Returns the value of the stream that was read
*
* @return string
*/
public function getStreamValue()
{
return $this->content;
}
}
答案 0 :(得分:1)
我发现了问题:
虽然我在所有线程终止后关闭了流,但似乎需要关闭正在从中读取的线程内的流。
所以我在$this->stop();
函数中使用fclose($this->pipe);
替换了run
调用,一切正常。