frontend_widget.py
616 lines
| 25.3 KiB
| text/x-python
|
PythonLexer
Fernando Perez
|
r3004 | from __future__ import print_function | ||
epatters
|
r2687 | # Standard library imports | ||
epatters
|
r2934 | from collections import namedtuple | ||
epatters
|
r2714 | import sys | ||
MinRK
|
r3090 | import time | ||
epatters
|
r2687 | |||
epatters
|
r2602 | # System library imports | ||
from pygments.lexers import PythonLexer | ||||
Evan Patterson
|
r3304 | from IPython.external.qt import QtCore, QtGui | ||
epatters
|
r2602 | |||
# Local imports | ||||
epatters
|
r2971 | from IPython.core.inputsplitter import InputSplitter, transform_classic_prompt | ||
Fernando Perez
|
r3051 | from IPython.core.oinspect import call_tip | ||
epatters
|
r2770 | from IPython.frontend.qt.base_frontend_mixin import BaseFrontendMixin | ||
epatters
|
r2894 | from IPython.utils.traitlets import Bool | ||
from bracket_matcher import BracketMatcher | ||||
epatters
|
r2602 | from call_tip_widget import CallTipWidget | ||
from completion_lexer import CompletionLexer | ||||
epatters
|
r2983 | from history_console_widget import HistoryConsoleWidget | ||
epatters
|
r2603 | from pygments_highlighter import PygmentsHighlighter | ||
epatters
|
r2602 | |||
class FrontendHighlighter(PygmentsHighlighter): | ||||
epatters
|
r2715 | """ A PygmentsHighlighter that can be turned on and off and that ignores | ||
prompts. | ||||
epatters
|
r2602 | """ | ||
def __init__(self, frontend): | ||||
epatters
|
r2736 | super(FrontendHighlighter, self).__init__(frontend._control.document()) | ||
epatters
|
r2602 | self._current_offset = 0 | ||
self._frontend = frontend | ||||
self.highlighting_on = False | ||||
Evan Patterson
|
r3304 | def highlightBlock(self, string): | ||
epatters
|
r2602 | """ Highlight a block of text. Reimplemented to highlight selectively. | ||
""" | ||||
epatters
|
r2715 | if not self.highlighting_on: | ||
return | ||||
Evan Patterson
|
r3304 | # The input to this function is a unicode string that may contain | ||
epatters
|
r2715 | # paragraph break characters, non-breaking spaces, etc. Here we acquire | ||
# the string as plain text so we can compare it. | ||||
current_block = self.currentBlock() | ||||
string = self._frontend._get_block_plain_text(current_block) | ||||
# Decide whether to check for the regular or continuation prompt. | ||||
if current_block.contains(self._frontend._prompt_pos): | ||||
prompt = self._frontend._prompt | ||||
else: | ||||
prompt = self._frontend._continuation_prompt | ||||
# Don't highlight the part of the string that contains the prompt. | ||||
if string.startswith(prompt): | ||||
self._current_offset = len(prompt) | ||||
Evan Patterson
|
r3304 | string = string[len(prompt):] | ||
epatters
|
r2715 | else: | ||
self._current_offset = 0 | ||||
Evan Patterson
|
r3304 | PygmentsHighlighter.highlightBlock(self, string) | ||
epatters
|
r2602 | |||
epatters
|
r2825 | def rehighlightBlock(self, block): | ||
""" Reimplemented to temporarily enable highlighting if disabled. | ||||
""" | ||||
old = self.highlighting_on | ||||
self.highlighting_on = True | ||||
super(FrontendHighlighter, self).rehighlightBlock(block) | ||||
self.highlighting_on = old | ||||
epatters
|
r2602 | def setFormat(self, start, count, format): | ||
epatters
|
r2715 | """ Reimplemented to highlight selectively. | ||
epatters
|
r2602 | """ | ||
start += self._current_offset | ||||
PygmentsHighlighter.setFormat(self, start, count, format) | ||||
epatters
|
r2770 | class FrontendWidget(HistoryConsoleWidget, BaseFrontendMixin): | ||
epatters
|
r2627 | """ A Qt frontend for a generic Python kernel. | ||
epatters
|
r2602 | """ | ||
epatters
|
r2851 | |||
# An option and corresponding signal for overriding the default kernel | ||||
# interrupt behavior. | ||||
epatters
|
r2884 | custom_interrupt = Bool(False) | ||
Evan Patterson
|
r3304 | custom_interrupt_requested = QtCore.Signal() | ||
epatters
|
r2851 | |||
epatters
|
r2913 | # An option and corresponding signals for overriding the default kernel | ||
epatters
|
r2851 | # restart behavior. | ||
epatters
|
r2884 | custom_restart = Bool(False) | ||
Evan Patterson
|
r3304 | custom_restart_kernel_died = QtCore.Signal(float) | ||
custom_restart_requested = QtCore.Signal() | ||||
epatters
|
r3516 | |||
epatters
|
r3682 | # Emitted when a user visible 'execute_request' has been submitted to the | ||
# kernel from the FrontendWidget. Contains the code to be executed. | ||||
executing = QtCore.Signal(object) | ||||
epatters
|
r3516 | # Emitted when a user-visible 'execute_reply' has been received from the | ||
# kernel and processed by the FrontendWidget. Contains the response message. | ||||
Evan Patterson
|
r3304 | executed = QtCore.Signal(object) | ||
epatters
|
r2961 | |||
# Emitted when an exit request has been received from the kernel. | ||||
Evan Patterson
|
r3304 | exit_requested = QtCore.Signal() | ||
epatters
|
r2851 | |||
# Protected class variables. | ||||
epatters
|
r2934 | _CallTipRequest = namedtuple('_CallTipRequest', ['id', 'pos']) | ||
_CompletionRequest = namedtuple('_CompletionRequest', ['id', 'pos']) | ||||
_ExecutionRequest = namedtuple('_ExecutionRequest', ['id', 'kind']) | ||||
epatters
|
r2894 | _input_splitter_class = InputSplitter | ||
MinRK
|
r3129 | _local_kernel = False | ||
epatters
|
r2800 | |||
epatters
|
r2602 | #--------------------------------------------------------------------------- | ||
epatters
|
r2736 | # 'object' interface | ||
epatters
|
r2602 | #--------------------------------------------------------------------------- | ||
epatters
|
r2736 | def __init__(self, *args, **kw): | ||
super(FrontendWidget, self).__init__(*args, **kw) | ||||
epatters
|
r2602 | |||
epatters
|
r2643 | # FrontendWidget protected variables. | ||
epatters
|
r2894 | self._bracket_matcher = BracketMatcher(self._control) | ||
epatters
|
r2736 | self._call_tip_widget = CallTipWidget(self._control) | ||
epatters
|
r2602 | self._completion_lexer = CompletionLexer(PythonLexer()) | ||
epatters
|
r2990 | self._copy_raw_action = QtGui.QAction('Copy (Raw Text)', None) | ||
epatters
|
r2824 | self._hidden = False | ||
epatters
|
r2894 | self._highlighter = FrontendHighlighter(self) | ||
Fernando Perez
|
r3004 | self._input_splitter = self._input_splitter_class(input_mode='cell') | ||
epatters
|
r2611 | self._kernel_manager = None | ||
epatters
|
r2934 | self._request_info = {} | ||
epatters
|
r2602 | |||
epatters
|
r2715 | # Configure the ConsoleWidget. | ||
epatters
|
r2723 | self.tab_width = 4 | ||
epatters
|
r2715 | self._set_continuation_prompt('... ') | ||
epatters
|
r3031 | # Configure the CallTipWidget. | ||
self._call_tip_widget.setFont(self.font) | ||||
self.font_changed.connect(self._call_tip_widget.setFont) | ||||
epatters
|
r2990 | # Configure actions. | ||
action = self._copy_raw_action | ||||
key = QtCore.Qt.CTRL | QtCore.Qt.SHIFT | QtCore.Qt.Key_C | ||||
action.setEnabled(False) | ||||
action.setShortcut(QtGui.QKeySequence(key)) | ||||
action.setShortcutContext(QtCore.Qt.WidgetWithChildrenShortcut) | ||||
action.triggered.connect(self.copy_raw) | ||||
self.copy_available.connect(action.setEnabled) | ||||
self.addAction(action) | ||||
epatters
|
r2736 | # Connect signal handlers. | ||
document = self._control.document() | ||||
document.contentsChange.connect(self._document_contents_change) | ||||
MinRK
|
r3129 | |||
epatters
|
r3361 | # Set flag for whether we are connected via localhost. | ||
self._local_kernel = kw.get('local_kernel', | ||||
FrontendWidget._local_kernel) | ||||
epatters
|
r2612 | |||
epatters
|
r2669 | #--------------------------------------------------------------------------- | ||
epatters
|
r2971 | # 'ConsoleWidget' public interface | ||
#--------------------------------------------------------------------------- | ||||
def copy(self): | ||||
""" Copy the currently selected text to the clipboard, removing prompts. | ||||
""" | ||||
Evan Patterson
|
r3304 | text = self._control.textCursor().selection().toPlainText() | ||
epatters
|
r2971 | if text: | ||
lines = map(transform_classic_prompt, text.splitlines()) | ||||
text = '\n'.join(lines) | ||||
epatters
|
r3022 | QtGui.QApplication.clipboard().setText(text) | ||
epatters
|
r2971 | |||
#--------------------------------------------------------------------------- | ||||
epatters
|
r2602 | # 'ConsoleWidget' abstract interface | ||
#--------------------------------------------------------------------------- | ||||
epatters
|
r2688 | def _is_complete(self, source, interactive): | ||
""" Returns whether 'source' can be completely processed and a new | ||||
prompt created. When triggered by an Enter/Return key press, | ||||
'interactive' is True; otherwise, it is False. | ||||
epatters
|
r2602 | """ | ||
epatters
|
r3022 | complete = self._input_splitter.push(source) | ||
epatters
|
r2688 | if interactive: | ||
complete = not self._input_splitter.push_accepts_more() | ||||
return complete | ||||
epatters
|
r2961 | def _execute(self, source, hidden): | ||
epatters
|
r2688 | """ Execute 'source'. If 'hidden', do not show any output. | ||
Fernando Perez
|
r2926 | |||
See parent class :meth:`execute` docstring for full details. | ||||
epatters
|
r2688 | """ | ||
epatters
|
r2961 | msg_id = self.kernel_manager.xreq_channel.execute(source, hidden) | ||
epatters
|
r2934 | self._request_info['execute'] = self._ExecutionRequest(msg_id, 'user') | ||
epatters
|
r2688 | self._hidden = hidden | ||
epatters
|
r3682 | if not hidden: | ||
self.executing.emit(source) | ||||
epatters
|
r2602 | |||
def _prompt_started_hook(self): | ||||
""" Called immediately after a new prompt is displayed. | ||||
""" | ||||
epatters
|
r2709 | if not self._reading: | ||
self._highlighter.highlighting_on = True | ||||
epatters
|
r2602 | |||
def _prompt_finished_hook(self): | ||||
""" Called immediately after a prompt is finished, i.e. when some input | ||||
will be processed and a new prompt displayed. | ||||
""" | ||||
epatters
|
r3361 | # Flush all state from the input splitter so the next round of | ||
# reading input starts with a clean buffer. | ||||
self._input_splitter.reset() | ||||
epatters
|
r2709 | if not self._reading: | ||
self._highlighter.highlighting_on = False | ||||
epatters
|
r2602 | |||
def _tab_pressed(self): | ||||
""" Called when the tab key is pressed. Returns whether to continue | ||||
processing the event. | ||||
""" | ||||
epatters
|
r2847 | # Perform tab completion if: | ||
# 1) The cursor is in the input buffer. | ||||
# 2) There is a non-whitespace character before the cursor. | ||||
text = self._get_input_buffer_cursor_line() | ||||
if text is None: | ||||
return False | ||||
complete = bool(text[:self._get_input_buffer_cursor_column()].strip()) | ||||
if complete: | ||||
self._complete() | ||||
return not complete | ||||
epatters
|
r2602 | |||
#--------------------------------------------------------------------------- | ||||
epatters
|
r2787 | # 'ConsoleWidget' protected interface | ||
#--------------------------------------------------------------------------- | ||||
epatters
|
r2990 | def _context_menu_make(self, pos): | ||
""" Reimplemented to add an action for raw copy. | ||||
""" | ||||
menu = super(FrontendWidget, self)._context_menu_make(pos) | ||||
for before_action in menu.actions(): | ||||
if before_action.shortcut().matches(QtGui.QKeySequence.Paste) == \ | ||||
QtGui.QKeySequence.ExactMatch: | ||||
menu.insertAction(before_action, self._copy_raw_action) | ||||
break | ||||
return menu | ||||
epatters
|
r2851 | def _event_filter_console_keypress(self, event): | ||
epatters
|
r3022 | """ Reimplemented for execution interruption and smart backspace. | ||
epatters
|
r2851 | """ | ||
key = event.key() | ||||
epatters
|
r2941 | if self._control_key_down(event.modifiers(), include_command=False): | ||
epatters
|
r3022 | |||
epatters
|
r2897 | if key == QtCore.Qt.Key_C and self._executing: | ||
epatters
|
r2913 | self.interrupt_kernel() | ||
epatters
|
r2914 | return True | ||
epatters
|
r3022 | |||
epatters
|
r2851 | elif key == QtCore.Qt.Key_Period: | ||
Brian Granger
|
r2910 | message = 'Are you sure you want to restart the kernel?' | ||
Fernando Perez
|
r3030 | self.restart_kernel(message, now=False) | ||
epatters
|
r2851 | return True | ||
epatters
|
r3022 | |||
elif not event.modifiers() & QtCore.Qt.AltModifier: | ||||
# Smart backspace: remove four characters in one backspace if: | ||||
# 1) everything left of the cursor is whitespace | ||||
# 2) the four characters immediately left of the cursor are spaces | ||||
if key == QtCore.Qt.Key_Backspace: | ||||
col = self._get_input_buffer_cursor_column() | ||||
cursor = self._control.textCursor() | ||||
if col > 3 and not cursor.hasSelection(): | ||||
text = self._get_input_buffer_cursor_line()[:col] | ||||
if text.endswith(' ') and not text.strip(): | ||||
cursor.movePosition(QtGui.QTextCursor.Left, | ||||
QtGui.QTextCursor.KeepAnchor, 4) | ||||
cursor.removeSelectedText() | ||||
return True | ||||
epatters
|
r2851 | return super(FrontendWidget, self)._event_filter_console_keypress(event) | ||
epatters
|
r2896 | def _insert_continuation_prompt(self, cursor): | ||
epatters
|
r2787 | """ Reimplemented for auto-indentation. | ||
""" | ||||
epatters
|
r2896 | super(FrontendWidget, self)._insert_continuation_prompt(cursor) | ||
epatters
|
r3022 | cursor.insertText(' ' * self._input_splitter.indent_spaces) | ||
epatters
|
r2787 | |||
#--------------------------------------------------------------------------- | ||||
epatters
|
r2770 | # 'BaseFrontendMixin' abstract interface | ||
epatters
|
r2602 | #--------------------------------------------------------------------------- | ||
epatters
|
r2770 | def _handle_complete_reply(self, rep): | ||
""" Handle replies for tab completion. | ||||
epatters
|
r2602 | """ | ||
epatters
|
r2770 | cursor = self._get_cursor() | ||
epatters
|
r2934 | info = self._request_info.get('complete') | ||
if info and info.id == rep['parent_header']['msg_id'] and \ | ||||
info.pos == cursor.position(): | ||||
epatters
|
r2867 | text = '.'.join(self._get_context()) | ||
epatters
|
r2770 | cursor.movePosition(QtGui.QTextCursor.Left, n=len(text)) | ||
self._complete_with_items(cursor, rep['content']['matches']) | ||||
epatters
|
r2602 | |||
epatters
|
r2770 | def _handle_execute_reply(self, msg): | ||
""" Handles replies for code execution. | ||||
epatters
|
r2609 | """ | ||
epatters
|
r2934 | info = self._request_info.get('execute') | ||
if info and info.id == msg['parent_header']['msg_id'] and \ | ||||
epatters
|
r2961 | info.kind == 'user' and not self._hidden: | ||
epatters
|
r2770 | # Make sure that all output from the SUB channel has been processed | ||
# before writing a new prompt. | ||||
self.kernel_manager.sub_channel.flush() | ||||
epatters
|
r3000 | # Reset the ANSI style information to prevent bad text in stdout | ||
# from messing up our colors. We're not a true terminal so we're | ||||
# allowed to do this. | ||||
if self.ansi_codes: | ||||
self._ansi_processor.reset_sgr() | ||||
epatters
|
r2770 | content = msg['content'] | ||
status = content['status'] | ||||
if status == 'ok': | ||||
self._process_execute_ok(msg) | ||||
elif status == 'error': | ||||
self._process_execute_error(msg) | ||||
elif status == 'abort': | ||||
self._process_execute_abort(msg) | ||||
epatters
|
r2797 | self._show_interpreter_prompt_for_reply(msg) | ||
epatters
|
r2770 | self.executed.emit(msg) | ||
def _handle_input_request(self, msg): | ||||
""" Handle requests for raw_input. | ||||
""" | ||||
epatters
|
r2771 | if self._hidden: | ||
raise RuntimeError('Request for raw input during hidden execution.') | ||||
epatters
|
r2770 | # Make sure that all output from the SUB channel has been processed | ||
# before entering readline mode. | ||||
self.kernel_manager.sub_channel.flush() | ||||
def callback(line): | ||||
self.kernel_manager.rep_channel.input(line) | ||||
self._readline(msg['content']['prompt'], callback=callback) | ||||
epatters
|
r2609 | |||
epatters
|
r2913 | def _handle_kernel_died(self, since_last_heartbeat): | ||
""" Handle the kernel's death by asking if the user wants to restart. | ||||
""" | ||||
if self.custom_restart: | ||||
self.custom_restart_kernel_died.emit(since_last_heartbeat) | ||||
else: | ||||
epatters
|
r3033 | message = 'The kernel heartbeat has been inactive for %.2f ' \ | ||
'seconds. Do you want to restart the kernel? You may ' \ | ||||
'first want to check the network connection.' % \ | ||||
since_last_heartbeat | ||||
Fernando Perez
|
r3030 | self.restart_kernel(message, now=True) | ||
epatters
|
r2913 | |||
epatters
|
r2770 | def _handle_object_info_reply(self, rep): | ||
""" Handle replies for call tips. | ||||
epatters
|
r2609 | """ | ||
epatters
|
r2770 | cursor = self._get_cursor() | ||
epatters
|
r2934 | info = self._request_info.get('call_tip') | ||
if info and info.id == rep['parent_header']['msg_id'] and \ | ||||
info.pos == cursor.position(): | ||||
Fernando Perez
|
r3051 | # Get the information for a call tip. For now we format the call | ||
# line as string, later we can pass False to format_call and | ||||
# syntax-highlight it ourselves for nicer formatting in the | ||||
# calltip. | ||||
David Warde-Farley
|
r3685 | if rep['content']['ismagic']: | ||
# Don't generate a call-tip for magics. Ideally, we should | ||||
# generate a tooltip, but not on ( like we do for actual | ||||
# callables. | ||||
call_info, doc = None, None | ||||
else: | ||||
call_info, doc = call_tip(rep['content'], format_call=True) | ||||
Fernando Perez
|
r3051 | if call_info or doc: | ||
self._call_tip_widget.show_call_info(call_info, doc) | ||||
epatters
|
r2643 | |||
epatters
|
r2770 | def _handle_pyout(self, msg): | ||
""" Handle display hook output. | ||||
""" | ||||
epatters
|
r2824 | if not self._hidden and self._is_from_this_session(msg): | ||
Brian Granger
|
r3278 | self._append_plain_text(msg['content']['data']['text/plain'] + '\n') | ||
epatters
|
r2609 | |||
epatters
|
r2770 | def _handle_stream(self, msg): | ||
""" Handle stdout, stderr, and stdin. | ||||
""" | ||||
epatters
|
r2824 | if not self._hidden and self._is_from_this_session(msg): | ||
Evan Patterson
|
r2997 | # Most consoles treat tabs as being 8 space characters. Convert tabs | ||
# to spaces so that output looks as expected regardless of this | ||||
# widget's tab width. | ||||
text = msg['content']['data'].expandtabs(8) | ||||
self._append_plain_text(text) | ||||
epatters
|
r2824 | self._control.moveCursor(QtGui.QTextCursor.End) | ||
Brian Granger
|
r3035 | |||
MinRK
|
r3090 | def _handle_shutdown_reply(self, msg): | ||
""" Handle shutdown signal, only if from other console. | ||||
""" | ||||
if not self._hidden and not self._is_from_this_session(msg): | ||||
MinRK
|
r3129 | if self._local_kernel: | ||
if not msg['content']['restart']: | ||||
sys.exit(0) | ||||
else: | ||||
# we just got notified of a restart! | ||||
time.sleep(0.25) # wait 1/4 sec to reset | ||||
# lest the request for a new prompt | ||||
# goes to the old kernel | ||||
self.reset() | ||||
else: # remote kernel, prompt on Kernel shutdown/reset | ||||
title = self.window().windowTitle() | ||||
if not msg['content']['restart']: | ||||
reply = QtGui.QMessageBox.question(self, title, | ||||
epatters
|
r3361 | "Kernel has been shutdown permanently. " | ||
"Close the Console?", | ||||
MinRK
|
r3129 | QtGui.QMessageBox.Yes,QtGui.QMessageBox.No) | ||
if reply == QtGui.QMessageBox.Yes: | ||||
sys.exit(0) | ||||
else: | ||||
reply = QtGui.QMessageBox.question(self, title, | ||||
"Kernel has been reset. Clear the Console?", | ||||
QtGui.QMessageBox.Yes,QtGui.QMessageBox.No) | ||||
if reply == QtGui.QMessageBox.Yes: | ||||
time.sleep(0.25) # wait 1/4 sec to reset | ||||
# lest the request for a new prompt | ||||
# goes to the old kernel | ||||
self.reset() | ||||
MinRK
|
r3090 | |||
epatters
|
r2770 | def _started_channels(self): | ||
""" Called when the KernelManager channels have started listening or | ||||
when the frontend is assigned an already listening KernelManager. | ||||
""" | ||||
epatters
|
r3033 | self.reset() | ||
epatters
|
r2770 | |||
#--------------------------------------------------------------------------- | ||||
epatters
|
r2971 | # 'FrontendWidget' public interface | ||
epatters
|
r2770 | #--------------------------------------------------------------------------- | ||
epatters
|
r2990 | def copy_raw(self): | ||
""" Copy the currently selected text to the clipboard without attempting | ||||
to remove prompts or otherwise alter the text. | ||||
""" | ||||
self._control.copy() | ||||
epatters
|
r2770 | def execute_file(self, path, hidden=False): | ||
""" Attempts to execute file with 'path'. If 'hidden', no output is | ||||
shown. | ||||
""" | ||||
self.execute('execfile("%s")' % path, hidden=hidden) | ||||
epatters
|
r2609 | |||
epatters
|
r2913 | def interrupt_kernel(self): | ||
""" Attempts to interrupt the running kernel. | ||||
""" | ||||
if self.custom_interrupt: | ||||
self.custom_interrupt_requested.emit() | ||||
elif self.kernel_manager.has_kernel: | ||||
epatters
|
r3027 | self.kernel_manager.interrupt_kernel() | ||
epatters
|
r2913 | else: | ||
self._append_plain_text('Kernel process is either remote or ' | ||||
'unspecified. Cannot interrupt.\n') | ||||
epatters
|
r3033 | def reset(self): | ||
""" Resets the widget to its initial state. Similar to ``clear``, but | ||||
also re-writes the banner and aborts execution if necessary. | ||||
""" | ||||
if self._executing: | ||||
self._executing = False | ||||
self._request_info['execute'] = None | ||||
self._reading = False | ||||
self._highlighter.highlighting_on = False | ||||
self._control.clear() | ||||
self._append_plain_text(self._get_banner()) | ||||
self._show_interpreter_prompt() | ||||
Fernando Perez
|
r3030 | def restart_kernel(self, message, now=False): | ||
epatters
|
r2913 | """ Attempts to restart the running kernel. | ||
""" | ||||
epatters
|
r3033 | # FIXME: now should be configurable via a checkbox in the dialog. Right | ||
# now at least the heartbeat path sets it to True and the manual restart | ||||
# to False. But those should just be the pre-selected states of a | ||||
# checkbox that the user could override if so desired. But I don't know | ||||
# enough Qt to go implementing the checkbox now. | ||||
if self.custom_restart: | ||||
self.custom_restart_requested.emit() | ||||
elif self.kernel_manager.has_kernel: | ||||
# Pause the heart beat channel to prevent further warnings. | ||||
self.kernel_manager.hb_channel.pause() | ||||
# Prompt the user to restart the kernel. Un-pause the heartbeat if | ||||
# they decline. (If they accept, the heartbeat will be un-paused | ||||
# automatically when the kernel is restarted.) | ||||
buttons = QtGui.QMessageBox.Yes | QtGui.QMessageBox.No | ||||
result = QtGui.QMessageBox.question(self, 'Restart kernel?', | ||||
message, buttons) | ||||
if result == QtGui.QMessageBox.Yes: | ||||
try: | ||||
self.kernel_manager.restart_kernel(now=now) | ||||
except RuntimeError: | ||||
self._append_plain_text('Kernel started externally. ' | ||||
'Cannot restart.\n') | ||||
else: | ||||
self.reset() | ||||
epatters
|
r2913 | else: | ||
epatters
|
r3033 | self.kernel_manager.hb_channel.unpause() | ||
else: | ||||
self._append_plain_text('Kernel process is either remote or ' | ||||
'unspecified. Cannot restart.\n') | ||||
epatters
|
r2913 | |||
epatters
|
r2602 | #--------------------------------------------------------------------------- | ||
# 'FrontendWidget' protected interface | ||||
#--------------------------------------------------------------------------- | ||||
def _call_tip(self): | ||||
""" Shows a call tip, if appropriate, at the current cursor location. | ||||
""" | ||||
# Decide if it makes sense to show a call tip | ||||
epatters
|
r2736 | cursor = self._get_cursor() | ||
epatters
|
r2602 | cursor.movePosition(QtGui.QTextCursor.Left) | ||
Evan Patterson
|
r3304 | if cursor.document().characterAt(cursor.position()) != '(': | ||
epatters
|
r2602 | return False | ||
context = self._get_context(cursor) | ||||
if not context: | ||||
return False | ||||
# Send the metadata request to the kernel | ||||
epatters
|
r2612 | name = '.'.join(context) | ||
epatters
|
r2934 | msg_id = self.kernel_manager.xreq_channel.object_info(name) | ||
pos = self._get_cursor().position() | ||||
self._request_info['call_tip'] = self._CallTipRequest(msg_id, pos) | ||||
epatters
|
r2602 | return True | ||
def _complete(self): | ||||
""" Performs completion at the current cursor location. | ||||
""" | ||||
epatters
|
r2867 | context = self._get_context() | ||
if context: | ||||
# Send the completion request to the kernel | ||||
epatters
|
r2934 | msg_id = self.kernel_manager.xreq_channel.complete( | ||
epatters
|
r2867 | '.'.join(context), # text | ||
self._get_input_buffer_cursor_line(), # line | ||||
self._get_input_buffer_cursor_column(), # cursor_pos | ||||
self.input_buffer) # block | ||||
epatters
|
r2934 | pos = self._get_cursor().position() | ||
info = self._CompletionRequest(msg_id, pos) | ||||
self._request_info['complete'] = info | ||||
epatters
|
r2602 | |||
epatters
|
r2714 | def _get_banner(self): | ||
""" Gets a banner to display at the beginning of a session. | ||||
""" | ||||
banner = 'Python %s on %s\nType "help", "copyright", "credits" or ' \ | ||||
'"license" for more information.' | ||||
return banner % (sys.version, sys.platform) | ||||
epatters
|
r2602 | def _get_context(self, cursor=None): | ||
epatters
|
r2864 | """ Gets the context for the specified cursor (or the current cursor | ||
if none is specified). | ||||
epatters
|
r2602 | """ | ||
if cursor is None: | ||||
epatters
|
r2736 | cursor = self._get_cursor() | ||
epatters
|
r2764 | cursor.movePosition(QtGui.QTextCursor.StartOfBlock, | ||
epatters
|
r2602 | QtGui.QTextCursor.KeepAnchor) | ||
Evan Patterson
|
r3304 | text = cursor.selection().toPlainText() | ||
epatters
|
r2602 | return self._completion_lexer.get_context(text) | ||
epatters
|
r2770 | def _process_execute_abort(self, msg): | ||
""" Process a reply for an aborted execution request. | ||||
epatters
|
r2715 | """ | ||
epatters
|
r2770 | self._append_plain_text("ERROR: execution aborted\n") | ||
epatters
|
r2602 | |||
epatters
|
r2770 | def _process_execute_error(self, msg): | ||
""" Process a reply for an execution request that resulted in an error. | ||||
epatters
|
r2705 | """ | ||
epatters
|
r2770 | content = msg['content'] | ||
Erik Tollerud
|
r3187 | # If a SystemExit is passed along, this means exit() was called - also | ||
# all the ipython %exit magic syntax of '-k' to be used to keep | ||||
# the kernel running | ||||
if content['ename']=='SystemExit': | ||||
keepkernel = content['evalue']=='-k' or content['evalue']=='True' | ||||
self._keep_kernel_on_exit = keepkernel | ||||
self.exit_requested.emit() | ||||
else: | ||||
traceback = ''.join(content['traceback']) | ||||
self._append_plain_text(traceback) | ||||
epatters
|
r2705 | |||
epatters
|
r2770 | def _process_execute_ok(self, msg): | ||
""" Process a reply for a successful execution equest. | ||||
epatters
|
r2705 | """ | ||
epatters
|
r2835 | payload = msg['content']['payload'] | ||
for item in payload: | ||||
if not self._process_execute_payload(item): | ||||
epatters
|
r2969 | warning = 'Warning: received unknown payload of type %s' | ||
epatters
|
r3006 | print(warning % repr(item['source'])) | ||
epatters
|
r2835 | |||
def _process_execute_payload(self, item): | ||||
""" Process a single payload item from the list of payload items in an | ||||
execution reply. Returns whether the payload was handled. | ||||
""" | ||||
epatters
|
r2770 | # The basic FrontendWidget doesn't handle payloads, as they are a | ||
# mechanism for going beyond the standard Python interpreter model. | ||||
epatters
|
r2835 | return False | ||
epatters
|
r2705 | |||
epatters
|
r2770 | def _show_interpreter_prompt(self): | ||
""" Shows a prompt for the interpreter. | ||||
""" | ||||
self._show_prompt('>>> ') | ||||
epatters
|
r2797 | def _show_interpreter_prompt_for_reply(self, msg): | ||
""" Shows a prompt for the interpreter given an 'execute_reply' message. | ||||
""" | ||||
self._show_interpreter_prompt() | ||||
epatters
|
r2770 | #------ Signal handlers ---------------------------------------------------- | ||
epatters
|
r2602 | def _document_contents_change(self, position, removed, added): | ||
epatters
|
r2744 | """ Called whenever the document's content changes. Display a call tip | ||
epatters
|
r2602 | if appropriate. | ||
""" | ||||
# Calculate where the cursor should be *after* the change: | ||||
position += added | ||||
epatters
|
r2736 | document = self._control.document() | ||
if position == self._get_cursor().position(): | ||||
epatters
|
r2602 | self._call_tip() | ||