11
11
# Imports
12
12
# -----------------------------------------------------------------------------
13
13
14
- import asyncio
15
14
16
15
from jupyter_client .client import KernelClient
17
16
from jupyter_client .clientabc import KernelClientABC
18
- from jupyter_core .utils import run_sync
19
17
20
18
# IPython imports
21
19
from traitlets import Instance , Type , default
@@ -101,7 +99,7 @@ def hb_channel(self):
101
99
# Methods for sending specific messages
102
100
# -------------------------------------
103
101
104
- def execute (
102
+ async def execute (
105
103
self , code , silent = False , store_history = True , user_expressions = None , allow_stdin = None
106
104
):
107
105
"""Execute code on the client."""
@@ -115,19 +113,19 @@ def execute(
115
113
allow_stdin = allow_stdin ,
116
114
)
117
115
msg = self .session .msg ("execute_request" , content )
118
- self ._dispatch_to_kernel (msg )
116
+ await self ._dispatch_to_kernel (msg )
119
117
return msg ["header" ]["msg_id" ]
120
118
121
- def complete (self , code , cursor_pos = None ):
119
+ async def complete (self , code , cursor_pos = None ):
122
120
"""Get code completion."""
123
121
if cursor_pos is None :
124
122
cursor_pos = len (code )
125
123
content = dict (code = code , cursor_pos = cursor_pos )
126
124
msg = self .session .msg ("complete_request" , content )
127
- self ._dispatch_to_kernel (msg )
125
+ await self ._dispatch_to_kernel (msg )
128
126
return msg ["header" ]["msg_id" ]
129
127
130
- def inspect (self , code , cursor_pos = None , detail_level = 0 ):
128
+ async def inspect (self , code , cursor_pos = None , detail_level = 0 ):
131
129
"""Get code inspection."""
132
130
if cursor_pos is None :
133
131
cursor_pos = len (code )
@@ -137,14 +135,14 @@ def inspect(self, code, cursor_pos=None, detail_level=0):
137
135
detail_level = detail_level ,
138
136
)
139
137
msg = self .session .msg ("inspect_request" , content )
140
- self ._dispatch_to_kernel (msg )
138
+ await self ._dispatch_to_kernel (msg )
141
139
return msg ["header" ]["msg_id" ]
142
140
143
- def history (self , raw = True , output = False , hist_access_type = "range" , ** kwds ):
141
+ async def history (self , raw = True , output = False , hist_access_type = "range" , ** kwds ):
144
142
"""Get code history."""
145
143
content = dict (raw = raw , output = output , hist_access_type = hist_access_type , ** kwds )
146
144
msg = self .session .msg ("history_request" , content )
147
- self ._dispatch_to_kernel (msg )
145
+ await self ._dispatch_to_kernel (msg )
148
146
return msg ["header" ]["msg_id" ]
149
147
150
148
def shutdown (self , restart = False ):
@@ -153,17 +151,17 @@ def shutdown(self, restart=False):
153
151
msg = "Cannot shutdown in-process kernel"
154
152
raise NotImplementedError (msg )
155
153
156
- def kernel_info (self ):
154
+ async def kernel_info (self ):
157
155
"""Request kernel info."""
158
156
msg = self .session .msg ("kernel_info_request" )
159
- self ._dispatch_to_kernel (msg )
157
+ await self ._dispatch_to_kernel (msg )
160
158
return msg ["header" ]["msg_id" ]
161
159
162
- def comm_info (self , target_name = None ):
160
+ async def comm_info (self , target_name = None ):
163
161
"""Request a dictionary of valid comms and their targets."""
164
162
content = {} if target_name is None else dict (target_name = target_name )
165
163
msg = self .session .msg ("comm_info_request" , content )
166
- self ._dispatch_to_kernel (msg )
164
+ await self ._dispatch_to_kernel (msg )
167
165
return msg ["header" ]["msg_id" ]
168
166
169
167
def input (self , string ):
@@ -173,29 +171,21 @@ def input(self, string):
173
171
raise RuntimeError (msg )
174
172
self .kernel .raw_input_str = string
175
173
176
- def is_complete (self , code ):
174
+ async def is_complete (self , code ):
177
175
"""Handle an is_complete request."""
178
176
msg = self .session .msg ("is_complete_request" , {"code" : code })
179
- self ._dispatch_to_kernel (msg )
177
+ await self ._dispatch_to_kernel (msg )
180
178
return msg ["header" ]["msg_id" ]
181
179
182
- def _dispatch_to_kernel (self , msg ):
180
+ async def _dispatch_to_kernel (self , msg ):
183
181
"""Send a message to the kernel and handle a reply."""
184
182
kernel = self .kernel
185
183
if kernel is None :
186
- msg = "Cannot send request. No kernel exists."
187
- raise RuntimeError (msg )
184
+ error_message = "Cannot send request. No kernel exists."
185
+ raise RuntimeError (error_message )
188
186
189
- stream = kernel .shell_stream
190
- self .session .send (stream , msg )
191
- msg_parts = stream .recv_multipart ()
192
- if run_sync is not None :
193
- dispatch_shell = run_sync (kernel .dispatch_shell )
194
- dispatch_shell (msg_parts )
195
- else :
196
- loop = asyncio .get_event_loop ()
197
- loop .run_until_complete (kernel .dispatch_shell (msg_parts ))
198
- idents , reply_msg = self .session .recv (stream , copy = False )
187
+ kernel .shell_socket .put (msg )
188
+ reply_msg = await kernel .shell_socket .get ()
199
189
self .shell_channel .call_handlers_later (reply_msg )
200
190
201
191
def get_shell_msg (self , block = True , timeout = None ):
0 commit comments