2017-12-14 17:38:51 +01:00
|
|
|
#!/usr/bin/env php
|
2016-11-27 21:57:18 +01:00
|
|
|
<?php
|
2016-11-27 23:52:21 +01:00
|
|
|
/**
|
2018-03-19 04:24:09 +01:00
|
|
|
* @file bin/daemon.php
|
2017-11-19 23:00:43 +01:00
|
|
|
* @brief Run the worker from a daemon.
|
2016-11-27 23:52:21 +01:00
|
|
|
*
|
|
|
|
* This script was taken from http://php.net/manual/en/function.pcntl-fork.php
|
|
|
|
*/
|
2018-06-02 00:09:27 +02:00
|
|
|
|
|
|
|
use Friendica\App;
|
|
|
|
use Friendica\BaseObject;
|
|
|
|
use Friendica\Core\Config;
|
|
|
|
use Friendica\Core\Worker;
|
|
|
|
|
|
|
|
// Ensure that daemon.php is executed from the base path of the installation
|
|
|
|
if (!file_exists("boot.php") && (sizeof($_SERVER["argv"]) != 0)) {
|
|
|
|
$directory = dirname($_SERVER["argv"][0]);
|
|
|
|
|
|
|
|
if (substr($directory, 0, 1) != "/") {
|
|
|
|
$directory = $_SERVER["PWD"]."/".$directory;
|
|
|
|
}
|
|
|
|
$directory = realpath($directory."/..");
|
|
|
|
|
|
|
|
chdir($directory);
|
|
|
|
}
|
|
|
|
|
|
|
|
require_once "boot.php";
|
|
|
|
require_once "include/dba.php";
|
|
|
|
|
|
|
|
$a = new App(dirname(__DIR__));
|
|
|
|
BaseObject::setApp($a);
|
|
|
|
|
|
|
|
require_once ".htconfig.php";
|
|
|
|
dba::connect($db_host, $db_user, $db_pass, $db_data);
|
|
|
|
|
|
|
|
Config::load();
|
|
|
|
|
|
|
|
if (!isset($pidfile)) {
|
|
|
|
die('Please specify a pid file in the variable $pidfile in the .htconfig.php. For example:'."\n".
|
|
|
|
'$pidfile = "/path/to/daemon.pid";'."\n");
|
2016-11-27 21:57:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (in_array("start", $_SERVER["argv"])) {
|
|
|
|
$mode = "start";
|
|
|
|
}
|
|
|
|
|
|
|
|
if (in_array("stop", $_SERVER["argv"])) {
|
|
|
|
$mode = "stop";
|
|
|
|
}
|
|
|
|
|
|
|
|
if (in_array("status", $_SERVER["argv"])) {
|
|
|
|
$mode = "status";
|
|
|
|
}
|
|
|
|
|
2018-06-15 20:18:20 +02:00
|
|
|
$foreground = in_array("--foreground", $_SERVER["argv"]);
|
|
|
|
|
2016-11-27 21:57:18 +01:00
|
|
|
if (!isset($mode)) {
|
|
|
|
die("Please use either 'start', 'stop' or 'status'.\n");
|
|
|
|
}
|
|
|
|
|
2017-12-14 17:38:51 +01:00
|
|
|
if (empty($_SERVER["argv"][0])) {
|
|
|
|
die("Unexpected script behaviour. This message should never occur.\n");
|
|
|
|
}
|
|
|
|
|
2018-06-02 00:09:27 +02:00
|
|
|
$pid = @file_get_contents($pidfile);
|
2017-12-14 17:38:51 +01:00
|
|
|
|
2018-06-02 00:09:27 +02:00
|
|
|
if (empty($pid) && in_array($mode, ["stop", "status"])) {
|
|
|
|
Config::set('system', 'worker_daemon_mode', false);
|
|
|
|
die("Pidfile wasn't found. Is the daemon running?\n");
|
2016-11-27 21:57:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if ($mode == "status") {
|
|
|
|
if (posix_kill($pid, 0)) {
|
|
|
|
die("Daemon process $pid is running.\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
unlink($pidfile);
|
|
|
|
|
2018-06-02 00:09:27 +02:00
|
|
|
Config::set('system', 'worker_daemon_mode', false);
|
2016-11-27 21:57:18 +01:00
|
|
|
die("Daemon process $pid isn't running.\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($mode == "stop") {
|
|
|
|
posix_kill($pid, SIGTERM);
|
|
|
|
|
|
|
|
unlink($pidfile);
|
|
|
|
|
2018-06-02 00:09:27 +02:00
|
|
|
logger("Worker daemon process $pid was killed.", LOGGER_DEBUG);
|
|
|
|
|
|
|
|
Config::set('system', 'worker_daemon_mode', false);
|
2016-11-27 21:57:18 +01:00
|
|
|
die("Worker daemon process $pid was killed.\n");
|
|
|
|
}
|
|
|
|
|
2018-06-02 00:09:27 +02:00
|
|
|
if (!empty($pid) && posix_kill($pid, 0)) {
|
|
|
|
die("Daemon process $pid is already running.\n");
|
2016-11-27 21:57:18 +01:00
|
|
|
}
|
|
|
|
|
2018-06-02 00:09:27 +02:00
|
|
|
logger('Starting worker daemon.', LOGGER_DEBUG);
|
|
|
|
|
2018-06-15 20:18:20 +02:00
|
|
|
if (!$foreground) {
|
|
|
|
echo "Starting worker daemon.\n";
|
2016-11-27 21:57:18 +01:00
|
|
|
|
2018-06-15 20:18:20 +02:00
|
|
|
// Switch over to daemon mode.
|
|
|
|
if ($pid = pcntl_fork()) {
|
|
|
|
return; // Parent
|
|
|
|
}
|
2016-11-27 21:57:18 +01:00
|
|
|
|
2018-06-15 20:18:20 +02:00
|
|
|
fclose(STDIN); // Close all of the standard
|
|
|
|
fclose(STDOUT); // file descriptors as we
|
|
|
|
fclose(STDERR); // are running as a daemon.
|
2018-06-11 00:04:09 +02:00
|
|
|
|
2018-06-15 20:18:20 +02:00
|
|
|
dba::disconnect();
|
2016-11-27 21:57:18 +01:00
|
|
|
|
2018-06-15 20:18:20 +02:00
|
|
|
register_shutdown_function('shutdown');
|
2016-11-27 21:57:18 +01:00
|
|
|
|
2018-06-15 20:18:20 +02:00
|
|
|
if (posix_setsid() < 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($pid = pcntl_fork()) {
|
|
|
|
return; // Parent
|
|
|
|
}
|
|
|
|
|
|
|
|
$pid = getmypid();
|
|
|
|
file_put_contents($pidfile, $pid);
|
|
|
|
|
|
|
|
// We lose the database connection upon forking
|
|
|
|
dba::connect($db_host, $db_user, $db_pass, $db_data);
|
2018-06-11 00:04:09 +02:00
|
|
|
}
|
2016-11-27 21:57:18 +01:00
|
|
|
|
2018-06-11 05:45:45 +02:00
|
|
|
unset($db_host, $db_user, $db_pass, $db_data);
|
2016-11-28 00:58:26 +01:00
|
|
|
|
2018-06-02 00:09:27 +02:00
|
|
|
Config::set('system', 'worker_daemon_mode', true);
|
2016-11-27 21:57:18 +01:00
|
|
|
|
2018-06-02 00:09:27 +02:00
|
|
|
// Just to be sure that this script really runs endlessly
|
|
|
|
set_time_limit(0);
|
2017-12-14 17:38:51 +01:00
|
|
|
|
2018-06-02 00:09:27 +02:00
|
|
|
$wait_interval = intval(Config::get('system', 'cron_interval', 5)) * 60;
|
2017-12-14 17:38:51 +01:00
|
|
|
|
2018-06-06 05:48:04 +02:00
|
|
|
$do_cron = true;
|
2018-06-06 07:26:22 +02:00
|
|
|
$last_cron = 0;
|
2018-06-06 05:48:04 +02:00
|
|
|
|
2018-06-02 00:09:27 +02:00
|
|
|
// Now running as a daemon.
|
|
|
|
while (true) {
|
2018-06-06 07:26:22 +02:00
|
|
|
if (!$do_cron && ($last_cron + $wait_interval) < time()) {
|
2018-06-06 07:32:06 +02:00
|
|
|
logger('Forcing cron worker call.', LOGGER_DEBUG);
|
2018-06-06 07:26:22 +02:00
|
|
|
$do_cron = true;
|
|
|
|
}
|
|
|
|
|
2018-06-06 05:48:04 +02:00
|
|
|
Worker::spawnWorker($do_cron);
|
2018-06-02 00:09:27 +02:00
|
|
|
|
2018-06-06 07:26:22 +02:00
|
|
|
if ($do_cron) {
|
2018-06-11 05:45:45 +02:00
|
|
|
// We force a reconnect of the database connection.
|
2018-06-11 00:04:09 +02:00
|
|
|
// This is done to ensure that the connection don't get lost over time.
|
2018-06-11 05:45:45 +02:00
|
|
|
dba::reconnect();
|
2018-06-11 00:04:09 +02:00
|
|
|
|
2018-06-06 07:26:22 +02:00
|
|
|
$last_cron = time();
|
|
|
|
}
|
|
|
|
|
2018-06-06 05:48:04 +02:00
|
|
|
logger("Sleeping", LOGGER_DEBUG);
|
2018-06-15 20:18:20 +02:00
|
|
|
$start = time();
|
2018-06-02 00:09:27 +02:00
|
|
|
do {
|
2018-06-15 20:18:20 +02:00
|
|
|
$seconds = (time() - $start);
|
|
|
|
|
|
|
|
// logarithmic wait time calculation.
|
|
|
|
// Background: After jobs had been started, they often fork many workers.
|
|
|
|
// To not waste too much time, the sleep period increases.
|
|
|
|
$arg = (($seconds + 1) / ($wait_interval / 9)) + 1;
|
|
|
|
$sleep = round(log10($arg) * 1000000, 0);
|
|
|
|
usleep($sleep);
|
|
|
|
|
|
|
|
$timeout = ($seconds >= $wait_interval);
|
|
|
|
} while (!$timeout && !Worker::IPCJobsExists());
|
2018-06-06 05:48:04 +02:00
|
|
|
|
2018-06-15 20:18:20 +02:00
|
|
|
if ($timeout) {
|
2018-06-06 05:48:04 +02:00
|
|
|
$do_cron = true;
|
|
|
|
logger("Woke up after $wait_interval seconds.", LOGGER_DEBUG);
|
|
|
|
} else {
|
|
|
|
$do_cron = false;
|
|
|
|
logger("Worker jobs are calling to be forked.", LOGGER_DEBUG);
|
|
|
|
}
|
2018-06-02 00:09:27 +02:00
|
|
|
}
|
2016-11-27 21:57:18 +01:00
|
|
|
|
2018-06-02 00:09:27 +02:00
|
|
|
function shutdown() {
|
|
|
|
posix_kill(posix_getpid(), SIGHUP);
|
2016-11-27 21:57:18 +01:00
|
|
|
}
|