2016-11-27 01:55:05 +01:00
|
|
|
<?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
|
|
|
*/
|
2016-11-27 01:55:05 +01:00
|
|
|
|
2017-11-05 11:33:46 +01:00
|
|
|
use Friendica\Core\Worker;
|
2017-04-30 06:29:14 +02:00
|
|
|
use Friendica\Core\Config;
|
|
|
|
use Friendica\Core\PConfig;
|
2016-11-27 01:55:05 +01:00
|
|
|
|
|
|
|
function worker_init($a){
|
|
|
|
|
2017-02-27 00:16:49 +01:00
|
|
|
if (!Config::get("system", "frontend_worker")) {
|
2016-11-27 01:55:05 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
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.
|
2016-11-29 23:40:19 +01:00
|
|
|
if (function_exists("proc_open")) {
|
2017-11-05 11:33:46 +01:00
|
|
|
Worker::executeIfIdle();
|
2016-11-29 23:40:19 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-11-05 11:33:46 +01:00
|
|
|
Worker::clearProcesses();
|
2016-11-27 01:55:05 +01:00
|
|
|
|
|
|
|
$workers = q("SELECT COUNT(*) AS `processes` FROM `process` WHERE `command` = 'worker.php'");
|
|
|
|
|
|
|
|
if ($workers[0]["processes"] > Config::get("system", "worker_queues", 4)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$a->start_process();
|
|
|
|
|
|
|
|
logger("Front end worker started: ".getmypid());
|
|
|
|
|
2017-11-05 11:33:46 +01:00
|
|
|
Worker::callWorker();
|
2016-11-27 01:55:05 +01:00
|
|
|
|
2017-11-05 11:33:46 +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);
|
|
|
|
|
2017-05-30 15:20:29 +02:00
|
|
|
if (poller_claim_process($r[0])) {
|
2017-11-05 11:33:46 +01:00
|
|
|
Worker::execute($r[0]);
|
2017-05-30 15:20:29 +02:00
|
|
|
}
|
2016-11-27 01:55:05 +01:00
|
|
|
}
|
|
|
|
|
2017-11-05 11:33:46 +01:00
|
|
|
Worker::callWorker();
|
2016-11-27 01:55:05 +01:00
|
|
|
|
2017-11-05 11:33:46 +01:00
|
|
|
Worker::unclaimProcess();
|
2017-05-30 15:20:29 +02:00
|
|
|
|
2016-11-27 01:55:05 +01:00
|
|
|
$a->end_process();
|
|
|
|
|
|
|
|
logger("Front end worker ended: ".getmypid());
|
|
|
|
|
|
|
|
killme();
|
|
|
|
}
|