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 微信会员卡接入微信支付商户号收款
  • ¥15 如何获取烟草零售终端数据
  • ¥15 数学建模招标中位数问题
  • ¥15 phython路径名过长报错 不知道什么问题
  • ¥15 深度学习中模型转换该怎么实现
  • ¥15 HLs设计手写数字识别程序编译通不过
  • ¥15 Stata外部命令安装问题求帮助!
  • ¥15 从键盘随机输入A-H中的一串字符串,用七段数码管方法进行绘制。提交代码及运行截图。
  • ¥15 TYPCE母转母,插入认方向
  • ¥15 如何用python向钉钉机器人发送可以放大的图片?