doutan3371 2016-10-08 15:29
浏览 43
已采纳

php script - 将输入重定向到另一个实例

I have a php script who use flock() to deny multiple instance if script already running.

I would like the arguments provided in the script call are transferred to the existing process who would be able to handle them.

ie :

test.php :

#!/usr/bin/env php
<?php

$lock_file = fopen ( getcwd () . '/'. basename(__FILE__, '.php') . '.pid', 'c' );
$got_lock = flock ( $lock_file, LOCK_EX | LOCK_NB, $wouldblock );
if ($lock_file === false || (! $got_lock && ! $wouldblock)) :
    throw new Exception ( "Error opening or locking lock file" );
    error_log("execption thrown");
elseif (! $got_lock && $wouldblock) :
    exit ( "Another instance is already running; terminating.
" );
endif;

while (true) :
    $input = $argv; // or incomming datas from other script ?
    unset($argv);
    if (is_array($input)) :
        foreach ($input as $a) :
            echo $a;
        endforeach;
    else :
        echo $input;
    endif;
endwhile;

?>

Now, if i run :

php -f test.php arg1 arg2

php -f test.php arg3 arg4

The second call exiting as well, but i would like the arg3 and arg4 are piped to the main process.

How can i do that ?

  • 写回答

1条回答

  • dsijovl015728613 2016-10-08 16:44
    关注

    in other words, you want a way to communicate with the process that already exists? aka IPC, there are a lot of ways to do this. the absolute fastest way being shared memory. but using a database, or unix sockets, would be easier to implement. here's an example using SQLite:

    whenever convenient to process messages, do this:

    while(NULL!==($message=check_for_message())){//handle all messages
    echo "got a mesage!:";
    var_dump($message);
    }
    

    and the "check_for_message" function:

    //returns string("message") if there is a message available.
    // else returns NULL
    //Warning, do not try to optimize this function with prepared statements, unless you know what you're doing, in SQLIte they will lock the database from writing.
    function check_for_message(){
    static $db=false;
    if($db===false){
    $db=new PDO('sqlite:ipc.db3','','',array(PDO::ATTR_EMULATE_PREPARES => false,PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION));
    $db->exec(
    '
    CREATE TABLE IF NOT EXISTS messages (id INTEGER PRIMARY KEY AUTOINCREMENT, message TEXT);
    
    '
    );
    register_shutdown_function(function()use(&$db){
    $db=NULL;
    unset($db);
    unlink("ipc.db3");
    });
    }
    $message=$db->query("SELECT id,message FROM messages LIMIT 1",PDO::FETCH_ASSOC);
    
    foreach($message as $ret){
    $db->query("DELETE FROM messages WHERE id = ".$db->quote($ret['id']));
    return $ret['message'];
    }
    return NULL;
    }
    

    and to send a message:

    example usage:

    foreach($argv as $arg){
    sendmessage($arg);
    }
    

    function:

    function sendmessage(string $message){
    $db=new PDO('sqlite:ipc.db3','','',array(
    PDO::ATTR_EMULATE_PREPARES => false,
    PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION
    ));
    $db->query('INSERT INTO messages (message) VALUES('.$db->quote($message).');');
    }
    

    notes: i think you could optimize that function by using WAL-mode sqlite and prepared statements. i think you could optimize it even more by putting it in shared memory by using PDO::ATTR_PERSISTENT , but afaik, that's hackish using undocumented features and i wouldn't expect it to work for things like HHVM PHP. on unixes (*BSD, Mac OS X, Linux, etc), using a unix socket would be faster anyway. it'd be even faster to use raw shared memory, but implementing message queues in shared memory is somewhat tricky.. you could also look into installing a signal handler, for instance, SIGUSR1 to indicate that there's a message waiting, see http://php.net/manual/en/function.pcntl-signal.php

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 HFSS 中的 H 场图与 MATLAB 中绘制的 B1 场 部分对应不上
  • ¥15 如何在scanpy上做差异基因和通路富集?
  • ¥20 关于#硬件工程#的问题,请各位专家解答!
  • ¥15 关于#matlab#的问题:期望的系统闭环传递函数为G(s)=wn^2/s^2+2¢wn+wn^2阻尼系数¢=0.707,使系统具有较小的超调量
  • ¥15 FLUENT如何实现在堆积颗粒的上表面加载高斯热源
  • ¥30 截图中的mathematics程序转换成matlab
  • ¥15 动力学代码报错,维度不匹配
  • ¥15 Power query添加列问题
  • ¥50 Kubernetes&Fission&Eleasticsearch
  • ¥15 報錯:Person is not mapped,如何解決?