]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/queuemanager.php
start of queuemanager code
[quix0rs-gnu-social.git] / lib / queuemanager.php
1 <?php
2 /**
3  * Laconica, the distributed open-source microblogging tool
4  *
5  * Abstract class for queue managers
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   Laconica
24  * @author    Evan Prodromou <evan@controlyourself.ca>
25  * @author    Sarven Capadisli <csarven@controlyourself.ca>
26  * @copyright 2009 Control Yourself, Inc.
27  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
28  * @link      http://laconi.ca/
29  */
30
31 class QueueManager
32 {
33     static $qm = null;
34
35     static function get()
36     {
37         if (empty(self::$qm)) {
38
39             if (Event::handle('StartNewQueueManager', self::$qm)) {
40
41                 $type = common_config('queue', 'sub');
42
43                 switch ($type) {
44                  case 'db':
45                     self::$qm = new DBQueueManager();
46                     break;
47                  case 'stomp':
48                     self::$qm = new StompQueueManager();
49                     break;
50                  default:
51                     throw new ServerException("No queue manager class for type '$type'");
52                 }
53             }
54
55             return self::$qm;
56         }
57     }
58
59     function enqueue($object, $queue)
60     {
61         throw ServerException("Unimplemented function 'enqueue' called");
62     }
63
64     function peek($queue)
65     {
66         throw ServerException("Unimplemented function 'peek' called");
67     }
68
69     function nextItem($queue, $timeout=null)
70     {
71         throw ServerException("Unimplemented function 'nextItem' called");
72     }
73
74     function done($object, $queue)
75     {
76         throw ServerException("Unimplemented function 'done' called");
77     }
78 }