2016-11-27 00:55:05 +00:00
|
|
|
<?php
|
2016-11-27 09:02:08 +00:00
|
|
|
/**
|
|
|
|
* @file mod/worker.php
|
2020-01-19 06:05:23 +00:00
|
|
|
* Module for running the worker as frontend process
|
2016-11-27 09:02:08 +00:00
|
|
|
*/
|
2016-11-27 00:55:05 +00:00
|
|
|
|
2017-04-30 04:29:14 +00:00
|
|
|
use Friendica\Core\Config;
|
2018-10-29 21:20:46 +00:00
|
|
|
use Friendica\Core\Logger;
|
2018-01-16 00:27:48 +00:00
|
|
|
use Friendica\Core\Worker;
|
2018-07-20 12:19:26 +00:00
|
|
|
use Friendica\Database\DBA;
|
2018-06-19 12:45:43 +00:00
|
|
|
use Friendica\Util\DateTimeFormat;
|
2016-11-27 00:55:05 +00:00
|
|
|
|
2018-06-19 12:45:43 +00:00
|
|
|
function worker_init()
|
|
|
|
{
|
2016-11-27 00:55:05 +00:00
|
|
|
|
2020-01-19 20:21:13 +00:00
|
|
|
if (!DI::config()->get("system", "frontend_worker")) {
|
2016-11-27 00:55:05 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-02-12 06:42:45 +00:00
|
|
|
// Ensure that all "strtotime" operations do run timezone independent
|
|
|
|
date_default_timezone_set('UTC');
|
|
|
|
|
2016-12-01 20:53:18 +00:00
|
|
|
// We don't need the following lines if we can execute background jobs.
|
|
|
|
// So we just wake up the worker if it sleeps.
|
2016-11-29 22:40:19 +00:00
|
|
|
if (function_exists("proc_open")) {
|
2017-11-05 10:33:46 +00:00
|
|
|
Worker::executeIfIdle();
|
2016-11-29 22:40:19 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-11-05 10:33:46 +00:00
|
|
|
Worker::clearProcesses();
|
2016-11-27 00:55:05 +00:00
|
|
|
|
|
|
|
$workers = q("SELECT COUNT(*) AS `processes` FROM `process` WHERE `command` = 'worker.php'");
|
|
|
|
|
2020-01-19 20:21:13 +00:00
|
|
|
if ($workers[0]["processes"] > DI::config()->get("system", "worker_queues", 4)) {
|
2016-11-27 00:55:05 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-01-16 00:08:28 +00:00
|
|
|
Worker::startProcess();
|
2016-11-27 00:55:05 +00:00
|
|
|
|
2018-10-29 21:20:46 +00:00
|
|
|
Logger::log("Front end worker started: ".getmypid());
|
2016-11-27 00:55:05 +00:00
|
|
|
|
2017-11-05 10:33:46 +00:00
|
|
|
Worker::callWorker();
|
2016-11-27 00:55:05 +00:00
|
|
|
|
2019-02-17 18:55:17 +00:00
|
|
|
if ($r = Worker::workerProcess()) {
|
2016-11-27 10:01:24 +00:00
|
|
|
// On most configurations this parameter wouldn't have any effect.
|
|
|
|
// But since it doesn't destroy anything, we just try to get more execution time in any way.
|
|
|
|
set_time_limit(0);
|
|
|
|
|
2018-06-04 21:17:37 +00:00
|
|
|
$fields = ['executed' => DateTimeFormat::utcNow(), 'pid' => getmypid(), 'done' => false];
|
|
|
|
$condition = ['id' => $r[0]["id"], 'pid' => 0];
|
2018-07-20 12:19:26 +00:00
|
|
|
if (DBA::update('workerqueue', $fields, $condition)) {
|
2017-11-05 10:33:46 +00:00
|
|
|
Worker::execute($r[0]);
|
2017-05-30 13:20:29 +00:00
|
|
|
}
|
2016-11-27 00:55:05 +00:00
|
|
|
}
|
|
|
|
|
2017-11-05 10:33:46 +00:00
|
|
|
Worker::callWorker();
|
2016-11-27 00:55:05 +00:00
|
|
|
|
2017-11-05 10:33:46 +00:00
|
|
|
Worker::unclaimProcess();
|
2017-05-30 13:20:29 +00:00
|
|
|
|
2018-01-16 00:08:28 +00:00
|
|
|
Worker::endProcess();
|
2016-11-27 00:55:05 +00:00
|
|
|
|
2018-10-29 21:20:46 +00:00
|
|
|
Logger::log("Front end worker ended: ".getmypid());
|
2016-11-27 00:55:05 +00:00
|
|
|
|
2018-12-26 05:40:12 +00:00
|
|
|
exit();
|
2016-11-27 00:55:05 +00:00
|
|
|
}
|