extHost.api.impl.ts 21.0 KB
Newer Older
E
Erich Gamma 已提交
1 2 3 4 5 6
/*---------------------------------------------------------------------------------------------
 *  Copyright (c) Microsoft Corporation. All rights reserved.
 *  Licensed under the MIT License. See License.txt in the project root for license information.
 *--------------------------------------------------------------------------------------------*/
'use strict';

7
import {Emitter} from 'vs/base/common/event';
E
Erich Gamma 已提交
8
import {score} from 'vs/editor/common/modes/languageSelector';
9
import * as Platform from 'vs/base/common/platform';
10
import {IThreadService} from 'vs/workbench/services/thread/common/threadService';
E
Erich Gamma 已提交
11
import * as errors from 'vs/base/common/errors';
J
Johannes Rieken 已提交
12
import {ExtHostFileSystemEventService} from 'vs/workbench/api/node/extHostFileSystemEventService';
13
import {ExtHostDocuments} from 'vs/workbench/api/node/extHostDocuments';
J
Johannes Rieken 已提交
14 15 16 17 18 19 20 21 22 23 24
import {ExtHostConfiguration} from 'vs/workbench/api/node/extHostConfiguration';
import {ExtHostDiagnostics} from 'vs/workbench/api/node/extHostDiagnostics';
import {ExtHostWorkspace} from 'vs/workbench/api/node/extHostWorkspace';
import {ExtHostQuickOpen} from 'vs/workbench/api/node/extHostQuickOpen';
import {ExtHostStatusBar} from 'vs/workbench/api/node/extHostStatusBar';
import {ExtHostCommands} from 'vs/workbench/api/node/extHostCommands';
import {ExtHostOutputService} from 'vs/workbench/api/node/extHostOutputService';
import {ExtHostMessageService} from 'vs/workbench/api/node/extHostMessageService';
import {ExtHostEditors} from 'vs/workbench/api/node/extHostEditors';
import {ExtHostLanguages} from 'vs/workbench/api/node/extHostLanguages';
import {ExtHostLanguageFeatures} from 'vs/workbench/api/node/extHostLanguageFeatures';
25
import * as ExtHostTypeConverters from 'vs/workbench/api/node/extHostTypeConverters';
J
Johannes Rieken 已提交
26 27
import {registerApiCommands} from 'vs/workbench/api/node/extHostApiCommands';
import * as extHostTypes from 'vs/workbench/api/node/extHostTypes';
E
Erich Gamma 已提交
28 29 30 31
import Modes = require('vs/editor/common/modes');
import URI from 'vs/base/common/uri';
import Severity from 'vs/base/common/severity';
import EditorCommon = require('vs/editor/common/editorCommon');
32
import {IExtensionDescription} from 'vs/platform/extensions/common/extensions';
33
import {ExtHostExtensionService} from 'vs/workbench/api/node/extHostExtensionService';
34
import {ExtensionsRegistry} from 'vs/platform/extensions/common/extensionsRegistry';
E
Erich Gamma 已提交
35 36 37 38 39
import {TPromise} from 'vs/base/common/winjs.base';
import {IWorkspaceContextService} from 'vs/platform/workspace/common/workspace';
import {CancellationTokenSource} from 'vs/base/common/cancellation';
import vscode = require('vscode');
import * as paths from 'vs/base/common/paths';
J
Johannes Rieken 已提交
40
import {ITelemetryService, ITelemetryInfo} from 'vs/platform/telemetry/common/telemetry';
41
import {MainContext, ExtHostContext, InstanceCollection} from './extHost.protocol';
E
Erich Gamma 已提交
42 43 44 45 46

/**
 * This class implements the API described in vscode.d.ts,
 * for the case of the extensionHost host process
 */
47
export class ExtHostAPIImplementation {
E
Erich Gamma 已提交
48 49

	version: typeof vscode.version;
50
	env: typeof vscode.env;
E
Erich Gamma 已提交
51 52 53 54 55 56 57 58 59 60 61 62 63
	Uri: typeof vscode.Uri;
	Location: typeof vscode.Location;
	Diagnostic: typeof vscode.Diagnostic;
	DiagnosticSeverity: typeof vscode.DiagnosticSeverity;
	Disposable: typeof vscode.Disposable;
	TextEdit: typeof vscode.TextEdit;
	WorkspaceEdit: typeof vscode.WorkspaceEdit;
	ViewColumn: typeof vscode.ViewColumn;
	StatusBarAlignment: typeof vscode.StatusBarAlignment;
	Position: typeof vscode.Position;
	Range: typeof vscode.Range;
	Selection: typeof vscode.Selection;
	CancellationTokenSource: typeof vscode.CancellationTokenSource;
64
	EventEmitter: typeof vscode.EventEmitter;
E
Erich Gamma 已提交
65 66 67 68 69 70 71 72 73 74 75
	Hover: typeof vscode.Hover;
	DocumentHighlightKind: typeof vscode.DocumentHighlightKind;
	DocumentHighlight: typeof vscode.DocumentHighlight;
	SymbolKind: typeof vscode.SymbolKind;
	SymbolInformation: typeof vscode.SymbolInformation;
	CodeLens: typeof vscode.CodeLens;
	ParameterInformation: typeof vscode.ParameterInformation;
	SignatureInformation: typeof vscode.SignatureInformation;
	SignatureHelp: typeof vscode.SignatureHelp;
	CompletionItem: typeof vscode.CompletionItem;
	CompletionItemKind: typeof vscode.CompletionItemKind;
76
	CompletionList: typeof vscode.CompletionList;
J
Johannes Rieken 已提交
77
	DocumentLink: typeof vscode.DocumentLink;
E
Erich Gamma 已提交
78 79 80
	IndentAction: typeof vscode.IndentAction;
	OverviewRulerLane: typeof vscode.OverviewRulerLane;
	TextEditorRevealType: typeof vscode.TextEditorRevealType;
81
	EndOfLine: typeof vscode.EndOfLine;
A
Alex Dima 已提交
82
	TextEditorCursorStyle: typeof vscode.TextEditorCursorStyle;
83
	TextEditorSelectionChangeKind: typeof vscode.TextEditorSelectionChangeKind;
E
Erich Gamma 已提交
84 85 86 87 88 89 90
	commands: typeof vscode.commands;
	window: typeof vscode.window;
	workspace: typeof vscode.workspace;
	languages: typeof vscode.languages;
	extensions: typeof vscode.extensions;

	constructor(
91 92 93 94
		threadService: IThreadService,
		extensionService: ExtHostExtensionService,
		contextService: IWorkspaceContextService,
		telemetryService: ITelemetryService
E
Erich Gamma 已提交
95
	) {
96 97 98
		// Addressable instances
		const col = new InstanceCollection();

99 100 101 102 103 104 105 106
		const extHostDocuments = col.define(ExtHostContext.ExtHostDocuments).set<ExtHostDocuments>(new ExtHostDocuments(threadService));
		const extHostEditors = col.define(ExtHostContext.ExtHostEditors).set<ExtHostEditors>(new ExtHostEditors(threadService, extHostDocuments));
		const extHostCommands = col.define(ExtHostContext.ExtHostCommands).set<ExtHostCommands>(new ExtHostCommands(threadService, extHostEditors));
		const extHostConfiguration = col.define(ExtHostContext.ExtHostConfiguration).set<ExtHostConfiguration>(new ExtHostConfiguration());
		const extHostDiagnostics = col.define(ExtHostContext.ExtHostDiagnostics).set<ExtHostDiagnostics>(new ExtHostDiagnostics(threadService));
		const languageFeatures = col.define(ExtHostContext.ExtHostLanguageFeatures).set<ExtHostLanguageFeatures>(new ExtHostLanguageFeatures(threadService, extHostDocuments, extHostCommands, extHostDiagnostics));
		const extHostFileSystemEvent = col.define(ExtHostContext.ExtHostFileSystemEventService).set<ExtHostFileSystemEventService>(new ExtHostFileSystemEventService());
		const extHostQuickOpen = col.define(ExtHostContext.ExtHostQuickOpen).set<ExtHostQuickOpen>(new ExtHostQuickOpen(threadService));
107 108 109 110 111
		col.define(ExtHostContext.ExtHostExtensionService).set(extensionService);

		col.finish(false, threadService);

		// Others
112
		const mainThreadErrors = threadService.get(MainContext.MainThreadErrors);
113
		errors.setUnexpectedErrorHandler((err) => {
114
			mainThreadErrors.onUnexpectedExtHostError(errors.transformErrorForSerialization(err));
115 116 117 118 119 120 121 122 123 124 125 126 127 128
		});

		const extHostMessageService = new ExtHostMessageService(threadService);
		const extHostStatusBar = new ExtHostStatusBar(threadService);
		const extHostOutputService = new ExtHostOutputService(threadService);
		const workspacePath = contextService.getWorkspace() ? contextService.getWorkspace().resource.fsPath : undefined;
		const extHostWorkspace = new ExtHostWorkspace(threadService, workspacePath);
		const languages = new ExtHostLanguages(threadService);

		// the converter might create delegate commands to avoid sending args
		// around all the time
		ExtHostTypeConverters.Command.initialize(extHostCommands);
		registerApiCommands(extHostCommands);

E
Erich Gamma 已提交
129 130 131 132

		this.version = contextService.getConfiguration().env.version;
		this.Uri = URI;
		this.Location = extHostTypes.Location;
133 134
		this.Diagnostic = extHostTypes.Diagnostic;
		this.DiagnosticSeverity = extHostTypes.DiagnosticSeverity;
135
		this.EventEmitter = Emitter;
E
Erich Gamma 已提交
136 137 138 139 140 141 142 143
		this.Disposable = extHostTypes.Disposable;
		this.TextEdit = extHostTypes.TextEdit;
		this.WorkspaceEdit = extHostTypes.WorkspaceEdit;
		this.Position = extHostTypes.Position;
		this.Range = extHostTypes.Range;
		this.Selection = extHostTypes.Selection;
		this.CancellationTokenSource = CancellationTokenSource;
		this.Hover = extHostTypes.Hover;
144 145 146 147
		this.SymbolKind = extHostTypes.SymbolKind;
		this.SymbolInformation = extHostTypes.SymbolInformation;
		this.DocumentHighlightKind = extHostTypes.DocumentHighlightKind;
		this.DocumentHighlight = extHostTypes.DocumentHighlight;
E
Erich Gamma 已提交
148 149 150 151
		this.CodeLens = extHostTypes.CodeLens;
		this.ParameterInformation = extHostTypes.ParameterInformation;
		this.SignatureInformation = extHostTypes.SignatureInformation;
		this.SignatureHelp = extHostTypes.SignatureHelp;
152 153
		this.CompletionItem = extHostTypes.CompletionItem;
		this.CompletionItemKind = extHostTypes.CompletionItemKind;
154
		this.CompletionList = extHostTypes.CompletionList;
J
Johannes Rieken 已提交
155
		this.DocumentLink = extHostTypes.DocumentLink;
156 157 158 159
		this.ViewColumn = extHostTypes.ViewColumn;
		this.StatusBarAlignment = extHostTypes.StatusBarAlignment;
		this.IndentAction = Modes.IndentAction;
		this.OverviewRulerLane = EditorCommon.OverviewRulerLane;
160
		this.TextEditorRevealType = extHostTypes.TextEditorRevealType;
161
		this.EndOfLine = extHostTypes.EndOfLine;
A
Alex Dima 已提交
162
		this.TextEditorCursorStyle = EditorCommon.TextEditorCursorStyle;
163
		this.TextEditorSelectionChangeKind = extHostTypes.TextEditorSelectionChangeKind;
E
Erich Gamma 已提交
164

165
		// env namespace
J
Johannes Rieken 已提交
166 167
		let telemetryInfo: ITelemetryInfo;
		this.env = Object.freeze({
J
Johannes Rieken 已提交
168 169
			get machineId() { return telemetryInfo.machineId; },
			get sessionId() { return telemetryInfo.sessionId; },
170 171
			get language() { return Platform.language; },
			get appName() { return contextService.getConfiguration().env.appName; }
J
Johannes Rieken 已提交
172 173
		});
		telemetryService.getTelemetryInfo().then(info => telemetryInfo = info, errors.onUnexpectedError);
174

175
		// commands namespace
176 177
		this.commands = {
			registerCommand<T>(id: string, command: <T>(...args: any[]) => T | Thenable<T>, thisArgs?: any): vscode.Disposable {
A
Alex Dima 已提交
178
				return extHostCommands.registerCommand(id, command, thisArgs);
179
			},
J
Johannes Rieken 已提交
180 181
			registerTextEditorCommand(id: string, callback: (textEditor: vscode.TextEditor, edit: vscode.TextEditorEdit, ...args: any[]) => void, thisArg?: any): vscode.Disposable {
				return extHostCommands.registerCommand(id, (...args: any[]) => {
A
Alex Dima 已提交
182
					let activeTextEditor = extHostEditors.getActiveTextEditor();
183 184 185 186 187
					if (!activeTextEditor) {
						console.warn('Cannot execute ' + id + ' because there is no active text editor.');
						return;
					}

188
					return activeTextEditor.edit((edit: vscode.TextEditorEdit) => {
J
Johannes Rieken 已提交
189 190 191
						args.unshift(activeTextEditor, edit);
						callback.apply(thisArg, args);

192 193 194 195 196 197 198 199
					}).then((result) => {
						if (!result) {
							console.warn('Edits from command ' + id + ' were not applied.');
						}
					}, (err) => {
						console.warn('An error occured while running command ' + id, err);
					});
				});
200 201
			},
			executeCommand<T>(id: string, ...args: any[]): Thenable<T> {
A
Alex Dima 已提交
202
				return extHostCommands.executeCommand(id, ...args);
203
			},
204
			getCommands(filterInternal: boolean = false): Thenable<string[]> {
A
Alex Dima 已提交
205
				return extHostCommands.getCommands(filterInternal);
206 207 208
			}
		};

E
Erich Gamma 已提交
209 210
		this.window = {
			get activeTextEditor() {
A
Alex Dima 已提交
211
				return extHostEditors.getActiveTextEditor();
E
Erich Gamma 已提交
212 213
			},
			get visibleTextEditors() {
A
Alex Dima 已提交
214
				return extHostEditors.getVisibleTextEditors();
E
Erich Gamma 已提交
215
			},
216
			showTextDocument(document: vscode.TextDocument, column?: vscode.ViewColumn, preserveFocus?: boolean): TPromise<vscode.TextEditor> {
A
Alex Dima 已提交
217
				return extHostEditors.showTextDocument(document, column, preserveFocus);
E
Erich Gamma 已提交
218 219
			},
			createTextEditorDecorationType(options:vscode.DecorationRenderOptions): vscode.TextEditorDecorationType {
A
Alex Dima 已提交
220
				return extHostEditors.createTextEditorDecorationType(options);
E
Erich Gamma 已提交
221
			},
A
Alex Dima 已提交
222
			onDidChangeActiveTextEditor: extHostEditors.onDidChangeActiveTextEditor.bind(extHostEditors),
E
Erich Gamma 已提交
223
			onDidChangeTextEditorSelection: (listener: (e: vscode.TextEditorSelectionChangeEvent) => any, thisArgs?: any, disposables?: extHostTypes.Disposable[]) => {
A
Alex Dima 已提交
224
				return extHostEditors.onDidChangeTextEditorSelection(listener, thisArgs, disposables);
E
Erich Gamma 已提交
225 226
			},
			onDidChangeTextEditorOptions: (listener: (e: vscode.TextEditorOptionsChangeEvent) => any, thisArgs?: any, disposables?: extHostTypes.Disposable[]) => {
A
Alex Dima 已提交
227
				return extHostEditors.onDidChangeTextEditorOptions(listener, thisArgs, disposables);
E
Erich Gamma 已提交
228
			},
229
			onDidChangeTextEditorViewColumn(listener, thisArg?, disposables?) {
A
Alex Dima 已提交
230
				return extHostEditors.onDidChangeTextEditorViewColumn(listener, thisArg, disposables);
231
			},
E
Erich Gamma 已提交
232
			showInformationMessage: (message, ...items) => {
A
Alex Dima 已提交
233
				return extHostMessageService.showMessage(Severity.Info, message, items);
E
Erich Gamma 已提交
234 235
			},
			showWarningMessage: (message, ...items) => {
A
Alex Dima 已提交
236
				return extHostMessageService.showMessage(Severity.Warning, message, items);
E
Erich Gamma 已提交
237 238
			},
			showErrorMessage: (message, ...items) => {
A
Alex Dima 已提交
239
				return extHostMessageService.showMessage(Severity.Error, message, items);
E
Erich Gamma 已提交
240
			},
241 242
			showQuickPick: (items: any, options: vscode.QuickPickOptions, token?: vscode.CancellationToken) => {
				return extHostQuickOpen.showQuickPick(items, options, token);
E
Erich Gamma 已提交
243
			},
244 245
			showInputBox(options?: vscode.InputBoxOptions, token?: vscode.CancellationToken) {
				return extHostQuickOpen.showInput(options, token);
246
			},
E
Erich Gamma 已提交
247 248

			createStatusBarItem(position?: vscode.StatusBarAlignment, priority?: number): vscode.StatusBarItem {
A
Alex Dima 已提交
249
				return extHostStatusBar.createStatusBarEntry(<number>position, priority);
E
Erich Gamma 已提交
250 251
			},
			setStatusBarMessage(text: string, timeoutOrThenable?: number | Thenable<any>): vscode.Disposable {
A
Alex Dima 已提交
252
				return extHostStatusBar.setStatusBarMessage(text, timeoutOrThenable);
E
Erich Gamma 已提交
253
			},
254 255
			createOutputChannel(name: string): vscode.OutputChannel {
				return extHostOutputService.createOutputChannel(name);
E
Erich Gamma 已提交
256 257 258 259 260
			}
		};

		this.workspace = Object.freeze({
			get rootPath() {
A
Alex Dima 已提交
261
				return extHostWorkspace.getPath();
E
Erich Gamma 已提交
262 263 264 265 266
			},
			set rootPath(value) {
				throw errors.readonly();
			},
			asRelativePath: (pathOrUri) => {
A
Alex Dima 已提交
267
				return extHostWorkspace.getRelativePath(pathOrUri);
E
Erich Gamma 已提交
268
			},
269
			findFiles: (include, exclude, maxResults?, token?) => {
A
Alex Dima 已提交
270
				return extHostWorkspace.findFiles(include, exclude, maxResults, token);
E
Erich Gamma 已提交
271 272
			},
			saveAll: (includeUntitled?) => {
A
Alex Dima 已提交
273
				return extHostWorkspace.saveAll(includeUntitled);
E
Erich Gamma 已提交
274 275
			},
			applyEdit(edit: vscode.WorkspaceEdit): TPromise<boolean> {
A
Alex Dima 已提交
276
				return extHostWorkspace.appyEdit(edit);
E
Erich Gamma 已提交
277 278
			},
			createFileSystemWatcher: (pattern, ignoreCreate, ignoreChange, ignoreDelete): vscode.FileSystemWatcher => {
A
Alex Dima 已提交
279
				return extHostFileSystemEvent.createFileSystemWatcher(pattern, ignoreCreate, ignoreChange, ignoreDelete);
E
Erich Gamma 已提交
280 281
			},
			get textDocuments() {
A
Alex Dima 已提交
282
				return extHostDocuments.getAllDocumentData().map(data => data.document);
E
Erich Gamma 已提交
283 284 285 286
			},
			set textDocuments(value) {
				throw errors.readonly();
			},
287 288 289 290 291 292 293 294 295
			openTextDocument(uriOrFileName: vscode.Uri | string) {
				let uri: URI;
				if (typeof uriOrFileName === 'string') {
					uri = URI.file(uriOrFileName);
				} else if (uriOrFileName instanceof URI) {
					uri = <URI>uriOrFileName;
				} else {
					throw new Error('illegal argument - uriOrFileName');
				}
A
Alex Dima 已提交
296 297
				return extHostDocuments.ensureDocumentData(uri).then(() => {
					const data = extHostDocuments.getDocumentData(uri);
298 299
					return data && data.document;
				});
E
Erich Gamma 已提交
300
			},
J
Johannes Rieken 已提交
301
			registerTextDocumentContentProvider(scheme: string, provider: vscode.TextDocumentContentProvider) {
A
Alex Dima 已提交
302
				return extHostDocuments.registerTextDocumentContentProvider(scheme, provider);
J
Johannes Rieken 已提交
303
			},
E
Erich Gamma 已提交
304
			onDidOpenTextDocument: (listener, thisArgs?, disposables?) => {
A
Alex Dima 已提交
305
				return extHostDocuments.onDidAddDocument(listener, thisArgs, disposables);
E
Erich Gamma 已提交
306 307
			},
			onDidCloseTextDocument: (listener, thisArgs?, disposables?) => {
A
Alex Dima 已提交
308
				return extHostDocuments.onDidRemoveDocument(listener, thisArgs, disposables);
E
Erich Gamma 已提交
309 310
			},
			onDidChangeTextDocument: (listener, thisArgs?, disposables?) => {
A
Alex Dima 已提交
311
				return extHostDocuments.onDidChangeDocument(listener, thisArgs, disposables);
E
Erich Gamma 已提交
312 313
			},
			onDidSaveTextDocument: (listener, thisArgs?, disposables?) => {
A
Alex Dima 已提交
314
				return extHostDocuments.onDidSaveDocument(listener, thisArgs, disposables);
E
Erich Gamma 已提交
315 316
			},
			onDidChangeConfiguration: (listener: () => any, thisArgs?: any, disposables?: extHostTypes.Disposable[]) => {
A
Alex Dima 已提交
317
				return extHostConfiguration.onDidChangeConfiguration(listener, thisArgs, disposables);
E
Erich Gamma 已提交
318 319
			},
			getConfiguration: (section?: string):vscode.WorkspaceConfiguration => {
A
Alex Dima 已提交
320
				return extHostConfiguration.getConfiguration(section);
E
Erich Gamma 已提交
321 322 323 324 325
			}
		});

		this.languages = {
			createDiagnosticCollection(name?: string): vscode.DiagnosticCollection {
A
Alex Dima 已提交
326
				return extHostDiagnostics.createDiagnosticCollection(name);
E
Erich Gamma 已提交
327 328 329 330 331
			},
			getLanguages(): TPromise<string[]> {
				return languages.getLanguages();
			},
			match(selector: vscode.DocumentSelector, document: vscode.TextDocument): number {
332
				return score(selector, <any> document.uri, document.languageId);
E
Erich Gamma 已提交
333 334
			},
			registerCodeActionsProvider(selector: vscode.DocumentSelector, provider: vscode.CodeActionProvider): vscode.Disposable {
J
Johannes Rieken 已提交
335
				return languageFeatures.registerCodeActionProvider(selector, provider);
E
Erich Gamma 已提交
336 337
			},
			registerCodeLensProvider(selector: vscode.DocumentSelector, provider: vscode.CodeLensProvider): vscode.Disposable {
338
				return languageFeatures.registerCodeLensProvider(selector, provider);
E
Erich Gamma 已提交
339 340
			},
			registerDefinitionProvider(selector: vscode.DocumentSelector, provider: vscode.DefinitionProvider): vscode.Disposable {
J
Johannes Rieken 已提交
341
				return languageFeatures.registerDefinitionProvider(selector, provider);
E
Erich Gamma 已提交
342 343
			},
			registerHoverProvider(selector: vscode.DocumentSelector, provider: vscode.HoverProvider): vscode.Disposable {
J
Johannes Rieken 已提交
344
				return languageFeatures.registerHoverProvider(selector, provider);
E
Erich Gamma 已提交
345 346
			},
			registerDocumentHighlightProvider(selector: vscode.DocumentSelector, provider: vscode.DocumentHighlightProvider): vscode.Disposable {
347
				return languageFeatures.registerDocumentHighlightProvider(selector, provider);
E
Erich Gamma 已提交
348 349
			},
			registerReferenceProvider(selector: vscode.DocumentSelector, provider: vscode.ReferenceProvider): vscode.Disposable {
J
Johannes Rieken 已提交
350
				return languageFeatures.registerReferenceProvider(selector, provider);
E
Erich Gamma 已提交
351 352
			},
			registerRenameProvider(selector: vscode.DocumentSelector, provider: vscode.RenameProvider): vscode.Disposable {
J
Johannes Rieken 已提交
353
				return languageFeatures.registerRenameProvider(selector, provider);
E
Erich Gamma 已提交
354 355
			},
			registerDocumentSymbolProvider(selector: vscode.DocumentSelector, provider: vscode.DocumentSymbolProvider): vscode.Disposable {
J
Johannes Rieken 已提交
356
				return languageFeatures.registerDocumentSymbolProvider(selector, provider);
E
Erich Gamma 已提交
357 358
			},
			registerWorkspaceSymbolProvider(provider: vscode.WorkspaceSymbolProvider): vscode.Disposable {
359
				return languageFeatures.registerWorkspaceSymbolProvider(provider);
E
Erich Gamma 已提交
360 361
			},
			registerDocumentFormattingEditProvider(selector: vscode.DocumentSelector, provider: vscode.DocumentFormattingEditProvider): vscode.Disposable {
362
				return languageFeatures.registerDocumentFormattingEditProvider(selector, provider);
E
Erich Gamma 已提交
363 364
			},
			registerDocumentRangeFormattingEditProvider(selector: vscode.DocumentSelector, provider: vscode.DocumentRangeFormattingEditProvider): vscode.Disposable {
365
				return languageFeatures.registerDocumentRangeFormattingEditProvider(selector, provider);
E
Erich Gamma 已提交
366 367
			},
			registerOnTypeFormattingEditProvider(selector: vscode.DocumentSelector, provider: vscode.OnTypeFormattingEditProvider, firstTriggerCharacter: string, ...moreTriggerCharacters: string[]): vscode.Disposable {
368
				return languageFeatures.registerOnTypeFormattingEditProvider(selector, provider, [firstTriggerCharacter].concat(moreTriggerCharacters));
E
Erich Gamma 已提交
369 370
			},
			registerSignatureHelpProvider(selector: vscode.DocumentSelector, provider: vscode.SignatureHelpProvider, ...triggerCharacters: string[]): vscode.Disposable {
371
				return languageFeatures.registerSignatureHelpProvider(selector, provider, triggerCharacters);
E
Erich Gamma 已提交
372 373
			},
			registerCompletionItemProvider(selector: vscode.DocumentSelector, provider: vscode.CompletionItemProvider, ...triggerCharacters: string[]): vscode.Disposable {
374
				return languageFeatures.registerCompletionItemProvider(selector, provider, triggerCharacters);
E
Erich Gamma 已提交
375
			},
J
Johannes Rieken 已提交
376 377 378
			registerDocumentLinkProvider(selector: vscode.DocumentSelector, provider: vscode.DocumentLinkProvider): vscode.Disposable {
				return languageFeatures.registerDocumentLinkProvider(selector, provider);
			},
E
Erich Gamma 已提交
379
			setLanguageConfiguration: (language: string, configuration: vscode.LanguageConfiguration):vscode.Disposable => {
380
				return languageFeatures.setLanguageConfiguration(language, configuration);
E
Erich Gamma 已提交
381 382 383 384 385
			}
		};

		this.extensions = {
			getExtension(extensionId: string):Extension<any> {
A
Alex Dima 已提交
386
				let desc = ExtensionsRegistry.getExtensionDescription(extensionId);
E
Erich Gamma 已提交
387
				if (desc) {
A
Alex Dima 已提交
388
					return new Extension(<ExtHostExtensionService> extensionService, desc);
E
Erich Gamma 已提交
389 390 391
				}
			},
			get all():Extension<any>[] {
A
Alex Dima 已提交
392
				return ExtensionsRegistry.getAllExtensionDescriptions().map((desc) => new Extension(<ExtHostExtensionService> extensionService, desc));
E
Erich Gamma 已提交
393
			}
B
Benjamin Pasero 已提交
394
		};
E
Erich Gamma 已提交
395 396 397 398 399
	}
}

class Extension<T> implements vscode.Extension<T> {

A
Alex Dima 已提交
400
	private _extensionService: ExtHostExtensionService;
E
Erich Gamma 已提交
401 402 403 404 405

	public id: string;
	public extensionPath: string;
	public packageJSON: any;

A
Alex Dima 已提交
406
	constructor(extensionService:ExtHostExtensionService, description:IExtensionDescription) {
A
Alex Dima 已提交
407
		this._extensionService = extensionService;
E
Erich Gamma 已提交
408 409 410 411 412 413
		this.id = description.id;
		this.extensionPath = paths.normalize(description.extensionFolderPath, true);
		this.packageJSON = description;
	}

	get isActive(): boolean {
A
Alex Dima 已提交
414
		return this._extensionService.isActivated(this.id);
E
Erich Gamma 已提交
415 416 417
	}

	get exports(): T {
A
Alex Dima 已提交
418
		return <T>this._extensionService.get(this.id);
E
Erich Gamma 已提交
419 420 421
	}

	activate(): Thenable<T> {
A
Alex Dima 已提交
422
		return this._extensionService.activateById(this.id).then(() => this.exports);
E
Erich Gamma 已提交
423 424 425
	}
}

426
export function defineAPI(impl: typeof vscode) {
B
Benjamin Pasero 已提交
427 428
	let node_module = <any>require.__$__nodeRequire('module');
	let original = node_module._load;
E
Erich Gamma 已提交
429 430 431 432 433 434 435 436
	node_module._load = function load(request, parent, isMain) {
		if (request === 'vscode') {
			return impl;
		}
		return original.apply(this, arguments);
	};
	define('vscode', [], impl);
}