From 1450d3637729186efef8d61297cb03601879b63c Mon Sep 17 00:00:00 2001 From: mathieui Date: Mon, 23 Feb 2015 17:20:47 +0100 Subject: Add a coroutine parameter to iq.send() to return a coroutine (instead of exposing a different send_coroutine method) --- slixmpp/stanza/iq.py | 70 +++++++++++++++++++++++++--------------------------- 1 file changed, 33 insertions(+), 37 deletions(-) (limited to 'slixmpp') diff --git a/slixmpp/stanza/iq.py b/slixmpp/stanza/iq.py index 0d8051e2..bb46aecc 100644 --- a/slixmpp/stanza/iq.py +++ b/slixmpp/stanza/iq.py @@ -160,11 +160,11 @@ class Iq(RootStanza): return new_iq @asyncio.coroutine - def send_coroutine(self, timeout=None): + def _send_coroutine(self, matcher=None, timeout=None): """Send an stanza over the XML stream. Blocks (with asyncio) until a the reply is received. - Use with yield from iq.send_coroutine(). + Use with yield from iq.send(coroutine=True). Overrides StanzaBase.send @@ -174,15 +174,6 @@ class Iq(RootStanza): response before an IqTimeout is raised """ - if self.stream.session_bind_event.is_set(): - matcher = MatchIDSender({ - 'id': self['id'], - 'self': self.stream.boundjid, - 'peer': self['to'] - }) - else: - matcher = MatcherId(self['id']) - future = asyncio.Future() def callback(result): @@ -217,7 +208,7 @@ class Iq(RootStanza): raise IqError(result) return result - def send(self, callback=None, timeout=None, timeout_callback=None): + def send(self, callback=None, timeout=None, timeout_callback=None, coroutine=False): """Send an stanza over the XML stream. A callback handler can be provided that will be executed when the Iq @@ -237,6 +228,8 @@ class Iq(RootStanza): function. Will be executed when the timeout expires before a response has been received with the originally-sent IQ stanza. + coroutine -- This function will return a coroutine if this argument + is True. """ if self.stream.session_bind_event.is_set(): matcher = MatchIDSender({ @@ -247,33 +240,36 @@ class Iq(RootStanza): else: matcher = MatcherId(self['id']) - if callback is not None and self['type'] in ('get', 'set'): - handler_name = 'IqCallback_%s' % self['id'] - if asyncio.iscoroutinefunction(callback): - constr = CoroutineCallback - else: - constr = Callback - if timeout_callback: - self.callback = callback - self.timeout_callback = timeout_callback - self.stream.schedule('IqTimeout_%s' % self['id'], - timeout, - self._fire_timeout, - repeat=False) - handler = constr(handler_name, - matcher, - self._handle_result, - once=True) + if not coroutine: + if callback is not None and self['type'] in ('get', 'set'): + handler_name = 'IqCallback_%s' % self['id'] + if asyncio.iscoroutinefunction(callback): + constr = CoroutineCallback + else: + constr = Callback + if timeout_callback: + self.callback = callback + self.timeout_callback = timeout_callback + self.stream.schedule('IqTimeout_%s' % self['id'], + timeout, + self._fire_timeout, + repeat=False) + handler = constr(handler_name, + matcher, + self._handle_result, + once=True) + else: + handler = constr(handler_name, + matcher, + callback, + once=True) + self.stream.register_handler(handler) + StanzaBase.send(self) + return handler_name else: - handler = constr(handler_name, - matcher, - callback, - once=True) - self.stream.register_handler(handler) - StanzaBase.send(self) - return handler_name + return StanzaBase.send(self) else: - return StanzaBase.send(self) + return self._send_coroutine(timeout=timeout, matcher=matcher) def _handle_result(self, iq): # we got the IQ, so don't fire the timeout -- cgit v1.2.3