]> git.wh0rd.org - tt-rss.git/blame - update_daemon2.php
daemon2: unbreak spawn interval
[tt-rss.git] / update_daemon2.php
CommitLineData
02008cb1
AD
1#!/usr/bin/php
2<?php
ffa7cbae
AD
3 // This is an experimental multiprocess update daemon.
4 // Some configurable variable may be found below.
5
6 // define('DEFAULT_ERROR_LEVEL', E_ALL);
7 define('DEFAULT_ERROR_LEVEL', E_ERROR | E_WARNING | E_PARSE);
02008cb1
AD
8
9 declare(ticks = 1);
10
ffa7cbae 11 define('DISABLE_SESSIONS', true);
02008cb1 12
ffa7cbae
AD
13 require_once "version.php";
14
010c16f1 15 if (strpos(VERSION, ".99") !== false || getenv('DAEMON_XDEBUG')) {
ffa7cbae
AD
16 define('DAEMON_EXTENDED_DEBUG', true);
17 }
18
19 define('PURGE_INTERVAL', 3600); // seconds
c90a028c 20 define('MAX_CHILD_RUNTIME', 600); // seconds
ffa7cbae
AD
21
22 require_once "sanity_check.php";
23 require_once "config.php";
24
98f70418 25 define('MAX_JOBS', 2);
02008cb1 26 define('SPAWN_INTERVAL', DAEMON_SLEEP_INTERVAL);
ffa7cbae 27
16956646
AD
28 if (!function_exists('pcntl_fork')) {
29 die("error: This script requires PHP compiled with PCNTL module.\n");
30 }
31
ffa7cbae 32 if (!ENABLE_UPDATE_DAEMON) {
16956646 33 die("error: Please enable option ENABLE_UPDATE_DAEMON in config.php\n");
ffa7cbae
AD
34 }
35
36 require_once "db.php";
37 require_once "db-prefs.php";
38 require_once "functions.php";
816cdfb7 39 require_once "lib/magpierss/rss_fetch.inc";
ffa7cbae
AD
40
41 error_reporting(DEFAULT_ERROR_LEVEL);
02008cb1 42
e9338405 43 $children = array();
c90a028c 44 $ctimes = array();
e9338405 45
02008cb1
AD
46 $last_checkpoint = -1;
47
5a613536 48 function reap_children() {
e9338405
AD
49 global $children;
50
51 $tmp = array();
52
53 foreach ($children as $pid) {
54 if (pcntl_waitpid($pid, $status, WNOHANG) != $pid) {
55 array_push($tmp, $pid);
56 } else {
57 _debug("[SIGCHLD] child $pid reaped.");
c90a028c 58 unset($ctimes[$pid]);
e9338405
AD
59 }
60 }
61
62 $children = $tmp;
63
5a613536
AD
64 return count($tmp);
65 }
66
c90a028c
AD
67 function check_ctimes() {
68 global $ctimes;
69
70 foreach (array_keys($ctimes) as $pid) {
71 $started = $ctimes[$pid];
72
73 if (time() - $started > MAX_CHILD_RUNTIME) {
74 _debug("[MASTER] child process $pid seems to be stuck, aborting...");
75 posix_kill($pid, SIGINT);
76 }
77 }
5a613536
AD
78 }
79
80 function sigchld_handler($signal) {
81 $running_jobs = reap_children();
e9338405
AD
82
83 _debug("[SIGCHLD] jobs left: $running_jobs");
5a613536 84
02008cb1
AD
85 pcntl_waitpid(-1, $status, WNOHANG);
86 }
87
6a69e61f
AD
88 function sigint_handler() {
89 unlink(LOCK_DIRECTORY . "/update_daemon.lock");
a65a05a7 90 die("[SIGINT] removing lockfile and exiting.\n");
6a69e61f
AD
91 }
92
02008cb1 93 pcntl_signal(SIGCHLD, 'sigchld_handler');
6a69e61f 94
884c0a36
AD
95 if (file_is_locked("update_daemon.lock")) {
96 die("error: Can't create lockfile. ".
6a69e61f
AD
97 "Maybe another daemon is already running.\n");
98 }
02008cb1 99
884c0a36 100 if (!pcntl_fork()) {
0d6a7147
AD
101 pcntl_signal(SIGINT, 'sigint_handler');
102
45004d43 103 // Try to lock a file in order to avoid concurrent update.
884c0a36
AD
104 $lock_handle = make_lockfile("update_daemon.lock");
105
106 if (!$lock_handle) {
107 die("error: Can't create lockfile. ".
108 "Maybe another daemon is already running.\n");
109 }
110
111 while (true) { sleep(100); }
112 }
113
ffa7cbae
AD
114 // Testing database connection.
115 // It is unnecessary to start the fork loop if database is not ok.
116 $link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME);
117
118 if (!$link) {
119 if (DB_TYPE == "mysql") {
120 print mysql_error();
121 }
122 // PG seems to display its own errors just fine by default.
123 return;
124 }
125
126 db_close($link);
127
02008cb1
AD
128 while (true) {
129
45004d43
AD
130 // Since sleep is interupted by SIGCHLD, we need another way to
131 // respect the SPAWN_INTERVAL
02008cb1
AD
132 $next_spawn = $last_checkpoint + SPAWN_INTERVAL - time();
133
ce1aa9b7 134 if ($next_spawn % 10 == 0) {
e9338405
AD
135 $running_jobs = count($children);
136 _debug("[MASTER] active jobs: $running_jobs, next spawn at $next_spawn sec.");
ce1aa9b7 137 }
02008cb1
AD
138
139 if ($last_checkpoint + SPAWN_INTERVAL < time()) {
140
c90a028c 141 check_ctimes();
5a613536
AD
142 reap_children();
143
e9338405 144 for ($j = count($children); $j < MAX_JOBS; $j++) {
02008cb1
AD
145 $pid = pcntl_fork();
146 if ($pid == -1) {
147 die("fork failed!\n");
148 } else if ($pid) {
e9338405
AD
149 _debug("[MASTER] spawned client $j [PID:$pid]...");
150 array_push($children, $pid);
c90a028c 151 $ctimes[$pid] = time();
02008cb1
AD
152 } else {
153 pcntl_signal(SIGCHLD, SIG_IGN);
6a69e61f 154 pcntl_signal(SIGINT, SIG_DFL);
ffa7cbae
AD
155
156 // ****** Updating RSS code *******
157 // Only run in fork process.
158
159 $start_timestamp = time();
160
161 $link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME);
162
163 if (!$link) {
164 if (DB_TYPE == "mysql") {
165 print mysql_error();
166 }
167 // PG seems to display its own errors just fine by default.
168 return;
169 }
170
f29ba148 171 init_connection($link);
ffa7cbae
AD
172
173 // We disable stamp file, since it is of no use in a multiprocess update.
174 // not really, tho for the time being -fox
175 if (!make_stampfile('update_daemon.stamp')) {
176 print "warning: unable to create stampfile";
177 }
178
ffa7cbae
AD
179 // FIXME : $last_purge is of no use in a multiprocess update.
180 // FIXME : We ALWAYS purge old posts.
3907ef71
AD
181 //_debug("Purging old posts (random 30 feeds)...");
182 //global_purge_old_posts($link, true, 30);
ffa7cbae 183
e3b54693
AD
184 // Call to the feed batch update function
185 // or regenerate feedbrowser cache
186
187 if (rand(0,100) > 50) {
188 update_daemon_common($link);
189 } else {
190 $count = update_feedbrowser_cache($link);
191 _debug("Finished, $count feeds processed.");
192 }
ffa7cbae 193
0d6a7147 194 _debug("Elapsed time: " . (time() - $start_timestamp) . " second(s)");
abfa57fd 195
ffa7cbae
AD
196 db_close($link);
197
198 // We are in a fork.
199 // We wait a little before exiting to avoid to be faster than our parent process.
200 sleep(1);
201 // We exit in order to avoid fork bombing.
02008cb1
AD
202 exit(0);
203 }
0d6a7147
AD
204
205 // We wait a little time before the next fork, in order to let the first fork
206 // mark the feeds it update :
207 sleep(1);
02008cb1
AD
208 }
209 $last_checkpoint = time();
210 }
211 sleep(1);
212 }
213
214?>