3 * StatusNet - the distributed open-source microblogging tool
4 * Copyright (C) 2010, StatusNet, Inc.
6 * This program is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU Affero General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU Affero General Public License for more details.
16 * You should have received a copy of the GNU Affero General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
21 * Base class for daemon that can launch one or more processing threads,
22 * respawning them if they exit.
24 * This is mainly intended for indefinite workloads such as monitoring
25 * a queue or maintaining an IM channel.
27 * Child classes should implement the
29 * We can then pass individual items through the QueueHandler subclasses
30 * they belong to. We additionally can handle queues for multiple sites.
32 * @package QueueHandler
33 * @author Brion Vibber <brion@status.net>
35 abstract class SpawningDaemon extends Daemon
41 const EXIT_SHUTDOWN = 100;
42 const EXIT_RESTART = 101;
44 function __construct($id=null, $daemonize=true, $threads=1)
46 parent::__construct($daemonize);
51 $this->threads = $threads;
55 * Perform some actual work!
57 * @return int exit code; use self::EXIT_SHUTDOWN to request not to respawn.
59 public abstract function runThread();
62 * Spawn one or more background processes and let them start running.
63 * Each individual process will execute whatever's in the runThread()
64 * method, which should be overridden.
66 * Child processes will be automatically respawned when they exit.
68 * @todo possibly allow for not respawning on "normal" exits...
69 * though ParallelizingDaemon is probably better for workloads
70 * that have forseeable endpoints.
77 for ($i = 1; $i <= $this->threads; $i++) {
80 $this->log(LOG_ERROR, "Couldn't fork for thread $i; aborting\n");
82 } else if ($pid == 0) {
83 $this->initAndRunChild($i);
85 $this->log(LOG_INFO, "Spawned thread $i as pid $pid");
88 sleep(common_config('queue', 'spawndelay'));
91 $this->log(LOG_INFO, "Waiting for children to complete.");
92 while (count($children) > 0) {
94 $pid = pcntl_wait($status);
96 $i = array_search($pid, $children);
98 $this->log(LOG_ERR, "Ignoring exit of unrecognized child pid $pid");
101 if (pcntl_wifexited($status)) {
102 $exitCode = pcntl_wexitstatus($status);
103 $info = "status $exitCode";
104 } else if (pcntl_wifsignaled($status)) {
105 $exitCode = self::EXIT_ERR;
106 $signal = pcntl_wtermsig($status);
107 $info = "signal $signal";
109 unset($children[$i]);
111 if ($this->shouldRespawn($exitCode)) {
112 $this->log(LOG_INFO, "Thread $i pid $pid exited with $info; respawing.");
116 $this->log(LOG_ERROR, "Couldn't fork to respawn thread $i; aborting thread.\n");
117 } else if ($pid == 0) {
118 $this->initAndRunChild($i);
120 $this->log(LOG_INFO, "Respawned thread $i as pid $pid");
121 $children[$i] = $pid;
123 sleep(common_config('queue', 'spawndelay'));
125 $this->log(LOG_INFO, "Thread $i pid $pid exited with status $exitCode; closing out thread.");
129 $this->log(LOG_INFO, "All child processes complete.");
134 * Create an IPC socket pair which child processes can use to detect
135 * if the parent process has been killed.
139 $sockets = stream_socket_pair(STREAM_PF_UNIX, STREAM_SOCK_STREAM, 0);
141 $this->parentWriter = $sockets[0];
142 $this->parentReader = $sockets[1];
144 $this->log(LOG_ERROR, "Couldn't create inter-process sockets");
150 * Build an IOManager that simply ensures that we have a connection
151 * to the parent process open. If it breaks, the child process will
154 * @return ProcessManager
156 public function processManager()
158 return new ProcessManager($this->parentReader);
162 * Determine whether to respawn an exited subprocess based on its exit code.
163 * Otherwise we'll respawn all exits by default.
165 * @param int $exitCode
166 * @return boolean true to respawn
168 protected function shouldRespawn($exitCode)
170 if ($exitCode == self::EXIT_SHUTDOWN) {
171 // Thread requested a clean shutdown.
174 // Otherwise we should always respawn!
180 * Initialize things for a fresh thread, call runThread(), and
181 * exit at completion with appropriate return value.
183 protected function initAndRunChild($thread)
185 // Close the writer end of our parent<->children pipe.
186 fclose($this->parentWriter);
187 $this->set_id($this->get_id() . "." . $thread);
189 $exitCode = $this->runThread();
194 * Reconnect to the database for each child process,
195 * or they'll get very confused trying to use the
198 protected function resetDb()
200 // @fixme do we need to explicitly open the db too
201 // or is this implied?
202 global $_DB_DATAOBJECT;
203 unset($_DB_DATAOBJECT['CONNECTIONS']);
205 // Reconnect main memcached, or threads will stomp on
206 // each other and corrupt their requests.
207 $cache = Cache::instance();
212 // Also reconnect memcached for status_network table.
213 if (!empty(Status_network::$cache)) {
214 Status_network::$cache->close();
215 Status_network::$cache = null;
219 function log($level, $msg)
221 common_log($level, get_class($this) . ' ('. $this->get_id() .'): '.$msg);
226 return strtolower(get_class($this).'.'.$this->get_id());