]> git.mxchange.org Git - friendica.git/blob - bin/daemon.php
Remove class \dba from include/dba
[friendica.git] / bin / daemon.php
1 #!/usr/bin/env php
2 <?php
3 /**
4  * @file bin/daemon.php
5  * @brief Run the worker from a daemon.
6  *
7  * This script was taken from http://php.net/manual/en/function.pcntl-fork.php
8  */
9
10 use Friendica\App;
11 use Friendica\Core\Config;
12 use Friendica\Core\Worker;
13 use Friendica\Database\dba;
14
15 // Ensure that daemon.php is executed from the base path of the installation
16 if (!file_exists("boot.php") && (sizeof($_SERVER["argv"]) != 0)) {
17         $directory = dirname($_SERVER["argv"][0]);
18
19         if (substr($directory, 0, 1) != "/") {
20                 $directory = $_SERVER["PWD"]."/".$directory;
21         }
22         $directory = realpath($directory."/..");
23
24         chdir($directory);
25 }
26
27 require_once "boot.php";
28 require_once "include/dba.php";
29
30 $a = new App(dirname(__DIR__));
31
32 if ($a->isInstallMode()) {
33         die("Friendica isn't properly installed yet.\n");
34 }
35
36 Config::load();
37
38 if (empty(Config::get('system', 'pidfile'))) {
39         die('Please set system.pidfile in config/local.ini.php. For example:'."\n".
40                 '[system]'."\n".
41                 'pidfile = /path/to/daemon.pid'."\n");
42 }
43
44 $pidfile = Config::get('system', 'pidfile');
45
46 if (in_array("start", $_SERVER["argv"])) {
47         $mode = "start";
48 }
49
50 if (in_array("stop", $_SERVER["argv"])) {
51         $mode = "stop";
52 }
53
54 if (in_array("status", $_SERVER["argv"])) {
55         $mode = "status";
56 }
57
58 $foreground = in_array("--foreground", $_SERVER["argv"]);
59
60 if (!isset($mode)) {
61         die("Please use either 'start', 'stop' or 'status'.\n");
62 }
63
64 if (empty($_SERVER["argv"][0])) {
65         die("Unexpected script behaviour. This message should never occur.\n");
66 }
67
68 $pid = @file_get_contents($pidfile);
69
70 if (empty($pid) && in_array($mode, ["stop", "status"])) {
71         Config::set('system', 'worker_daemon_mode', false);
72         die("Pidfile wasn't found. Is the daemon running?\n");
73 }
74
75 if ($mode == "status") {
76         if (posix_kill($pid, 0)) {
77                 die("Daemon process $pid is running.\n");
78         }
79
80         unlink($pidfile);
81
82         Config::set('system', 'worker_daemon_mode', false);
83         die("Daemon process $pid isn't running.\n");
84 }
85
86 if ($mode == "stop") {
87         posix_kill($pid, SIGTERM);
88
89         unlink($pidfile);
90
91         logger("Worker daemon process $pid was killed.", LOGGER_DEBUG);
92
93         Config::set('system', 'worker_daemon_mode', false);
94         die("Worker daemon process $pid was killed.\n");
95 }
96
97 if (!empty($pid) && posix_kill($pid, 0)) {
98         die("Daemon process $pid is already running.\n");
99 }
100
101 logger('Starting worker daemon.', LOGGER_DEBUG);
102
103 if (!$foreground) {
104         echo "Starting worker daemon.\n";
105
106         // Switch over to daemon mode.
107         if ($pid = pcntl_fork()) {
108                 return;     // Parent
109         }
110
111         fclose(STDIN);  // Close all of the standard
112
113         // Enabling this seem to block a running php process with 100% CPU usage when there is an outpout
114         // fclose(STDOUT); // file descriptors as we
115         // fclose(STDERR); // are running as a daemon.
116
117         dba::disconnect();
118
119         register_shutdown_function('shutdown');
120
121         if (posix_setsid() < 0) {
122                 return;
123         }
124
125         if ($pid = pcntl_fork()) {
126                 return;     // Parent
127         }
128
129         $pid = getmypid();
130         file_put_contents($pidfile, $pid);
131
132         // We lose the database connection upon forking
133         $a->loadDatabase();
134 }
135
136 Config::set('system', 'worker_daemon_mode', true);
137
138 // Just to be sure that this script really runs endlessly
139 set_time_limit(0);
140
141 $wait_interval = intval(Config::get('system', 'cron_interval', 5)) * 60;
142
143 $do_cron = true;
144 $last_cron = 0;
145
146 // Now running as a daemon.
147 while (true) {
148         if (!$do_cron && ($last_cron + $wait_interval) < time()) {
149                 logger('Forcing cron worker call.', LOGGER_DEBUG);
150                 $do_cron = true;
151         }
152
153         Worker::spawnWorker($do_cron);
154
155         if ($do_cron) {
156                 // We force a reconnect of the database connection.
157                 // This is done to ensure that the connection don't get lost over time.
158                 dba::reconnect();
159
160                 $last_cron = time();
161         }
162
163         logger("Sleeping", LOGGER_DEBUG);
164         $start = time();
165         do {
166                 $seconds = (time() - $start);
167
168                 // logarithmic wait time calculation.
169                 // Background: After jobs had been started, they often fork many workers.
170                 // To not waste too much time, the sleep period increases.
171                 $arg = (($seconds + 1) / ($wait_interval / 9)) + 1;
172                 $sleep = round(log10($arg) * 1000000, 0);
173                 usleep($sleep);
174
175                 $timeout = ($seconds >= $wait_interval);
176         } while (!$timeout && !Worker::IPCJobsExists());
177
178         if ($timeout) {
179                 $do_cron = true;
180                 logger("Woke up after $wait_interval seconds.", LOGGER_DEBUG);
181         } else {
182                 $do_cron = false;
183                 logger("Worker jobs are calling to be forked.", LOGGER_DEBUG);
184         }
185 }
186
187 function shutdown() {
188         posix_kill(posix_getpid(), SIGHUP);
189 }