ipython_widget.py
367 lines
| 14.9 KiB
| text/x-python
|
PythonLexer
epatters
|
r2850 | """ A FrontendWidget that emulates the interface of the console IPython and | ||
supports the additional functionality provided by the IPython kernel. | ||||
TODO: Add support for retrieving the system default editor. Requires code | ||||
paths for Windows (use the registry), Mac OS (use LaunchServices), and | ||||
Linux (use the xdg system). | ||||
""" | ||||
epatters
|
r2793 | # Standard library imports | ||
epatters
|
r2883 | from collections import namedtuple | ||
epatters
|
r2793 | from subprocess import Popen | ||
epatters
|
r2630 | # System library imports | ||
from PyQt4 import QtCore, QtGui | ||||
# Local imports | ||||
epatters
|
r2789 | from IPython.core.inputsplitter import IPythonInputSplitter | ||
epatters
|
r2714 | from IPython.core.usage import default_banner | ||
epatters
|
r2884 | from IPython.utils.traitlets import Bool, Str | ||
epatters
|
r2627 | from frontend_widget import FrontendWidget | ||
epatters
|
r2884 | # The default style sheet: black text on a white background. | ||
default_style_sheet = ''' | ||||
.error { color: red; } | ||||
.in-prompt { color: navy; } | ||||
.in-prompt-number { font-weight: bold; } | ||||
.out-prompt { color: darkred; } | ||||
.out-prompt-number { font-weight: bold; } | ||||
''' | ||||
default_syntax_style = 'default' | ||||
# A dark style sheet: white text on a black background. | ||||
dark_style_sheet = ''' | ||||
QPlainTextEdit, QTextEdit { background-color: black; color: white } | ||||
QFrame { border: 1px solid grey; } | ||||
.error { color: red; } | ||||
.in-prompt { color: lime; } | ||||
.in-prompt-number { color: lime; font-weight: bold; } | ||||
.out-prompt { color: red; } | ||||
.out-prompt-number { color: red; font-weight: bold; } | ||||
''' | ||||
dark_syntax_style = 'monokai' | ||||
# Default prompts. | ||||
default_in_prompt = 'In [<span class="in-prompt-number">%i</span>]: ' | ||||
default_out_prompt = 'Out[<span class="out-prompt-number">%i</span>]: ' | ||||
epatters
|
r2627 | |||
class IPythonWidget(FrontendWidget): | ||||
""" A FrontendWidget for an IPython kernel. | ||||
""" | ||||
epatters
|
r2884 | # If set, the 'custom_edit_requested(str, int)' signal will be emitted when | ||
# an editor is needed for a file. This overrides 'editor' and 'editor_line' | ||||
# settings. | ||||
custom_edit = Bool(False) | ||||
epatters
|
r2836 | custom_edit_requested = QtCore.pyqtSignal(object, object) | ||
epatters
|
r2793 | |||
epatters
|
r2884 | # A command for invoking a system text editor. If the string contains a | ||
# {filename} format specifier, it will be used. Otherwise, the filename will | ||||
# be appended to the end the command. | ||||
editor = Str('default', config=True) | ||||
# The editor command to use when a specific line number is requested. The | ||||
# string should contain two format specifiers: {line} and {filename}. If | ||||
# this parameter is not specified, the line number option to the %edit magic | ||||
# will be ignored. | ||||
editor_line = Str(config=True) | ||||
# A CSS stylesheet. The stylesheet can contain classes for: | ||||
# 1. Qt: QPlainTextEdit, QFrame, QWidget, etc | ||||
# 2. Pygments: .c, .k, .o, etc (see PygmentsHighlighter) | ||||
# 3. IPython: .error, .in-prompt, .out-prompt, etc | ||||
style_sheet = Str(default_style_sheet, config=True) | ||||
# If not empty, use this Pygments style for syntax highlighting. Otherwise, | ||||
# the style sheet is queried for Pygments style information. | ||||
syntax_style = Str(default_syntax_style, config=True) | ||||
epatters
|
r2733 | |||
epatters
|
r2884 | # Prompts. | ||
in_prompt = Str(default_in_prompt, config=True) | ||||
out_prompt = Str(default_out_prompt, config=True) | ||||
epatters
|
r2883 | |||
epatters
|
r2835 | # FrontendWidget protected class variables. | ||
Fernando Perez
|
r2861 | _input_splitter_class = IPythonInputSplitter | ||
epatters
|
r2800 | |||
epatters
|
r2835 | # IPythonWidget protected class variables. | ||
epatters
|
r2884 | _PromptBlock = namedtuple('_PromptBlock', ['block', 'length', 'number']) | ||
epatters
|
r2835 | _payload_source_edit = 'IPython.zmq.zmqshell.ZMQInteractiveShell.edit_magic' | ||
_payload_source_page = 'IPython.zmq.page.page' | ||||
epatters
|
r2627 | #--------------------------------------------------------------------------- | ||
epatters
|
r2736 | # 'object' interface | ||
epatters
|
r2627 | #--------------------------------------------------------------------------- | ||
epatters
|
r2736 | def __init__(self, *args, **kw): | ||
super(IPythonWidget, self).__init__(*args, **kw) | ||||
epatters
|
r2627 | |||
epatters
|
r2789 | # IPythonWidget protected variables. | ||
epatters
|
r2797 | self._previous_prompt_obj = None | ||
epatters
|
r2715 | |||
epatters
|
r2884 | # Initialize widget styling. | ||
self._style_sheet_changed() | ||||
self._syntax_style_changed() | ||||
epatters
|
r2688 | |||
#--------------------------------------------------------------------------- | ||||
epatters
|
r2770 | # 'BaseFrontendMixin' abstract interface | ||
#--------------------------------------------------------------------------- | ||||
epatters
|
r2867 | def _handle_complete_reply(self, rep): | ||
""" Reimplemented to support IPython's improved completion machinery. | ||||
""" | ||||
cursor = self._get_cursor() | ||||
if rep['parent_header']['msg_id'] == self._complete_id and \ | ||||
cursor.position() == self._complete_pos: | ||||
# The completer tells us what text was actually used for the | ||||
# matching, so we must move that many characters left to apply the | ||||
# completions. | ||||
text = rep['content']['matched_text'] | ||||
cursor.movePosition(QtGui.QTextCursor.Left, n=len(text)) | ||||
self._complete_with_items(cursor, rep['content']['matches']) | ||||
epatters
|
r2844 | def _handle_history_reply(self, msg): | ||
""" Implemented to handle history replies, which are only supported by | ||||
the IPython kernel. | ||||
""" | ||||
history_dict = msg['content']['history'] | ||||
items = [ history_dict[key] for key in sorted(history_dict.keys()) ] | ||||
self._set_history(items) | ||||
def _handle_prompt_reply(self, msg): | ||||
""" Implemented to handle prompt number replies, which are only | ||||
supported by the IPython kernel. | ||||
""" | ||||
content = msg['content'] | ||||
self._show_interpreter_prompt(content['prompt_number'], | ||||
content['input_sep']) | ||||
epatters
|
r2806 | def _handle_pyout(self, msg): | ||
epatters
|
r2770 | """ Reimplemented for IPython-style "display hook". | ||
""" | ||||
epatters
|
r2824 | if not self._hidden and self._is_from_this_session(msg): | ||
content = msg['content'] | ||||
prompt_number = content['prompt_number'] | ||||
self._append_plain_text(content['output_sep']) | ||||
self._append_html(self._make_out_prompt(prompt_number)) | ||||
self._append_plain_text(content['data'] + '\n' + | ||||
content['output_sep2']) | ||||
epatters
|
r2770 | |||
epatters
|
r2844 | def _started_channels(self): | ||
""" Reimplemented to make a history request. | ||||
""" | ||||
super(IPythonWidget, self)._started_channels() | ||||
# FIXME: Disabled until history requests are properly implemented. | ||||
#self.kernel_manager.xreq_channel.history(raw=True, output=False) | ||||
Brian Granger
|
r2910 | def _handle_kernel_died(self, since_last_heartbeat): | ||
""" Handle the kernel's death by asking if the user wants to restart. | ||||
""" | ||||
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 | ||||
self._kernel_restart(message) | ||||
epatters
|
r2770 | #--------------------------------------------------------------------------- | ||
epatters
|
r2688 | # 'FrontendWidget' interface | ||
#--------------------------------------------------------------------------- | ||||
def execute_file(self, path, hidden=False): | ||||
""" Reimplemented to use the 'run' magic. | ||||
""" | ||||
Fernando Perez
|
r2838 | self.execute('%%run %s' % path, hidden=hidden) | ||
epatters
|
r2627 | |||
#--------------------------------------------------------------------------- | ||||
epatters
|
r2714 | # 'FrontendWidget' protected interface | ||
#--------------------------------------------------------------------------- | ||||
epatters
|
r2867 | def _complete(self): | ||
""" Reimplemented to support IPython's improved completion machinery. | ||||
""" | ||||
# We let the kernel split the input line, so we *always* send an empty | ||||
# text field. Readline-based frontends do get a real text field which | ||||
# they can use. | ||||
text = '' | ||||
# Send the completion request to the kernel | ||||
self._complete_id = self.kernel_manager.xreq_channel.complete( | ||||
text, # text | ||||
self._get_input_buffer_cursor_line(), # line | ||||
self._get_input_buffer_cursor_column(), # cursor_pos | ||||
self.input_buffer) # block | ||||
self._complete_pos = self._get_cursor().position() | ||||
epatters
|
r2714 | def _get_banner(self): | ||
epatters
|
r2715 | """ Reimplemented to return IPython's default banner. | ||
epatters
|
r2714 | """ | ||
epatters
|
r2806 | return default_banner + '\n' | ||
epatters
|
r2714 | |||
epatters
|
r2770 | def _process_execute_error(self, msg): | ||
""" Reimplemented for IPython-style traceback formatting. | ||||
""" | ||||
content = msg['content'] | ||||
epatters
|
r2841 | traceback = '\n'.join(content['traceback']) + '\n' | ||
if False: | ||||
# FIXME: For now, tracebacks come as plain text, so we can't use | ||||
Fernando Perez
|
r2838 | # the html renderer yet. Once we refactor ultratb to produce | ||
# properly styled tracebacks, this branch should be the default | ||||
traceback = traceback.replace(' ', ' ') | ||||
traceback = traceback.replace('\n', '<br/>') | ||||
ename = content['ename'] | ||||
ename_styled = '<span class="error">%s</span>' % ename | ||||
traceback = traceback.replace(ename, ename_styled) | ||||
self._append_html(traceback) | ||||
else: | ||||
# This is the fallback for now, using plain text with ansi escapes | ||||
self._append_plain_text(traceback) | ||||
epatters
|
r2770 | |||
epatters
|
r2835 | def _process_execute_payload(self, item): | ||
""" Reimplemented to handle %edit and paging payloads. | ||||
""" | ||||
if item['source'] == self._payload_source_edit: | ||||
epatters
|
r2850 | self._edit(item['filename'], item['line_number']) | ||
epatters
|
r2835 | return True | ||
elif item['source'] == self._payload_source_page: | ||||
self._page(item['data']) | ||||
return True | ||||
else: | ||||
return False | ||||
epatters
|
r2806 | def _show_interpreter_prompt(self, number=None, input_sep='\n'): | ||
epatters
|
r2715 | """ Reimplemented for IPython-style prompts. | ||
""" | ||||
epatters
|
r2844 | # If a number was not specified, make a prompt number request. | ||
epatters
|
r2797 | if number is None: | ||
epatters
|
r2844 | self.kernel_manager.xreq_channel.prompt() | ||
return | ||||
epatters
|
r2797 | |||
epatters
|
r2806 | # Show a new prompt and save information about it so that it can be | ||
# updated later if the prompt number turns out to be wrong. | ||||
epatters
|
r2866 | self._prompt_sep = input_sep | ||
epatters
|
r2797 | self._show_prompt(self._make_in_prompt(number), html=True) | ||
epatters
|
r2806 | block = self._control.document().lastBlock() | ||
length = len(self._prompt) | ||||
epatters
|
r2883 | self._previous_prompt_obj = self._PromptBlock(block, length, number) | ||
epatters
|
r2715 | |||
# Update continuation prompt to reflect (possibly) new prompt length. | ||||
epatters
|
r2733 | self._set_continuation_prompt( | ||
self._make_continuation_prompt(self._prompt), html=True) | ||||
epatters
|
r2715 | |||
epatters
|
r2797 | def _show_interpreter_prompt_for_reply(self, msg): | ||
""" Reimplemented for IPython-style prompts. | ||||
""" | ||||
# Update the old prompt number if necessary. | ||||
content = msg['content'] | ||||
previous_prompt_number = content['prompt_number'] | ||||
if self._previous_prompt_obj and \ | ||||
self._previous_prompt_obj.number != previous_prompt_number: | ||||
block = self._previous_prompt_obj.block | ||||
epatters
|
r2846 | |||
# Make sure the prompt block has not been erased. | ||||
epatters
|
r2845 | if block.isValid() and not block.text().isEmpty(): | ||
epatters
|
r2800 | |||
# Remove the old prompt and insert a new prompt. | ||||
epatters
|
r2797 | cursor = QtGui.QTextCursor(block) | ||
cursor.movePosition(QtGui.QTextCursor.Right, | ||||
QtGui.QTextCursor.KeepAnchor, | ||||
self._previous_prompt_obj.length) | ||||
prompt = self._make_in_prompt(previous_prompt_number) | ||||
epatters
|
r2800 | self._prompt = self._insert_html_fetching_plain_text( | ||
cursor, prompt) | ||||
epatters
|
r2825 | # When the HTML is inserted, Qt blows away the syntax | ||
# highlighting for the line, so we need to rehighlight it. | ||||
epatters
|
r2800 | self._highlighter.rehighlightBlock(cursor.block()) | ||
epatters
|
r2797 | self._previous_prompt_obj = None | ||
# Show a new prompt with the kernel's estimated prompt number. | ||||
epatters
|
r2806 | next_prompt = content['next_prompt'] | ||
self._show_interpreter_prompt(next_prompt['prompt_number'], | ||||
next_prompt['input_sep']) | ||||
epatters
|
r2797 | |||
epatters
|
r2714 | #--------------------------------------------------------------------------- | ||
epatters
|
r2733 | # 'IPythonWidget' protected interface | ||
#--------------------------------------------------------------------------- | ||||
epatters
|
r2850 | def _edit(self, filename, line=None): | ||
""" Opens a Python script for editing. | ||||
Parameters: | ||||
----------- | ||||
filename : str | ||||
A path to a local system file. | ||||
line : int, optional | ||||
A line of interest in the file. | ||||
""" | ||||
epatters
|
r2884 | if self.custom_edit: | ||
epatters
|
r2850 | self.custom_edit_requested.emit(filename, line) | ||
epatters
|
r2884 | elif self.editor == 'default': | ||
epatters
|
r2850 | self._append_plain_text('No default editor available.\n') | ||
else: | ||||
try: | ||||
filename = '"%s"' % filename | ||||
epatters
|
r2884 | if line and self.editor_line: | ||
command = self.editor_line.format(filename=filename, | ||||
line=line) | ||||
epatters
|
r2850 | else: | ||
try: | ||||
epatters
|
r2884 | command = self.editor.format() | ||
epatters
|
r2850 | except KeyError: | ||
epatters
|
r2884 | command = self.editor.format(filename=filename) | ||
epatters
|
r2850 | else: | ||
command += ' ' + filename | ||||
except KeyError: | ||||
self._append_plain_text('Invalid editor command.\n') | ||||
else: | ||||
try: | ||||
Popen(command, shell=True) | ||||
except OSError: | ||||
msg = 'Opening editor with command "%s" failed.\n' | ||||
self._append_plain_text(msg % command) | ||||
epatters
|
r2733 | def _make_in_prompt(self, number): | ||
""" Given a prompt number, returns an HTML In prompt. | ||||
""" | ||||
body = self.in_prompt % number | ||||
return '<span class="in-prompt">%s</span>' % body | ||||
def _make_continuation_prompt(self, prompt): | ||||
""" Given a plain text version of an In prompt, returns an HTML | ||||
continuation prompt. | ||||
""" | ||||
end_chars = '...: ' | ||||
space_count = len(prompt.lstrip('\n')) - len(end_chars) | ||||
body = ' ' * space_count + end_chars | ||||
return '<span class="in-prompt">%s</span>' % body | ||||
def _make_out_prompt(self, number): | ||||
""" Given a prompt number, returns an HTML Out prompt. | ||||
""" | ||||
body = self.out_prompt % number | ||||
return '<span class="out-prompt">%s</span>' % body | ||||
epatters
|
r2884 | |||
#------ Trait change handlers --------------------------------------------- | ||||
def _style_sheet_changed(self): | ||||
""" Set the style sheets of the underlying widgets. | ||||
""" | ||||
self.setStyleSheet(self.style_sheet) | ||||
self._control.document().setDefaultStyleSheet(self.style_sheet) | ||||
if self._page_control: | ||||
self._page_control.document().setDefaultStyleSheet(self.style_sheet) | ||||
bg_color = self._control.palette().background().color() | ||||
self._ansi_processor.set_background_color(bg_color) | ||||
def _syntax_style_changed(self): | ||||
""" Set the style for the syntax highlighter. | ||||
""" | ||||
if self.syntax_style: | ||||
self._highlighter.set_style(self.syntax_style) | ||||
else: | ||||
self._highlighter.set_style_sheet(self.style_sheet) | ||||