3 * StatusNet - the distributed open-source microblogging tool
4 * Copyright (C) 2008, 2009, 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/>.
20 if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); }
22 require_once(INSTALLDIR.'/lib/daemon.php');
23 require_once(INSTALLDIR.'/classes/Queue_item.php');
24 require_once(INSTALLDIR.'/classes/Notice.php');
26 define('CLAIM_TIMEOUT', 1200);
27 define('QUEUE_HANDLER_MISS_IDLE', 10);
28 define('QUEUE_HANDLER_HIT_IDLE', 0);
30 class QueueHandler extends Daemon
33 function __construct($id=null, $daemonize=true)
35 parent::__construct($daemonize);
49 return ucfirst($this->transport()) . 'Handler';
54 return strtolower($this->class_name().'.'.$this->get_id());
70 function handle_notice($notice)
77 if (!$this->start()) {
78 $this->log(LOG_WARNING, 'failed to start');
82 $this->log(LOG_INFO, 'checking for queued notices');
84 $queue = $this->transport();
85 $timeout = $this->timeout();
87 $qm = QueueManager::get();
89 $qm->service($queue, $this);
91 $this->log(LOG_INFO, 'finished servicing the queue');
93 if (!$this->finish()) {
94 $this->log(LOG_WARNING, 'failed to clean up');
98 $this->log(LOG_INFO, 'terminating normally');
103 function idle($timeout=0)
110 function log($level, $msg)
112 common_log($level, $this->class_name() . ' ('. $this->get_id() .'): '.$msg);
115 function getSockets()