kernelapp.py
387 lines
| 14.7 KiB
| text/x-python
|
PythonLexer
MinRK
|
r16569 | """An Application for launching a kernel""" | ||
Paul Ivanov
|
r16501 | # Copyright (c) IPython Development Team. | ||
# Distributed under the terms of the Modified BSD License. | ||||
MinRK
|
r3970 | |||
MinRK
|
r9357 | from __future__ import print_function | ||
MinRK
|
r6889 | import atexit | ||
MinRK
|
r3970 | import os | ||
import sys | ||||
MinRK
|
r6790 | import signal | ||
MinRK
|
r3970 | |||
import zmq | ||||
MinRK
|
r6790 | from zmq.eventloop import ioloop | ||
MinRK
|
r9357 | from zmq.eventloop.zmqstream import ZMQStream | ||
MinRK
|
r3970 | |||
from IPython.core.ultratb import FormattedTB | ||||
MinRK
|
r4023 | from IPython.core.application import ( | ||
MinRK
|
r5214 | BaseIPythonApplication, base_flags, base_aliases, catch_config_error | ||
MinRK
|
r3970 | ) | ||
MinRK
|
r9357 | from IPython.core.profiledir import ProfileDir | ||
from IPython.core.shellapp import ( | ||||
InteractiveShellApp, shell_flags, shell_aliases | ||||
) | ||||
MinRK
|
r3970 | from IPython.utils import io | ||
MinRK
|
r4958 | from IPython.utils.path import filefind | ||
MinRK
|
r7321 | from IPython.utils.traitlets import ( | ||
Thomas Kluyver
|
r16859 | Any, Instance, Dict, Unicode, Integer, Bool, DottedObjectName, Type, | ||
MinRK
|
r7321 | ) | ||
MinRK
|
r3970 | from IPython.utils.importstring import import_item | ||
MinRK
|
r9353 | from IPython.kernel import write_connection_file | ||
Paul Ivanov
|
r16501 | from IPython.kernel.connect import ConnectionFileMixin | ||
MinRK
|
r9357 | |||
MinRK
|
r3970 | # local imports | ||
Thomas Kluyver
|
r13347 | from .heartbeat import Heartbeat | ||
Thomas Kluyver
|
r17095 | from .ipkernel import IPythonKernel | ||
Thomas Kluyver
|
r13347 | from .parentpoller import ParentPollerUnix, ParentPollerWindows | ||
from .session import ( | ||||
Min RK
|
r20570 | Session, session_flags, session_aliases, | ||
MinRK
|
r4962 | ) | ||
Thomas Kluyver
|
r13347 | from .zmqshell import ZMQInteractiveShell | ||
MinRK
|
r3970 | |||
#----------------------------------------------------------------------------- | ||||
# Flags and Aliases | ||||
#----------------------------------------------------------------------------- | ||||
kernel_aliases = dict(base_aliases) | ||||
kernel_aliases.update({ | ||||
MinRK
|
r9357 | 'ip' : 'IPKernelApp.ip', | ||
'hb' : 'IPKernelApp.hb_port', | ||||
'shell' : 'IPKernelApp.shell_port', | ||||
'iopub' : 'IPKernelApp.iopub_port', | ||||
'stdin' : 'IPKernelApp.stdin_port', | ||||
MinRK
|
r10296 | 'control' : 'IPKernelApp.control_port', | ||
MinRK
|
r9357 | 'f' : 'IPKernelApp.connection_file', | ||
'transport': 'IPKernelApp.transport', | ||||
MinRK
|
r3970 | }) | ||
kernel_flags = dict(base_flags) | ||||
kernel_flags.update({ | ||||
'no-stdout' : ( | ||||
MinRK
|
r9357 | {'IPKernelApp' : {'no_stdout' : True}}, | ||
MinRK
|
r3970 | "redirect stdout to the null device"), | ||
'no-stderr' : ( | ||||
MinRK
|
r9357 | {'IPKernelApp' : {'no_stderr' : True}}, | ||
MinRK
|
r3970 | "redirect stderr to the null device"), | ||
MinRK
|
r9357 | 'pylab' : ( | ||
{'IPKernelApp' : {'pylab' : 'auto'}}, | ||||
"""Pre-load matplotlib and numpy for interactive use with | ||||
the default matplotlib backend."""), | ||||
MinRK
|
r3970 | }) | ||
MinRK
|
r9357 | # inherit flags&aliases for any IPython shell apps | ||
kernel_aliases.update(shell_aliases) | ||||
kernel_flags.update(shell_flags) | ||||
MinRK
|
r4962 | # inherit flags&aliases for Sessions | ||
kernel_aliases.update(session_aliases) | ||||
kernel_flags.update(session_flags) | ||||
Paul Ivanov
|
r11654 | _ctrl_c_message = """\ | ||
NOTE: When using the `ipython kernel` entry point, Ctrl-C will not work. | ||||
To exit, you will have to explicitly quit this process, by either sending | ||||
"quit" from a client, or using Ctrl-\\ in UNIX-like environments. | ||||
To read more about this, see https://github.com/ipython/ipython/issues/2049 | ||||
""" | ||||
MinRK
|
r3970 | #----------------------------------------------------------------------------- | ||
MinRK
|
r9357 | # Application class for starting an IPython Kernel | ||
MinRK
|
r3970 | #----------------------------------------------------------------------------- | ||
Paul Ivanov
|
r16501 | class IPKernelApp(BaseIPythonApplication, InteractiveShellApp, | ||
ConnectionFileMixin): | ||||
MinRK
|
r17961 | name='ipython-kernel' | ||
MinRK
|
r3970 | aliases = Dict(kernel_aliases) | ||
flags = Dict(kernel_flags) | ||||
Thomas Kluyver
|
r17095 | classes = [IPythonKernel, ZMQInteractiveShell, ProfileDir, Session] | ||
MinRK
|
r3970 | # the kernel class, as an importstring | ||
Thomas Kluyver
|
r17095 | kernel_class = Type('IPython.kernel.zmq.ipkernel.IPythonKernel', config=True, | ||
klass='IPython.kernel.zmq.kernelbase.Kernel', | ||||
MinRK
|
r10046 | help="""The Kernel subclass to be used. | ||
This should allow easy re-use of the IPKernelApp entry point | ||||
to configure and launch kernels other than IPython's own. | ||||
""") | ||||
MinRK
|
r3970 | kernel = Any() | ||
poller = Any() # don't restrict this even though current pollers are all Threads | ||||
heartbeat = Instance(Heartbeat) | ||||
ports = Dict() | ||||
MinRK
|
r4118 | |||
MinRK
|
r3970 | # connection info: | ||
MinRK
|
r4958 | |||
MinRK
|
r9175 | @property | ||
def abs_connection_file(self): | ||||
if os.path.basename(self.connection_file) == self.connection_file: | ||||
return os.path.join(self.profile_dir.security_dir, self.connection_file) | ||||
else: | ||||
return self.connection_file | ||||
MinRK
|
r3970 | |||
# streams, etc. | ||||
no_stdout = Bool(False, config=True, help="redirect stdout to the null device") | ||||
no_stderr = Bool(False, config=True, help="redirect stderr to the null device") | ||||
MinRK
|
r9372 | outstream_class = DottedObjectName('IPython.kernel.zmq.iostream.OutStream', | ||
Thomas Kluyver
|
r4055 | config=True, help="The importstring for the OutStream factory") | ||
MinRK
|
r9372 | displayhook_class = DottedObjectName('IPython.kernel.zmq.displayhook.ZMQDisplayHook', | ||
Thomas Kluyver
|
r4055 | config=True, help="The importstring for the DisplayHook factory") | ||
MinRK
|
r3970 | |||
# polling | ||||
Min RK
|
r19188 | parent_handle = Integer(int(os.environ.get('JPY_PARENT_PID') or 0), config=True, | ||
MinRK
|
r3970 | help="""kill this process if its parent dies. On Windows, the argument | ||
specifies the HANDLE of the parent process, otherwise it is simply boolean. | ||||
""") | ||||
Min RK
|
r19188 | interrupt = Integer(int(os.environ.get('JPY_INTERRUPT_EVENT') or 0), config=True, | ||
MinRK
|
r3970 | help="""ONLY USED ON WINDOWS | ||
MinRK
|
r9175 | Interrupt this process when the parent is signaled. | ||
MinRK
|
r3970 | """) | ||
def init_crash_handler(self): | ||||
# Install minimal exception handling | ||||
sys.excepthook = FormattedTB(mode='Verbose', color_scheme='NoColor', | ||||
ostream=sys.__stdout__) | ||||
def init_poller(self): | ||||
if sys.platform == 'win32': | ||||
MinRK
|
r11064 | if self.interrupt or self.parent_handle: | ||
self.poller = ParentPollerWindows(self.interrupt, self.parent_handle) | ||||
elif self.parent_handle: | ||||
MinRK
|
r3970 | self.poller = ParentPollerUnix() | ||
def _bind_socket(self, s, port): | ||||
MinRK
|
r7321 | iface = '%s://%s' % (self.transport, self.ip) | ||
MinRK
|
r9175 | if self.transport == 'tcp': | ||
if port <= 0: | ||||
port = s.bind_to_random_port(iface) | ||||
else: | ||||
s.bind("tcp://%s:%i" % (self.ip, port)) | ||||
elif self.transport == 'ipc': | ||||
if port <= 0: | ||||
MinRK
|
r9243 | port = 1 | ||
path = "%s-%i" % (self.ip, port) | ||||
while os.path.exists(path): | ||||
port = port + 1 | ||||
MinRK
|
r9175 | path = "%s-%i" % (self.ip, port) | ||
else: | ||||
path = "%s-%i" % (self.ip, port) | ||||
s.bind("ipc://%s" % path) | ||||
MinRK
|
r3970 | return port | ||
MinRK
|
r4958 | def write_connection_file(self): | ||
"""write connection info to JSON file""" | ||||
MinRK
|
r9175 | cf = self.abs_connection_file | ||
self.log.debug("Writing connection file: %s", cf) | ||||
MinRK
|
r7321 | write_connection_file(cf, ip=self.ip, key=self.session.key, transport=self.transport, | ||
MinRK
|
r4958 | shell_port=self.shell_port, stdin_port=self.stdin_port, hb_port=self.hb_port, | ||
MinRK
|
r10296 | iopub_port=self.iopub_port, control_port=self.control_port) | ||
MinRK
|
r6889 | |||
def cleanup_connection_file(self): | ||||
MinRK
|
r9175 | cf = self.abs_connection_file | ||
self.log.debug("Cleaning up connection file: %s", cf) | ||||
MinRK
|
r6889 | try: | ||
os.remove(cf) | ||||
except (IOError, OSError): | ||||
pass | ||||
MinRK
|
r7321 | |||
Brian Granger
|
r9119 | self.cleanup_ipc_files() | ||
MinRK
|
r7321 | |||
MinRK
|
r4958 | def init_connection_file(self): | ||
if not self.connection_file: | ||||
self.connection_file = "kernel-%s.json"%os.getpid() | ||||
MinRK
|
r4986 | try: | ||
Paul Ivanov
|
r16501 | self.connection_file = filefind(self.connection_file, ['.', self.profile_dir.security_dir]) | ||
except IOError: | ||||
self.log.debug("Connection file not found: %s", self.connection_file) | ||||
# This means I own it, so I will clean it up: | ||||
atexit.register(self.cleanup_connection_file) | ||||
return | ||||
try: | ||||
MinRK
|
r4986 | self.load_connection_file() | ||
except Exception: | ||||
self.log.error("Failed to load connection file: %r", self.connection_file, exc_info=True) | ||||
self.exit(1) | ||||
MinRK
|
r4962 | |||
MinRK
|
r3970 | def init_sockets(self): | ||
# Create a context, a session, and the kernel sockets. | ||||
MinRK
|
r4240 | self.log.info("Starting the kernel at pid: %i", os.getpid()) | ||
MinRK
|
r3970 | context = zmq.Context.instance() | ||
# Uncomment this to try closing the context. | ||||
# atexit.register(context.term) | ||||
MinRK
|
r4725 | self.shell_socket = context.socket(zmq.ROUTER) | ||
MinRK
|
r16535 | self.shell_socket.linger = 1000 | ||
MinRK
|
r3970 | self.shell_port = self._bind_socket(self.shell_socket, self.shell_port) | ||
MinRK
|
r10296 | self.log.debug("shell ROUTER Channel on port: %i" % self.shell_port) | ||
MinRK
|
r3970 | |||
self.iopub_socket = context.socket(zmq.PUB) | ||||
MinRK
|
r16535 | self.iopub_socket.linger = 1000 | ||
MinRK
|
r3970 | self.iopub_port = self._bind_socket(self.iopub_socket, self.iopub_port) | ||
MinRK
|
r10296 | self.log.debug("iopub PUB Channel on port: %i" % self.iopub_port) | ||
MinRK
|
r3970 | |||
MinRK
|
r4952 | self.stdin_socket = context.socket(zmq.ROUTER) | ||
MinRK
|
r16535 | self.stdin_socket.linger = 1000 | ||
MinRK
|
r3970 | self.stdin_port = self._bind_socket(self.stdin_socket, self.stdin_port) | ||
MinRK
|
r10296 | self.log.debug("stdin ROUTER Channel on port: %i" % self.stdin_port) | ||
self.control_socket = context.socket(zmq.ROUTER) | ||||
MinRK
|
r16535 | self.control_socket.linger = 1000 | ||
MinRK
|
r10296 | self.control_port = self._bind_socket(self.control_socket, self.control_port) | ||
self.log.debug("control ROUTER Channel on port: %i" % self.control_port) | ||||
MinRK
|
r6885 | |||
def init_heartbeat(self): | ||||
"""start the heart beating""" | ||||
MinRK
|
r5883 | # heartbeat doesn't share context, because it mustn't be blocked | ||
# by the GIL, which is accessed by libzmq when freeing zero-copy messages | ||||
hb_ctx = zmq.Context() | ||||
MinRK
|
r7321 | self.heartbeat = Heartbeat(hb_ctx, (self.transport, self.ip, self.hb_port)) | ||
MinRK
|
r3970 | self.hb_port = self.heartbeat.port | ||
MinRK
|
r10296 | self.log.debug("Heartbeat REP Channel on port: %i" % self.hb_port) | ||
MinRK
|
r6826 | self.heartbeat.start() | ||
MinRK
|
r6885 | |||
def log_connection_info(self): | ||||
"""display connection info, and store ports""" | ||||
MinRK
|
r4980 | basename = os.path.basename(self.connection_file) | ||
if basename == self.connection_file or \ | ||||
os.path.dirname(self.connection_file) == self.profile_dir.security_dir: | ||||
MinRK
|
r4958 | # use shortname | ||
MinRK
|
r4980 | tail = basename | ||
MinRK
|
r4958 | if self.profile != 'default': | ||
MinRK
|
r4980 | tail += " --profile %s" % self.profile | ||
MinRK
|
r4958 | else: | ||
tail = self.connection_file | ||||
MinRK
|
r10563 | lines = [ | ||
"To connect another client to this kernel, use:", | ||||
" --existing %s" % tail, | ||||
] | ||||
# log connection info | ||||
# info-level, so often not shown. | ||||
# frontends should use the %connect_info magic | ||||
# to see the connection info | ||||
for line in lines: | ||||
self.log.info(line) | ||||
MinRK
|
r11064 | # also raw print to the terminal if no parent_handle (`ipython kernel`) | ||
if not self.parent_handle: | ||||
Paul Ivanov
|
r11654 | io.rprint(_ctrl_c_message) | ||
MinRK
|
r10563 | for line in lines: | ||
io.rprint(line) | ||||
MinRK
|
r3970 | |||
self.ports = dict(shell=self.shell_port, iopub=self.iopub_port, | ||||
MinRK
|
r10296 | stdin=self.stdin_port, hb=self.hb_port, | ||
control=self.control_port) | ||||
MinRK
|
r3970 | |||
Min RK
|
r4112 | def init_blackhole(self): | ||
"""redirects stdout/stderr to devnull if necessary""" | ||||
MinRK
|
r3970 | if self.no_stdout or self.no_stderr: | ||
Brandon Parsons
|
r6650 | blackhole = open(os.devnull, 'w') | ||
MinRK
|
r3970 | if self.no_stdout: | ||
sys.stdout = sys.__stdout__ = blackhole | ||||
if self.no_stderr: | ||||
sys.stderr = sys.__stderr__ = blackhole | ||||
Min RK
|
r4112 | |||
def init_io(self): | ||||
"""Redirect input streams and set a display hook.""" | ||||
MinRK
|
r3970 | if self.outstream_class: | ||
outstream_factory = import_item(str(self.outstream_class)) | ||||
sys.stdout = outstream_factory(self.session, self.iopub_socket, u'stdout') | ||||
sys.stderr = outstream_factory(self.session, self.iopub_socket, u'stderr') | ||||
if self.displayhook_class: | ||||
displayhook_factory = import_item(str(self.displayhook_class)) | ||||
sys.displayhook = displayhook_factory(self.session, self.iopub_socket) | ||||
MinRK
|
r6790 | def init_signal(self): | ||
signal.signal(signal.SIGINT, signal.SIG_IGN) | ||||
MinRK
|
r3970 | def init_kernel(self): | ||
"""Create the Kernel object itself""" | ||||
MinRK
|
r9357 | shell_stream = ZMQStream(self.shell_socket) | ||
MinRK
|
r10296 | control_stream = ZMQStream(self.control_socket) | ||
MinRK
|
r10046 | |||
Thomas Kluyver
|
r17987 | kernel_factory = self.kernel_class.instance | ||
MinRK
|
r9357 | |||
MinRK
|
r11064 | kernel = kernel_factory(parent=self, session=self.session, | ||
MinRK
|
r10296 | shell_streams=[shell_stream, control_stream], | ||
MinRK
|
r3970 | iopub_socket=self.iopub_socket, | ||
stdin_socket=self.stdin_socket, | ||||
MinRK
|
r9357 | log=self.log, | ||
profile_dir=self.profile_dir, | ||||
Thomas Kluyver
|
r12160 | user_ns=self.user_ns, | ||
MinRK
|
r3970 | ) | ||
MinRK
|
r9357 | kernel.record_ports(self.ports) | ||
self.kernel = kernel | ||||
def init_gui_pylab(self): | ||||
"""Enable GUI event loop integration, taking pylab into account.""" | ||||
# Provide a wrapper for :meth:`InteractiveShellApp.init_gui_pylab` | ||||
# to ensure that any exception is printed straight to stderr. | ||||
# Normally _showtraceback associates the reply with an execution, | ||||
# which means frontends will never draw it, as this exception | ||||
# is not associated with any execute request. | ||||
shell = self.shell | ||||
_showtraceback = shell._showtraceback | ||||
try: | ||||
MinRK
|
r16569 | # replace error-sending traceback with stderr | ||
MinRK
|
r9357 | def print_tb(etype, evalue, stb): | ||
print ("GUI event loop or pylab initialization failed", | ||||
file=io.stderr) | ||||
print (shell.InteractiveTB.stb2text(stb), file=io.stderr) | ||||
shell._showtraceback = print_tb | ||||
InteractiveShellApp.init_gui_pylab(self) | ||||
finally: | ||||
shell._showtraceback = _showtraceback | ||||
def init_shell(self): | ||||
Thomas Kluyver
|
r16963 | self.shell = getattr(self.kernel, 'shell', None) | ||
if self.shell: | ||||
self.shell.configurables.append(self) | ||||
MinRK
|
r3970 | |||
MinRK
|
r5214 | @catch_config_error | ||
MinRK
|
r3970 | def initialize(self, argv=None): | ||
MinRK
|
r9357 | super(IPKernelApp, self).initialize(argv) | ||
Min RK
|
r4112 | self.init_blackhole() | ||
MinRK
|
r4958 | self.init_connection_file() | ||
MinRK
|
r3970 | self.init_poller() | ||
self.init_sockets() | ||||
MinRK
|
r6885 | self.init_heartbeat() | ||
# writing/displaying connection info must be *after* init_sockets/heartbeat | ||||
self.log_connection_info() | ||||
MinRK
|
r4958 | self.write_connection_file() | ||
MinRK
|
r3970 | self.init_io() | ||
MinRK
|
r6790 | self.init_signal() | ||
MinRK
|
r3970 | self.init_kernel() | ||
MinRK
|
r9357 | # shell init steps | ||
self.init_path() | ||||
self.init_shell() | ||||
Thomas Kluyver
|
r16963 | if self.shell: | ||
self.init_gui_pylab() | ||||
self.init_extensions() | ||||
self.init_code() | ||||
MinRK
|
r5361 | # flush stdout/stderr, so that anything written to these streams during | ||
# initialization do not get associated with the first execution request | ||||
sys.stdout.flush() | ||||
sys.stderr.flush() | ||||
MinRK
|
r3970 | |||
def start(self): | ||||
if self.poller is not None: | ||||
self.poller.start() | ||||
MinRK
|
r6790 | self.kernel.start() | ||
MinRK
|
r3970 | try: | ||
MinRK
|
r6790 | ioloop.IOLoop.instance().start() | ||
MinRK
|
r3970 | except KeyboardInterrupt: | ||
pass | ||||
MinRK
|
r4021 | |||
Thomas Kluyver
|
r12158 | launch_new_instance = IPKernelApp.launch_instance | ||
MinRK
|
r9357 | |||
def main(): | ||||
"""Run an IPKernel as an application""" | ||||
app = IPKernelApp.instance() | ||||
app.initialize() | ||||
app.start() | ||||
if __name__ == '__main__': | ||||
main() | ||||