123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816 |
- // Copyright (c) Jupyter Development Team.
- // Distributed under the terms of the Modified BSD License.
- import {
- KernelMessage
- } from '@jupyterlab/services';
- import {
- map, toArray
- } from '@phosphor/algorithm';
- import {
- Message
- } from '@phosphor/messaging';
- import {
- ISignal, Signal
- } from '@phosphor/signaling';
- import {
- Panel, PanelLayout
- } from '@phosphor/widgets';
- import {
- Widget
- } from '@phosphor/widgets';
- import {
- IClientSession
- } from '@jupyterlab/apputils';
- import {
- IEditorMimeTypeService, CodeEditor
- } from '@jupyterlab/codeeditor';
- import {
- Cell, CodeCell, RawCell,
- ICodeCellModel, IRawCellModel, CellModel,
- RawCellModel, CodeCellModel
- } from '@jupyterlab/cells';
- import {
- nbformat, IObservableVector, ObservableVector
- } from '@jupyterlab/coreutils';
- import {
- IRenderMime
- } from '@jupyterlab/rendermime';
- import {
- ForeignHandler
- } from './foreign';
- import {
- ConsoleHistory, IConsoleHistory
- } from './history';
- /**
- * The class name added to console widgets.
- */
- const CONSOLE_CLASS = 'jp-CodeConsole';
- /**
- * The class name added to the console banner.
- */
- const BANNER_CLASS = 'jp-CodeConsole-banner';
- /**
- * The class name of a cell whose input originated from a foreign session.
- */
- const FOREIGN_CELL_CLASS = 'jp-CodeConsole-foreignCell';
- /**
- * The class name of the active prompt cell.
- */
- const PROMPT_CLASS = 'jp-CodeConsole-promptCell';
- /**
- * The class name of the panel that holds cell content.
- */
- const CONTENT_CLASS = 'jp-CodeConsole-content';
- /**
- * The class name of the panel that holds prompts.
- */
- const INPUT_CLASS = 'jp-CodeConsole-input';
- /**
- * The timeout in ms for execution requests to the kernel.
- */
- const EXECUTION_TIMEOUT = 250;
- /**
- * A widget containing a Jupyter console.
- *
- * #### Notes
- * The CodeConsole class is intended to be used within a ConsolePanel
- * instance. Under most circumstances, it is not instantiated by user code.
- */
- export
- class CodeConsole extends Widget {
- /**
- * Construct a console widget.
- */
- constructor(options: CodeConsole.IOptions) {
- super();
- this.addClass(CONSOLE_CLASS);
- // Create the panels that hold the content and input.
- let layout = this.layout = new PanelLayout();
- this._cells = new ObservableVector<Cell>();
- this._content = new Panel();
- this._input = new Panel();
- let contentFactory = this.contentFactory = (
- options.contentFactory || CodeConsole.defaultContentFactory
- );
- let modelFactory = this.modelFactory = (
- options.modelFactory || CodeConsole.defaultModelFactory
- );
- this.rendermime = options.rendermime;
- this.session = options.session;
- this._mimeTypeService = options.mimeTypeService;
- // Add top-level CSS classes.
- this._content.addClass(CONTENT_CLASS);
- this._input.addClass(INPUT_CLASS);
- // Insert the content and input panes into the widget.
- layout.addWidget(this._content);
- layout.addWidget(this._input);
- // Create the banner.
- let model = modelFactory.createRawCell({});
- model.value.text = '...';
- let banner = this._banner = new RawCell({
- model,
- contentFactory: contentFactory
- });
- banner.addClass(BANNER_CLASS);
- banner.readOnly = true;
- this._content.addWidget(banner);
- // Set up the foreign iopub handler.
- this._foreignHandler = new ForeignHandler({
- session: this.session,
- parent: this,
- cellFactory: () => this._createCodeCell(),
- });
- this._history = new ConsoleHistory({
- session: this.session
- });
- this._onKernelChanged();
- this.session.kernelChanged.connect(this._onKernelChanged, this);
- }
- /**
- * A signal emitted when the console finished executing its prompt cell.
- */
- get executed(): ISignal<this, Date> {
- return this._executed;
- }
- /**
- * A signal emitted when a new prompt cell is created.
- */
- get promptCellCreated(): ISignal<this, CodeCell> {
- return this._promptCellCreated;
- }
- /**
- * The content factory used by the console.
- */
- readonly contentFactory: CodeConsole.IContentFactory;
- /**
- * The model factory for the console widget.
- */
- readonly modelFactory: CodeConsole.IModelFactory;
- /**
- * The rendermime instance used by the console.
- */
- readonly rendermime: IRenderMime;
- /**
- * The client session used by the console.
- */
- readonly session: IClientSession;
- /**
- * The list of content cells in the console.
- *
- * #### Notes
- * This list does not include the banner or the prompt for a console.
- */
- get cells(): IObservableVector<Cell> {
- return this._cells;
- }
- /*
- * The console input prompt cell.
- */
- get promptCell(): CodeCell | null {
- let inputLayout = (this._input.layout as PanelLayout);
- return inputLayout.widgets[0] as CodeCell || null;
- }
- /**
- * Add a new cell to the content panel.
- *
- * @param cell - The cell widget being added to the content panel.
- *
- * #### Notes
- * This method is meant for use by outside classes that want to inject content
- * into a console. It is distinct from the `inject` method in that it requires
- * rendered code cell widgets and does not execute them.
- */
- addCell(cell: Cell) {
- this._content.addWidget(cell);
- this._cells.pushBack(cell);
- cell.disposed.connect(this._onCellDisposed, this);
- this.update();
- }
- /**
- * Clear the code cells.
- */
- clear(): void {
- // Dispose all the content cells except the first, which is the banner.
- let cells = this._content.widgets;
- while (cells.length > 1) {
- cells[1].dispose();
- }
- }
- /**
- * Dispose of the resources held by the widget.
- */
- dispose() {
- // Do nothing if already disposed.
- if (this._foreignHandler === null) {
- return;
- }
- let cells = this._cells;
- let history = this._history;
- let foreignHandler = this._foreignHandler;
- this._banner = null;
- this._cells = null;
- this._content = null;
- this._input = null;
- this._mimeTypeService = null;
- this._foreignHandler = null;
- this._history = null;
- cells.clear();
- history.dispose();
- foreignHandler.dispose();
- super.dispose();
- }
- /**
- * Execute the current prompt.
- *
- * @param force - Whether to force execution without checking code
- * completeness.
- *
- * @param timeout - The length of time, in milliseconds, that the execution
- * should wait for the API to determine whether code being submitted is
- * incomplete before attempting submission anyway. The default value is `250`.
- */
- execute(force = false, timeout = EXECUTION_TIMEOUT): Promise<void> {
- if (this.session.status === 'dead') {
- return Promise.resolve(void 0);
- }
- let promptCell = this.promptCell;
- promptCell.model.trusted = true;
- if (force) {
- // Create a new prompt cell before kernel execution to allow typeahead.
- this.newPromptCell();
- return this._execute(promptCell);
- }
- // Check whether we should execute.
- return this._shouldExecute(timeout).then(should => {
- if (this.isDisposed) {
- return;
- }
- if (should) {
- // Create a new prompt cell before kernel execution to allow typeahead.
- this.newPromptCell();
- return this._execute(promptCell);
- }
- });
- }
- /**
- * Inject arbitrary code for the console to execute immediately.
- *
- * @param code - The code contents of the cell being injected.
- *
- * @returns A promise that indicates when the injected cell's execution ends.
- */
- inject(code: string): Promise<void> {
- let cell = this._createCodeCell();
- cell.model.value.text = code;
- this.addCell(cell);
- return this._execute(cell);
- }
- /**
- * Insert a line break in the prompt cell.
- */
- insertLinebreak(): void {
- let promptCell = this.promptCell;
- let model = promptCell.model;
- let editor = promptCell.editor;
- // Insert the line break at the cursor position, and move cursor forward.
- let pos = editor.getCursorPosition();
- let offset = editor.getOffsetAt(pos);
- let text = model.value.text;
- model.value.text = text.substr(0, offset) + '\n' + text.substr(offset);
- pos = editor.getPositionAt(offset + 1);
- editor.setCursorPosition(pos);
- }
- /**
- * Serialize the output.
- */
- serialize(): nbformat.ICodeCell[] {
- let promptCell = this.promptCell;
- let layout = this._content.layout as PanelLayout;
- // Serialize content.
- let output = map(layout.widgets, widget => {
- return (widget as CodeCell).model.toJSON() as nbformat.ICodeCell;
- });
- // Serialize prompt cell and return.
- return toArray(output).concat(promptCell.model.toJSON() as nbformat.ICodeCell);
- }
- /**
- * Handle the DOM events for the widget.
- *
- * @param event - The DOM event sent to the widget.
- *
- * #### Notes
- * This method implements the DOM `EventListener` interface and is
- * called in response to events on the notebook panel's node. It should
- * not be called directly by user code.
- */
- handleEvent(event: Event): void {
- switch (event.type) {
- case 'keydown':
- this._evtKeyDown(event as KeyboardEvent);
- break;
- default:
- break;
- }
- }
- /**
- * Handle `after_attach` messages for the widget.
- */
- protected onAfterAttach(msg: Message): void {
- let node = this.node;
- node.addEventListener('keydown', this, true);
- // Create a prompt if necessary.
- if (!this.promptCell) {
- this.newPromptCell();
- } else {
- this.promptCell.editor.focus();
- this.update();
- }
- }
- /**
- * Handle `before-detach` messages for the widget.
- */
- protected onBeforeDetach(msg: Message): void {
- let node = this.node;
- node.removeEventListener('keydown', this, true);
- }
- /**
- * Handle `'activate-request'` messages.
- */
- protected onActivateRequest(msg: Message): void {
- this.promptCell.editor.focus();
- this.update();
- }
- /**
- * Make a new prompt cell.
- */
- protected newPromptCell(): void {
- let promptCell = this.promptCell;
- let input = this._input;
- // Make the last prompt read-only, clear its signals, and move to content.
- if (promptCell) {
- promptCell.readOnly = true;
- promptCell.removeClass(PROMPT_CLASS);
- Signal.clearData(promptCell.editor);
- (input.layout as PanelLayout).removeWidgetAt(0);
- this.addCell(promptCell);
- }
- // Create the new prompt cell.
- let factory = this.contentFactory;
- let options = this._createCodeCellOptions();
- promptCell = factory.createCodeCell(options);
- promptCell.model.mimeType = this._mimetype;
- promptCell.addClass(PROMPT_CLASS);
- this._input.addWidget(promptCell);
- // Suppress the default "Enter" key handling.
- let editor = promptCell.editor;
- editor.addKeydownHandler(this._onEditorKeydown);
- this._history.editor = editor;
- if (this.isAttached) {
- this.activate();
- }
- this._promptCellCreated.emit(promptCell);
- }
- /**
- * Handle `update-request` messages.
- */
- protected onUpdateRequest(msg: Message): void {
- Private.scrollToBottom(this._content.node);
- }
- /**
- * Handle the `'keydown'` event for the widget.
- */
- private _evtKeyDown(event: KeyboardEvent): void {
- let editor = this.promptCell.editor;
- if (event.keyCode === 13 && !editor.hasFocus()) {
- event.preventDefault();
- editor.focus();
- }
- }
- /**
- * Execute the code in the current prompt cell.
- */
- private _execute(cell: CodeCell): Promise<void> {
- this._history.push(cell.model.value.text);
- cell.model.contentChanged.connect(this.update, this);
- let onSuccess = (value: KernelMessage.IExecuteReplyMsg) => {
- if (this.isDisposed) {
- return;
- }
- if (value && value.content.status === 'ok') {
- let content = value.content as KernelMessage.IExecuteOkReply;
- // Use deprecated payloads for backwards compatibility.
- if (content.payload && content.payload.length) {
- let setNextInput = content.payload.filter(i => {
- return (i as any).source === 'set_next_input';
- })[0];
- if (setNextInput) {
- let text = (setNextInput as any).text;
- // Ignore the `replace` value and always set the next cell.
- cell.model.value.text = text;
- }
- }
- }
- cell.model.contentChanged.disconnect(this.update, this);
- this.update();
- this._executed.emit(new Date());
- };
- let onFailure = () => {
- if (this.isDisposed) {
- return;
- }
- cell.model.contentChanged.disconnect(this.update, this);
- this.update();
- };
- return cell.execute(this.session).then(onSuccess, onFailure);
- }
- /**
- * Update the console based on the kernel info.
- */
- private _handleInfo(info: KernelMessage.IInfoReply): void {
- let layout = this._content.layout as PanelLayout;
- let banner = layout.widgets[0] as RawCell;
- banner.model.value.text = info.banner;
- let lang = info.language_info as nbformat.ILanguageInfoMetadata;
- this._mimetype = this._mimeTypeService.getMimeTypeByLanguage(lang);
- if (this.promptCell) {
- this.promptCell.model.mimeType = this._mimetype;
- }
- }
- /**
- * Create a new foreign cell.
- */
- private _createCodeCell(): CodeCell {
- let factory = this.contentFactory;
- let options = this._createCodeCellOptions();
- let cell = factory.createCodeCell(options);
- cell.readOnly = true;
- cell.model.mimeType = this._mimetype;
- cell.addClass(FOREIGN_CELL_CLASS);
- return cell;
- }
- /**
- * Create the options used to initialize a code cell widget.
- */
- private _createCodeCellOptions(): CodeCell.IOptions {
- let contentFactory = this.contentFactory;
- let modelFactory = this.modelFactory;
- let model = modelFactory.createCodeCell({ });
- let rendermime = this.rendermime;
- return { model, rendermime, contentFactory };
- }
- /**
- * Handle cell disposed signals.
- */
- private _onCellDisposed(sender: Widget, args: void): void {
- if (!this.isDisposed) {
- this._cells.remove(sender as CodeCell);
- }
- }
- /**
- * Test whether we should execute the prompt cell.
- */
- private _shouldExecute(timeout: number): Promise<boolean> {
- let promptCell = this.promptCell;
- let model = promptCell.model;
- let code = model.value.text + '\n';
- return new Promise<boolean>((resolve, reject) => {
- let timer = setTimeout(() => { resolve(true); }, timeout);
- this.session.kernel.requestIsComplete({ code }).then(isComplete => {
- clearTimeout(timer);
- if (this.isDisposed) {
- resolve(false);
- }
- if (isComplete.content.status !== 'incomplete') {
- resolve(true);
- return;
- }
- model.value.text = code + isComplete.content.indent;
- let editor = promptCell.editor;
- let pos = editor.getPositionAt(model.value.text.length);
- editor.setCursorPosition(pos);
- resolve(false);
- }).catch(() => { resolve(true); });
- });
- }
- /**
- * Handle a keydown event on an editor.
- */
- private _onEditorKeydown(editor: CodeEditor.IEditor, event: KeyboardEvent) {
- // Suppress "Enter" events.
- return event.keyCode === 13;
- }
- /**
- * Handle a change to the kernel.
- */
- private _onKernelChanged(): void {
- this.clear();
- let kernel = this.session.kernel;
- if (!kernel) {
- return;
- }
- kernel.ready.then(() => {
- if (this.isDisposed) {
- return;
- }
- this._handleInfo(kernel.info);
- });
- }
- private _banner: RawCell = null;
- private _cells: IObservableVector<Cell> = null;
- private _content: Panel = null;
- private _executed = new Signal<this, Date>(this);
- private _foreignHandler: ForeignHandler = null;
- private _history: IConsoleHistory = null;
- private _input: Panel = null;
- private _mimetype = 'text/x-ipython';
- private _mimeTypeService: IEditorMimeTypeService = null;
- private _promptCellCreated = new Signal<this, CodeCell>(this);
- }
- /**
- * A namespace for CodeConsole statics.
- */
- export
- namespace CodeConsole {
- /**
- * The initialization options for a console widget.
- */
- export
- interface IOptions {
- /**
- * The content factory for the console widget.
- */
- contentFactory: IContentFactory;
- /**
- * The model factory for the console widget.
- */
- modelFactory?: IModelFactory;
- /**
- * The mime renderer for the console widget.
- */
- rendermime: IRenderMime;
- /**
- * The client session for the console widget.
- */
- session: IClientSession;
- /**
- * The service used to look up mime types.
- */
- mimeTypeService: IEditorMimeTypeService;
- }
- /**
- * A content factory for console children.
- */
- export
- interface IContentFactory extends Cell.IContentFactory {
-
- /**
- * Create a new code cell widget.
- */
- createCodeCell(options: CodeCell.IOptions): CodeCell;
- /**
- * Create a new raw cell widget.
- */
- createRawCell(options: RawCell.IOptions): RawCell;
- }
- /**
- * Default implementation of `IContentFactory`.
- */
- export
- class ContentFactory extends Cell.ContentFactory implements IContentFactory {
- /**
- * Create a new code cell widget.
- *
- * #### Notes
- * If no cell content factory is passed in with the options, the one on the
- * notebook content factory is used.
- */
- createCodeCell(options: CodeCell.IOptions): CodeCell {
- if (!options.contentFactory) {
- options.contentFactory = this;
- }
- return new CodeCell(options);
- }
- /**
- * Create a new raw cell widget.
- *
- * #### Notes
- * If no cell content factory is passed in with the options, the one on the
- * notebook content factory is used.
- */
- createRawCell(options: RawCell.IOptions): RawCell {
- if (!options.contentFactory) {
- options.contentFactory = this;
- }
- return new RawCell(options);
- }
- }
- /**
- * An initialize options for `ContentFactory`.
- */
- export
- interface IContentFactoryOptions extends Cell.IContentFactory { }
- /**
- * A default content factory for the code console.
- */
- export
- const defaultContentFactory: IContentFactory = new ContentFactory();
- /**
- * A model factory for a console widget.
- */
- export
- interface IModelFactory {
- /**
- * The factory for code cell content.
- */
- readonly codeCellContentFactory: CodeCellModel.IContentFactory;
- /**
- * Create a new code cell.
- *
- * @param options - The options used to create the cell.
- *
- * @returns A new code cell. If a source cell is provided, the
- * new cell will be intialized with the data from the source.
- */
- createCodeCell(options: CodeCellModel.IOptions): ICodeCellModel;
- /**
- * Create a new raw cell.
- *
- * @param options - The options used to create the cell.
- *
- * @returns A new raw cell. If a source cell is provided, the
- * new cell will be intialized with the data from the source.
- */
- createRawCell(options: CellModel.IOptions): IRawCellModel;
- }
- /**
- * The default implementation of an `IModelFactory`.
- */
- export
- class ModelFactory {
- /**
- * Create a new cell model factory.
- */
- constructor(options: IModelFactoryOptions = {}) {
- this.codeCellContentFactory = (options.codeCellContentFactory ||
- CodeCellModel.defaultContentFactory
- );
- }
- /**
- * The factory for output area models.
- */
- readonly codeCellContentFactory: CodeCellModel.IContentFactory;
- /**
- * Create a new code cell.
- *
- * @param source - The data to use for the original source data.
- *
- * @returns A new code cell. If a source cell is provided, the
- * new cell will be intialized with the data from the source.
- * If the contentFactory is not provided, the instance
- * `codeCellContentFactory` will be used.
- */
- createCodeCell(options: CodeCellModel.IOptions): ICodeCellModel {
- if (!options.contentFactory) {
- options.contentFactory = this.codeCellContentFactory;
- }
- return new CodeCellModel(options);
- }
- /**
- * Create a new raw cell.
- *
- * @param source - The data to use for the original source data.
- *
- * @returns A new raw cell. If a source cell is provided, the
- * new cell will be intialized with the data from the source.
- */
- createRawCell(options: CellModel.IOptions): IRawCellModel {
- return new RawCellModel(options);
- }
- }
- /**
- * The options used to initialize a `ModelFactory`.
- */
- export
- interface IModelFactoryOptions {
- /**
- * The factory for output area models.
- */
- codeCellContentFactory?: CodeCellModel.IContentFactory;
- }
- /**
- * The default `ModelFactory` instance.
- */
- export
- const defaultModelFactory = new ModelFactory({});
- }
- /**
- * A namespace for console widget private data.
- */
- namespace Private {
- /**
- * Jump to the bottom of a node.
- *
- * @param node - The scrollable element.
- */
- export
- function scrollToBottom(node: HTMLElement): void {
- node.scrollTop = node.scrollHeight - node.clientHeight;
- }
- }
|