]> git.wh0rd.org - tt-rss.git/blame - update_daemon2.php
update_daemon: mask phpmd stuff
[tt-rss.git] / update_daemon2.php
CommitLineData
bf0bedcb 1#!/usr/bin/env php
02008cb1 2<?php
88e8fb3a
AD
3 set_include_path(dirname(__FILE__) ."/include" . PATH_SEPARATOR .
4 get_include_path());
ffa7cbae 5
02008cb1 6 declare(ticks = 1);
9b27cec8 7 chdir(dirname(__FILE__));
02008cb1 8
ffa7cbae 9 define('DISABLE_SESSIONS', true);
02008cb1 10
ffa7cbae 11 require_once "version.php";
404e2e36 12 require_once "autoload.php";
9765e8b9 13 require_once "functions.php";
bd8ae98b 14 require_once "config.php";
8cabc200 15 require_once "rssfuncs.php";
0e6bdaef
AD
16
17 // defaults
18 define_default('PURGE_INTERVAL', 3600); // seconds
f90728cd 19 define_default('MAX_CHILD_RUNTIME', 1800); // seconds
0e6bdaef
AD
20 define_default('MAX_JOBS', 2);
21 define_default('SPAWN_INTERVAL', DAEMON_SLEEP_INTERVAL); // seconds
0e6bdaef 22
ffa7cbae 23 require_once "sanity_check.php";
5893edd5
AD
24 require_once "db.php";
25 require_once "db-prefs.php";
ffa7cbae 26
16956646
AD
27 if (!function_exists('pcntl_fork')) {
28 die("error: This script requires PHP compiled with PCNTL module.\n");
29 }
30
45ce1610
AD
31 $options = getopt("");
32
6f61ba46
AD
33 if (!is_array($options)) {
34 die("error: getopt() failed. ".
35 "Most probably you are using PHP CGI to run this script ".
36 "instead of required PHP CLI. Check tt-rss wiki page on updating feeds for ".
37 "additional information.\n");
38 }
39
45ce1610 40
0f906745
AD
41 $master_handlers_installed = false;
42
e9338405 43 $children = array();
c90a028c 44 $ctimes = array();
e9338405 45
02008cb1
AD
46 $last_checkpoint = -1;
47
e552bb0b
AD
48 /**
49 * @SuppressWarnings(unused)
50 */
5a613536 51 function reap_children() {
e9338405 52 global $children;
51ddf0f8 53 global $ctimes;
e9338405
AD
54
55 $tmp = array();
56
57 foreach ($children as $pid) {
58 if (pcntl_waitpid($pid, $status, WNOHANG) != $pid) {
7aabaa09
AD
59
60 if (file_is_locked("update_daemon-$pid.lock")) {
8ccaff02
AD
61 array_push($tmp, $pid);
62 } else {
63 _debug("[reap_children] child $pid seems active but lockfile is unlocked.");
125ab8db
AD
64 unset($ctimes[$pid]);
65
8ccaff02 66 }
e9338405 67 } else {
8ccaff02 68 _debug("[reap_children] child $pid reaped.");
c90a028c 69 unset($ctimes[$pid]);
e9338405
AD
70 }
71 }
72
73 $children = $tmp;
74
5a613536
AD
75 return count($tmp);
76 }
77
c90a028c
AD
78 function check_ctimes() {
79 global $ctimes;
dbaa4e4a 80
c90a028c
AD
81 foreach (array_keys($ctimes) as $pid) {
82 $started = $ctimes[$pid];
83
84 if (time() - $started > MAX_CHILD_RUNTIME) {
85 _debug("[MASTER] child process $pid seems to be stuck, aborting...");
0618b81c 86 posix_kill($pid, SIGKILL);
c90a028c
AD
87 }
88 }
5a613536
AD
89 }
90
e552bb0b
AD
91 /**
92 * @SuppressWarnings(unused)
93 */
5a613536
AD
94 function sigchld_handler($signal) {
95 $running_jobs = reap_children();
e9338405
AD
96
97 _debug("[SIGCHLD] jobs left: $running_jobs");
5a613536 98
02008cb1
AD
99 pcntl_waitpid(-1, $status, WNOHANG);
100 }
101
0f906745
AD
102 function shutdown($caller_pid) {
103 if ($caller_pid == posix_getpid()) {
104 if (file_exists(LOCK_DIRECTORY . "/update_daemon.lock")) {
105 _debug("removing lockfile (master)...");
106 unlink(LOCK_DIRECTORY . "/update_daemon.lock");
107 }
108 }
109 }
110
111 function task_shutdown() {
112 $pid = posix_getpid();
113
114 if (file_exists(LOCK_DIRECTORY . "/update_daemon-$pid.lock")) {
115 _debug("removing lockfile ($pid)...");
116 unlink(LOCK_DIRECTORY . "/update_daemon-$pid.lock");
117 }
118 }
119
120 function sigint_handler() {
121 _debug("[MASTER] SIG_INT received.\n");
122 shutdown(posix_getpid());
123 die;
124 }
125
126 function task_sigint_handler() {
127 _debug("[TASK] SIG_INT received.\n");
128 task_shutdown();
129 die;
130 }
131
02008cb1 132 pcntl_signal(SIGCHLD, 'sigchld_handler');
6a69e61f 133
dc24b520
AD
134 $longopts = array("log:",
135 "tasks:",
ec25336d 136 "interval:",
db985423 137 "quiet",
dc24b520
AD
138 "help");
139
140 $options = getopt("", $longopts);
141
142 if (isset($options["help"]) ) {
143 print "Tiny Tiny RSS update daemon.\n\n";
144 print "Options:\n";
145 print " --log FILE - log messages to FILE\n";
146 print " --tasks N - amount of update tasks to spawn\n";
147 print " default: " . MAX_JOBS . "\n";
148 print " --interval N - task spawn interval\n";
149 print " default: " . SPAWN_INTERVAL . " seconds.\n";
150 print " --quiet - don't output messages to stdout\n";
151 return;
152 }
153
154 define('QUIET', isset($options['quiet']));
155
156 if (isset($options["tasks"])) {
157 _debug("Set to spawn " . $options["tasks"] . " children.");
ec25336d 158 $max_jobs = $options["tasks"];
dc24b520
AD
159 } else {
160 $max_jobs = MAX_JOBS;
161 }
162
163 if (isset($options["interval"])) {
164 _debug("Spawn interval: " . $options["interval"] . " seconds.");
ec25336d 165 $spawn_interval = $options["interval"];
dc24b520
AD
166 } else {
167 $spawn_interval = SPAWN_INTERVAL;
168 }
169
170 if (isset($options["log"])) {
171 _debug("Logging to " . $options["log"]);
172 define('LOGFILE', $options["log"]);
173 }
174
884c0a36
AD
175 if (file_is_locked("update_daemon.lock")) {
176 die("error: Can't create lockfile. ".
6a69e61f
AD
177 "Maybe another daemon is already running.\n");
178 }
02008cb1 179
1a43a68c
AD
180 // Try to lock a file in order to avoid concurrent update.
181 $lock_handle = make_lockfile("update_daemon.lock");
182
183 if (!$lock_handle) {
184 die("error: Can't create lockfile. ".
185 "Maybe another daemon is already running.\n");
186 }
187
6322ac79 188 $schema_version = get_schema_version();
4c2da349 189
857efe49
AD
190 if ($schema_version != SCHEMA_VERSION) {
191 die("Schema version is wrong, please upgrade the database.\n");
192 }
193
e2cf81e2
AD
194 // Protip: children close shared database handle when terminating, it's a bad idea to
195 // do database stuff on main process from now on.
196
02008cb1
AD
197 while (true) {
198
45004d43 199 // Since sleep is interupted by SIGCHLD, we need another way to
dc24b520
AD
200 // respect the spawn interval
201 $next_spawn = $last_checkpoint + $spawn_interval - time();
02008cb1 202
61aa7499 203 if ($next_spawn % 60 == 0) {
e9338405
AD
204 $running_jobs = count($children);
205 _debug("[MASTER] active jobs: $running_jobs, next spawn at $next_spawn sec.");
ce1aa9b7 206 }
02008cb1 207
dc24b520 208 if ($last_checkpoint + $spawn_interval < time()) {
c90a028c 209 check_ctimes();
5a613536
AD
210 reap_children();
211
dc24b520 212 for ($j = count($children); $j < $max_jobs; $j++) {
02008cb1
AD
213 $pid = pcntl_fork();
214 if ($pid == -1) {
215 die("fork failed!\n");
216 } else if ($pid) {
0f906745
AD
217
218 if (!$master_handlers_installed) {
219 _debug("[MASTER] installing shutdown handlers");
220 pcntl_signal(SIGINT, 'sigint_handler');
221 pcntl_signal(SIGTERM, 'sigint_handler');
222 register_shutdown_function('shutdown', posix_getpid());
223 $master_handlers_installed = true;
224 }
225
e9338405
AD
226 _debug("[MASTER] spawned client $j [PID:$pid]...");
227 array_push($children, $pid);
c90a028c 228 $ctimes[$pid] = time();
02008cb1
AD
229 } else {
230 pcntl_signal(SIGCHLD, SIG_IGN);
0f906745
AD
231 pcntl_signal(SIGINT, 'task_sigint_handler');
232
233 register_shutdown_function('task_shutdown');
8ccaff02 234
7440a7fe 235 $quiet = (isset($options["quiet"])) ? "--quiet" : "";
a33558a6 236 $log = function_exists("flock") && isset($options['log']) ? '--log '.$options['log'] : '';
8292d05b 237
7440a7fe 238 $my_pid = posix_getpid();
dbaa4e4a 239
a33558a6 240 passthru(PHP_EXECUTABLE . " update.php --daemon-loop $quiet $log --task $j --pidlock $my_pid");
a26f0c17 241
ffa7cbae 242 sleep(1);
8ccaff02 243
ffa7cbae 244 // We exit in order to avoid fork bombing.
02008cb1
AD
245 exit(0);
246 }
247 }
248 $last_checkpoint = time();
249 }
250 sleep(1);
251 }
252
253?>