friendica/mod/worker.php

66 lines
1.5 KiB
PHP
Raw Normal View History

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