2018-01-15 19:08:28 -05:00
|
|
|
<?php
|
|
|
|
/**
|
2020-02-09 09:45:36 -05: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-15 19:08:28 -05:00
|
|
|
*/
|
2020-02-09 09:45:36 -05:00
|
|
|
|
2018-01-15 19:08:28 -05:00
|
|
|
namespace Friendica\Model;
|
|
|
|
|
2018-07-20 08:19:26 -04:00
|
|
|
use Friendica\Database\DBA;
|
2018-01-26 21:38:34 -05:00
|
|
|
use Friendica\Util\DateTimeFormat;
|
2018-01-15 19:08:28 -05:00
|
|
|
|
|
|
|
/**
|
2020-01-19 01:05:23 -05:00
|
|
|
* functions for interacting with a process
|
2018-01-15 19:08:28 -05:00
|
|
|
*/
|
2019-12-15 17:28:01 -05:00
|
|
|
class Process
|
2018-01-15 19:08:28 -05:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Insert a new process row. If the pid parameter is omitted, we use the current pid
|
|
|
|
*
|
|
|
|
* @param string $command
|
|
|
|
* @param string $pid
|
|
|
|
* @return bool
|
2019-01-06 16:06:53 -05:00
|
|
|
* @throws \Exception
|
2018-01-15 19:08:28 -05:00
|
|
|
*/
|
|
|
|
public static function insert($command, $pid = null)
|
|
|
|
{
|
2018-01-15 19:27:48 -05:00
|
|
|
$return = true;
|
|
|
|
|
2018-01-17 09:10:30 -05:00
|
|
|
if (is_null($pid)) {
|
|
|
|
$pid = getmypid();
|
|
|
|
}
|
|
|
|
|
2018-07-20 08:19:26 -04:00
|
|
|
DBA::transaction();
|
2018-01-15 19:08:28 -05:00
|
|
|
|
2018-07-20 08:19:26 -04:00
|
|
|
if (!DBA::exists('process', ['pid' => $pid])) {
|
|
|
|
$return = DBA::insert('process', ['pid' => $pid, 'command' => $command, 'created' => DateTimeFormat::utcNow()]);
|
2018-01-15 19:08:28 -05:00
|
|
|
}
|
|
|
|
|
2018-07-20 08:19:26 -04:00
|
|
|
DBA::commit();
|
2018-01-15 19:08:28 -05:00
|
|
|
|
|
|
|
return $return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Remove a process row by pid. If the pid parameter is omitted, we use the current pid
|
|
|
|
*
|
|
|
|
* @param string $pid
|
|
|
|
* @return bool
|
2019-01-06 16:06:53 -05:00
|
|
|
* @throws \Exception
|
2018-01-15 19:08:28 -05:00
|
|
|
*/
|
|
|
|
public static function deleteByPid($pid = null)
|
|
|
|
{
|
|
|
|
if ($pid === null) {
|
|
|
|
$pid = getmypid();
|
|
|
|
}
|
|
|
|
|
2018-07-20 08:19:26 -04:00
|
|
|
return DBA::delete('process', ['pid' => $pid]);
|
2018-01-15 19:08:28 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Clean the process table of inactive physical processes
|
|
|
|
*/
|
|
|
|
public static function deleteInactive()
|
|
|
|
{
|
2018-07-20 08:19:26 -04:00
|
|
|
DBA::transaction();
|
2018-01-15 19:08:28 -05:00
|
|
|
|
2018-07-20 08:19:26 -04:00
|
|
|
$processes = DBA::select('process', ['pid']);
|
|
|
|
while($process = DBA::fetch($processes)) {
|
2018-01-15 19:08:28 -05:00
|
|
|
if (!posix_kill($process['pid'], 0)) {
|
|
|
|
self::deleteByPid($process['pid']);
|
|
|
|
}
|
|
|
|
}
|
2020-04-28 03:10:18 -04:00
|
|
|
DBA::close($processes);
|
2018-07-20 08:19:26 -04:00
|
|
|
DBA::commit();
|
2018-01-15 19:08:28 -05:00
|
|
|
}
|
|
|
|
}
|