summaryrefslogtreecommitdiff
path: root/sleekxmpp/clientxmpp.py
diff options
context:
space:
mode:
authorLance Stout <lancestout@gmail.com>2012-01-17 22:14:24 -0800
committerLance Stout <lancestout@gmail.com>2012-01-17 22:14:24 -0800
commit4274f49ada77d709b931f65e34d3a64e75b81638 (patch)
tree6997d64ba92e1b6786032330e3fd36adceff5a08 /sleekxmpp/clientxmpp.py
parenta4b27ff031d6aba7fd0985c5106319098e39caf6 (diff)
downloadslixmpp-4274f49ada77d709b931f65e34d3a64e75b81638.tar.gz
slixmpp-4274f49ada77d709b931f65e34d3a64e75b81638.tar.bz2
slixmpp-4274f49ada77d709b931f65e34d3a64e75b81638.tar.xz
slixmpp-4274f49ada77d709b931f65e34d3a64e75b81638.zip
Remove stream feature handlers on session_start.
Based on profiling, using around 35 stream handlers quarters the number of basic message stanzas that can be processed in a second, in comparison to only using the bare minimum of four handlers. To help, we can drop handlers for stream features once the session has started. So that we can re-enable these handlers when a stream must restart, the 'stream_start' event has been added which fires whenever a stream header is received. The 'stream_start' event is a more generic replacement for the existing start_stream_handler() method.
Diffstat (limited to 'sleekxmpp/clientxmpp.py')
-rw-r--r--sleekxmpp/clientxmpp.py15
1 files changed, 11 insertions, 4 deletions
diff --git a/sleekxmpp/clientxmpp.py b/sleekxmpp/clientxmpp.py
index 69e7db6c..3313328a 100644
--- a/sleekxmpp/clientxmpp.py
+++ b/sleekxmpp/clientxmpp.py
@@ -98,14 +98,12 @@ class ClientXMPP(BaseXMPP):
self.add_event_handler('connected', self._handle_connected)
self.add_event_handler('session_bind', self._handle_session_bind)
+ self.add_event_handler('stream_start', self._handle_stream_start)
+ self.add_event_handler('session_start', self._handle_session_start)
self.register_stanza(StreamFeatures)
self.register_handler(
- Callback('Stream Features',
- MatchXPath('{%s}features' % self.stream_ns),
- self._handle_stream_features))
- self.register_handler(
Callback('Roster Update',
MatchXPath('{%s}iq/{%s}query' % (
self.default_ns,
@@ -119,6 +117,15 @@ class ClientXMPP(BaseXMPP):
self.register_plugin('feature_mechanisms',
pconfig={'use_mech': sasl_mech} if sasl_mech else None)
+ def _handle_stream_start(self, root):
+ self.register_handler(
+ Callback('Stream Features',
+ MatchXPath('{%s}features' % self.stream_ns),
+ self._handle_stream_features))
+
+ def _handle_session_start(self, e):
+ self.remove_handler('Stream Features')
+
def connect(self, address=tuple(), reattempt=True,
use_tls=True, use_ssl=False):
"""Connect to the XMPP server.