popen和文件操作

时间:2009-05-20 04:15:28

标签: popen php

this question

相关

我的脚本基本上运行良好,但有时它会在fread函数调用时停止响应,我似乎无法找到失败的原因。

private function run_lengthy_job($command, $message) {
    for($handle = popen($command, 'r'); !feof($handle); sleep(2)) {
        printf("[%s]\t%s\n", time(), $message);

        // log the operation
        exec(sprintf('logger "%s"', 
            escapeshellarg(fread($handle, 1024))));
    }

    pclose($handle);
}

示例命令

hg clone -v --debug http://some.repository.com/hgwebdir.cgi/some_repo some_repo

现在克隆大型存储库时失败了。即使我将fread改为fgets,同样的问题仍然存在。

关于我的php环境的简要信息,

PHP 5.2.4-2ubuntu5.6 with Suhosin-Patch 0.9.6.2 (cli) (built: Apr 17 2009 14:29:38) 
Copyright (c) 1997-2007 The PHP Group
Zend Engine v2.2.0, Copyright (c) 1998-2007 Zend Technologies
    with Xdebug v2.0.3, Copyright (c) 2002-2007, by Derick Rethans

在ubuntu 8.04.2上运行

编辑:尝试proc_open而不是popen,脚本卡在同一个地方。 编辑:用stream_get_contents替换了fread,但仍然停留在同一个地方......

1 个答案:

答案 0 :(得分:0)

我目前的解决方案

private function run_lengthy_job($command, $message) {
    printf("%s\t", $message);

    for($handle = popen($command, 'r'),
        stream_set_blocking($handle, FALSE),
        stream_set_timeout($handle, 3); 
        !feof($handle); sleep(1)) {

        echo '.';

        exec(sprintf('logger "%s"', 
            escapeshellarg(stream_get_contents($handle))));
    }

    $exit_status = pclose($handle);

    if(pcntl_wifexited($exit_status) 
        && pcntl_wexitstatus($exit_status) == 0) {
        echo "done!\n";
    } else {
        echo "failed!\n";
    }
}

调用fread时发生了很长的等待时间,可能是因为对popen的访问被阻止,以便将输出写入其中。