1

この質問に関連する

私のスクリプトは基本的には正常に動作しますが、時々 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で実行中

編集: popen の代わりに proc_open を試してみましたが、スクリプトは同じ場所で動かなくなりました。編集: fread を stream_get_contents に置き換えましたが、それでも同じ場所でスタックしています...

4

1 に答える 1

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が出力を書き込むために$handleへのアクセスがブロックされているためです。

于 2009-05-20T07:05:10.053 に答える