2018-01-16 01:08:28 +01:00
|
|
|
<?php
|
|
|
|
/**
|
2020-02-09 15:45:36 +01:00
|
|
|
* @copyright Copyright (C) 2020, Friendica
|
|
|
|
*
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*
|
2018-01-16 01:08:28 +01:00
|
|
|
*/
|
2020-02-09 15:45:36 +01:00
|
|
|
|
2018-01-16 01:08:28 +01:00
|
|
|
namespace Friendica\Model;
|
|
|
|
|
2020-09-15 18:16:44 +02:00
|
|
|
use Friendica\Database\Database;
|
2018-01-27 03:38:34 +01:00
|
|
|
use Friendica\Util\DateTimeFormat;
|
2018-01-16 01:08:28 +01:00
|
|
|
|
|
|
|
/**
|
2020-01-19 07:05:23 +01:00
|
|
|
* functions for interacting with a process
|
2018-01-16 01:08:28 +01:00
|
|
|
*/
|
2019-12-15 23:28:01 +01:00
|
|
|
class Process
|
2018-01-16 01:08:28 +01:00
|
|
|
{
|
2020-09-15 18:16:44 +02:00
|
|
|
/** @var Database */
|
|
|
|
private $dba;
|
|
|
|
|
|
|
|
public function __construct(Database $dba)
|
|
|
|
{
|
|
|
|
$this->dba = $dba;
|
|
|
|
}
|
|
|
|
|
2018-01-16 01:08:28 +01:00
|
|
|
/**
|
|
|
|
* Insert a new process row. If the pid parameter is omitted, we use the current pid
|
|
|
|
*
|
|
|
|
* @param string $command
|
2020-09-15 18:16:44 +02:00
|
|
|
* @param int $pid The process id to insert
|
2018-01-16 01:08:28 +01:00
|
|
|
* @return bool
|
2019-01-06 22:06:53 +01:00
|
|
|
* @throws \Exception
|
2018-01-16 01:08:28 +01:00
|
|
|
*/
|
2020-09-15 18:16:44 +02:00
|
|
|
public function insert(string $command, int $pid)
|
2018-01-16 01:08:28 +01:00
|
|
|
{
|
2018-01-16 01:27:48 +01:00
|
|
|
$return = true;
|
|
|
|
|
2020-09-15 18:16:44 +02:00
|
|
|
$this->dba->transaction();
|
2018-01-16 01:08:28 +01:00
|
|
|
|
2020-09-15 18:16:44 +02:00
|
|
|
if (!$this->dba->exists('process', ['pid' => $pid])) {
|
|
|
|
$return = $this->dba->insert('process', ['pid' => $pid, 'command' => $command, 'created' => DateTimeFormat::utcNow()]);
|
2018-01-16 01:08:28 +01:00
|
|
|
}
|
|
|
|
|
2020-09-15 18:16:44 +02:00
|
|
|
$this->dba->commit();
|
2018-01-16 01:08:28 +01:00
|
|
|
|
|
|
|
return $return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Remove a process row by pid. If the pid parameter is omitted, we use the current pid
|
|
|
|
*
|
2020-09-15 18:16:44 +02:00
|
|
|
* @param int $pid The pid to delete
|
2018-01-16 01:08:28 +01:00
|
|
|
* @return bool
|
2019-01-06 22:06:53 +01:00
|
|
|
* @throws \Exception
|
2018-01-16 01:08:28 +01:00
|
|
|
*/
|
2020-09-15 18:16:44 +02:00
|
|
|
public function deleteByPid(int $pid)
|
2018-01-16 01:08:28 +01:00
|
|
|
{
|
2020-09-15 18:16:44 +02:00
|
|
|
return $this->dba->delete('process', ['pid' => $pid]);
|
2018-01-16 01:08:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Clean the process table of inactive physical processes
|
|
|
|
*/
|
2020-09-15 18:16:44 +02:00
|
|
|
public function deleteInactive()
|
2018-01-16 01:08:28 +01:00
|
|
|
{
|
2020-09-15 18:16:44 +02:00
|
|
|
$this->dba->transaction();
|
2018-01-16 01:08:28 +01:00
|
|
|
|
2020-09-15 18:16:44 +02:00
|
|
|
$processes = $this->dba->select('process', ['pid']);
|
|
|
|
while($process = $this->dba->fetch($processes)) {
|
2018-01-16 01:08:28 +01:00
|
|
|
if (!posix_kill($process['pid'], 0)) {
|
2020-09-15 18:16:44 +02:00
|
|
|
$this->deleteByPid($process['pid']);
|
2018-01-16 01:08:28 +01:00
|
|
|
}
|
|
|
|
}
|
2020-09-15 18:16:44 +02:00
|
|
|
$this->dba->close($processes);
|
|
|
|
$this->dba->commit();
|
2018-01-16 01:08:28 +01:00
|
|
|
}
|
|
|
|
}
|