2016-11-27 00:55:05 +00:00
|
|
|
<?php
|
2016-11-27 09:02:08 +00:00
|
|
|
/**
|
|
|
|
* @file mod/worker.php
|
|
|
|
* @brief Module for running the poller as frontend process
|
|
|
|
*/
|
2016-11-27 00:55:05 +00:00
|
|
|
require_once("include/poller.php");
|
|
|
|
|
|
|
|
use \Friendica\Core\Config;
|
|
|
|
use \Friendica\Core\PConfig;
|
|
|
|
|
|
|
|
function worker_init($a){
|
|
|
|
|
2016-11-30 19:24:58 +00:00
|
|
|
if (!Config::get("system", "frontend_worker") OR !Config::get("system", "worker")) {
|
2016-11-27 00:55:05 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
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")) {
|
2016-12-01 20:53:18 +00:00
|
|
|
call_worker_if_idle();
|
2016-11-29 22:40:19 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-11-27 00:55:05 +00:00
|
|
|
clear_worker_processes();
|
|
|
|
|
|
|
|
$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());
|
|
|
|
|
|
|
|
call_worker();
|
|
|
|
|
|
|
|
if ($r = poller_worker_process()) {
|
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);
|
|
|
|
|
2016-11-27 00:55:05 +00:00
|
|
|
poller_execute($r[0]);
|
|
|
|
}
|
|
|
|
|
|
|
|
call_worker();
|
|
|
|
|
|
|
|
$a->end_process();
|
|
|
|
|
|
|
|
logger("Front end worker ended: ".getmypid());
|
|
|
|
|
|
|
|
killme();
|
|
|
|
}
|