Last active
June 23, 2016 23:44
-
-
Save ikatson/9266862 to your computer and use it in GitHub Desktop.
uwsgi websocket gevent
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
uwsgi.websocket_handshake(...) | |
user_id = get_user_id_from_environ(environ) | |
ready = gevent.event.Event() | |
dead = gevent.event.Event() | |
def ws_socket_waiter(): | |
while not dead.is_set(): | |
gevent.socket.wait_read(websocket_fd) | |
ready.set() | |
def data_ready_waiter(): | |
while not dead.is_set(): | |
self.data_available_event.wait() | |
ready.set() | |
gevent.spawn(ws_socket_waiter) | |
gevent.spawn(data_ready_waiter) | |
since = time.time() | |
try: | |
while True: | |
ready.wait(timeout=59) | |
msg = uwsgi.websocket_recv_nb() | |
if msg: | |
logging.info('Received msg %s', msg) | |
continue | |
events = get_events_noblock_if_available(user_id, since) | |
if events: | |
logging.info('sending events') | |
uwsgi.websocket_send(json.dumps({'updates': events})) | |
since = time.time() | |
ready.clear() | |
except IOError: | |
pass | |
finally: | |
dead.set() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment