editor.ts 27.1 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';

J
Johannes Rieken 已提交
7
import { TPromise } from 'vs/base/common/winjs.base';
S
Sandeep Somavarapu 已提交
8
import Event, { Emitter, once } from 'vs/base/common/event';
9
import * as objects from 'vs/base/common/objects';
E
Erich Gamma 已提交
10 11
import types = require('vs/base/common/types');
import URI from 'vs/base/common/uri';
S
Sandeep Somavarapu 已提交
12
import { IDisposable, dispose } from 'vs/base/common/lifecycle';
J
Joao Moreno 已提交
13
import { IEditor, ICommonCodeEditor, IEditorViewState, IEditorOptions as ICodeEditorOptions, IModel } from 'vs/editor/common/editorCommon';
J
Johannes Rieken 已提交
14 15
import { IEditorInput, IEditorModel, IEditorOptions, ITextEditorOptions, IResourceInput, Position } from 'vs/platform/editor/common/editor';
import { IWorkspaceContextService } from 'vs/platform/workspace/common/workspace';
B
Benjamin Pasero 已提交
16
import { IEditorGroupService } from 'vs/workbench/services/group/common/groupService';
J
Johannes Rieken 已提交
17 18
import { SyncDescriptor, AsyncDescriptor } from 'vs/platform/instantiation/common/descriptors';
import { IInstantiationService, IConstructorSignature0 } from 'vs/platform/instantiation/common/instantiation';
19
import { telemetryURIDescriptor } from 'vs/platform/telemetry/common/telemetry';
E
Erich Gamma 已提交
20

21 22 23 24 25 26
export enum ConfirmResult {
	SAVE,
	DONT_SAVE,
	CANCEL
}

B
Benjamin Pasero 已提交
27 28 29 30 31 32 33 34 35 36 37 38 39
export interface IEditorDescriptor {

	getId(): string;

	getName(): string;

	describes(obj: any): boolean;
}

export const Extensions = {
	Editors: 'workbench.contributions.editors'
};

40 41 42 43 44 45 46 47 48 49
/**
 * Text diff editor id.
 */
export const TEXT_DIFF_EDITOR_ID = 'workbench.editors.textDiffEditor';

/**
 * Binary diff editor id.
 */
export const BINARY_DIFF_EDITOR_ID = 'workbench.editors.binaryResourceDiffEditor';

B
Benjamin Pasero 已提交
50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128
export interface IEditorRegistry {

	/**
	 * Registers an editor to the platform for the given input type. The second parameter also supports an
	 * array of input classes to be passed in. If the more than one editor is registered for the same editor
	 * input, the input itself will be asked which editor it prefers if this method is provided. Otherwise
	 * the first editor in the list will be returned.
	 *
	 * @param editorInputDescriptor a constructor function that returns an instance of EditorInput for which the
	 * registered editor should be used for.
	 */
	registerEditor(descriptor: IEditorDescriptor, editorInputDescriptor: SyncDescriptor<EditorInput>): void;
	registerEditor(descriptor: IEditorDescriptor, editorInputDescriptor: SyncDescriptor<EditorInput>[]): void;

	/**
	 * Returns the editor descriptor for the given input or null if none.
	 */
	getEditor(input: EditorInput): IEditorDescriptor;

	/**
	 * Returns the editor descriptor for the given identifier or null if none.
	 */
	getEditorById(editorId: string): IEditorDescriptor;

	/**
	 * Returns an array of registered editors known to the platform.
	 */
	getEditors(): IEditorDescriptor[];

	/**
	 * Registers the default input to be used for files in the workbench.
	 *
	 * @param editorInputDescriptor a descriptor that resolves to an instance of EditorInput that
	 * should be used to handle file inputs.
	 */
	registerDefaultFileInput(editorInputDescriptor: AsyncDescriptor<IFileEditorInput>): void;

	/**
	 * Returns a descriptor of the default input to be used for files in the workbench.
	 *
	 * @return a descriptor that resolves to an instance of EditorInput that should be used to handle
	 * file inputs.
	 */
	getDefaultFileInput(): AsyncDescriptor<IFileEditorInput>;

	/**
	 * Registers a editor input factory for the given editor input to the registry. An editor input factory
	 * is capable of serializing and deserializing editor inputs from string data.
	 *
	 * @param editorInputId the identifier of the editor input
	 * @param factory the editor input factory for serialization/deserialization
	 */
	registerEditorInputFactory(editorInputId: string, ctor: IConstructorSignature0<IEditorInputFactory>): void;

	/**
	 * Returns the editor input factory for the given editor input.
	 *
	 * @param editorInputId the identifier of the editor input
	 */
	getEditorInputFactory(editorInputId: string): IEditorInputFactory;

	setInstantiationService(service: IInstantiationService): void;
}

export interface IEditorInputFactory {

	/**
	 * Returns a string representation of the provided editor input that contains enough information
	 * to deserialize back to the original editor input from the deserialize() method.
	 */
	serialize(editorInput: EditorInput): string;

	/**
	 * Returns an editor input from the provided serialized form of the editor input. This form matches
	 * the value returned from the serialize() method.
	 */
	deserialize(instantiationService: IInstantiationService, serializedEditorInput: string): EditorInput;
}

E
Erich Gamma 已提交
129 130 131 132
/**
 * Editor inputs are lightweight objects that can be passed to the workbench API to open inside the editor part.
 * Each editor input is mapped to an editor that is capable of opening it through the Platform facade.
 */
133 134
export abstract class EditorInput implements IEditorInput {
	private _onDispose: Emitter<void>;
135
	protected _onDidChangeDirty: Emitter<void>;
B
Benjamin Pasero 已提交
136
	protected _onDidChangeLabel: Emitter<void>;
137

E
Erich Gamma 已提交
138 139
	private disposed: boolean;

140
	constructor() {
141
		this._onDidChangeDirty = new Emitter<void>();
B
Benjamin Pasero 已提交
142
		this._onDidChangeLabel = new Emitter<void>();
143 144
		this._onDispose = new Emitter<void>();

145 146 147
		this.disposed = false;
	}

148 149 150 151 152 153 154
	/**
	 * Fired when the dirty state of this input changes.
	 */
	public get onDidChangeDirty(): Event<void> {
		return this._onDidChangeDirty.event;
	}

B
Benjamin Pasero 已提交
155 156 157 158 159 160 161
	/**
	 * Fired when the label this input changes.
	 */
	public get onDidChangeLabel(): Event<void> {
		return this._onDidChangeLabel.event;
	}

162 163 164 165 166 167 168
	/**
	 * Fired when the model gets disposed.
	 */
	public get onDispose(): Event<void> {
		return this._onDispose.event;
	}

E
Erich Gamma 已提交
169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186
	/**
	 * Returns the name of this input that can be shown to the user. Examples include showing the name of the input
	 * above the editor area when the input is shown.
	 */
	public getName(): string {
		return null;
	}

	/**
	 * Returns the description of this input that can be shown to the user. Examples include showing the description of
	 * the input above the editor area to the side of the name of the input.
	 *
	 * @param verbose controls if the description should be short or can contain additional details.
	 */
	public getDescription(verbose?: boolean): string {
		return null;
	}

187 188 189 190 191
	/**
	 * Returns the unique type identifier of this input.
	 */
	public abstract getTypeId(): string;

E
Erich Gamma 已提交
192 193 194 195 196 197 198 199 200 201 202 203
	/**
	 * Returns the preferred editor for this input. A list of candidate editors is passed in that whee registered
	 * for the input. This allows subclasses to decide late which editor to use for the input on a case by case basis.
	 */
	public getPreferredEditorId(candidates: string[]): string {
		if (candidates && candidates.length > 0) {
			return candidates[0];
		}

		return null;
	}

204 205 206 207 208
	/**
	 * Returns a descriptor suitable for telemetry events or null if none is available.
	 *
	 * Subclasses should extend if they can contribute.
	 */
C
Christof Marti 已提交
209
	public getTelemetryDescriptor(): { [key: string]: any; } {
210 211 212
		return { typeId: this.getTypeId() };
	}

E
Erich Gamma 已提交
213 214 215 216 217 218
	/**
	 * Returns a type of EditorModel that represents the resolved input. Subclasses should
	 * override to provide a meaningful model. The optional second argument allows to specify
	 * if the EditorModel should be refreshed before returning it. Depending on the implementation
	 * this could mean to refresh the editor model contents with the version from disk.
	 */
219
	public abstract resolve(refresh?: boolean): TPromise<IEditorModel>;
E
Erich Gamma 已提交
220

221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249
	/**
	 * An editor that is dirty will be asked to be saved once it closes.
	 */
	public isDirty(): boolean {
		return false;
	}

	/**
	 * Subclasses should bring up a proper dialog for the user if the editor is dirty and return the result.
	 */
	public confirmSave(): ConfirmResult {
		return ConfirmResult.DONT_SAVE;
	}

	/**
	 * Saves the editor if it is dirty. Subclasses return a promise with a boolean indicating the success of the operation.
	 */
	public save(): TPromise<boolean> {
		return TPromise.as(true);
	}

	/**
	 * Reverts the editor if it is dirty. Subclasses return a promise with a boolean indicating the success of the operation.
	 */
	public revert(): TPromise<boolean> {
		return TPromise.as(true);
	}

	/**
250
	 * Called when this input is no longer opened in any editor. Subclasses can free resources as needed.
251 252
	 */
	public close(): void {
253 254 255
		this.dispose();
	}

256 257 258 259 260 261 262
	/**
	 * Subclasses can set this to false if it does not make sense to split the editor input.
	 */
	public supportsSplitEditor(): boolean {
		return true;
	}

263 264 265 266 267
	/**
	 * Returns true if this input is identical to the otherInput.
	 */
	public matches(otherInput: any): boolean {
		return this === otherInput;
268 269
	}

E
Erich Gamma 已提交
270 271 272 273 274 275
	/**
	 * Called when an editor input is no longer needed. Allows to free up any resources taken by
	 * resolving the editor input.
	 */
	public dispose(): void {
		this.disposed = true;
276
		this._onDispose.fire();
E
Erich Gamma 已提交
277

278
		this._onDidChangeDirty.dispose();
B
Benjamin Pasero 已提交
279
		this._onDidChangeLabel.dispose();
280
		this._onDispose.dispose();
E
Erich Gamma 已提交
281 282 283
	}

	/**
P
Pascal Borreli 已提交
284
	 * Returns whether this input was disposed or not.
E
Erich Gamma 已提交
285 286 287 288 289 290
	 */
	public isDisposed(): boolean {
		return this.disposed;
	}
}

291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320
export enum EncodingMode {

	/**
	 * Instructs the encoding support to encode the current input with the provided encoding
	 */
	Encode,

	/**
	 * Instructs the encoding support to decode the current input with the provided encoding
	 */
	Decode
}

export interface IEncodingSupport {

	/**
	 * Gets the encoding of the input if known.
	 */
	getEncoding(): string;

	/**
	 * Sets the encoding for the input for saving.
	 */
	setEncoding(encoding: string, mode: EncodingMode): void;
}

/**
 * This is a tagging interface to declare an editor input being capable of dealing with files. It is only used in the editor registry
 * to register this kind of input to the platform.
 */
321
export interface IFileEditorInput extends IEditorInput, IEncodingSupport {
322

323 324 325 326 327
	/**
	 * Gets the absolute file resource URI this input is about.
	 */
	getResource(): URI;

328 329 330 331
	/**
	 * Sets the absolute file resource URI this input is about.
	 */
	setResource(resource: URI): void;
332 333 334 335 336

	/**
	 * Sets the preferred encodingt to use for this input.
	 */
	setPreferredEncoding(encoding: string): void;
337 338 339 340 341
}

/**
 * The base class of untitled editor inputs in the workbench.
 */
342
export abstract class UntitledEditorInput extends EditorInput implements IEncodingSupport {
343 344 345 346 347 348 349 350 351 352

	abstract getResource(): URI;

	abstract isDirty(): boolean;

	abstract suggestFileName(): string;

	abstract getEncoding(): string;

	abstract setEncoding(encoding: string, mode: EncodingMode): void;
353

C
Christof Marti 已提交
354
	public getTelemetryDescriptor(): { [key: string]: any; } {
355
		const descriptor = super.getTelemetryDescriptor();
C
Christof Marti 已提交
356
		descriptor['resource'] = telemetryURIDescriptor(this.getResource());
357 358
		return descriptor;
	}
359 360
}

E
Erich Gamma 已提交
361
/**
S
Sandeep Somavarapu 已提交
362
 * Side by side editor inputs that have a master and details side.
E
Erich Gamma 已提交
363
 */
S
Sandeep Somavarapu 已提交
364
export class SideBySideEditorInput extends EditorInput {
E
Erich Gamma 已提交
365

366 367
	public static ID: string = 'workbench.editorinputs.sidebysideEditorInput';

S
Sandeep Somavarapu 已提交
368
	private _toUnbind: IDisposable[];
E
Erich Gamma 已提交
369

S
Sandeep Somavarapu 已提交
370
	constructor(private name: string, private description: string, private _details: EditorInput, private _master: EditorInput) {
S
Sandeep Somavarapu 已提交
371 372 373
		super();
		this._toUnbind = [];
		this.registerListeners();
E
Erich Gamma 已提交
374 375
	}

S
Sandeep Somavarapu 已提交
376 377
	get master(): EditorInput {
		return this._master;
E
Erich Gamma 已提交
378 379
	}

S
Sandeep Somavarapu 已提交
380 381
	get details(): EditorInput {
		return this._details;
E
Erich Gamma 已提交
382 383
	}

384
	public isDirty(): boolean {
S
Sandeep Somavarapu 已提交
385
		return this.master.isDirty();
386 387 388
	}

	public confirmSave(): ConfirmResult {
S
Sandeep Somavarapu 已提交
389
		return this.master.confirmSave();
390 391 392
	}

	public save(): TPromise<boolean> {
S
Sandeep Somavarapu 已提交
393
		return this.master.save();
394 395 396
	}

	public revert(): TPromise<boolean> {
S
Sandeep Somavarapu 已提交
397
		return this.master.revert();
398
	}
399

C
Christof Marti 已提交
400
	public getTelemetryDescriptor(): { [key: string]: any; } {
S
Sandeep Somavarapu 已提交
401
		const descriptor = this.master.getTelemetryDescriptor();
402 403
		return objects.assign(descriptor, super.getTelemetryDescriptor());
	}
S
Sandeep Somavarapu 已提交
404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435

	private registerListeners(): void {

		// When the details or master input gets disposed, dispose this diff editor input
		const onceDetailsDisposed = once(this.details.onDispose);
		this._toUnbind.push(onceDetailsDisposed(() => {
			if (!this.isDisposed()) {
				this.dispose();
			}
		}));

		const onceMasterDisposed = once(this.master.onDispose);
		this._toUnbind.push(onceMasterDisposed(() => {
			if (!this.isDisposed()) {
				this.dispose();
			}
		}));

		// Reemit some events from the master side to the outside
		this._toUnbind.push(this.master.onDidChangeDirty(() => this._onDidChangeDirty.fire()));
		this._toUnbind.push(this.master.onDidChangeLabel(() => this._onDidChangeLabel.fire()));
	}

	public get toUnbind() {
		return this._toUnbind;
	}

	public resolve(refresh?: boolean): TPromise<EditorModel> {
		return TPromise.as(null);
	}

	getTypeId(): string {
436
		return SideBySideEditorInput.ID;
S
Sandeep Somavarapu 已提交
437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471
	}

	public getName(): string {
		return this.name;
	}

	public getDescription(): string {
		return this.description;
	}

	public supportsSplitEditor(): boolean {
		return false;
	}

	public matches(otherInput: any): boolean {
		if (super.matches(otherInput) === true) {
			return true;
		}

		if (otherInput) {
			if (!(otherInput instanceof SideBySideEditorInput)) {
				return false;
			}

			const otherDiffInput = <SideBySideEditorInput>otherInput;
			return this.details.matches(otherDiffInput.details) && this.master.matches(otherDiffInput.master);
		}

		return false;
	}

	public dispose(): void {
		this._toUnbind = dispose(this._toUnbind);
		super.dispose();
	}
E
Erich Gamma 已提交
472 473
}

474 475 476 477
export interface ITextEditorModel extends IEditorModel {
	textEditorModel: IModel;
}

E
Erich Gamma 已提交
478 479 480 481 482
/**
 * The editor model is the heavyweight counterpart of editor input. Depending on the editor input, it
 * connects to the disk to retrieve content and may allow for saving it back or reverting it. Editor models
 * are typically cached for some while because they are expensive to construct.
 */
483 484 485 486 487 488 489 490 491 492 493 494 495
export class EditorModel implements IEditorModel {
	private _onDispose: Emitter<void>;

	constructor() {
		this._onDispose = new Emitter<void>();
	}

	/**
	 * Fired when the model gets disposed.
	 */
	public get onDispose(): Event<void> {
		return this._onDispose.event;
	}
E
Erich Gamma 已提交
496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514

	/**
	 * Causes this model to load returning a promise when loading is completed.
	 */
	public load(): TPromise<EditorModel> {
		return TPromise.as(this);
	}

	/**
	 * Returns whether this model was loaded or not.
	 */
	public isResolved(): boolean {
		return true;
	}

	/**
	 * Subclasses should implement to free resources that have been claimed through loading.
	 */
	public dispose(): void {
515 516
		this._onDispose.fire();
		this._onDispose.dispose();
E
Erich Gamma 已提交
517 518 519 520 521 522 523 524 525 526 527
	}
}

/**
 * The editor options is the base class of options that can be passed in when opening an editor.
 */
export class EditorOptions implements IEditorOptions {

	/**
	 * Helper to create EditorOptions inline.
	 */
528
	public static create(settings: IEditorOptions): EditorOptions {
529
		const options = new EditorOptions();
E
Erich Gamma 已提交
530 531
		options.preserveFocus = settings.preserveFocus;
		options.forceOpen = settings.forceOpen;
532
		options.revealIfVisible = settings.revealIfVisible;
B
Benjamin Pasero 已提交
533 534
		options.pinned = settings.pinned;
		options.index = settings.index;
535
		options.inactive = settings.inactive;
E
Erich Gamma 已提交
536 537 538 539

		return options;
	}

B
Benjamin Pasero 已提交
540 541 542
	/**
	 * Inherit all options from other EditorOptions instance.
	 */
543 544 545 546 547 548 549 550 551
	public mixin(other: IEditorOptions): void {
		if (other) {
			this.preserveFocus = other.preserveFocus;
			this.forceOpen = other.forceOpen;
			this.revealIfVisible = other.revealIfVisible;
			this.pinned = other.pinned;
			this.index = other.index;
			this.inactive = other.inactive;
		}
B
Benjamin Pasero 已提交
552 553
	}

E
Erich Gamma 已提交
554 555 556 557 558 559 560 561 562 563 564 565 566
	/**
	 * Tells the editor to not receive keyboard focus when the editor is being opened. By default,
	 * the editor will receive keyboard focus on open.
	 */
	public preserveFocus: boolean;

	/**
	 * Tells the editor to replace the editor input in the editor even if it is identical to the one
	 * already showing. By default, the editor will not replace the input if it is identical to the
	 * one showing.
	 */
	public forceOpen: boolean;

567
	/**
568
	 * Will reveal the editor if it is already opened and visible in any of the opened editor groups.
569
	 */
570
	public revealIfVisible: boolean;
571

B
Benjamin Pasero 已提交
572
	/**
B
Benjamin Pasero 已提交
573 574
	 * An editor that is pinned remains in the editor stack even when another editor is being opened.
	 * An editor that is not pinned will always get replaced by another editor that is not pinned.
B
Benjamin Pasero 已提交
575 576
	 */
	public pinned: boolean;
B
Benjamin Pasero 已提交
577 578 579 580

	/**
	 * The index in the document stack where to insert the editor into when opening.
	 */
B
Benjamin Pasero 已提交
581
	public index: number;
582 583 584 585 586 587

	/**
	 * An active editor that is opened will show its contents directly. Set to true to open an editor
	 * in the background.
	 */
	public inactive: boolean;
E
Erich Gamma 已提交
588 589 590 591 592 593
}

/**
 * Base Text Editor Options.
 */
export class TextEditorOptions extends EditorOptions {
594 595 596 597
	protected startLineNumber: number;
	protected startColumn: number;
	protected endLineNumber: number;
	protected endColumn: number;
598

I
isidor 已提交
599
	private revealInCenterIfOutsideViewport: boolean;
E
Erich Gamma 已提交
600
	private editorViewState: IEditorViewState;
601
	private editorOptions: ICodeEditorOptions;
E
Erich Gamma 已提交
602

603
	public static from(input: IResourceInput): TextEditorOptions {
E
Erich Gamma 已提交
604
		let options: TextEditorOptions = null;
605
		if (input && input.options) {
606
			if (input.options.selection || input.options.forceOpen || input.options.revealIfVisible || input.options.preserveFocus || input.options.pinned || input.options.inactive || typeof input.options.index === 'number') {
E
Erich Gamma 已提交
607 608 609
				options = new TextEditorOptions();
			}

610
			if (input.options.selection) {
611
				const selection = input.options.selection;
E
Erich Gamma 已提交
612 613 614
				options.selection(selection.startLineNumber, selection.startColumn, selection.endLineNumber, selection.endColumn);
			}

615
			if (input.options.forceOpen) {
E
Erich Gamma 已提交
616 617 618
				options.forceOpen = true;
			}

619 620
			if (input.options.revealIfVisible) {
				options.revealIfVisible = true;
621 622
			}

623
			if (input.options.preserveFocus) {
E
Erich Gamma 已提交
624 625
				options.preserveFocus = true;
			}
626 627 628 629 630

			if (input.options.pinned) {
				options.pinned = true;
			}

631 632 633 634
			if (input.options.inactive) {
				options.inactive = true;
			}

I
isidor 已提交
635 636 637 638
			if (input.options.revealInCenterIfOutsideViewport) {
				options.revealInCenterIfOutsideViewport = true;
			}

639 640 641
			if (typeof input.options.index === 'number') {
				options.index = input.options.index;
			}
E
Erich Gamma 已提交
642 643 644 645 646 647 648 649
		}

		return options;
	}

	/**
	 * Helper to create TextEditorOptions inline.
	 */
650
	public static create(settings: ITextEditorOptions): TextEditorOptions {
651
		const options = new TextEditorOptions();
E
Erich Gamma 已提交
652 653
		options.preserveFocus = settings.preserveFocus;
		options.forceOpen = settings.forceOpen;
654
		options.revealIfVisible = settings.revealIfVisible;
655 656
		options.pinned = settings.pinned;
		options.index = settings.index;
E
Erich Gamma 已提交
657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689

		if (settings.selection) {
			options.startLineNumber = settings.selection.startLineNumber;
			options.startColumn = settings.selection.startColumn;
			options.endLineNumber = settings.selection.endLineNumber || settings.selection.startLineNumber;
			options.endColumn = settings.selection.endColumn || settings.selection.startColumn;
		}

		return options;
	}

	/**
	 * Returns if this options object has objects defined for the editor.
	 */
	public hasOptionsDefined(): boolean {
		return !!this.editorViewState || (!types.isUndefinedOrNull(this.startLineNumber) && !types.isUndefinedOrNull(this.startColumn));
	}

	/**
	 * Tells the editor to set show the given selection when the editor is being opened.
	 */
	public selection(startLineNumber: number, startColumn: number, endLineNumber: number = startLineNumber, endColumn: number = startColumn): EditorOptions {
		this.startLineNumber = startLineNumber;
		this.startColumn = startColumn;
		this.endLineNumber = endLineNumber;
		this.endColumn = endColumn;

		return this;
	}

	/**
	 * Sets the view state to be used when the editor is opening.
	 */
690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705
	public fromEditor(editor: IEditor): void {

		// View state
		this.editorViewState = editor.saveViewState();

		// Selected editor options
		const codeEditor = <ICommonCodeEditor>editor;
		if (typeof codeEditor.getConfiguration === 'function') {
			const config = codeEditor.getConfiguration();
			if (config && config.viewInfo && config.wrappingInfo) {
				this.editorOptions = Object.create(null);
				this.editorOptions.renderWhitespace = config.viewInfo.renderWhitespace;
				this.editorOptions.renderControlCharacters = config.viewInfo.renderControlCharacters;
				this.editorOptions.wrappingColumn = config.wrappingInfo.isViewportWrapping ? 0 : -1;
			}
		}
E
Erich Gamma 已提交
706 707 708 709 710 711 712
	}

	/**
	 * Apply the view state or selection to the given editor.
	 *
	 * @return if something was applied
	 */
B
Benjamin Pasero 已提交
713
	public apply(editor: IEditor): boolean {
714 715 716 717 718 719 720

		// Editor options
		if (this.editorOptions) {
			editor.updateOptions(this.editorOptions);
		}

		// View state
B
Benjamin Pasero 已提交
721
		return this.applyViewState(editor);
722 723
	}

B
Benjamin Pasero 已提交
724
	private applyViewState(editor: IEditor): boolean {
E
Erich Gamma 已提交
725 726 727 728
		let gotApplied = false;

		// First try viewstate
		if (this.editorViewState) {
729
			editor.restoreViewState(this.editorViewState);
E
Erich Gamma 已提交
730 731 732 733 734 735 736 737
			gotApplied = true;
		}

		// Otherwise check for selection
		else if (!types.isUndefinedOrNull(this.startLineNumber) && !types.isUndefinedOrNull(this.startColumn)) {

			// Select
			if (!types.isUndefinedOrNull(this.endLineNumber) && !types.isUndefinedOrNull(this.endColumn)) {
738
				const range = {
E
Erich Gamma 已提交
739 740 741 742 743
					startLineNumber: this.startLineNumber,
					startColumn: this.startColumn,
					endLineNumber: this.endLineNumber,
					endColumn: this.endColumn
				};
744
				editor.setSelection(range);
I
isidor 已提交
745 746 747 748 749
				if (this.revealInCenterIfOutsideViewport) {
					editor.revealRangeInCenterIfOutsideViewport(range);
				} else {
					editor.revealRangeInCenter(range);
				}
E
Erich Gamma 已提交
750 751 752 753
			}

			// Reveal
			else {
754
				const pos = {
E
Erich Gamma 已提交
755 756 757
					lineNumber: this.startLineNumber,
					column: this.startColumn
				};
758
				editor.setPosition(pos);
I
isidor 已提交
759 760 761 762 763
				if (this.revealInCenterIfOutsideViewport) {
					editor.revealPositionInCenterIfOutsideViewport(pos);
				} else {
					editor.revealPositionInCenter(pos);
				}
E
Erich Gamma 已提交
764 765 766 767 768 769 770 771 772
			}

			gotApplied = true;
		}

		return gotApplied;
	}
}

773 774 775 776 777 778 779 780 781
export interface ITextDiffEditorOptions extends ITextEditorOptions {

	/**
	 * Whether to auto reveal the first change when the text editor is opened or not. By default
	 * the first change will not be revealed.
	 */
	autoRevealFirstChange: boolean;
}

E
Erich Gamma 已提交
782 783 784 785 786 787 788 789
/**
 * Base Text Diff Editor Options.
 */
export class TextDiffEditorOptions extends TextEditorOptions {

	/**
	 * Helper to create TextDiffEditorOptions inline.
	 */
790
	public static create(settings: ITextDiffEditorOptions): TextDiffEditorOptions {
791
		const options = new TextDiffEditorOptions();
792

E
Erich Gamma 已提交
793
		options.autoRevealFirstChange = settings.autoRevealFirstChange;
794

E
Erich Gamma 已提交
795 796
		options.preserveFocus = settings.preserveFocus;
		options.forceOpen = settings.forceOpen;
797
		options.revealIfVisible = settings.revealIfVisible;
798 799 800 801 802 803 804 805 806
		options.pinned = settings.pinned;
		options.index = settings.index;

		if (settings.selection) {
			options.startLineNumber = settings.selection.startLineNumber;
			options.startColumn = settings.selection.startColumn;
			options.endLineNumber = settings.selection.endLineNumber || settings.selection.startLineNumber;
			options.endColumn = settings.selection.endColumn || settings.selection.startColumn;
		}
E
Erich Gamma 已提交
807 808 809 810 811

		return options;
	}

	/**
P
Pascal Borreli 已提交
812
	 * Whether to auto reveal the first change when the text editor is opened or not. By default
E
Erich Gamma 已提交
813 814 815 816 817 818 819 820 821 822 823 824 825
	 * the first change will not be revealed.
	 */
	public autoRevealFirstChange: boolean;
}

/**
 * Given an input, tries to get the associated URI for it (either file or untitled scheme).
 */
export function getUntitledOrFileResource(input: IEditorInput, supportDiff?: boolean): URI {
	if (!input) {
		return null;
	}

826 827 828
	// Untitled
	if (input instanceof UntitledEditorInput) {
		return input.getResource();
E
Erich Gamma 已提交
829 830
	}

831
	// File
832
	const fileInput = asFileEditorInput(input, supportDiff);
833 834

	return fileInput && fileInput.getResource();
835 836
}

837
// TODO@Ben every editor should have an associated resource
838
export function getResource(input: IEditorInput): URI {
839
	if (input instanceof EditorInput && typeof (<any>input).getResource === 'function') {
840
		const candidate = (<any>input).getResource();
841 842 843 844
		if (candidate instanceof URI) {
			return candidate;
		}
	}
B
Benjamin Pasero 已提交
845

846
	return getUntitledOrFileResource(input, true);
E
Erich Gamma 已提交
847 848
}

849 850 851
/**
 * Helper to return all opened editors with resources not belonging to the currently opened workspace.
 */
852
export function getOutOfWorkspaceEditorResources(editorGroupService: IEditorGroupService, contextService: IWorkspaceContextService): URI[] {
853 854
	const resources: URI[] = [];

855
	editorGroupService.getStacksModel().groups.forEach(group => {
856 857 858 859 860 861 862 863 864 865 866 867
		const editors = group.getEditors();
		editors.forEach(editor => {
			const fileInput = asFileEditorInput(editor, true);
			if (fileInput && !contextService.isInsideWorkspace(fileInput.getResource())) {
				resources.push(fileInput.getResource());
			}
		});
	});

	return resources;
}

E
Erich Gamma 已提交
868 869 870
/**
 * Returns the object as IFileEditorInput only if it matches the signature.
 */
S
Sandeep Somavarapu 已提交
871
export function asFileEditorInput(obj: any, supportSideBySide?: boolean): IFileEditorInput {
E
Erich Gamma 已提交
872 873 874 875
	if (!obj) {
		return null;
	}

S
Sandeep Somavarapu 已提交
876 877 878
	// Check for side by side if we are asked to
	if (supportSideBySide && obj instanceof SideBySideEditorInput) {
		obj = (<SideBySideEditorInput>obj).master;
E
Erich Gamma 已提交
879 880
	}

881
	const i = <IFileEditorInput>obj;
E
Erich Gamma 已提交
882

883
	return i instanceof EditorInput && types.areFunctions(i.setResource, i.setEncoding, i.getEncoding, i.getResource, i.setPreferredEncoding) ? i : null;
884 885
}

886 887 888 889 890 891
export interface IStacksModelChangeEvent {
	group: IEditorGroup;
	editor?: IEditorInput;
	structural?: boolean;
}

892 893
export interface IEditorStacksModel {

894
	onModelChanged: Event<IStacksModelChangeEvent>;
895
	onEditorClosed: Event<IGroupEvent>;
896 897 898

	groups: IEditorGroup[];
	activeGroup: IEditorGroup;
B
Benjamin Pasero 已提交
899
	isActive(group: IEditorGroup): boolean;
900 901 902 903 904 905

	getGroup(id: GroupIdentifier): IEditorGroup;

	positionOfGroup(group: IEditorGroup): Position;
	groupAt(position: Position): IEditorGroup;

906 907
	next(jumpGroups: boolean): IEditorIdentifier;
	previous(jumpGroups: boolean): IEditorIdentifier;
908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923

	isOpen(editor: IEditorInput): boolean;
	isOpen(resource: URI): boolean;

	toString(): string;
}

export interface IEditorGroup {

	id: GroupIdentifier;
	label: string;
	count: number;
	activeEditor: IEditorInput;
	previewEditor: IEditorInput;

	getEditor(index: number): IEditorInput;
B
Benjamin Pasero 已提交
924
	getEditor(resource: URI): IEditorInput;
925 926 927 928 929 930 931 932
	indexOf(editor: IEditorInput): number;

	contains(editor: IEditorInput): boolean;
	contains(resource: URI): boolean;

	getEditors(mru?: boolean): IEditorInput[];
	isActive(editor: IEditorInput): boolean;
	isPreview(editor: IEditorInput): boolean;
933
	isPinned(index: number): boolean;
934 935 936 937 938 939 940 941
	isPinned(editor: IEditorInput): boolean;
}

export interface IEditorIdentifier {
	group: IEditorGroup;
	editor: IEditorInput;
}

B
Benjamin Pasero 已提交
942 943 944 945
export interface IEditorContext extends IEditorIdentifier {
	event: any;
}

946 947 948
export interface IGroupEvent {
	editor: IEditorInput;
	pinned: boolean;
949
	index: number;
950 951
}

952 953
export type GroupIdentifier = number;

954 955 956
export const EditorOpenPositioning = {
	LEFT: 'left',
	RIGHT: 'right',
957 958
	FIRST: 'first',
	LAST: 'last'
959 960
};

961 962
export interface IWorkbenchEditorConfiguration {
	workbench: {
963 964
		editor: {
			showTabs: boolean;
965
			showTabCloseButton: boolean;
966
			showIcons: boolean;
967 968
			enablePreview: boolean;
			enablePreviewFromQuickOpen: boolean;
969
			openPositioning: 'left' | 'right' | 'first' | 'last';
970
		}
971
	};
S
Sandeep Somavarapu 已提交
972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990
}

export const ActiveEditorMovePositioning = {
	FIRST: 'first',
	LAST: 'last',
	LEFT: 'left',
	RIGHT: 'right',
	CENTER: 'center',
	POSITION: 'position',
};

export const ActiveEditorMovePositioningBy = {
	TAB: 'tab',
	GROUP: 'group'
};

export interface ActiveEditorMoveArguments {
	to?: string;
	by?: string;
991
	value?: number;
S
Sandeep Somavarapu 已提交
992 993 994
}

export var EditorCommands = {
995
	MoveActiveEditor: 'moveActiveEditor'
B
Benjamin Pasero 已提交
996
};