mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-23 10:08:49 +01:00
160 lines
4.6 KiB
TypeScript
160 lines
4.6 KiB
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
'use strict';
|
|
|
|
import vscode = require('vscode');
|
|
import { TPromise, TValueCallback } from 'vs/base/common/winjs.base';
|
|
import Event, { Emitter } from 'vs/base/common/event';
|
|
import { ExtHostTerminalServiceShape, MainContext, MainThreadTerminalServiceShape } from './extHost.protocol';
|
|
import { IThreadService } from 'vs/workbench/services/thread/common/threadService';
|
|
|
|
export class ExtHostTerminal implements vscode.Terminal {
|
|
|
|
private _name: string;
|
|
private _id: number;
|
|
private _proxy: MainThreadTerminalServiceShape;
|
|
private _disposed: boolean;
|
|
private _queuedRequests: ApiRequest[];
|
|
private _pidPromise: TPromise<number>;
|
|
private _pidPromiseComplete: TValueCallback<number>;
|
|
|
|
constructor(proxy: MainThreadTerminalServiceShape, name?: string, shellPath?: string, shellArgs?: string[]) {
|
|
this._name = name;
|
|
this._queuedRequests = [];
|
|
this._proxy = proxy;
|
|
this._pidPromise = new TPromise<number>(c => {
|
|
this._pidPromiseComplete = c;
|
|
});
|
|
this._proxy.$createTerminal(name, shellPath, shellArgs).then((id) => {
|
|
this._id = id;
|
|
this._queuedRequests.forEach((r) => {
|
|
r.run(this._proxy, this._id);
|
|
});
|
|
this._queuedRequests = [];
|
|
});
|
|
}
|
|
|
|
public get name(): string {
|
|
this._checkDisposed();
|
|
return this._name;
|
|
}
|
|
|
|
public get processId(): Thenable<number> {
|
|
this._checkDisposed();
|
|
return this._pidPromise;
|
|
}
|
|
|
|
public sendText(text: string, addNewLine: boolean = true): void {
|
|
this._checkDisposed();
|
|
this._queueApiRequest(this._proxy.$sendText, [text, addNewLine]);
|
|
}
|
|
|
|
public show(preserveFocus: boolean): void {
|
|
this._checkDisposed();
|
|
this._queueApiRequest(this._proxy.$show, [preserveFocus]);
|
|
}
|
|
|
|
public hide(): void {
|
|
this._checkDisposed();
|
|
this._queueApiRequest(this._proxy.$hide, []);
|
|
}
|
|
|
|
public dispose(): void {
|
|
if (!this._disposed) {
|
|
this._disposed = true;
|
|
this._queueApiRequest(this._proxy.$dispose, []);
|
|
}
|
|
}
|
|
|
|
public _setProcessId(processId: number): void {
|
|
this._pidPromiseComplete(processId);
|
|
this._pidPromiseComplete = null;
|
|
}
|
|
|
|
private _queueApiRequest(callback: (...args: any[]) => void, args: any[]) {
|
|
let request: ApiRequest = new ApiRequest(callback, args);
|
|
if (!this._id) {
|
|
this._queuedRequests.push(request);
|
|
return;
|
|
}
|
|
request.run(this._proxy, this._id);
|
|
}
|
|
|
|
private _checkDisposed() {
|
|
if (this._disposed) {
|
|
throw new Error('Terminal has already been disposed');
|
|
}
|
|
}
|
|
}
|
|
|
|
export class ExtHostTerminalService implements ExtHostTerminalServiceShape {
|
|
|
|
private _onDidCloseTerminal: Emitter<vscode.Terminal>;
|
|
private _proxy: MainThreadTerminalServiceShape;
|
|
private _terminals: ExtHostTerminal[];
|
|
|
|
constructor(threadService: IThreadService) {
|
|
this._onDidCloseTerminal = new Emitter<vscode.Terminal>();
|
|
this._proxy = threadService.get(MainContext.MainThreadTerminalService);
|
|
this._terminals = [];
|
|
}
|
|
|
|
public createTerminal(name?: string, shellPath?: string, shellArgs?: string[]): vscode.Terminal {
|
|
let terminal = new ExtHostTerminal(this._proxy, name, shellPath, shellArgs);
|
|
this._terminals.push(terminal);
|
|
return terminal;
|
|
}
|
|
|
|
public get onDidCloseTerminal(): Event<vscode.Terminal> {
|
|
return this._onDidCloseTerminal && this._onDidCloseTerminal.event;
|
|
}
|
|
|
|
public $acceptTerminalClosed(id: number): void {
|
|
let index = this._getTerminalIndexById(id);
|
|
if (index === null) {
|
|
// The terminal was not created by the terminal API, ignore it
|
|
return;
|
|
}
|
|
let terminal = this._terminals.splice(index, 1)[0];
|
|
this._onDidCloseTerminal.fire(terminal);
|
|
}
|
|
|
|
public $acceptTerminalProcessId(id: number, processId: number): void {
|
|
let terminal = this._getTerminalById(id);
|
|
terminal._setProcessId(processId);
|
|
}
|
|
|
|
private _getTerminalById(id: number): ExtHostTerminal {
|
|
let index = this._getTerminalIndexById(id);
|
|
return index !== null ? this._terminals[index] : null;
|
|
}
|
|
|
|
private _getTerminalIndexById(id: number): number {
|
|
let index: number = null;
|
|
this._terminals.some((terminal, i) => {
|
|
let thisId = (<any>terminal)._id;
|
|
if (thisId === id) {
|
|
index = i;
|
|
return true;
|
|
}
|
|
});
|
|
return index;
|
|
}
|
|
}
|
|
|
|
class ApiRequest {
|
|
|
|
private _callback: (...args: any[]) => void;
|
|
private _args: any[];
|
|
|
|
constructor(callback: (...args: any[]) => void, args: any[]) {
|
|
this._callback = callback;
|
|
this._args = args;
|
|
}
|
|
|
|
public run(proxy: MainThreadTerminalServiceShape, id: number) {
|
|
this._callback.apply(proxy, [id].concat(this._args));
|
|
}
|
|
} |