]>
git.wh0rd.org - tt-rss.git/blob - update_daemon2.php
3 set_include_path(get_include_path() . PATH_SEPARATOR
.
4 dirname(__FILE__
) . "/include");
6 // This is an experimental multiprocess update daemon.
7 // Some configurable variable may be found below.
10 chdir(dirname(__FILE__
));
12 define('DISABLE_SESSIONS', true);
14 require_once "version.php";
16 if (strpos(VERSION
, ".99") !== false ||
getenv('DAEMON_XDEBUG')) {
17 define('DAEMON_EXTENDED_DEBUG', true);
20 define('PURGE_INTERVAL', 3600); // seconds
21 define('MAX_CHILD_RUNTIME', 600); // seconds
23 require_once "sanity_check.php";
24 require_once "config.php";
25 require_once "db.php";
26 require_once "db-prefs.php";
27 require_once "functions.php";
28 require_once "rssfuncs.php";
29 require_once "lib/magpierss/rss_fetch.inc";
31 define('MAX_JOBS', 2);
32 define('SPAWN_INTERVAL', DAEMON_SLEEP_INTERVAL
);
34 if (!function_exists('pcntl_fork')) {
35 die("error: This script requires PHP compiled with PCNTL module.\n");
41 $last_checkpoint = -1;
43 function reap_children() {
49 foreach ($children as $pid) {
50 if (pcntl_waitpid($pid, $status, WNOHANG
) != $pid) {
52 if (file_is_locked("update_daemon-$pid.lock")) {
53 array_push($tmp, $pid);
55 _debug("[reap_children] child $pid seems active but lockfile is unlocked.");
58 _debug("[reap_children] child $pid reaped.");
68 function check_ctimes() {
71 foreach (array_keys($ctimes) as $pid) {
72 $started = $ctimes[$pid];
74 if (time() - $started > MAX_CHILD_RUNTIME
) {
75 _debug("[MASTER] child process $pid seems to be stuck, aborting...");
76 posix_kill($pid, SIGKILL
);
81 function sigchld_handler($signal) {
82 $running_jobs = reap_children();
84 _debug("[SIGCHLD] jobs left: $running_jobs");
86 pcntl_waitpid(-1, $status, WNOHANG
);
90 if (file_exists(LOCK_DIRECTORY
. "/update_daemon.lock"))
91 unlink(LOCK_DIRECTORY
. "/update_daemon.lock");
94 function task_shutdown() {
95 $pid = posix_getpid();
97 if (file_exists(LOCK_DIRECTORY
. "/update_daemon-$pid.lock"))
98 unlink(LOCK_DIRECTORY
. "/update_daemon-$pid.lock");
101 function sigint_handler() {
103 die("[SIGINT] removing lockfile and exiting.\n");
106 function task_sigint_handler() {
108 die("[SIGINT] removing lockfile and exiting.\n");
111 pcntl_signal(SIGCHLD
, 'sigchld_handler');
113 if (file_is_locked("update_daemon.lock")) {
114 die("error: Can't create lockfile. ".
115 "Maybe another daemon is already running.\n");
119 pcntl_signal(SIGINT
, 'sigint_handler');
120 register_shutdown_function('shutdown');
122 // Try to lock a file in order to avoid concurrent update.
123 $lock_handle = make_lockfile("update_daemon.lock");
126 die("error: Can't create lockfile. ".
127 "Maybe another daemon is already running.\n");
130 while (true) { sleep(100); }
133 // Testing database connection.
134 // It is unnecessary to start the fork loop if database is not ok.
135 $link = db_connect(DB_HOST
, DB_USER
, DB_PASS
, DB_NAME
);
137 if (!init_connection($link)) return;
143 // Since sleep is interupted by SIGCHLD, we need another way to
144 // respect the SPAWN_INTERVAL
145 $next_spawn = $last_checkpoint + SPAWN_INTERVAL
- time();
147 if ($next_spawn %
10 == 0) {
148 $running_jobs = count($children);
149 _debug("[MASTER] active jobs: $running_jobs, next spawn at $next_spawn sec.");
152 if ($last_checkpoint + SPAWN_INTERVAL
< time()) {
157 for ($j = count($children); $j < MAX_JOBS
; $j++
) {
160 die("fork failed!\n");
162 _debug("[MASTER] spawned client $j [PID:$pid]...");
163 array_push($children, $pid);
164 $ctimes[$pid] = time();
166 pcntl_signal(SIGCHLD
, SIG_IGN
);
167 pcntl_signal(SIGINT
, 'task_sigint_handler');
169 register_shutdown_function('task_shutdown');
171 $my_pid = posix_getpid();
172 $lock_filename = "update_daemon-$my_pid.lock";
174 $lock_handle = make_lockfile($lock_filename);
177 die("error: Can't create lockfile ($lock_filename). ".
178 "Maybe another daemon is already running.\n");
181 // ****** Updating RSS code *******
182 // Only run in fork process.
184 $start_timestamp = time();
186 $link = db_connect(DB_HOST
, DB_USER
, DB_PASS
, DB_NAME
);
188 if (!init_connection($link)) return;
190 // We disable stamp file, since it is of no use in a multiprocess update.
191 // not really, tho for the time being -fox
192 if (!make_stampfile('update_daemon.stamp')) {
193 print "warning: unable to create stampfile";
196 // Call to the feed batch update function
197 // or regenerate feedbrowser cache
199 if (rand(0,100) > 30) {
200 update_daemon_common($link);
202 $count = update_feedbrowser_cache($link);
203 _debug("Feedbrowser updated, $count feeds processed.");
205 purge_orphans($link, true);
207 $rc = cleanup_tags($link, 14, 50000);
209 _debug("Cleaned $rc cached tags.");
211 _debug("Updating linked feeds...");
212 get_linked_feeds($link);
216 _debug("Elapsed time: " . (time() - $start_timestamp) . " second(s)");
221 // We wait a little before exiting to avoid to be faster than our parent process.
224 unlink(LOCK_DIRECTORY
. "/$lock_filename");
226 // We exit in order to avoid fork bombing.
230 // We wait a little time before the next fork, in order to let the first fork
231 // mark the feeds it update :
234 $last_checkpoint = time();