]> git.mxchange.org Git - quix0rs-gnu-social.git/commit
XMPP queued output & initial retooling of DB queue manager to support non-Notice...
authorBrion Vibber <brion@pobox.com>
Fri, 22 Jan 2010 20:52:36 +0000 (12:52 -0800)
committerBrion Vibber <brion@pobox.com>
Fri, 22 Jan 2010 20:52:36 +0000 (12:52 -0800)
commitc7507e7e9dafa6d6e054978e720e4fce3abc9929
treed756f2a2c7c9b487b6ef0f066a87f3cde40bc65d
parenta3e484a0e898bb94dd45cd7807bea1a931d7c6a9
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.

Conflicts:

scripts/xmppdaemon.php
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