##// END OF EJS Templates
disallow no-prefix `ipython foo=bar` argument style....
disallow no-prefix `ipython foo=bar` argument style. This style is in rc1, but will be removed in rc2. Since they don't match any flag pattern, rc1-style arguments will be interpreted by IPython as files to be run. So `ipython gui=foo -i` will exec gui=foo, and pass '-i' to gui=foo. Presumably this file won't exist, so there will be an error: Error in executing file in user namespace: gui=foo Assignments *must* have two leading '-', as in: ipython --foo=bar all flags (non-assignments) can be specified with one or two leading '-', as in: ipython -i --pylab -pdb --pprint script.py or ipython --i -pylab --pdb -pprint script.py but help only reports two-leading, as single-leading options will likely be removed on moving to argparse, where they will be replaced by single-letter aliases. The common remaining invalid option will be: ipython -foo=bar and a suggestion for 'did you mean --foo=bar'? will be presented in these cases.

File last commit:

r4197:368e365a
r4197:368e365a
Show More
entry_point.py
158 lines | 5.8 KiB | text/x-python | PythonLexer
epatters
* Restored functionality after major merge....
r2778 """ Defines helper functions for creating kernel entry points and process
launchers.
"""
# Standard library imports.
Brian Granger
Draft of context closing....
r3046 import atexit
Brian Granger
Merge branch 'newkernel' into upstream-newkernel...
r2873 import os
epatters
* Restored functionality after major merge....
r2778 import socket
epatters
Fixed launch_kernel to support pythonw.exe. The joys of Windows programming...
r2944 from subprocess import Popen, PIPE
epatters
* Restored functionality after major merge....
r2778 import sys
# Local imports.
MinRK
zmq kernels now started via newapp
r3970 from parentpoller import ParentPollerWindows
Fernando Perez
Install kernel-side sys.excepthook so we at least see kernel tracebacks.
r2853
epatters
* Restored functionality after major merge....
r2778
MinRK
zmq kernels now started via newapp
r3970 def base_launch_kernel(code, shell_port=0, iopub_port=0, stdin_port=0, hb_port=0,
ip=None, stdin=None, stdout=None, stderr=None,
executable=None, independent=False, extra_arguments=[]):
epatters
* Restored functionality after major merge....
r2778 """ Launches a localhost kernel, binding to the specified ports.
Parameters
----------
code : str,
A string of Python code that imports and executes a kernel entry point.
MinRK
zmq kernels now started via newapp
r3970 shell_port : int, optional
epatters
* Restored functionality after major merge....
r2778 The port to use for XREP channel.
MinRK
zmq kernels now started via newapp
r3970 iopub_port : int, optional
epatters
* Restored functionality after major merge....
r2778 The port to use for the SUB channel.
MinRK
zmq kernels now started via newapp
r3970 stdin_port : int, optional
epatters
* Restored functionality after major merge....
r2778 The port to use for the REQ (raw input) channel.
Brian Granger
Added heartbeat support.
r2910 hb_port : int, optional
The port to use for the hearbeat REP channel.
MinRK
zmq kernels now started via newapp
r3970 ip : str, optional
The ip address the kernel will bind to.
epatters
Add stdin/stdout/stderr options to kernel launch functions.
r3828 stdin, stdout, stderr : optional (default None)
Standards streams, as defined in subprocess.Popen.
epatters
Add option for specifying Python executable to 'launch_kernel'.
r3812 executable : str, optional (default sys.executable)
The Python executable to use for the kernel process.
epatters
* Restored functionality after major merge....
r2778 independent : bool, optional (default False)
If set, the kernel process is guaranteed to survive if this process
dies. If not set, an effort is made to ensure that the kernel is killed
when this process dies. Note that in this case it is still good practice
to kill kernels manually before exiting.
extra_arguments = list, optional
A list of extra arguments to pass when executing the launch code.
Returns
-------
A tuple of form:
MinRK
zmq kernels now started via newapp
r3970 (kernel_process, shell_port, iopub_port, stdin_port, hb_port)
epatters
* Restored functionality after major merge....
r2778 where kernel_process is a Popen object and the ports are integers.
"""
# Find open ports as necessary.
ports = []
MinRK
zmq kernels now started via newapp
r3970 ports_needed = int(shell_port <= 0) + int(iopub_port <= 0) + \
int(stdin_port <= 0) + int(hb_port <= 0)
epatters
* Restored functionality after major merge....
r2778 for i in xrange(ports_needed):
sock = socket.socket()
sock.bind(('', 0))
ports.append(sock)
for i, sock in enumerate(ports):
port = sock.getsockname()[1]
sock.close()
ports[i] = port
MinRK
zmq kernels now started via newapp
r3970 if shell_port <= 0:
shell_port = ports.pop(0)
if iopub_port <= 0:
iopub_port = ports.pop(0)
if stdin_port <= 0:
stdin_port = ports.pop(0)
Brian Granger
Added heartbeat support.
r2910 if hb_port <= 0:
hb_port = ports.pop(0)
epatters
* Restored functionality after major merge....
r2778
# Build the kernel launch command.
epatters
Add option for specifying Python executable to 'launch_kernel'.
r3812 if executable is None:
executable = sys.executable
MinRK
disallow no-prefix `ipython foo=bar` argument style....
r4197 arguments = [ executable, '-c', code, '--shell=%i'%shell_port,
'--iopub=%i'%iopub_port, '--stdin=%i'%stdin_port,
'--hb=%i'%hb_port
MinRK
zmq kernels now started via newapp
r3970 ]
if ip is not None:
MinRK
disallow no-prefix `ipython foo=bar` argument style....
r4197 arguments.append('--ip=%s'%ip)
epatters
* Restored functionality after major merge....
r2778 arguments.extend(extra_arguments)
# Spawn a kernel.
epatters
Fixed launch_kernel to support pythonw.exe. The joys of Windows programming...
r2944 if sys.platform == 'win32':
epatters
Implemented kernel interrupts for Windows.
r3027 # Create a Win32 event for interrupting the kernel.
interrupt_event = ParentPollerWindows.create_interrupt_event()
MinRK
disallow no-prefix `ipython foo=bar` argument style....
r4197 arguments += [ '--interrupt=%i'%interrupt_event ]
epatters
More pythonw.exe-specific fixes to the kernel launching pipeline.
r2980
Evan Patterson
Properly support std* redirection when using pythonw on Windows.
r3833 # If this process in running on pythonw, stdin, stdout, and stderr are
# invalid. Popen will fail unless they are suitably redirected. We don't
# read from the pipes, but they must exist.
if sys.executable.endswith('pythonw.exe'):
epatters
Add stdin/stdout/stderr options to kernel launch functions.
r3828 redirect = True
_stdin = PIPE if stdin is None else stdin
_stdout = PIPE if stdout is None else stdout
_stderr = PIPE if stderr is None else stderr
else:
redirect = False
_stdin, _stdout, _stderr = stdin, stdout, stderr
epatters
More pythonw.exe-specific fixes to the kernel launching pipeline.
r2980
Evan Patterson
Properly support std* redirection when using pythonw on Windows.
r3833 # If the kernel is running on pythonw and stdout/stderr are not been
# re-directed, it will crash when more than 4KB of data is written to
# stdout or stderr. This is a bug that has been with Python for a very
# long time; see http://bugs.python.org/issue706263.
# A cleaner solution to this problem would be to pass os.devnull to
# Popen directly. Unfortunately, that does not work.
if executable.endswith('pythonw.exe'):
if stdout is None:
arguments.append('--no-stdout')
if stderr is None:
arguments.append('--no-stderr')
# Launch the kernel process.
epatters
Fixed launch_kernel to support pythonw.exe. The joys of Windows programming...
r2944 if independent:
epatters
Implemented kernel interrupts for Windows.
r3027 proc = Popen(arguments,
creationflags=512, # CREATE_NEW_PROCESS_GROUP
epatters
Add stdin/stdout/stderr options to kernel launch functions.
r3828 stdin=_stdin, stdout=_stdout, stderr=_stderr)
epatters
* Restored functionality after major merge....
r2778 else:
from _subprocess import DuplicateHandle, GetCurrentProcess, \
DUPLICATE_SAME_ACCESS
pid = GetCurrentProcess()
handle = DuplicateHandle(pid, pid, pid, 0,
epatters
* Improved frontend-side kernel restart support....
r2913 True, # Inheritable by new processes.
epatters
* Restored functionality after major merge....
r2778 DUPLICATE_SAME_ACCESS)
MinRK
disallow no-prefix `ipython foo=bar` argument style....
r4197 proc = Popen(arguments + ['--parent=%i'%int(handle)],
epatters
Add stdin/stdout/stderr options to kernel launch functions.
r3828 stdin=_stdin, stdout=_stdout, stderr=_stderr)
epatters
More pythonw.exe-specific fixes to the kernel launching pipeline.
r2980
epatters
Implemented kernel interrupts for Windows.
r3027 # Attach the interrupt event to the Popen objet so it can be used later.
proc.win32_interrupt_event = interrupt_event
epatters
More pythonw.exe-specific fixes to the kernel launching pipeline.
r2980 # Clean up pipes created to work around Popen bug.
epatters
Add stdin/stdout/stderr options to kernel launch functions.
r3828 if redirect:
if stdin is None:
proc.stdin.close()
if stdout is None:
proc.stdout.close()
if stderr is None:
proc.stderr.close()
epatters
More pythonw.exe-specific fixes to the kernel launching pipeline.
r2980
epatters
Fixed launch_kernel to support pythonw.exe. The joys of Windows programming...
r2944 else:
if independent:
epatters
Add stdin/stdout/stderr options to kernel launch functions.
r3828 proc = Popen(arguments, preexec_fn=lambda: os.setsid(),
stdin=stdin, stdout=stdout, stderr=stderr)
epatters
* Restored functionality after major merge....
r2778 else:
MinRK
disallow no-prefix `ipython foo=bar` argument style....
r4197 proc = Popen(arguments + ['--parent=1'],
epatters
Add stdin/stdout/stderr options to kernel launch functions.
r3828 stdin=stdin, stdout=stdout, stderr=stderr)
MinRK
zmq kernels now started via newapp
r3970 return proc, shell_port, iopub_port, stdin_port, hb_port