Browse Source

Create a new zlib compressobj every connection, cleanup buffers

feature/zlib-stream-compression
Andrei 8 years ago
parent
commit
8bcbdcf39a
  1. 8
      disco/gateway/client.py

8
disco/gateway/client.py

@ -51,7 +51,7 @@ class GatewayClient(LoggingClass):
# Websocket connection # Websocket connection
self.ws = None self.ws = None
self.ws_event = gevent.event.Event() self.ws_event = gevent.event.Event()
self._zlib = zlib.decompressobj() self._zlib = None
self._buffer = None self._buffer = None
# State # State
@ -182,6 +182,9 @@ class GatewayClient(LoggingClass):
raise Exception('WS recieved error: %s', error) raise Exception('WS recieved error: %s', error)
def on_open(self): def on_open(self):
if self.zlib_stream_enabled:
self._zlib = zlib.decompressobj()
if self.seq and self.session_id: if self.seq and self.session_id:
self.log.info('WS Opened: attempting resume w/ SID: %s SEQ: %s', self.session_id, self.seq) self.log.info('WS Opened: attempting resume w/ SID: %s SEQ: %s', self.session_id, self.seq)
self.replaying = True self.replaying = True
@ -209,6 +212,9 @@ class GatewayClient(LoggingClass):
}) })
def on_close(self, code, reason): def on_close(self, code, reason):
# Make sure we cleanup any old data
self._buffer = None
# Kill heartbeater, a reconnect/resume will trigger a HELLO which will # Kill heartbeater, a reconnect/resume will trigger a HELLO which will
# respawn it # respawn it
if self._heartbeat_task: if self._heartbeat_task:

Loading…
Cancel
Save