4 * @copyright Copyright (C) 2020, Friendica
6 * @license GNU AGPL version 3 or any later version
8 * This program is free software: you can redistribute it and/or modify
9 * it under the terms of the GNU Affero General Public License as
10 * published by the Free Software Foundation, either version 3 of the
11 * License, or (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU Affero General Public License for more details.
18 * You should have received a copy of the GNU Affero General Public License
19 * along with this program. If not, see <https://www.gnu.org/licenses/>.
21 * Run the worker from a daemon.
23 * This script was taken from http://php.net/manual/en/function.pcntl-fork.php
27 use Friendica\Core\Logger;
28 use Friendica\Core\Worker;
29 use Friendica\Database\DBA;
31 use Psr\Log\LoggerInterface;
35 $longopts = ['foreground'];
36 $options = getopt($shortopts, $longopts);
38 // Ensure that daemon.php is executed from the base path of the installation
39 if (!file_exists("boot.php") && (sizeof($_SERVER["argv"]) != 0)) {
40 $directory = dirname($_SERVER["argv"][0]);
42 if (substr($directory, 0, 1) != "/") {
43 $directory = $_SERVER["PWD"] . "/" . $directory;
45 $directory = realpath($directory . "/..");
50 require dirname(__DIR__) . '/vendor/autoload.php';
52 $dice = (new Dice())->addRules(include __DIR__ . '/../static/dependencies.config.php');
53 $dice = $dice->addRule(LoggerInterface::class,['constructParams' => ['daemon']]);
58 if (DI::mode()->isInstall()) {
59 die("Friendica isn't properly installed yet.\n");
64 if (empty(DI::config()->get('system', 'pidfile'))) {
66 Please set system.pidfile in config/local.config.php. For example:
69 'pidfile' => '/path/to/daemon.pid',
75 $pidfile = DI::config()->get('system', 'pidfile');
77 if (in_array("start", $_SERVER["argv"])) {
81 if (in_array("stop", $_SERVER["argv"])) {
85 if (in_array("status", $_SERVER["argv"])) {
89 $foreground = array_key_exists('f', $options) || array_key_exists('foreground', $options);
92 die("Please use either 'start', 'stop' or 'status'.\n");
95 if (empty($_SERVER["argv"][0])) {
96 die("Unexpected script behaviour. This message should never occur.\n");
101 if (is_readable($pidfile)) {
102 $pid = intval(file_get_contents($pidfile));
105 if (empty($pid) && in_array($mode, ["stop", "status"])) {
106 DI::config()->set('system', 'worker_daemon_mode', false);
107 die("Pidfile wasn't found. Is the daemon running?\n");
110 if ($mode == "status") {
111 if (posix_kill($pid, 0)) {
112 die("Daemon process $pid is running.\n");
117 DI::config()->set('system', 'worker_daemon_mode', false);
118 die("Daemon process $pid isn't running.\n");
121 if ($mode == "stop") {
122 posix_kill($pid, SIGTERM);
126 Logger::notice("Worker daemon process was killed", ["pid" => $pid]);
128 DI::config()->set('system', 'worker_daemon_mode', false);
129 die("Worker daemon process $pid was killed.\n");
132 if (!empty($pid) && posix_kill($pid, 0)) {
133 die("Daemon process $pid is already running.\n");
136 Logger::notice('Starting worker daemon.', ["pid" => $pid]);
139 echo "Starting worker daemon.\n";
141 // Switch over to daemon mode.
142 if ($pid = pcntl_fork()) {
146 fclose(STDIN); // Close all of the standard
148 // Enabling this seem to block a running php process with 100% CPU usage when there is an outpout
149 // fclose(STDOUT); // file descriptors as we
150 // fclose(STDERR); // are running as a daemon.
154 register_shutdown_function('shutdown');
156 if (posix_setsid() < 0) {
160 if ($pid = pcntl_fork()) {
165 file_put_contents($pidfile, $pid);
167 // We lose the database connection upon forking
171 DI::config()->set('system', 'worker_daemon_mode', true);
173 // Just to be sure that this script really runs endlessly
176 $wait_interval = intval(DI::config()->get('system', 'cron_interval', 5)) * 60;
181 // Now running as a daemon.
183 if (!$do_cron && ($last_cron + $wait_interval) < time()) {
184 Logger::info('Forcing cron worker call.', ["pid" => $pid]);
188 Worker::spawnWorker($do_cron);
191 // We force a reconnect of the database connection.
192 // This is done to ensure that the connection don't get lost over time.
198 Logger::info("Sleeping", ["pid" => $pid]);
201 $seconds = (time() - $start);
203 // logarithmic wait time calculation.
204 // Background: After jobs had been started, they often fork many workers.
205 // To not waste too much time, the sleep period increases.
206 $arg = (($seconds + 1) / ($wait_interval / 9)) + 1;
207 $sleep = round(log10($arg) * 1000000, 0);
210 $timeout = ($seconds >= $wait_interval);
211 } while (!$timeout && !Worker::IPCJobsExists());
215 Logger::info("Woke up after $wait_interval seconds.", ["pid" => $pid, 'sleep' => $wait_interval]);
218 Logger::info("Worker jobs are calling to be forked.", ["pid" => $pid]);
222 function shutdown() {
223 posix_kill(posix_getpid(), SIGHUP);