3 * StatusNet, the distributed open-source microblogging tool
5 * Simple-minded queue manager for storing items in the database
9 * LICENCE: This program is free software: you can redistribute it and/or modify
10 * it under the terms of the GNU Affero General Public License as published by
11 * the Free Software Foundation, either version 3 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU Affero General Public License for more details.
19 * You should have received a copy of the GNU Affero General Public License
20 * along with this program. If not, see <http://www.gnu.org/licenses/>.
22 * @category QueueManager
24 * @author Evan Prodromou <evan@status.net>
25 * @author Brion Vibber <brion@status.net>
26 * @copyright 2009-2010 StatusNet, Inc.
27 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
28 * @link http://status.net/
31 class DBQueueManager extends QueueManager
34 * Saves an object reference into the queue item table.
35 * @return boolean true on success
36 * @throws ServerException on failure
38 public function enqueue($object, $queue)
40 $qi = new Queue_item();
42 $qi->frame = $this->encode($object);
43 $qi->transport = $queue;
44 $qi->created = common_sql_now();
45 $result = $qi->insert();
48 common_log_db_error($qi, 'INSERT', __FILE__);
49 throw new ServerException('DB error inserting queue item');
52 $this->stats('enqueued', $queue);
58 * Poll every 10 seconds for new events during idle periods.
59 * We'll look in more often when there's data available.
63 public function pollInterval()
69 * Run a polling cycle during idle processing in the input loop.
70 * @return boolean true if we should poll again for more data immediately
72 public function poll()
74 $this->_log(LOG_DEBUG, 'Checking for notices...');
75 $qi = Queue_item::top($this->activeQueues());
77 $this->_log(LOG_DEBUG, 'No notices waiting; idling.');
81 $queue = $qi->transport;
82 $item = $this->decode($qi->frame);
85 $rep = $this->logrep($item);
86 $this->_log(LOG_INFO, "Got $rep for transport $queue");
88 $handler = $this->getHandler($queue);
90 if ($handler->handle($item)) {
91 $this->_log(LOG_INFO, "[$queue:$rep] Successfully handled item");
94 $this->_log(LOG_INFO, "[$queue:$rep] Failed to handle item");
98 $this->_log(LOG_INFO, "[$queue:$rep] No handler for queue $queue; discarding.");
102 $this->_log(LOG_INFO, "[$queue] Got empty/deleted item, discarding");
109 * Delete our claimed item from the queue after successful processing.
111 * @param QueueItem $qi
113 protected function _done($qi)
115 $queue = $qi->transport;
117 if (empty($qi->claimed)) {
118 $this->_log(LOG_WARNING, "Reluctantly releasing unclaimed queue item $qi->id from $qi->queue");
122 $this->stats('handled', $queue);
126 * Free our claimed queue item for later reprocessing in case of
129 * @param QueueItem $qi
131 protected function _fail($qi)
133 $queue = $qi->transport;
135 if (empty($qi->claimed)) {
136 $this->_log(LOG_WARNING, "[$queue:item $qi->id] Ignoring failure for unclaimed queue item");
141 $this->stats('error', $queue);