summaryrefslogtreecommitdiff
path: root/slixmpp
diff options
context:
space:
mode:
authorEmmanuel Gil Peyrot <linkmauve@linkmauve.fr>2015-04-14 18:33:36 +0200
committerEmmanuel Gil Peyrot <linkmauve@linkmauve.fr>2015-04-14 19:14:56 +0200
commitac31913a653e42d288a0ae477866ac06ad9bf0a3 (patch)
tree7fa5c260909cf05a63fbff1a2930464f43679ccd /slixmpp
parentd34ddf33db361eb39193ca4231bc56c60af5ddac (diff)
downloadslixmpp-ac31913a653e42d288a0ae477866ac06ad9bf0a3.tar.gz
slixmpp-ac31913a653e42d288a0ae477866ac06ad9bf0a3.tar.bz2
slixmpp-ac31913a653e42d288a0ae477866ac06ad9bf0a3.tar.xz
slixmpp-ac31913a653e42d288a0ae477866ac06ad9bf0a3.zip
XEP-0047: make open_stream() return a future that will be set to the stream object.
Diffstat (limited to 'slixmpp')
-rw-r--r--slixmpp/plugins/xep_0047/ibb.py43
1 files changed, 17 insertions, 26 deletions
diff --git a/slixmpp/plugins/xep_0047/ibb.py b/slixmpp/plugins/xep_0047/ibb.py
index be452877..52d7fbe5 100644
--- a/slixmpp/plugins/xep_0047/ibb.py
+++ b/slixmpp/plugins/xep_0047/ibb.py
@@ -1,3 +1,4 @@
+import asyncio
import uuid
import logging
@@ -27,7 +28,6 @@ class XEP_0047(BasePlugin):
def plugin_init(self):
self._streams = {}
- self._pending_streams = {}
self._preauthed_sids = {}
register_stanza_plugin(Iq, Open)
@@ -123,32 +123,23 @@ class XEP_0047(BasePlugin):
stream = IBBytestream(self.xmpp, sid, block_size,
iq['from'], iq['to'], use_messages)
- self._pending_streams[iq['id']] = stream
+ stream_future = asyncio.Future()
- cb = None
- if callback is not None:
- def chained(resp):
- self._handle_opened_stream(resp)
- callback(resp)
- cb = chained
- else:
- cb = self._handle_opened_stream
- return iq.send(timeout=timeout, callback=cb)
-
- def _handle_opened_stream(self, iq):
- if iq['type'] == 'result':
- stream = self._pending_streams.get(iq['id'], None)
- if stream is not None:
- log.debug('IBB stream (%s) accepted by %s', stream.sid, iq['from'])
- stream.self_jid = iq['to']
- stream.peer_jid = iq['from']
- stream.stream_started = True
- self.api['set_stream'](stream.self_jid, stream.sid, stream.peer_jid, stream)
- self.xmpp.event('ibb_stream_start', stream)
- self.xmpp.event('stream:%s:%s' % (stream.sid, stream.peer_jid), stream)
-
- if iq['id'] in self._pending_streams:
- del self._pending_streams[iq['id']]
+ def _handle_opened_stream(iq):
+ log.debug('IBB stream (%s) accepted by %s', stream.sid, iq['from'])
+ stream.self_jid = iq['to']
+ stream.peer_jid = iq['from']
+ stream.stream_started = True
+ self.api['set_stream'](stream.self_jid, stream.sid, stream.peer_jid, stream)
+ stream_future.set_result(stream)
+ if callback is not None:
+ callback(stream)
+ self.xmpp.event('ibb_stream_start', stream)
+ self.xmpp.event('stream:%s:%s' % (stream.sid, stream.peer_jid), stream)
+
+ iq.send(timeout=timeout, callback=_handle_opened_stream)
+
+ return stream_future
def _handle_open_request(self, iq):
sid = iq['ibb_open']['sid']