]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/dbqueuemanager.php
Any object (not just Notice's) can be queued
[quix0rs-gnu-social.git] / lib / dbqueuemanager.php
1 <?php
2 /**
3  * StatusNet, the distributed open-source microblogging tool
4  *
5  * Simple-minded queue manager for storing items in the database
6  *
7  * PHP version 5
8  *
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.
13  *
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.
18  *
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/>.
21  *
22  * @category  QueueManager
23  * @package   StatusNet
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/
29  */
30
31 class DBQueueManager extends QueueManager
32 {
33     /**
34      * Saves an object into the queue item table.
35      * @return boolean true on success
36      * @throws ServerException on failure
37      */
38     public function enqueue($object, $queue)
39     {
40         $qi = new Queue_item();
41
42         $qi->frame     = serialize($object);
43         $qi->transport = $queue;
44         $qi->created   = common_sql_now();
45         $result        = $qi->insert();
46
47         if (!$result) {
48             common_log_db_error($qi, 'INSERT', __FILE__);
49             throw new ServerException('DB error inserting queue item');
50         }
51
52         $this->stats('enqueued', $queue);
53
54         return true;
55     }
56
57     /**
58      * Poll every minute for new events during idle periods.
59      * We'll look in more often when there's data available.
60      *
61      * @return int seconds
62      */
63     public function pollInterval()
64     {
65         return 60;
66     }
67
68     /**
69      * Run a polling cycle during idle processing in the input loop.
70      * @return boolean true if we had a hit
71      */
72     public function poll()
73     {
74         $this->_log(LOG_DEBUG, 'Checking for queued objects...');
75         $qi = $this->_nextItem();
76         if ($qi === false) {
77             $this->_log(LOG_DEBUG, 'No queue items waiting; idling.');
78             return false;
79         }
80         if ($qi === true) {
81             // We dequeued an entry for a deleted or invalid object.
82             // Consider it a hit for poll rate purposes.
83             return true;
84         }
85
86         $queue = $qi->transport;
87         $object = unserialize($qi->frame);
88         $this->_log(LOG_INFO, 'Got item id=' . $qi->id . ' for transport ' . $queue);
89
90         // Yay! Got one!
91         $handler = $this->getHandler($queue);
92         if ($handler) {
93             if ($handler->handle($object)) {
94                 $this->_log(LOG_INFO, "[$queue] Successfully handled object");
95                 $this->_done($qi);
96             } else {
97                 $this->_log(LOG_INFO, "[$queue] Failed to handle object");
98                 $this->_fail($qi);
99             }
100         } else {
101             $this->_log(LOG_INFO, "[$queue] No handler for queue $queue; discarding.");
102             $this->_done($qi);
103         }
104         return true;
105     }
106
107     /**
108      * Pop the oldest unclaimed item off the queue set and claim it.
109      *
110      * @return mixed false if no items; true if bogus hit; otherwise Queue_item
111      */
112     protected function _nextItem()
113     {
114         $start = time();
115         $result = null;
116
117         $qi = Queue_item::top();
118         if (empty($qi)) {
119             return false;
120         }
121
122         return $qi;
123     }
124
125     /**
126      * Delete our claimed item from the queue after successful processing.
127      *
128      * @param QueueItem $qi
129      */
130     protected function _done($qi)
131     {
132         if (empty($qi)) {
133             $this->_log(LOG_INFO, "_done passed an empty queue item");
134         } else {
135             if (empty($qi->claimed)) {
136                 $this->_log(LOG_WARNING, "Reluctantly releasing unclaimed queue item");
137             }
138             $qi->delete();
139             $qi->free();
140         }
141
142         $this->_log(LOG_INFO, "done with item");
143     }
144
145     /**
146      * Free our claimed queue item for later reprocessing in case of
147      * temporary failure.
148      *
149      * @param QueueItem $qi
150      */
151     protected function _fail($qi)
152     {
153         if (empty($qi)) {
154             $this->_log(LOG_INFO, "_fail passed an empty queue item");
155         } else {
156             if (empty($qi->claimed)) {
157                 $this->_log(LOG_WARNING, "Ignoring failure for unclaimed queue item");
158             } else {
159                 $orig = clone($qi);
160                 $qi->claimed = null;
161                 $qi->update($orig);
162                 $qi = null;
163             }
164         }
165
166         $this->_log(LOG_INFO, "done with queue item");
167     }
168
169     protected function _log($level, $msg)
170     {
171         common_log($level, 'DBQueueManager: '.$msg);
172     }
173 }