2016-11-26 19:55:05 -05:00
|
|
|
<?php
|
2016-11-27 04:02:08 -05:00
|
|
|
/**
|
|
|
|
* @file mod/worker.php
|
2017-11-19 16:47:21 -05:00
|
|
|
* @brief Module for running the worker as frontend process
|
2016-11-27 04:02:08 -05:00
|
|
|
*/
|
2016-11-26 19:55:05 -05:00
|
|
|
|
2017-04-30 00:29:14 -04:00
|
|
|
use Friendica\Core\Config;
|
2018-10-29 17:20:46 -04:00
|
|
|
use Friendica\Core\Logger;
|
2018-01-15 19:27:48 -05:00
|
|
|
use Friendica\Core\Worker;
|
2018-07-20 08:19:26 -04:00
|
|
|
use Friendica\Database\DBA;
|
2018-06-19 08:45:43 -04:00
|
|
|
use Friendica\Util\DateTimeFormat;
|
2016-11-26 19:55:05 -05:00
|
|
|
|
2018-06-19 08:45:43 -04:00
|
|
|
function worker_init()
|
|
|
|
{
|
2016-11-26 19:55:05 -05:00
|
|
|
|
2017-02-26 18:16:49 -05:00
|
|
|
if (!Config::get("system", "frontend_worker")) {
|
2016-11-26 19:55:05 -05:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-02-12 01:42:45 -05:00
|
|
|
// Ensure that all "strtotime" operations do run timezone independent
|
|
|
|
date_default_timezone_set('UTC');
|
|
|
|
|
2016-12-01 15:53:18 -05: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 17:40:19 -05:00
|
|
|
if (function_exists("proc_open")) {
|
2017-11-05 05:33:46 -05:00
|
|
|
Worker::executeIfIdle();
|
2016-11-29 17:40:19 -05:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-11-05 05:33:46 -05:00
|
|
|
Worker::clearProcesses();
|
2016-11-26 19:55:05 -05:00
|
|
|
|
|
|
|
$workers = q("SELECT COUNT(*) AS `processes` FROM `process` WHERE `command` = 'worker.php'");
|
|
|
|
|
|
|
|
if ($workers[0]["processes"] > Config::get("system", "worker_queues", 4)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-01-15 19:08:28 -05:00
|
|
|
Worker::startProcess();
|
2016-11-26 19:55:05 -05:00
|
|
|
|
2018-10-29 17:20:46 -04:00
|
|
|
Logger::log("Front end worker started: ".getmypid());
|
2016-11-26 19:55:05 -05:00
|
|
|
|
2017-11-05 05:33:46 -05:00
|
|
|
Worker::callWorker();
|
2016-11-26 19:55:05 -05:00
|
|
|
|
2019-02-17 13:55:17 -05:00
|
|
|
if ($r = Worker::workerProcess()) {
|
2016-11-27 05:01:24 -05: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 17:17:37 -04:00
|
|
|
$fields = ['executed' => DateTimeFormat::utcNow(), 'pid' => getmypid(), 'done' => false];
|
|
|
|
$condition = ['id' => $r[0]["id"], 'pid' => 0];
|
2018-07-20 08:19:26 -04:00
|
|
|
if (DBA::update('workerqueue', $fields, $condition)) {
|
2017-11-05 05:33:46 -05:00
|
|
|
Worker::execute($r[0]);
|
2017-05-30 09:20:29 -04:00
|
|
|
}
|
2016-11-26 19:55:05 -05:00
|
|
|
}
|
|
|
|
|
2017-11-05 05:33:46 -05:00
|
|
|
Worker::callWorker();
|
2016-11-26 19:55:05 -05:00
|
|
|
|
2017-11-05 05:33:46 -05:00
|
|
|
Worker::unclaimProcess();
|
2017-05-30 09:20:29 -04:00
|
|
|
|
2018-01-15 19:08:28 -05:00
|
|
|
Worker::endProcess();
|
2016-11-26 19:55:05 -05:00
|
|
|
|
2018-10-29 17:20:46 -04:00
|
|
|
Logger::log("Front end worker ended: ".getmypid());
|
2016-11-26 19:55:05 -05:00
|
|
|
|
2018-12-26 00:40:12 -05:00
|
|
|
exit();
|
2016-11-26 19:55:05 -05:00
|
|
|
}
|