]> git.mxchange.org Git - quix0rs-gnu-social.git/commit - plugins/Enjit/enjitqueuehandler.php
XMPP queued output & initial retooling of DB queue manager to support non-Notice...
authorBrion Vibber <brion@pobox.com>
Fri, 22 Jan 2010 00:42:50 +0000 (16:42 -0800)
committerBrion Vibber <brion@pobox.com>
Fri, 22 Jan 2010 06:40:35 +0000 (22:40 -0800)
commit0e852def6ae5aa529cca0aef1187152fb5a880be
tree5b4b49327c5d7224c0c05ce08c1ddf72f1e44f13
parent0bb23e6fd724a12bba6766949cd3294b288d8a43
XMPP queued output & initial retooling of DB queue manager to support non-Notice objects.

Queue handlers for XMPP individual & firehose output now send their XML stanzas
to another output queue instead of connecting directly to the chat server. This
lets us have as many general processing threads as we need, while all actual
XMPP input and output go through a single daemon with a single connection open.

This avoids problems with multiple connected resources:
* multiple windows shown in some chat clients (psi, gajim, kopete)
* extra load on server
* incoming message delivery forwarding issues

Database changes:
* queue_item drops 'notice_id' in favor of a 'frame' blob.
  This is based on Craig Andrews' work branch to generalize queues to take any
  object, but conservatively leaving out the serialization for now.
  Table updater (preserves any existing queued items) in db/rc3to09.sql

Code changes to watch out for:
* Queue handlers should now define a handle() method instead of handle_notice()
* QueueDaemon and XmppDaemon now share common i/o (IoMaster) and respawning
  thread management (RespawningDaemon) infrastructure.
* The polling XmppConfirmManager has been dropped, as the message is queued
  directly when saving IM settings.
* Enable $config['queue']['debug_memory'] to output current memory usage at
  each run through the event loop to watch for memory leaks

To do:
* Adapt XMPP i/o to component connection mode for multi-site support.
* XMPP input can also be broken out to a queue, which would allow the actual
  notice save etc to be handled by general queue threads.
* Make sure there are no problems with simply pushing serialized Notice objects
  to queues.
* Find a way to improve interactive performance of the database-backed queue
  handler; polling is pretty painful to XMPP.
* Possibly redo the way QueueHandlers are injected into a QueueManager. The
  grouping used to split out the XMPP output queue is a bit awkward.
33 files changed:
actions/imsettings.php
classes/Queue_item.php
classes/statusnet.ini
db/08to09.sql
db/rc3to09.sql [new file with mode: 0644]
db/statusnet.sql
lib/dbqueuemanager.php
lib/default.php
lib/iomaster.php
lib/jabber.php
lib/jabberqueuehandler.php
lib/ombqueuehandler.php
lib/pingqueuehandler.php
lib/pluginqueuehandler.php
lib/publicqueuehandler.php
lib/queued_xmpp.php [new file with mode: 0644]
lib/queuehandler.php
lib/queuemanager.php
lib/smsqueuehandler.php
lib/spawningdaemon.php [new file with mode: 0644]
lib/stompqueuemanager.php
lib/util.php
lib/xmppconfirmmanager.php [deleted file]
lib/xmppmanager.php
lib/xmppoutqueuehandler.php [new file with mode: 0644]
plugins/Enjit/enjitqueuehandler.php
plugins/Facebook/facebookqueuehandler.php
plugins/RSSCloud/RSSCloudPlugin.php
plugins/RSSCloud/RSSCloudQueueHandler.php [changed mode: 0755->0644]
plugins/TwitterBridge/twitterqueuehandler.php
scripts/handlequeued.php
scripts/queuedaemon.php
scripts/xmppdaemon.php