如果一段时间没有新请求,有没有办法执行PHP脚本?

时间:2014-11-24 01:18:18

标签: php image ip-camera

如果没有新的请求说1秒,PHP中有没有办法采取某些行动(例如mysql插入)?

我想要实现的是确定从IP摄像机发送的图像序列的开始和结束。相机在检测到的移动时发送一系列图像,并在移动停止时停止发送。我知道相机每秒制作5张图像(每200毫秒)。当没有超过1秒的新图像时,我想将最后一个图像标记为序列的结尾,在mysql中插入记录,将img放在适当的文件夹中(其中所有其他img来自相同的序列已经写入)并指示app在该文件夹中制作MJPEG图像剪辑。

现在我能够使用Alternative PHP cash确定序列中的第一个图像,以保存前一个请求的参考时间,但问题是因为下一个图像序列可能在几个小时后发生,我无法指示PHP关闭只有当新序列的第一次请求到达时,如果一段时间内没有请求,则为该序列。

我真的需要帮助。我的PHP几乎像我的英语一样......:)

我的问题的伪代码:

<?php
  if(isset($headers["Content-Disposition"]))
    {
        $frame_time = microtime(true);
      if(preg_match('/.*filename=[\'\"]([^\'\"]+)/', $headers["Content-Disposition"], $matches))
      { $filename = $matches[1]; }
      else if(preg_match("/.*filename=([^ ]+)/", $headers["Content-Disposition"], $matches))
      { $filename = $matches[1]; }
    }
  preg_match("/(anpr[1-9])/", $filename, $anprs);
  $anpr = $anprs[1];
  $apc_key = $anpr."_last_time"; //there are several cameras so I have to distinguish those  
  $last  = apc_fetch($apc_key);
  if (($frame_time - $last)>1)
         {
            $stream = "START"; //New sequence starts
         } else {
            $stream = "-->"; //Streaming
         };
   $file = fopen('php://input', 'r');
   $temp = fopen("test/".$filename, 'w');
   $imageSize = stream_copy_to_stream($file, $temp); //save image file on the file system
   fclose($temp);
   fclose($file);

   apc_store($apc_key, $frame_time); //replace cashed time with this frame time in APC

  // here goes mysql stuff...

  /* Now... if there is no new requests for 1 second $stream = "END";  
  calling app with exec() or similar to grab all images in the particular folder and make 
 MJPEG... if new request arrives cancel timer or whatever and execute script again. */

?>

3 个答案:

答案 0 :(得分:1)

您可以在退出前1.5秒让每个请求保持睡眠状态,并作为最后一步检查序列时间戳是否已更新?如果是,请退出并不执行任何操作。如果不是,请将序列保存到mysql。 (这将需要互斥锁,因为每个http请求都将检查并尝试保存序列,但只允许一个。)

这种方法会将子文件/脚本合并到php代码中(单个代码库,更容易维护),但它可能会使内存使用(每个请求将在内存中保留1.5秒,这对于a忙碌的服务器)。

另一种方法是将子文件/脚本转换为localhost http服务器上的环回请求,大概可以减少内存占用。每个帧都会触发一个完成序列的请求(类似地再次使用互斥锁)。

或者可能创建一个单独的服务调用来检查并保存所有序列,并且每隔几秒就有一个cron作业ping它。或者让每个帧都ping它,如果第二个请求可以检测到服务已经运行,它可以退出。 (在APC缓存中共享状态)

编辑:我想我刚刚建议上面说的字节化了。

答案 1 :(得分:0)

如果您在脚本存储后保持脚本运行1秒钟以检查是否有更多添加的帧,该怎么办?我想你可能想要在1秒到期之前关闭连接,但tomlgold2003和arr1有你的答案:http://php.net/manual/en/features.connection-handling.php#93441

我认为这对你有用:

<?php
ob_end_clean();
header("Connection: close\r\n");
header("Content-Encoding: none\r\n");
ignore_user_abort(true); // optional
ob_start();

// Do your stuff to store the frame

$size = ob_get_length();
header("Content-Length: $size");
ob_end_flush();     // Strange behaviour, will not work
flush();            // Unless both are called !
ob_end_clean();

// The connection should now be closed

sleep(1);
// Check to see if more frames have been added.
?>

如果您的服务器需要高负载,这可能不是您的答案,因为每秒接收5帧时,将有5个脚本检查它们是否提交了最后一帧。

答案 2 :(得分:-1)

将来自摄像机的每个请求及其所有数据和时间戳存储在一个文件中(以php序列化形式)。在cronjob运行(每10秒左右)一个脚本,该脚本读取该文件并在下一个请求之前查找超过一秒的请求。保存此类请求中的数据并删除所有其他请求。