diff options
author | Maxime Buquet <pep@bouah.net> | 2020-05-02 17:35:17 +0200 |
---|---|---|
committer | Maxime Buquet <pep@bouah.net> | 2020-05-02 17:35:17 +0200 |
commit | aa732b3c94b16c737f008c0c8d8d366fcea1e412 (patch) | |
tree | 241f02488a3c894d44f4b669e6e9eb2c680a6105 | |
parent | 0d3116dbdfa1325edfa71bf3c1fd9ea77c820396 (diff) | |
parent | f884b67b8bee1688f42f4d1932b8b2e60d5674b9 (diff) | |
download | slixmpp-aa732b3c94b16c737f008c0c8d8d366fcea1e412.tar.gz slixmpp-aa732b3c94b16c737f008c0c8d8d366fcea1e412.tar.bz2 slixmpp-aa732b3c94b16c737f008c0c8d8d366fcea1e412.tar.xz slixmpp-aa732b3c94b16c737f008c0c8d8d366fcea1e412.zip |
Merge branch 'fix-disconnect-send-queue' into 'master'
Fix a regression introduced in 1.5.0
See merge request poezio/slixmpp!45
-rw-r--r-- | slixmpp/xmlstream/xmlstream.py | 34 |
1 files changed, 26 insertions, 8 deletions
diff --git a/slixmpp/xmlstream/xmlstream.py b/slixmpp/xmlstream/xmlstream.py index 06fa058c..3aac8c8e 100644 --- a/slixmpp/xmlstream/xmlstream.py +++ b/slixmpp/xmlstream/xmlstream.py @@ -475,7 +475,7 @@ class XMLStream(asyncio.BaseProtocol): self._current_connection_attempt.cancel() self._current_connection_attempt = None - def disconnect(self, wait: float = 2.0, reason: Optional[str] = None) -> None: + def disconnect(self, wait: float = 2.0, reason: Optional[str] = None, ignore_send_queue: bool = False) -> None: """Close the XML stream and wait for an acknowldgement from the server for at most `wait` seconds. After the given number of seconds has passed without a response from the server, or when the server @@ -495,16 +495,32 @@ class XMLStream(asyncio.BaseProtocol): if wait == True: wait = 2.0 - self.disconnect_reason = reason - self.cancel_connection_attempt() if self.transport: - if wait > 0.0: - self.send_raw(self.stream_footer) - self.schedule('Disconnect wait', wait, - self.abort, repeat=False) + if self.waiting_queue.empty() or ignore_send_queue: + self.disconnect_reason = reason + self.cancel_connection_attempt() + if wait > 0.0: + self.send_raw(self.stream_footer) + self.schedule('Disconnect wait', wait, + self.abort, repeat=False) + else: + asyncio.ensure_future( + self._consume_send_queue_before_disconnecting(reason, wait), + loop=self.loop, + ) else: self.event("disconnected", reason) + async def _consume_send_queue_before_disconnecting(self, reason: Optional[str], wait: float): + """Wait until the send queue is empty before disconnecting""" + await self.waiting_queue.join() + self.disconnect_reason = reason + self.cancel_connection_attempt() + if wait > 0.0: + self.send_raw(self.stream_footer) + self.schedule('Disconnect wait', wait, + self.abort, repeat=False) + def abort(self): """ Forcibly close the connection @@ -899,7 +915,9 @@ class XMLStream(asyncio.BaseProtocol): Execute the callback and remove the handler for it. """ self._safe_cb_run(name, cb) - del self.scheduled_events[name] + # workaround for specific events which unschedule themselves + if name in self.scheduled_events: + del self.scheduled_events[name] def incoming_filter(self, xml): """Filter incoming XML objects before they are processed. |