mirror of
https://github.com/RaspbianFrance/raspisms.git
synced 2025-04-20 16:37:48 +02:00
Working
This commit is contained in:
parent
6614c2cfeb
commit
c265e0d43c
2 changed files with 37 additions and 13 deletions
|
@ -10,19 +10,21 @@ use \Monolog\Handler\StreamHandler;
|
|||
class Phone extends AbstractDaemon
|
||||
{
|
||||
private $msg_queue;
|
||||
private $queue_id;
|
||||
private $last_message_at;
|
||||
|
||||
public function __construct($phone)
|
||||
{
|
||||
$name = 'Phone ' . $phone['number'];
|
||||
$pid_dir = PWD_PID;
|
||||
$additional_signals = [SIGUSR1, SIGUSR2];
|
||||
$uniq = true; //Main server should be uniq
|
||||
$this->queue_id = (int) mb_substr($phone['number'], 1);
|
||||
|
||||
$queue_id = (int) mb_substr($phone['number'], 1);
|
||||
$this->msg_queue = msg_get_queue($queue_id);
|
||||
$name = 'Phone ' . $phone['number'];
|
||||
|
||||
$logger = new Logger($name);
|
||||
$logger->pushHandler(new StreamHandler(PWD_LOGS . '/raspisms.log', Logger::DEBUG));
|
||||
|
||||
$pid_dir = PWD_PID;
|
||||
$additional_signals = [];
|
||||
$uniq = true; //Main server should be uniq
|
||||
|
||||
//Construct the server and add SIGUSR1 and SIGUSR2
|
||||
parent::__construct($name, $logger, $pid_dir, $additional_signals, $uniq);
|
||||
|
@ -34,6 +36,13 @@ class Phone extends AbstractDaemon
|
|||
|
||||
public function run()
|
||||
{
|
||||
if ( (microtime(true) - $this->last_message_at) > 5 * 60 )
|
||||
{
|
||||
$this->is_running = false;
|
||||
$this->logger->info("End running");
|
||||
return true;
|
||||
}
|
||||
|
||||
$msgtype = null;
|
||||
$maxsize = 409600;
|
||||
$message = null;
|
||||
|
@ -45,18 +54,29 @@ class Phone extends AbstractDaemon
|
|||
return true;
|
||||
}
|
||||
|
||||
//If message received, update last message time
|
||||
$this->last_message_at = microtime(true);
|
||||
|
||||
$this->logger->debug(json_encode($message));
|
||||
}
|
||||
|
||||
|
||||
public function on_start()
|
||||
{
|
||||
//Set last message at to construct time
|
||||
$this->last_message_at = microtime(true);
|
||||
|
||||
$this->msg_queue = msg_get_queue($this->queue_id);
|
||||
|
||||
$this->logger->info("Starting " . $this->name . " with pid " . getmypid());
|
||||
}
|
||||
|
||||
|
||||
public function on_stop()
|
||||
{
|
||||
$this->logger->info("Closing queue : " . $this->queue_id);
|
||||
msg_remove_queue($this->msg_queue); //Delete queue on daemon close
|
||||
|
||||
$this->logger->info("Stopping " . $this->name . " with pid " . getmypid ());
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue