]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/queuemanager.php
Merge branch 'master' into testing
[quix0rs-gnu-social.git] / lib / queuemanager.php
1 <?php
2 /**
3  * StatusNet, the distributed open-source microblogging tool
4  *
5  * Abstract class for i/o 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   StatusNet
24  * @author    Evan Prodromou <evan@status.net>
25  * @author    Sarven Capadisli <csarven@status.net>
26  * @author    Brion Vibber <brion@status.net>
27  * @copyright 2009-2010 StatusNet, Inc.
28  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
29  * @link      http://status.net/
30  */
31
32 /**
33  * Completed child classes must implement the enqueue() method.
34  *
35  * For background processing, classes should implement either socket-based
36  * input (handleInput(), getSockets()) or idle-loop polling (idle()).
37  */
38 abstract class QueueManager extends IoManager
39 {
40     static $qm = null;
41
42     protected $master = null;
43     protected $handlers = array();
44     protected $groups = array();
45     protected $activeGroups = array();
46
47     /**
48      * Factory function to pull the appropriate QueueManager object
49      * for this site's configuration. It can then be used to queue
50      * events for later processing or to spawn a processing loop.
51      *
52      * Plugins can add to the built-in types by hooking StartNewQueueManager.
53      *
54      * @return QueueManager
55      */
56     public static function get()
57     {
58         if (empty(self::$qm)) {
59
60             if (Event::handle('StartNewQueueManager', array(&self::$qm))) {
61
62                 $enabled = common_config('queue', 'enabled');
63                 $type = common_config('queue', 'subsystem');
64
65                 if (!$enabled) {
66                     // does everything immediately
67                     self::$qm = new UnQueueManager();
68                 } else {
69                     switch ($type) {
70                      case 'db':
71                         self::$qm = new DBQueueManager();
72                         break;
73                      case 'stomp':
74                         self::$qm = new StompQueueManager();
75                         break;
76                      default:
77                         throw new ServerException("No queue manager class for type '$type'");
78                     }
79                 }
80             }
81         }
82
83         return self::$qm;
84     }
85
86     /**
87      * @fixme wouldn't necessarily work with other class types.
88      * Better to change the interface...?
89      */
90     public static function multiSite()
91     {
92         if (common_config('queue', 'subsystem') == 'stomp') {
93             return IoManager::INSTANCE_PER_PROCESS;
94         } else {
95             return IoManager::SINGLE_ONLY;
96         }
97     }
98
99     function __construct()
100     {
101         $this->initialize();
102     }
103
104     /**
105      * Optional; ping any running queue handler daemons with a notification
106      * such as announcing a new site to handle or requesting clean shutdown.
107      * This avoids having to restart all the daemons manually to update configs
108      * and such.
109      *
110      * Called from scripts/queuectl.php controller utility.
111      *
112      * @param string $event event key
113      * @param string $param optional parameter to append to key
114      * @return boolean success
115      */
116     public function sendControlSignal($event, $param='')
117     {
118         throw new Exception(get_class($this) . " does not support control signals.");
119     }
120
121     /**
122      * Store an object (usually/always a Notice) into the given queue
123      * for later processing. No guarantee is made on when it will be
124      * processed; it could be immediately or at some unspecified point
125      * in the future.
126      *
127      * Must be implemented by any queue manager.
128      *
129      * @param Notice $object
130      * @param string $queue
131      */
132     abstract function enqueue($object, $queue);
133
134     /**
135      * Build a representation for an object for logging
136      * @param mixed
137      * @return string
138      */
139     function logrep($object) {
140         if (is_object($object)) {
141             $class = get_class($object);
142             if (isset($object->id)) {
143                 return "$class $object->id";
144             }
145             return $class;
146         }
147         if (is_string($object)) {
148             $len = strlen($object);
149             $fragment = mb_substr($object, 0, 32);
150             if (mb_strlen($object) > 32) {
151                 $fragment .= '...';
152             }
153             return "string '$fragment' ($len bytes)";
154         }
155         return strval($object);
156     }
157
158     /**
159      * Encode an object for queued storage.
160      *
161      * @param mixed $item
162      * @return string
163      */
164     protected function encode($item)
165     {
166         return serialize($item);
167     }
168
169     /**
170      * Decode an object from queued storage.
171      * Accepts notice reference entries and serialized items.
172      *
173      * @param string
174      * @return mixed
175      */
176     protected function decode($frame)
177     {
178         return unserialize($frame);
179     }
180
181     /**
182      * Instantiate the appropriate QueueHandler class for the given queue.
183      *
184      * @param string $queue
185      * @return mixed QueueHandler or null
186      */
187     function getHandler($queue)
188     {
189         if (isset($this->handlers[$queue])) {
190             $class = $this->handlers[$queue];
191             if(is_object($class)) {
192                 return $class;
193             } else if (class_exists($class)) {
194                 return new $class();
195             } else {
196                 $this->_log(LOG_ERR, "Nonexistent handler class '$class' for queue '$queue'");
197             }
198         } else {
199             $this->_log(LOG_ERR, "Requested handler for unkown queue '$queue'");
200         }
201         return null;
202     }
203
204     /**
205      * Get a list of registered queue transport names to be used
206      * for listening in this daemon.
207      *
208      * @return array of strings
209      */
210     function activeQueues()
211     {
212         $queues = array();
213         foreach ($this->activeGroups as $group) {
214             if (isset($this->groups[$group])) {
215                 $queues = array_merge($queues, $this->groups[$group]);
216             }
217         }
218
219         return array_keys($queues);
220     }
221
222     /**
223      * Initialize the list of queue handlers for the current site.
224      *
225      * @event StartInitializeQueueManager
226      * @event EndInitializeQueueManager
227      */
228     function initialize()
229     {
230         $this->handlers = array();
231         $this->groups = array();
232         $this->groupsByTransport = array();
233
234         if (Event::handle('StartInitializeQueueManager', array($this))) {
235             $this->connect('distrib', 'DistribQueueHandler');
236             $this->connect('ping', 'PingQueueHandler');
237             if (common_config('sms', 'enabled')) {
238                 $this->connect('sms', 'SmsQueueHandler');
239             }
240
241             // Background user management tasks...
242             $this->connect('deluser', 'DelUserQueueHandler');
243             $this->connect('feedimp', 'FeedImporter');
244             $this->connect('actimp', 'ActivityImporter');
245             $this->connect('acctmove', 'AccountMover');
246             $this->connect('actmove', 'ActivityMover');
247
248             // For compat with old plugins not registering their own handlers.
249             $this->connect('plugin', 'PluginQueueHandler');
250         }
251         Event::handle('EndInitializeQueueManager', array($this));
252     }
253
254     /**
255      * Register a queue transport name and handler class for your plugin.
256      * Only registered transports will be reliably picked up!
257      *
258      * @param string $transport
259      * @param string $class class name or object instance
260      * @param string $group
261      */
262     public function connect($transport, $class, $group='main')
263     {
264         $this->handlers[$transport] = $class;
265         $this->groups[$group][$transport] = $class;
266         $this->groupsByTransport[$transport] = $group;
267     }
268
269     /**
270      * Set the active group which will be used for listening.
271      * @param string $group
272      */
273     function setActiveGroup($group)
274     {
275         $this->activeGroups = array($group);
276     }
277
278     /**
279      * Set the active group(s) which will be used for listening.
280      * @param array $groups
281      */
282     function setActiveGroups($groups)
283     {
284         $this->activeGroups = $groups;
285     }
286
287     /**
288      * @return string queue group for this queue
289      */
290     function queueGroup($queue)
291     {
292         if (isset($this->groupsByTransport[$queue])) {
293             return $this->groupsByTransport[$queue];
294         } else {
295             throw new Exception("Requested group for unregistered transport $queue");
296         }
297     }
298
299     /**
300      * Send a statistic ping to the queue monitoring system,
301      * optionally with a per-queue id.
302      *
303      * @param string $key
304      * @param string $queue
305      */
306     function stats($key, $queue=false)
307     {
308         $owners = array();
309         if ($queue) {
310             $owners[] = "queue:$queue";
311             $owners[] = "site:" . common_config('site', 'server');
312         }
313         if (isset($this->master)) {
314             $this->master->stats($key, $owners);
315         } else {
316             $monitor = new QueueMonitor();
317             $monitor->stats($key, $owners);
318         }
319     }
320
321     protected function _log($level, $msg)
322     {
323         $class = get_class($this);
324         if ($this->activeGroups) {
325             $groups = ' (' . implode(',', $this->activeGroups) . ')';
326         } else {
327             $groups = '';
328         }
329         common_log($level, "$class$groups: $msg");
330     }
331 }