Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add client class that uses async/await to integrate with asyncio #471

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Empty file.
91 changes: 91 additions & 0 deletions jupyter_client/asyncio/channels.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,91 @@
"""Blocking channels

Useful for test suites and blocking terminal interfaces.
"""

# Copyright (c) Jupyter Development Team.
# Distributed under the terms of the Modified BSD License.

try:
from queue import Queue, Empty # Py 3
except ImportError:
from Queue import Queue, Empty # Py 2


class ZMQSocketChannel(object):
"""A ZMQ socket in a simple blocking API"""
session = None
socket = None
stream = None
_exiting = False
proxy_methods = []

def __init__(self, socket, session, loop=None):
"""Create a channel.

Parameters
----------
socket : :class:`zmq.Socket`
The ZMQ socket to use.
session : :class:`session.Session`
The session to use.
loop
Unused here, for other implementations
"""
super(ZMQSocketChannel, self).__init__()

self.socket = socket
self.session = session

async def _recv(self, **kwargs):
msg = await self.socket.recv_multipart(**kwargs)
ident, smsg = self.session.feed_identities(msg)
return self.session.deserialize(smsg)

async def get_msg(self, block=True, timeout=None):
""" Gets a message if there is one that is ready. """
if block:
if timeout is not None:
timeout *= 1000 # seconds to ms
ready = await self.socket.poll(timeout)
else:
ready = await self.socket.poll(timeout=0)

if ready:
return await self._recv()
else:
raise Empty

def get_msgs(self):
""" Get all messages that are currently ready. """
msgs = []
while True:
try:
msgs.append(self.get_msg(block=False))
except Empty:
break
return msgs

def msg_ready(self):
""" Is there a message that has been received? """
return bool(self.socket.poll(timeout=0))

def close(self):
if self.socket is not None:
try:
self.socket.close(linger=0)
except Exception:
pass
self.socket = None
stop = close

def is_alive(self):
return (self.socket is not None)

async def send(self, msg):
"""Pass a message to the ZMQ socket to send
"""
return await self.session.send_async(self.socket, msg)

def start(self):
pass
Loading