##// END OF EJS Templates
move MAX_ITEMS, MAX_BYTES to session from serialize
move MAX_ITEMS, MAX_BYTES to session from serialize

File last commit:

r20945:e4060ed8
r20954:925061af
Show More
ipkernel.py
171 lines | 6.2 KiB | text/x-python | PythonLexer
MinRK
move IPython.inprocess to IPython.kernel.inprocess
r9375 """An in-process kernel"""
epatters
Refactor kernel managers in preparation for the EmbeddedKernel.
r8408
MinRK
fix inprocess input request
r16576 # Copyright (c) IPython Development Team.
# Distributed under the terms of the Modified BSD License.
epatters
Refactor kernel managers in preparation for the EmbeddedKernel.
r8408
epatters
Implement EmbeddedKernel.
r8411 from contextlib import contextmanager
import logging
import sys
epatters
BUG: GUI integration broken in the in-process kernel.
r8474 from IPython.core.interactiveshell import InteractiveShellABC
epatters
Implement EmbeddedKernel.
r8411 from IPython.utils.jsonutil import json_clean
epatters
BUG: GUI integration broken in the in-process kernel.
r8474 from IPython.utils.traitlets import Any, Enum, Instance, List, Type
Thomas Kluyver
Rename KernelBase & Kernel to Kernel & IPythonKernel
r17095 from IPython.kernel.zmq.ipkernel import IPythonKernel
MinRK
mv IPython.zmq to IPython.kernel.zmq
r9372 from IPython.kernel.zmq.zmqshell import ZMQInteractiveShell
epatters
Refactor kernel managers in preparation for the EmbeddedKernel.
r8408
MinRK
move IPython.inprocess to IPython.kernel.inprocess
r9375 from .socket import DummySocket
epatters
Refactor kernel managers in preparation for the EmbeddedKernel.
r8408 #-----------------------------------------------------------------------------
# Main kernel class
#-----------------------------------------------------------------------------
Thomas Kluyver
Rename KernelBase & Kernel to Kernel & IPythonKernel
r17095 class InProcessKernel(IPythonKernel):
epatters
Implement EmbeddedKernel.
r8411
#-------------------------------------------------------------------------
epatters
REFACTOR: Terminology change: 'embedded' -> 'in-process'.
r8471 # InProcessKernel interface
epatters
Implement EmbeddedKernel.
r8411 #-------------------------------------------------------------------------
epatters
BUG: GUI integration broken in the in-process kernel.
r8474 # The frontends connected to this kernel.
epatters
Implement EmbeddedKernel.
r8411 frontends = List(
Sylvain Corlay
unnecessary allow_none=True
r20945 Instance('IPython.kernel.inprocess.client.InProcessKernelClient',
Sylvain Corlay
allow_none=False by default for Type and Instance
r20940 allow_none=True)
MinRK
update inprocess kernel to new layout...
r10298 )
epatters
Implement EmbeddedKernel.
r8411
epatters
BUG: GUI integration broken in the in-process kernel.
r8474 # The GUI environment that the kernel is running under. This need not be
# specified for the normal operation for the kernel, but is required for
# IPython's GUI support (including pylab). The default is 'inline' because
# it is safe under all GUI toolkits.
gui = Enum(('tk', 'gtk', 'wx', 'qt', 'qt4', 'inline'),
default_value='inline')
epatters
Implement EmbeddedKernel.
r8411 raw_input_str = Any()
stdout = Any()
stderr = Any()
#-------------------------------------------------------------------------
# Kernel interface
#-------------------------------------------------------------------------
Sylvain Corlay
Type(allow_none=True)
r20942 shell_class = Type(allow_none=True)
epatters
Implement EmbeddedKernel.
r8411 shell_streams = List()
control_stream = Any()
iopub_socket = Instance(DummySocket, ())
stdin_socket = Instance(DummySocket, ())
def __init__(self, **traits):
Min RK
don't wrap in-process init in context manager...
r20791 super(InProcessKernel, self).__init__(**traits)
epatters
Implement EmbeddedKernel.
r8411
self.iopub_socket.on_trait_change(self._io_dispatch, 'message_sent')
epatters
BUG: GUI integration broken in the in-process kernel.
r8474 self.shell.kernel = self
epatters
Implement EmbeddedKernel.
r8411
def execute_request(self, stream, ident, parent):
""" Override for temporary IO redirection. """
with self._redirected_io():
epatters
REFACTOR: Terminology change: 'embedded' -> 'in-process'.
r8471 super(InProcessKernel, self).execute_request(stream, ident, parent)
epatters
Implement EmbeddedKernel.
r8411
def start(self):
""" Override registration of dispatchers for streams. """
self.shell.exit_now = False
def _abort_queue(self, stream):
epatters
REFACTOR: Terminology change: 'embedded' -> 'in-process'.
r8471 """ The in-process kernel doesn't abort requests. """
epatters
Implement EmbeddedKernel.
r8411 pass
MinRK
fix inprocess input request
r16576 def _input_request(self, prompt, ident, parent, password=False):
epatters
Implement EmbeddedKernel.
r8411 # Flush output before making the request.
self.raw_input_str = None
sys.stderr.flush()
sys.stdout.flush()
# Send the input request.
MinRK
fix inprocess input request
r16576 content = json_clean(dict(prompt=prompt, password=password))
epatters
Implement EmbeddedKernel.
r8411 msg = self.session.msg(u'input_request', content, parent)
for frontend in self.frontends:
if frontend.session.session == parent['header']['session']:
frontend.stdin_channel.call_handlers(msg)
break
else:
Pietro Berkes
BUG: Logging a rare error condition would have failed.
r8939 logging.error('No frontend found for raw_input request')
epatters
Implement EmbeddedKernel.
r8411 return str()
# Await a response.
while self.raw_input_str is None:
frontend.stdin_channel.process_events()
return self.raw_input_str
#-------------------------------------------------------------------------
# Protected interface
#-------------------------------------------------------------------------
@contextmanager
def _redirected_io(self):
""" Temporarily redirect IO to the kernel.
"""
sys_stdout, sys_stderr = sys.stdout, sys.stderr
sys.stdout, sys.stderr = self.stdout, self.stderr
yield
sys.stdout, sys.stderr = sys_stdout, sys_stderr
#------ Trait change handlers --------------------------------------------
def _io_dispatch(self):
""" Called when a message is sent to the IO socket.
"""
ident, msg = self.session.recv(self.iopub_socket, copy=False)
for frontend in self.frontends:
Brian Granger
Cleanup naming and organization of channels....
r9120 frontend.iopub_channel.call_handlers(msg)
epatters
Implement EmbeddedKernel.
r8411
#------ Trait initializers -----------------------------------------------
def _log_default(self):
return logging.getLogger(__name__)
def _session_default(self):
MinRK
mv IPython.zmq to IPython.kernel.zmq
r9372 from IPython.kernel.zmq.session import Session
Min RK
fix Session passing around in kernel.inprocess...
r20572 return Session(parent=self, key=b'')
epatters
Implement EmbeddedKernel.
r8411
epatters
BUG: GUI integration broken in the in-process kernel.
r8474 def _shell_class_default(self):
return InProcessInteractiveShell
epatters
Implement EmbeddedKernel.
r8411 def _stdout_default(self):
MinRK
mv IPython.zmq to IPython.kernel.zmq
r9372 from IPython.kernel.zmq.iostream import OutStream
MinRK
disable subprocess pipe in inprocess kernel...
r9448 return OutStream(self.session, self.iopub_socket, u'stdout', pipe=False)
epatters
Implement EmbeddedKernel.
r8411
def _stderr_default(self):
MinRK
mv IPython.zmq to IPython.kernel.zmq
r9372 from IPython.kernel.zmq.iostream import OutStream
MinRK
disable subprocess pipe in inprocess kernel...
r9448 return OutStream(self.session, self.iopub_socket, u'stderr', pipe=False)
epatters
BUG: GUI integration broken in the in-process kernel.
r8474
#-----------------------------------------------------------------------------
# Interactive shell subclass
#-----------------------------------------------------------------------------
class InProcessInteractiveShell(ZMQInteractiveShell):
Sylvain Corlay
allow_none=False by default for Type and Instance
r20940 kernel = Instance('IPython.kernel.inprocess.ipkernel.InProcessKernel',
allow_none=True)
epatters
BUG: GUI integration broken in the in-process kernel.
r8474
#-------------------------------------------------------------------------
# InteractiveShell interface
#-------------------------------------------------------------------------
def enable_gui(self, gui=None):
MinRK
update enable_pylab, etc. for inprocess kernel
r11455 """Enable GUI integration for the kernel."""
MinRK
mv IPython.zmq to IPython.kernel.zmq
r9372 from IPython.kernel.zmq.eventloops import enable_gui
epatters
BUG: GUI integration broken in the in-process kernel.
r8474 if not gui:
gui = self.kernel.gui
MinRK
update enable_pylab, etc. for inprocess kernel
r11455 return enable_gui(gui, kernel=self.kernel)
def enable_matplotlib(self, gui=None):
"""Enable matplotlib integration for the kernel."""
if not gui:
gui = self.kernel.gui
MinRK
remove extra self in InProcess.enable_matplotlib
r11483 return super(InProcessInteractiveShell, self).enable_matplotlib(gui)
epatters
BUG: GUI integration broken in the in-process kernel.
r8474
def enable_pylab(self, gui=None, import_all=True, welcome_message=False):
MinRK
update enable_pylab, etc. for inprocess kernel
r11455 """Activate pylab support at runtime."""
epatters
BUG: GUI integration broken in the in-process kernel.
r8474 if not gui:
gui = self.kernel.gui
MinRK
update enable_pylab, etc. for inprocess kernel
r11455 return super(InProcessInteractiveShell, self).enable_pylab(gui, import_all,
epatters
BUG: GUI integration broken in the in-process kernel.
r8474 welcome_message)
InteractiveShellABC.register(InProcessInteractiveShell)