windows.ts 44.2 KB
Newer Older
E
Erich Gamma 已提交
1 2 3 4 5 6 7
/*---------------------------------------------------------------------------------------------
 *  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
Joao Moreno 已提交
8
import * as path from 'path';
B
Benjamin Pasero 已提交
9
import * as fs from 'original-fs';
J
Joao Moreno 已提交
10 11 12
import * as platform from 'vs/base/common/platform';
import * as nls from 'vs/nls';
import * as paths from 'vs/base/common/paths';
13
import * as types from 'vs/base/common/types';
J
Joao Moreno 已提交
14
import * as arrays from 'vs/base/common/arrays';
15
import { assign, mixin } from 'vs/base/common/objects';
J
Joao Moreno 已提交
16 17
import { EventEmitter } from 'events';
import { IStorageService } from 'vs/code/electron-main/storage';
18
import { IPath, VSCodeWindow, ReadyState, IWindowConfiguration, IWindowState as ISingleWindowState, defaultWindowState, IWindowSettings } from 'vs/code/electron-main/window';
J
Joao Moreno 已提交
19
import { ipcMain as ipc, app, screen, crashReporter, BrowserWindow, dialog } from 'electron';
J
Joao Moreno 已提交
20
import { ICommandLineArguments, IProcessEnvironment, IEnvService, IParsedPath, parseLineAndColumnAware } from 'vs/code/electron-main/env';
21
import { ILifecycleService } from 'vs/code/electron-main/lifecycle';
22
import { IConfigurationService } from 'vs/platform/configuration/common/configuration';
J
Joao Moreno 已提交
23
import { IUpdateService, IUpdate } from 'vs/code/electron-main/update-manager';
B
Benjamin Pasero 已提交
24
import { ILogService } from 'vs/code/electron-main/log';
S
Sandeep Somavarapu 已提交
25
import { IWindowEventService } from 'vs/code/common/windows';
26
import { createDecorator, IInstantiationService } from 'vs/platform/instantiation/common/instantiation';
S
Sandeep Somavarapu 已提交
27
import CommonEvent, { Emitter } from 'vs/base/common/event';
B
Benjamin Pasero 已提交
28
import product from 'vs/platform/product';
E
Erich Gamma 已提交
29 30 31 32 33 34 35 36 37 38 39 40 41

const EventTypes = {
	OPEN: 'open',
	CLOSE: 'close',
	READY: 'ready'
};

enum WindowError {
	UNRESPONSIVE,
	CRASHED
}

export interface IOpenConfiguration {
J
Joao Moreno 已提交
42 43
	cli: ICommandLineArguments;
	userEnv?: IProcessEnvironment;
E
Erich Gamma 已提交
44
	pathsToOpen?: string[];
45
	preferNewWindow?: boolean;
E
Erich Gamma 已提交
46 47
	forceNewWindow?: boolean;
	forceEmpty?: boolean;
J
Joao Moreno 已提交
48
	windowToUse?: VSCodeWindow;
49
	diffMode?: boolean;
E
Erich Gamma 已提交
50 51 52 53
}

interface IWindowState {
	workspacePath?: string;
J
Joao Moreno 已提交
54
	uiState: ISingleWindowState;
E
Erich Gamma 已提交
55 56 57 58 59 60 61 62
}

interface IWindowsState {
	lastActiveWindow?: IWindowState;
	lastPluginDevelopmentHostWindow?: IWindowState;
	openedFolders: IWindowState[];
}

63
export interface IRecentPathsList {
E
Erich Gamma 已提交
64 65 66 67
	folders: string[];
	files: string[];
}

68 69 70 71 72
interface ILogEntry {
	severity: string;
	arguments: any;
}

73 74 75
interface INativeOpenDialogOptions {
	pickFolders?: boolean;
	pickFiles?: boolean;
76 77
	path?: string;
	forceNewWindow?: boolean;
78 79
}

80 81 82 83 84 85
const ReopenFoldersSetting = {
	ALL: 'all',
	ONE: 'one',
	NONE: 'none'
};

J
renames  
Joao Moreno 已提交
86
export const IWindowsService = createDecorator<IWindowsService>('windowsService');
J
Joao Moreno 已提交
87

J
renames  
Joao Moreno 已提交
88
export interface IWindowsService {
89
	_serviceBrand: any;
J
Joao Moreno 已提交
90 91 92

	// TODO make proper events
	// events
J
Joao Moreno 已提交
93 94
	onOpen(clb: (path: IPath) => void): () => void;
	onReady(clb: (win: VSCodeWindow) => void): () => void;
J
Joao Moreno 已提交
95
	onClose(clb: (id: number) => void): () => void;
S
Sandeep Somavarapu 已提交
96 97
	onNewWindowOpen: CommonEvent<number>;
	onWindowFocus: CommonEvent<number>;
J
Joao Moreno 已提交
98 99

	// methods
J
Joao Moreno 已提交
100
	ready(initialUserEnv: IProcessEnvironment): void;
J
Joao Moreno 已提交
101 102
	reload(win: VSCodeWindow, cli?: ICommandLineArguments): void;
	open(openConfig: IOpenConfiguration): VSCodeWindow[];
J
Joao Moreno 已提交
103 104 105 106
	openPluginDevelopmentHostWindow(openConfig: IOpenConfiguration): void;
	openFileFolderPicker(forceNewWindow?: boolean): void;
	openFilePicker(forceNewWindow?: boolean): void;
	openFolderPicker(forceNewWindow?: boolean): void;
107
	openAccessibilityOptions(): void;
J
Joao Moreno 已提交
108 109 110
	focusLastActive(cli: ICommandLineArguments): VSCodeWindow;
	getLastActiveWindow(): VSCodeWindow;
	findWindow(workspacePath: string, filePath?: string, extensionDevelopmentPath?: string): VSCodeWindow;
J
Joao Moreno 已提交
111 112 113
	openNewWindow(): void;
	sendToFocused(channel: string, ...args: any[]): void;
	sendToAll(channel: string, payload: any, windowIdsToIgnore?: number[]): void;
J
Joao Moreno 已提交
114 115 116
	getFocusedWindow(): VSCodeWindow;
	getWindowById(windowId: number): VSCodeWindow;
	getWindows(): VSCodeWindow[];
J
Joao Moreno 已提交
117
	getWindowCount(): number;
118 119 120
	getRecentPathsList(): IRecentPathsList;
	removeFromRecentPathsList(path: string);
	clearRecentPathsList(): void;
J
Joao Moreno 已提交
121 122
}

S
Sandeep Somavarapu 已提交
123 124 125 126 127 128 129 130 131 132 133 134 135 136 137
export class WindowEventService implements IWindowEventService {

	_serviceBrand: any;

	constructor(@IWindowsService private windowsService: IWindowsService) { }

	public get onWindowFocus(): CommonEvent<number> {
		return this.windowsService.onWindowFocus;
	}

	public get onNewWindowOpen(): CommonEvent<number> {
		return this.windowsService.onNewWindowOpen;
	}
}

J
renames  
Joao Moreno 已提交
138
export class WindowsManager implements IWindowsService {
J
Joao Moreno 已提交
139

140
	_serviceBrand: any;
E
Erich Gamma 已提交
141

142
	private static MAX_TOTAL_RECENT_ENTRIES = 100;
143

144
	private static recentPathsListStorageKey = 'openedPathsList';
145
	private static workingDirPickerStorageKey = 'pickerWorkingDir';
E
Erich Gamma 已提交
146 147
	private static windowsStateStorageKey = 'windowsState';

J
Joao Moreno 已提交
148
	private static WINDOWS: VSCodeWindow[] = [];
E
Erich Gamma 已提交
149

J
Joao Moreno 已提交
150
	private eventEmitter = new EventEmitter();
J
Joao Moreno 已提交
151
	private initialUserEnv: IProcessEnvironment;
E
Erich Gamma 已提交
152 153
	private windowsState: IWindowsState;

S
Sandeep Somavarapu 已提交
154 155 156 157 158 159
	private _onFocus = new Emitter<number>();
	onWindowFocus: CommonEvent<number> = this._onFocus.event;

	private _onNewWindow = new Emitter<number>();
	onNewWindowOpen: CommonEvent<number> = this._onNewWindow.event;

J
Joao Moreno 已提交
160 161 162
	constructor(
		@IInstantiationService private instantiationService: IInstantiationService,
		@ILogService private logService: ILogService,
J
Joao Moreno 已提交
163
		@IStorageService private storageService: IStorageService,
J
Joao Moreno 已提交
164
		@IEnvService private envService: IEnvService,
J
Joao Moreno 已提交
165
		@ILifecycleService private lifecycleService: ILifecycleService,
B
Benjamin Pasero 已提交
166
		@IUpdateService private updateService: IUpdateService,
167 168
		@IConfigurationService private configurationService: IConfigurationService
	) { }
J
Joao Moreno 已提交
169

J
Joao Moreno 已提交
170
	onOpen(clb: (path: IPath) => void): () => void {
J
Joao Moreno 已提交
171 172 173 174 175
		this.eventEmitter.addListener(EventTypes.OPEN, clb);

		return () => this.eventEmitter.removeListener(EventTypes.OPEN, clb);
	}

J
Joao Moreno 已提交
176
	onReady(clb: (win: VSCodeWindow) => void): () => void {
J
Joao Moreno 已提交
177 178 179 180 181 182 183 184 185 186 187
		this.eventEmitter.addListener(EventTypes.READY, clb);

		return () => this.eventEmitter.removeListener(EventTypes.READY, clb);
	}

	onClose(clb: (id: number) => void): () => void {
		this.eventEmitter.addListener(EventTypes.CLOSE, clb);

		return () => this.eventEmitter.removeListener(EventTypes.CLOSE, clb);
	}

J
Joao Moreno 已提交
188
	public ready(initialUserEnv: IProcessEnvironment): void {
E
Erich Gamma 已提交
189 190
		this.registerListeners();

191
		this.initialUserEnv = initialUserEnv;
J
Joao Moreno 已提交
192
		this.windowsState = this.storageService.getItem<IWindowsState>(WindowsManager.windowsStateStorageKey) || { openedFolders: [] };
E
Erich Gamma 已提交
193 194 195
	}

	private registerListeners(): void {
196
		app.on('activate', (event: Event, hasVisibleWindows: boolean) => {
J
Joao Moreno 已提交
197
			this.logService.log('App#activate');
E
Erich Gamma 已提交
198

G
Giorgos Retsinas 已提交
199
			// Mac only event: open new window when we get activated
E
Erich Gamma 已提交
200
			if (!hasVisibleWindows) {
G
Giorgos Retsinas 已提交
201
				this.openNewWindow();
E
Erich Gamma 已提交
202 203 204 205 206 207
			}
		});

		let macOpenFiles: string[] = [];
		let runningTimeout: number = null;
		app.on('open-file', (event: Event, path: string) => {
J
Joao Moreno 已提交
208
			this.logService.log('App#open-file: ', path);
E
Erich Gamma 已提交
209 210 211 212 213 214 215 216 217 218 219 220 221
			event.preventDefault();

			// Keep in array because more might come!
			macOpenFiles.push(path);

			// Clear previous handler if any
			if (runningTimeout !== null) {
				clearTimeout(runningTimeout);
				runningTimeout = null;
			}

			// Handle paths delayed in case more are coming!
			runningTimeout = setTimeout(() => {
J
Joao Moreno 已提交
222
				this.open({ cli: this.envService.cliArgs, pathsToOpen: macOpenFiles, preferNewWindow: true /* dropping on the dock prefers to open in a new window */ });
E
Erich Gamma 已提交
223 224 225 226 227 228
				macOpenFiles = [];
				runningTimeout = null;
			}, 100);
		});

		ipc.on('vscode:startCrashReporter', (event: any, config: any) => {
J
Joao Moreno 已提交
229
			this.logService.log('IPC#vscode:startCrashReporter');
230

E
Erich Gamma 已提交
231 232 233
			crashReporter.start(config);
		});

B
Benjamin Pasero 已提交
234
		ipc.on('vscode:windowOpen', (event, paths: string[], forceNewWindow?: boolean) => {
J
Joao Moreno 已提交
235
			this.logService.log('IPC#vscode-windowOpen: ', paths);
E
Erich Gamma 已提交
236 237

			if (paths && paths.length) {
J
Joao Moreno 已提交
238
				this.open({ cli: this.envService.cliArgs, pathsToOpen: paths, forceNewWindow: forceNewWindow });
E
Erich Gamma 已提交
239 240 241
			}
		});

B
Benjamin Pasero 已提交
242
		ipc.on('vscode:workbenchLoaded', (event, windowId: number) => {
J
Joao Moreno 已提交
243
			this.logService.log('IPC#vscode-workbenchLoaded');
E
Erich Gamma 已提交
244

B
Benjamin Pasero 已提交
245
			const win = this.getWindowById(windowId);
E
Erich Gamma 已提交
246 247 248 249
			if (win) {
				win.setReady();

				// Event
J
Joao Moreno 已提交
250
				this.eventEmitter.emit(EventTypes.READY, win);
E
Erich Gamma 已提交
251 252 253
			}
		});

254
		ipc.on('vscode:openFilePicker', (event, forceNewWindow?: boolean, path?: string) => {
J
Joao Moreno 已提交
255
			this.logService.log('IPC#vscode-openFilePicker');
E
Erich Gamma 已提交
256

257
			this.openFilePicker(forceNewWindow, path);
E
Erich Gamma 已提交
258 259
		});

260
		ipc.on('vscode:openFolderPicker', (event, forceNewWindow?: boolean) => {
J
Joao Moreno 已提交
261
			this.logService.log('IPC#vscode-openFolderPicker');
E
Erich Gamma 已提交
262

263 264 265 266
			this.openFolderPicker(forceNewWindow);
		});

		ipc.on('vscode:openFileFolderPicker', (event, forceNewWindow?: boolean) => {
J
Joao Moreno 已提交
267
			this.logService.log('IPC#vscode-openFileFolderPicker');
268 269

			this.openFileFolderPicker(forceNewWindow);
E
Erich Gamma 已提交
270 271
		});

B
Benjamin Pasero 已提交
272
		ipc.on('vscode:closeFolder', (event, windowId: number) => {
J
Joao Moreno 已提交
273
			this.logService.log('IPC#vscode-closeFolder');
E
Erich Gamma 已提交
274

B
Benjamin Pasero 已提交
275
			const win = this.getWindowById(windowId);
E
Erich Gamma 已提交
276
			if (win) {
J
Joao Moreno 已提交
277
				this.open({ cli: this.envService.cliArgs, forceEmpty: true, windowToUse: win });
E
Erich Gamma 已提交
278 279 280
			}
		});

B
Benjamin Pasero 已提交
281
		ipc.on('vscode:openNewWindow', () => {
J
Joao Moreno 已提交
282
			this.logService.log('IPC#vscode-openNewWindow');
E
Erich Gamma 已提交
283

B
Benjamin Pasero 已提交
284
			this.openNewWindow();
E
Erich Gamma 已提交
285 286
		});

B
Benjamin Pasero 已提交
287
		ipc.on('vscode:reloadWindow', (event, windowId: number) => {
J
Joao Moreno 已提交
288
			this.logService.log('IPC#vscode:reloadWindow');
E
Erich Gamma 已提交
289

B
Benjamin Pasero 已提交
290
			const vscodeWindow = this.getWindowById(windowId);
E
Erich Gamma 已提交
291 292 293 294 295
			if (vscodeWindow) {
				this.reload(vscodeWindow);
			}
		});

B
Benjamin Pasero 已提交
296
		ipc.on('vscode:toggleFullScreen', (event, windowId: number) => {
J
Joao Moreno 已提交
297
			this.logService.log('IPC#vscode:toggleFullScreen');
E
Erich Gamma 已提交
298

B
Benjamin Pasero 已提交
299
			const vscodeWindow = this.getWindowById(windowId);
E
Erich Gamma 已提交
300 301 302 303 304
			if (vscodeWindow) {
				vscodeWindow.toggleFullScreen();
			}
		});

305
		ipc.on('vscode:setFullScreen', (event, windowId: number, fullscreen: boolean) => {
J
Joao Moreno 已提交
306
			this.logService.log('IPC#vscode:setFullScreen');
307

B
Benjamin Pasero 已提交
308
			const vscodeWindow = this.getWindowById(windowId);
309 310 311 312 313 314
			if (vscodeWindow) {
				vscodeWindow.win.setFullScreen(fullscreen);
			}
		});

		ipc.on('vscode:toggleDevTools', (event, windowId: number) => {
J
Joao Moreno 已提交
315
			this.logService.log('IPC#vscode:toggleDevTools');
316

B
Benjamin Pasero 已提交
317
			const vscodeWindow = this.getWindowById(windowId);
318 319 320 321 322 323
			if (vscodeWindow) {
				vscodeWindow.win.webContents.toggleDevTools();
			}
		});

		ipc.on('vscode:openDevTools', (event, windowId: number) => {
J
Joao Moreno 已提交
324
			this.logService.log('IPC#vscode:openDevTools');
325

B
Benjamin Pasero 已提交
326
			const vscodeWindow = this.getWindowById(windowId);
327 328 329 330 331 332 333
			if (vscodeWindow) {
				vscodeWindow.win.webContents.openDevTools();
				vscodeWindow.win.show();
			}
		});

		ipc.on('vscode:setRepresentedFilename', (event, windowId: number, fileName: string) => {
J
Joao Moreno 已提交
334
			this.logService.log('IPC#vscode:setRepresentedFilename');
335

B
Benjamin Pasero 已提交
336
			const vscodeWindow = this.getWindowById(windowId);
337 338 339 340 341 342
			if (vscodeWindow) {
				vscodeWindow.win.setRepresentedFilename(fileName);
			}
		});

		ipc.on('vscode:setMenuBarVisibility', (event, windowId: number, visibility: boolean) => {
J
Joao Moreno 已提交
343
			this.logService.log('IPC#vscode:setMenuBarVisibility');
344

B
Benjamin Pasero 已提交
345
			const vscodeWindow = this.getWindowById(windowId);
346 347 348 349 350 351
			if (vscodeWindow) {
				vscodeWindow.win.setMenuBarVisibility(visibility);
			}
		});

		ipc.on('vscode:flashFrame', (event, windowId: number) => {
J
Joao Moreno 已提交
352
			this.logService.log('IPC#vscode:flashFrame');
353

B
Benjamin Pasero 已提交
354
			const vscodeWindow = this.getWindowById(windowId);
355 356 357 358 359
			if (vscodeWindow) {
				vscodeWindow.win.flashFrame(!vscodeWindow.win.isFocused());
			}
		});

360 361 362
		ipc.on('vscode:openRecent', (event, windowId: number) => {
			this.logService.log('IPC#vscode:openRecent');

B
Benjamin Pasero 已提交
363
			const vscodeWindow = this.getWindowById(windowId);
364
			if (vscodeWindow) {
365
				const recents = this.getRecentPathsList(vscodeWindow.config.workspacePath, vscodeWindow.config.filesToOpen);
366 367 368 369 370

				vscodeWindow.send('vscode:openRecent', recents.files, recents.folders);
			}
		});

371
		ipc.on('vscode:focusWindow', (event, windowId: number) => {
J
Joao Moreno 已提交
372
			this.logService.log('IPC#vscode:focusWindow');
373

B
Benjamin Pasero 已提交
374
			const vscodeWindow = this.getWindowById(windowId);
375 376 377 378 379
			if (vscodeWindow) {
				vscodeWindow.win.focus();
			}
		});

380 381 382 383 384 385 386 387 388
		ipc.on('vscode:showWindow', (event, windowId: number) => {
			this.logService.log('IPC#vscode:showWindow');

			let vscodeWindow = this.getWindowById(windowId);
			if (vscodeWindow) {
				vscodeWindow.win.show();
			}
		});

389
		ipc.on('vscode:setDocumentEdited', (event, windowId: number, edited: boolean) => {
J
Joao Moreno 已提交
390
			this.logService.log('IPC#vscode:setDocumentEdited');
391

B
Benjamin Pasero 已提交
392
			const vscodeWindow = this.getWindowById(windowId);
393 394 395 396 397
			if (vscodeWindow && vscodeWindow.win.isDocumentEdited() !== edited) {
				vscodeWindow.win.setDocumentEdited(edited);
			}
		});

B
Benjamin Pasero 已提交
398
		ipc.on('vscode:toggleMenuBar', (event, windowId: number) => {
J
Joao Moreno 已提交
399
			this.logService.log('IPC#vscode:toggleMenuBar');
400 401

			// Update in settings
B
Benjamin Pasero 已提交
402 403
			const menuBarHidden = this.storageService.getItem(VSCodeWindow.menuBarHiddenKey, false);
			const newMenuBarHidden = !menuBarHidden;
J
Joao Moreno 已提交
404
			this.storageService.setItem(VSCodeWindow.menuBarHiddenKey, newMenuBarHidden);
405 406 407

			// Update across windows
			WindowsManager.WINDOWS.forEach(w => w.setMenuBarVisibility(!newMenuBarHidden));
408 409 410

			// Inform user if menu bar is now hidden
			if (newMenuBarHidden) {
B
Benjamin Pasero 已提交
411
				const vscodeWindow = this.getWindowById(windowId);
412 413 414 415
				if (vscodeWindow) {
					vscodeWindow.send('vscode:showInfoMessage', nls.localize('hiddenMenuBar', "You can still access the menu bar by pressing the **Alt** key."));
				}
			}
416 417
		});

B
Benjamin Pasero 已提交
418
		ipc.on('vscode:broadcast', (event, windowId: number, target: string, broadcast: { channel: string; payload: any; }) => {
419
			if (broadcast.channel && !types.isUndefinedOrNull(broadcast.payload)) {
J
Joao Moreno 已提交
420
				this.logService.log('IPC#vscode:broadcast', target, broadcast.channel, broadcast.payload);
B
Benjamin Pasero 已提交
421

422 423 424 425
				// Handle specific events on main side
				this.onBroadcast(broadcast.channel, broadcast.payload);

				// Send to windows
426
				if (target) {
B
Benjamin Pasero 已提交
427
					const otherWindowsWithTarget = WindowsManager.WINDOWS.filter(w => w.id !== windowId && typeof w.openedWorkspacePath === 'string');
428 429 430 431 432
					const directTargetMatch = otherWindowsWithTarget.filter(w => this.isPathEqual(target, w.openedWorkspacePath));
					const parentTargetMatch = otherWindowsWithTarget.filter(w => paths.isEqualOrParent(target, w.openedWorkspacePath));

					const targetWindow = directTargetMatch.length ? directTargetMatch[0] : parentTargetMatch[0]; // prefer direct match over parent match
					if (targetWindow) {
433 434 435 436 437
						targetWindow.send('vscode:broadcast', broadcast);
					}
				} else {
					this.sendToAll('vscode:broadcast', broadcast, [windowId]);
				}
E
Erich Gamma 已提交
438
			}
439 440
		});

B
Benjamin Pasero 已提交
441
		ipc.on('vscode:log', (event, logEntry: ILogEntry) => {
B
Benjamin Pasero 已提交
442
			const args = [];
443
			try {
B
Benjamin Pasero 已提交
444
				const parsed = JSON.parse(logEntry.arguments);
445 446 447 448 449 450 451
				args.push(...Object.getOwnPropertyNames(parsed).map(o => parsed[o]));
			} catch (error) {
				args.push(logEntry.arguments);
			}

			console[logEntry.severity].apply(console, args);
		});
E
Erich Gamma 已提交
452

453
		ipc.on('vscode:closeExtensionHostWindow', (event, extensionDevelopmentPath: string) => {
J
Joao Moreno 已提交
454
			this.logService.log('IPC#vscode:closeExtensionHostWindow', extensionDevelopmentPath);
B
Benjamin Pasero 已提交
455

456 457 458 459 460 461
			const windowOnExtension = this.findWindow(null, null, extensionDevelopmentPath);
			if (windowOnExtension) {
				windowOnExtension.win.close();
			}
		});

462
		ipc.on('vscode:switchWindow', (event, windowId: number) => {
463 464
			const windows = this.getWindows();
			const window = this.getWindowById(windowId);
465 466
			window.send('vscode:switchWindow', windows.map(w => {
				return {path: w.openedWorkspacePath, title: w.win.getTitle(), id: w.id};
467 468 469
			}));
		});

B
Benjamin Pasero 已提交
470
		this.updateService.on('update-downloaded', (update: IUpdate) => {
E
Erich Gamma 已提交
471 472 473 474 475 476 477 478 479
			this.sendToFocused('vscode:telemetry', { eventName: 'update:downloaded', data: { version: update.version } });

			this.sendToAll('vscode:update-downloaded', JSON.stringify({
				releaseNotes: update.releaseNotes,
				version: update.version,
				date: update.date
			}));
		});

B
Benjamin Pasero 已提交
480
		ipc.on('vscode:update-apply', () => {
J
Joao Moreno 已提交
481
			this.logService.log('IPC#vscode:update-apply');
E
Erich Gamma 已提交
482

B
Benjamin Pasero 已提交
483 484
			if (this.updateService.availableUpdate) {
				this.updateService.availableUpdate.quitAndUpdate();
E
Erich Gamma 已提交
485 486 487
			}
		});

B
Benjamin Pasero 已提交
488
		this.updateService.on('update-not-available', (explicit: boolean) => {
E
Erich Gamma 已提交
489 490 491 492 493 494 495
			this.sendToFocused('vscode:telemetry', { eventName: 'update:notAvailable', data: { explicit } });

			if (explicit) {
				this.sendToFocused('vscode:update-not-available', '');
			}
		});

J
Joao Moreno 已提交
496
		this.updateService.on('update-available', (url: string, version: string) => {
J
Joao Moreno 已提交
497
			if (url) {
J
Joao Moreno 已提交
498
				this.sendToFocused('vscode:update-available', url, version);
J
Joao Moreno 已提交
499 500 501
			}
		});

J
Joao Moreno 已提交
502
		this.lifecycleService.onBeforeQuit(() => {
E
Erich Gamma 已提交
503 504 505 506 507 508 509 510

			// 0-1 window open: Do not keep the list but just rely on the active window to be stored
			if (WindowsManager.WINDOWS.length < 2) {
				this.windowsState.openedFolders = [];
				return;
			}

			// 2-N windows open: Keep a list of windows that are opened on a specific folder to restore it in the next session as needed
J
Joao Moreno 已提交
511
			this.windowsState.openedFolders = WindowsManager.WINDOWS.filter(w => w.readyState === ReadyState.READY && !!w.openedWorkspacePath && !w.isPluginDevelopmentHost).map(w => {
E
Erich Gamma 已提交
512 513 514
				return <IWindowState>{
					workspacePath: w.openedWorkspacePath,
					uiState: w.serializeWindowState()
B
Benjamin Pasero 已提交
515
				};
E
Erich Gamma 已提交
516 517 518 519
			});
		});

		app.on('will-quit', () => {
J
Joao Moreno 已提交
520
			this.storageService.setItem(WindowsManager.windowsStateStorageKey, this.windowsState);
E
Erich Gamma 已提交
521
		});
522 523

		let loggedStartupTimes = false;
J
Joao Moreno 已提交
524
		this.onReady(window => {
525 526 527 528 529 530 531 532
			if (loggedStartupTimes) {
				return; // only for the first window
			}

			loggedStartupTimes = true;

			window.send('vscode:telemetry', { eventName: 'startupTime', data: { ellapsed: Date.now() - global.vscodeStart } });
		});
E
Erich Gamma 已提交
533 534
	}

535 536 537
	private onBroadcast(event: string, payload: any): void {

		// Theme changes
538 539
		if (event === 'vscode:changeColorTheme' && typeof payload === 'string') {
			this.storageService.setItem(VSCodeWindow.colorThemeStorageKey, payload);
540 541 542
		}
	}

J
Joao Moreno 已提交
543
	public reload(win: VSCodeWindow, cli?: ICommandLineArguments): void {
E
Erich Gamma 已提交
544 545

		// Only reload when the window has not vetoed this
546
		this.lifecycleService.unload(win).done(veto => {
E
Erich Gamma 已提交
547 548 549 550 551 552
			if (!veto) {
				win.reload(cli);
			}
		});
	}

J
Joao Moreno 已提交
553 554
	public open(openConfig: IOpenConfiguration): VSCodeWindow[] {
		let iPathsToOpen: IPath[];
B
Benjamin Pasero 已提交
555
		const usedWindows: VSCodeWindow[] = [];
E
Erich Gamma 已提交
556 557 558

		// Find paths from provided paths if any
		if (openConfig.pathsToOpen && openConfig.pathsToOpen.length > 0) {
559
			iPathsToOpen = openConfig.pathsToOpen.map(pathToOpen => {
B
Benjamin Pasero 已提交
560
				const iPath = this.toIPath(pathToOpen, false, openConfig.cli && openConfig.cli.goto);
E
Erich Gamma 已提交
561 562 563

				// Warn if the requested path to open does not exist
				if (!iPath) {
B
Benjamin Pasero 已提交
564
					const options: Electron.ShowMessageBoxOptions = {
B
Benjamin Pasero 已提交
565
						title: product.nameLong,
E
Erich Gamma 已提交
566 567 568 569 570 571 572
						type: 'info',
						buttons: [nls.localize('ok', "OK")],
						message: nls.localize('pathNotExistTitle', "Path does not exist"),
						detail: nls.localize('pathNotExistDetail', "The path '{0}' does not seem to exist anymore on disk.", pathToOpen),
						noLink: true
					};

B
Benjamin Pasero 已提交
573
					const activeWindow = BrowserWindow.getFocusedWindow();
E
Erich Gamma 已提交
574
					if (activeWindow) {
575
						dialog.showMessageBox(activeWindow, options);
E
Erich Gamma 已提交
576
					} else {
577
						dialog.showMessageBox(options);
E
Erich Gamma 已提交
578 579 580 581 582 583 584 585 586 587
					}
				}

				return iPath;
			});

			// get rid of nulls
			iPathsToOpen = arrays.coalesce(iPathsToOpen);

			if (iPathsToOpen.length === 0) {
588
				return null; // indicate to outside that open failed
E
Erich Gamma 已提交
589 590 591 592 593 594 595 596 597 598
			}
		}

		// Check for force empty
		else if (openConfig.forceEmpty) {
			iPathsToOpen = [Object.create(null)];
		}

		// Otherwise infer from command line arguments
		else {
B
Benjamin Pasero 已提交
599
			const ignoreFileNotFound = openConfig.cli.paths.length > 0; // we assume the user wants to create this file from command line
E
Erich Gamma 已提交
600 601 602
			iPathsToOpen = this.cliToPaths(openConfig.cli, ignoreFileNotFound);
		}

J
Joao Moreno 已提交
603 604
		let filesToOpen: IPath[] = [];
		let filesToDiff: IPath[] = [];
605 606 607
		let foldersToOpen = iPathsToOpen.filter(iPath => iPath.workspacePath && !iPath.filePath);
		let emptyToOpen = iPathsToOpen.filter(iPath => !iPath.workspacePath && !iPath.filePath);
		let filesToCreate = iPathsToOpen.filter(iPath => !!iPath.filePath && iPath.createFilePath);
608 609

		// Diff mode needs special care
610
		const candidates = iPathsToOpen.filter(iPath => !!iPath.filePath && !iPath.createFilePath);
611 612 613 614 615 616 617
		if (openConfig.diffMode) {
			if (candidates.length === 2) {
				filesToDiff = candidates;
			} else {
				emptyToOpen = [Object.create(null)]; // improper use of diffMode, open empty
			}

618
			foldersToOpen = []; // diff is always in empty workspace
B
Benjamin Pasero 已提交
619
			filesToCreate = []; // diff ignores other files that do not exist
620 621 622 623
		} else {
			filesToOpen = candidates;
		}

J
Joao Moreno 已提交
624
		let configuration: IWindowConfiguration;
E
Erich Gamma 已提交
625

626
		// Handle files to open/diff or to create when we dont open a folder
627
		if (!foldersToOpen.length && (filesToOpen.length > 0 || filesToCreate.length > 0 || filesToDiff.length > 0)) {
E
Erich Gamma 已提交
628

B
Benjamin Pasero 已提交
629
			// const the user settings override how files are open in a new window or same window unless we are forced
630 631 632 633 634 635
			let openFilesInNewWindow: boolean;
			if (openConfig.forceNewWindow) {
				openFilesInNewWindow = true;
			} else {
				openFilesInNewWindow = openConfig.preferNewWindow;
				if (openFilesInNewWindow && !openConfig.cli.extensionDevelopmentPath) { // can be overriden via settings (not for PDE though!)
636 637 638 639
					const windowConfig = this.configurationService.getConfiguration<IWindowSettings>('window');
					if (windowConfig && !windowConfig.openFilesInNewWindow) {
						openFilesInNewWindow = false; // do not open in new window if user configured this explicitly
					}
640
				}
E
Erich Gamma 已提交
641 642 643
			}

			// Open Files in last instance if any and flag tells us so
B
Benjamin Pasero 已提交
644
			const lastActiveWindow = this.getLastActiveWindow();
E
Erich Gamma 已提交
645
			if (!openFilesInNewWindow && lastActiveWindow) {
B
Benjamin Pasero 已提交
646
				lastActiveWindow.focus();
647
				lastActiveWindow.ready().then(readyWindow => {
648
					readyWindow.send('vscode:openFiles', { filesToOpen, filesToCreate, filesToDiff });
E
Erich Gamma 已提交
649
				});
650 651

				usedWindows.push(lastActiveWindow);
E
Erich Gamma 已提交
652 653 654 655
			}

			// Otherwise open instance with files
			else {
656
				configuration = this.toConfiguration(this.getWindowUserEnv(openConfig), openConfig.cli, null, filesToOpen, filesToCreate, filesToDiff);
B
Benjamin Pasero 已提交
657
				const browserWindow = this.openInBrowserWindow(configuration, true /* new window */);
658
				usedWindows.push(browserWindow);
E
Erich Gamma 已提交
659 660 661 662 663 664

				openConfig.forceNewWindow = true; // any other folders to open must open in new window then
			}
		}

		// Handle folders to open
665
		let openInNewWindow = openConfig.preferNewWindow || openConfig.forceNewWindow;
E
Erich Gamma 已提交
666 667 668
		if (foldersToOpen.length > 0) {

			// Check for existing instances
669
			const windowsOnWorkspacePath = arrays.coalesce(foldersToOpen.map(iPath => this.findWindow(iPath.workspacePath)));
E
Erich Gamma 已提交
670
			if (windowsOnWorkspacePath.length > 0) {
B
Benjamin Pasero 已提交
671
				const browserWindow = windowsOnWorkspacePath[0];
672
				browserWindow.focus(); // just focus one of them
673
				browserWindow.ready().then(readyWindow => {
674
					readyWindow.send('vscode:openFiles', { filesToOpen, filesToCreate, filesToDiff });
E
Erich Gamma 已提交
675 676
				});

677 678
				usedWindows.push(browserWindow);

E
Erich Gamma 已提交
679 680 681
				// Reset these because we handled them
				filesToOpen = [];
				filesToCreate = [];
682
				filesToDiff = [];
E
Erich Gamma 已提交
683

684
				openInNewWindow = true; // any other folders to open must open in new window then
E
Erich Gamma 已提交
685 686 687
			}

			// Open remaining ones
688 689
			foldersToOpen.forEach(folderToOpen => {
				if (windowsOnWorkspacePath.some(win => this.isPathEqual(win.openedWorkspacePath, folderToOpen.workspacePath))) {
E
Erich Gamma 已提交
690 691 692
					return; // ignore folders that are already open
				}

693
				configuration = this.toConfiguration(this.getWindowUserEnv(openConfig), openConfig.cli, folderToOpen.workspacePath, filesToOpen, filesToCreate, filesToDiff);
B
Benjamin Pasero 已提交
694
				const browserWindow = this.openInBrowserWindow(configuration, openInNewWindow, openInNewWindow ? void 0 : openConfig.windowToUse);
695
				usedWindows.push(browserWindow);
E
Erich Gamma 已提交
696 697 698 699

				// Reset these because we handled them
				filesToOpen = [];
				filesToCreate = [];
700
				filesToDiff = [];
E
Erich Gamma 已提交
701

702
				openInNewWindow = true; // any other folders to open must open in new window then
E
Erich Gamma 已提交
703 704 705 706 707 708
			});
		}

		// Handle empty
		if (emptyToOpen.length > 0) {
			emptyToOpen.forEach(() => {
B
Benjamin Pasero 已提交
709 710
				const configuration = this.toConfiguration(this.getWindowUserEnv(openConfig), openConfig.cli);
				const browserWindow = this.openInBrowserWindow(configuration, openInNewWindow, openInNewWindow ? void 0 : openConfig.windowToUse);
711
				usedWindows.push(browserWindow);
E
Erich Gamma 已提交
712

713
				openInNewWindow = true; // any other folders to open must open in new window then
E
Erich Gamma 已提交
714 715 716
			});
		}

717
		// Remember in recent document list (unless this opens for extension development)
718
		// Also do not add paths when files are opened for diffing, only if opened individually
719
		if (!usedWindows.some(w => w.isPluginDevelopmentHost) && !openConfig.cli.diff) {
720 721 722 723 724 725 726
			iPathsToOpen.forEach(iPath => {
				if (iPath.filePath || iPath.workspacePath) {
					app.addRecentDocument(iPath.filePath || iPath.workspacePath);
					this.addToRecentPathsList(iPath.filePath || iPath.workspacePath, !!iPath.filePath);
				}
			});
		}
E
Erich Gamma 已提交
727 728

		// Emit events
729
		iPathsToOpen.forEach(iPath => this.eventEmitter.emit(EventTypes.OPEN, iPath));
E
Erich Gamma 已提交
730

731
		return arrays.distinct(usedWindows);
E
Erich Gamma 已提交
732 733
	}

734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806
	private addToRecentPathsList(path?: string, isFile?: boolean): void {
		if (!path) {
			return;
		}

		const mru = this.getRecentPathsList();
		if (isFile) {
			mru.files.unshift(path);
			mru.files = arrays.distinct(mru.files, (f) => platform.isLinux ? f : f.toLowerCase());
		} else {
			mru.folders.unshift(path);
			mru.folders = arrays.distinct(mru.folders, (f) => platform.isLinux ? f : f.toLowerCase());
		}

		// Make sure its bounded
		mru.folders = mru.folders.slice(0, WindowsManager.MAX_TOTAL_RECENT_ENTRIES);
		mru.files = mru.files.slice(0, WindowsManager.MAX_TOTAL_RECENT_ENTRIES);

		this.storageService.setItem(WindowsManager.recentPathsListStorageKey, mru);
	}

	public removeFromRecentPathsList(path: string): void {
		const mru = this.getRecentPathsList();

		let index = mru.files.indexOf(path);
		if (index >= 0) {
			mru.files.splice(index, 1);
		}

		index = mru.folders.indexOf(path);
		if (index >= 0) {
			mru.folders.splice(index, 1);
		}

		this.storageService.setItem(WindowsManager.recentPathsListStorageKey, mru);
	}

	public clearRecentPathsList(): void {
		this.storageService.setItem(WindowsManager.recentPathsListStorageKey, { folders: [], files: [] });
		app.clearRecentDocuments();
	}

	public getRecentPathsList(workspacePath?: string, filesToOpen?: IPath[]): IRecentPathsList {
		let files: string[];
		let folders: string[];

		// Get from storage
		const storedRecents = this.storageService.getItem<IRecentPathsList>(WindowsManager.recentPathsListStorageKey);
		if (storedRecents) {
			files = storedRecents.files || [];
			folders = storedRecents.folders || [];
		} else {
			files = [];
			folders = [];
		}

		// Add currently files to open to the beginning if any
		if (filesToOpen) {
			files.unshift(...filesToOpen.map(f => f.filePath));
		}

		// Add current workspace path to beginning if set
		if (workspacePath) {
			folders.unshift(workspacePath);
		}

		// Clear those dupes
		files = arrays.distinct(files);
		folders = arrays.distinct(folders);

		return { files, folders };
	}

807 808 809 810
	private getWindowUserEnv(openConfig: IOpenConfiguration): IProcessEnvironment {
		return assign({}, this.initialUserEnv, openConfig.userEnv || {});
	}

E
Erich Gamma 已提交
811 812 813 814 815
	public openPluginDevelopmentHostWindow(openConfig: IOpenConfiguration): void {

		// Reload an existing plugin development host window on the same path
		// We currently do not allow more than one extension development window
		// on the same plugin path.
816
		let res = WindowsManager.WINDOWS.filter(w => w.config && this.isPathEqual(w.config.extensionDevelopmentPath, openConfig.cli.extensionDevelopmentPath));
E
Erich Gamma 已提交
817 818
		if (res && res.length === 1) {
			this.reload(res[0], openConfig.cli);
B
Benjamin Pasero 已提交
819
			res[0].focus(); // make sure it gets focus and is restored
E
Erich Gamma 已提交
820 821 822 823

			return;
		}

824
		// Fill in previously opened workspace unless an explicit path is provided and we are not unit testing
B
Benjamin Pasero 已提交
825
		if (openConfig.cli.paths.length === 0 && !openConfig.cli.extensionTestsPath) {
B
Benjamin Pasero 已提交
826
			const workspaceToOpen = this.windowsState.lastPluginDevelopmentHostWindow && this.windowsState.lastPluginDevelopmentHostWindow.workspacePath;
E
Erich Gamma 已提交
827
			if (workspaceToOpen) {
B
Benjamin Pasero 已提交
828
				openConfig.cli.paths = [workspaceToOpen];
E
Erich Gamma 已提交
829 830 831 832
			}
		}

		// Make sure we are not asked to open a path that is already opened
B
Benjamin Pasero 已提交
833
		if (openConfig.cli.paths.length > 0) {
834
			res = WindowsManager.WINDOWS.filter(w => w.openedWorkspacePath && openConfig.cli.paths.indexOf(w.openedWorkspacePath) >= 0);
E
Erich Gamma 已提交
835
			if (res.length) {
B
Benjamin Pasero 已提交
836
				openConfig.cli.paths = [];
E
Erich Gamma 已提交
837 838 839 840
			}
		}

		// Open it
B
Benjamin Pasero 已提交
841
		this.open({ cli: openConfig.cli, forceNewWindow: true, forceEmpty: openConfig.cli.paths.length === 0 });
E
Erich Gamma 已提交
842 843
	}

844
	private toConfiguration(userEnv: IProcessEnvironment, cli: ICommandLineArguments, workspacePath?: string, filesToOpen?: IPath[], filesToCreate?: IPath[], filesToDiff?: IPath[]): IWindowConfiguration {
B
Benjamin Pasero 已提交
845
		const configuration: IWindowConfiguration = mixin({}, cli); // inherit all properties from CLI
B
Benjamin Pasero 已提交
846 847 848
		configuration.appRoot = this.envService.appRoot;
		configuration.execPath = process.execPath;
		configuration.userEnv = userEnv;
E
Erich Gamma 已提交
849 850 851
		configuration.workspacePath = workspacePath;
		configuration.filesToOpen = filesToOpen;
		configuration.filesToCreate = filesToCreate;
852
		configuration.filesToDiff = filesToDiff;
E
Erich Gamma 已提交
853 854 855 856

		return configuration;
	}

J
Joao Moreno 已提交
857
	private toIPath(anyPath: string, ignoreFileNotFound?: boolean, gotoLineMode?: boolean): IPath {
E
Erich Gamma 已提交
858 859 860 861
		if (!anyPath) {
			return null;
		}

J
Joao Moreno 已提交
862
		let parsedPath: IParsedPath;
E
Erich Gamma 已提交
863
		if (gotoLineMode) {
J
Joao Moreno 已提交
864
			parsedPath = parseLineAndColumnAware(anyPath);
E
Erich Gamma 已提交
865 866 867
			anyPath = parsedPath.path;
		}

B
Benjamin Pasero 已提交
868
		const candidate = path.normalize(anyPath);
E
Erich Gamma 已提交
869
		try {
B
Benjamin Pasero 已提交
870
			const candidateStat = fs.statSync(candidate);
E
Erich Gamma 已提交
871 872 873 874 875
			if (candidateStat) {
				return candidateStat.isFile() ?
					{
						filePath: candidate,
						lineNumber: gotoLineMode ? parsedPath.line : void 0,
876
						columnNumber: gotoLineMode ? parsedPath.column : void 0
E
Erich Gamma 已提交
877 878 879 880 881 882 883 884 885 886 887 888
					} :
					{ workspacePath: candidate };
			}
		} catch (error) {
			if (ignoreFileNotFound) {
				return { filePath: candidate, createFilePath: true }; // assume this is a file that does not yet exist
			}
		}

		return null;
	}

J
Joao Moreno 已提交
889
	private cliToPaths(cli: ICommandLineArguments, ignoreFileNotFound?: boolean): IPath[] {
E
Erich Gamma 已提交
890 891 892

		// Check for pass in candidate or last opened path
		let candidates: string[] = [];
B
Benjamin Pasero 已提交
893 894
		if (cli.paths.length > 0) {
			candidates = cli.paths;
E
Erich Gamma 已提交
895 896 897 898
		}

		// No path argument, check settings for what to do now
		else {
899 900 901 902
			let reopenFolders: string;
			if (this.lifecycleService.wasUpdated) {
				reopenFolders = ReopenFoldersSetting.ALL; // always reopen all folders when an update was applied
			} else {
903 904
				const windowConfig = this.configurationService.getConfiguration<IWindowSettings>('window');
				reopenFolders = (windowConfig && windowConfig.reopenFolders) || ReopenFoldersSetting.ONE;
905 906
			}

B
Benjamin Pasero 已提交
907
			const lastActiveFolder = this.windowsState.lastActiveWindow && this.windowsState.lastActiveWindow.workspacePath;
E
Erich Gamma 已提交
908 909

			// Restore all
910
			if (reopenFolders === ReopenFoldersSetting.ALL) {
B
Benjamin Pasero 已提交
911
				const lastOpenedFolders = this.windowsState.openedFolders.map(o => o.workspacePath);
E
Erich Gamma 已提交
912 913 914 915 916 917 918 919 920 921 922

				// If we have a last active folder, move it to the end
				if (lastActiveFolder) {
					lastOpenedFolders.splice(lastOpenedFolders.indexOf(lastActiveFolder), 1);
					lastOpenedFolders.push(lastActiveFolder);
				}

				candidates.push(...lastOpenedFolders);
			}

			// Restore last active
923
			else if (lastActiveFolder && (reopenFolders === ReopenFoldersSetting.ONE || reopenFolders !== ReopenFoldersSetting.NONE)) {
E
Erich Gamma 已提交
924 925 926 927
				candidates.push(lastActiveFolder);
			}
		}

928
		const iPaths = candidates.map(candidate => this.toIPath(candidate, ignoreFileNotFound, cli.goto)).filter(path => !!path);
E
Erich Gamma 已提交
929 930 931 932 933 934 935 936
		if (iPaths.length > 0) {
			return iPaths;
		}

		// No path provided, return empty to open empty
		return [Object.create(null)];
	}

J
Joao Moreno 已提交
937 938
	private openInBrowserWindow(configuration: IWindowConfiguration, forceNewWindow?: boolean, windowToUse?: VSCodeWindow): VSCodeWindow {
		let vscodeWindow: VSCodeWindow;
E
Erich Gamma 已提交
939 940 941 942 943

		if (!forceNewWindow) {
			vscodeWindow = windowToUse || this.getLastActiveWindow();

			if (vscodeWindow) {
B
Benjamin Pasero 已提交
944
				vscodeWindow.focus();
E
Erich Gamma 已提交
945 946 947 948 949
			}
		}

		// New window
		if (!vscodeWindow) {
950 951
			const windowConfig = this.configurationService.getConfiguration<IWindowSettings>('window');

J
Joao Moreno 已提交
952
			vscodeWindow = this.instantiationService.createInstance(VSCodeWindow, {
953
				state: this.getNewWindowState(configuration),
954
				extensionDevelopmentPath: configuration.extensionDevelopmentPath,
955
				allowFullscreen: this.lifecycleService.wasUpdated || (windowConfig && windowConfig.restoreFullscreen)
956 957
			});

E
Erich Gamma 已提交
958 959 960
			WindowsManager.WINDOWS.push(vscodeWindow);

			// Window Events
961 962
			vscodeWindow.win.webContents.removeAllListeners('devtools-reload-page'); // remove built in listener so we can handle this on our own
			vscodeWindow.win.webContents.on('devtools-reload-page', () => this.reload(vscodeWindow));
963 964
			vscodeWindow.win.webContents.on('crashed', () => this.onWindowError(vscodeWindow, WindowError.CRASHED));
			vscodeWindow.win.on('unresponsive', () => this.onWindowError(vscodeWindow, WindowError.UNRESPONSIVE));
E
Erich Gamma 已提交
965 966
			vscodeWindow.win.on('close', () => this.onBeforeWindowClose(vscodeWindow));
			vscodeWindow.win.on('closed', () => this.onWindowClosed(vscodeWindow));
S
Sandeep Somavarapu 已提交
967
			vscodeWindow.win.on('focus', () => this._onFocus.fire(vscodeWindow.id));
E
Erich Gamma 已提交
968

S
Sandeep Somavarapu 已提交
969
			this._onNewWindow.fire(vscodeWindow.id);
E
Erich Gamma 已提交
970
			// Lifecycle
J
Joao Moreno 已提交
971
			this.lifecycleService.registerWindow(vscodeWindow);
E
Erich Gamma 已提交
972 973 974 975 976 977 978
		}

		// Existing window
		else {

			// Some configuration things get inherited if the window is being reused and we are
			// in plugin development host mode. These options are all development related.
B
Benjamin Pasero 已提交
979
			const currentWindowConfig = vscodeWindow.config;
A
Alex Dima 已提交
980 981
			if (!configuration.extensionDevelopmentPath && currentWindowConfig && !!currentWindowConfig.extensionDevelopmentPath) {
				configuration.extensionDevelopmentPath = currentWindowConfig.extensionDevelopmentPath;
B
Benjamin Pasero 已提交
982
				configuration.verbose = currentWindowConfig.verbose;
983
				configuration.debugBrkPluginHost = currentWindowConfig.debugBrkPluginHost;
984
				configuration.debugPluginHost = currentWindowConfig.debugPluginHost;
B
Benjamin Pasero 已提交
985
				configuration.extensionHomePath = currentWindowConfig.extensionHomePath;
E
Erich Gamma 已提交
986 987 988 989
			}
		}

		// Only load when the window has not vetoed this
990
		this.lifecycleService.unload(vscodeWindow).done(veto => {
E
Erich Gamma 已提交
991 992 993 994 995 996
			if (!veto) {

				// Load it
				vscodeWindow.load(configuration);
			}
		});
997 998

		return vscodeWindow;
E
Erich Gamma 已提交
999 1000
	}

J
Joao Moreno 已提交
1001
	private getNewWindowState(configuration: IWindowConfiguration): ISingleWindowState {
E
Erich Gamma 已提交
1002 1003

		// plugin development host Window - load from stored settings if any
A
Alex Dima 已提交
1004
		if (!!configuration.extensionDevelopmentPath && this.windowsState.lastPluginDevelopmentHostWindow) {
E
Erich Gamma 已提交
1005 1006 1007 1008 1009
			return this.windowsState.lastPluginDevelopmentHostWindow.uiState;
		}

		// Known Folder - load from stored settings if any
		if (configuration.workspacePath) {
B
Benjamin Pasero 已提交
1010
			const stateForWorkspace = this.windowsState.openedFolders.filter(o => this.isPathEqual(o.workspacePath, configuration.workspacePath)).map(o => o.uiState);
E
Erich Gamma 已提交
1011 1012 1013 1014 1015 1016
			if (stateForWorkspace.length) {
				return stateForWorkspace[0];
			}
		}

		// First Window
B
Benjamin Pasero 已提交
1017
		const lastActive = this.getLastActiveWindow();
E
Erich Gamma 已提交
1018 1019 1020 1021 1022 1023 1024 1025 1026
		if (!lastActive && this.windowsState.lastActiveWindow) {
			return this.windowsState.lastActiveWindow.uiState;
		}

		//
		// In any other case, we do not have any stored settings for the window state, so we come up with something smart
		//

		// We want the new window to open on the same display that the last active one is in
1027
		let displayToUse: Electron.Display;
B
Benjamin Pasero 已提交
1028
		const displays = screen.getAllDisplays();
E
Erich Gamma 已提交
1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039

		// Single Display
		if (displays.length === 1) {
			displayToUse = displays[0];
		}

		// Multi Display
		else {

			// on mac there is 1 menu per window so we need to use the monitor where the cursor currently is
			if (platform.isMacintosh) {
B
Benjamin Pasero 已提交
1040
				const cursorPoint = screen.getCursorScreenPoint();
E
Erich Gamma 已提交
1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054
				displayToUse = screen.getDisplayNearestPoint(cursorPoint);
			}

			// if we have a last active window, use that display for the new window
			if (!displayToUse && lastActive) {
				displayToUse = screen.getDisplayMatching(lastActive.getBounds());
			}

			// fallback to first display
			if (!displayToUse) {
				displayToUse = displays[0];
			}
		}

B
Benjamin Pasero 已提交
1055
		const defaultState = defaultWindowState();
E
Erich Gamma 已提交
1056 1057 1058 1059 1060 1061
		defaultState.x = displayToUse.bounds.x + (displayToUse.bounds.width / 2) - (defaultState.width / 2);
		defaultState.y = displayToUse.bounds.y + (displayToUse.bounds.height / 2) - (defaultState.height / 2);

		return this.ensureNoOverlap(defaultState);
	}

J
Joao Moreno 已提交
1062
	private ensureNoOverlap(state: ISingleWindowState): ISingleWindowState {
E
Erich Gamma 已提交
1063 1064 1065 1066
		if (WindowsManager.WINDOWS.length === 0) {
			return state;
		}

1067 1068
		const existingWindowBounds = WindowsManager.WINDOWS.map(win => win.getBounds());
		while (existingWindowBounds.some(b => b.x === state.x || b.y === state.y)) {
E
Erich Gamma 已提交
1069 1070 1071 1072 1073 1074 1075
			state.x += 30;
			state.y += 30;
		}

		return state;
	}

1076
	public openFileFolderPicker(forceNewWindow?: boolean): void {
1077
		this.doPickAndOpen({ pickFolders: true, pickFiles: true, forceNewWindow });
1078 1079
	}

1080 1081
	public openFilePicker(forceNewWindow?: boolean, path?: string): void {
		this.doPickAndOpen({ pickFiles: true, forceNewWindow, path });
1082 1083 1084
	}

	public openFolderPicker(forceNewWindow?: boolean): void {
1085
		this.doPickAndOpen({ pickFolders: true, forceNewWindow });
E
Erich Gamma 已提交
1086 1087
	}

1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103
	public openAccessibilityOptions(): void {
		let win = new BrowserWindow({
			alwaysOnTop: true,
			skipTaskbar: true,
			resizable: false,
			width: 450,
			height: 300,
			show: true,
			title: nls.localize('accessibilityOptionsWindowTitle', "Accessibility Options")
		});

		win.setMenuBarVisibility(false);

		win.loadURL('chrome://accessibility');
	}

1104
	private doPickAndOpen(options: INativeOpenDialogOptions): void {
1105
		this.getFileOrFolderPaths(options, (paths: string[]) => {
E
Erich Gamma 已提交
1106
			if (paths && paths.length) {
1107
				this.open({ cli: this.envService.cliArgs, pathsToOpen: paths, forceNewWindow: options.forceNewWindow });
E
Erich Gamma 已提交
1108 1109 1110 1111
			}
		});
	}

1112
	private getFileOrFolderPaths(options: INativeOpenDialogOptions, clb: (paths: string[]) => void): void {
B
Benjamin Pasero 已提交
1113 1114
		const workingDir = options.path || this.storageService.getItem<string>(WindowsManager.workingDirPickerStorageKey);
		const focussedWindow = this.getFocusedWindow();
E
Erich Gamma 已提交
1115

B
Benjamin Pasero 已提交
1116
		let pickerProperties: ('openFile' | 'openDirectory' | 'multiSelections' | 'createDirectory')[];
1117
		if (options.pickFiles && options.pickFolders) {
E
Erich Gamma 已提交
1118 1119
			pickerProperties = ['multiSelections', 'openDirectory', 'openFile', 'createDirectory'];
		} else {
1120
			pickerProperties = ['multiSelections', options.pickFolders ? 'openDirectory' : 'openFile', 'createDirectory'];
E
Erich Gamma 已提交
1121 1122
		}

1123
		dialog.showOpenDialog(focussedWindow && focussedWindow.win, {
E
Erich Gamma 已提交
1124 1125
			defaultPath: workingDir,
			properties: pickerProperties
1126
		}, paths => {
E
Erich Gamma 已提交
1127 1128 1129
			if (paths && paths.length > 0) {

				// Remember path in storage for next time
J
Joao Moreno 已提交
1130
				this.storageService.setItem(WindowsManager.workingDirPickerStorageKey, path.dirname(paths[0]));
E
Erich Gamma 已提交
1131 1132 1133 1134 1135 1136 1137 1138 1139

				// Return
				clb(paths);
			} else {
				clb(void (0));
			}
		});
	}

J
Joao Moreno 已提交
1140
	public focusLastActive(cli: ICommandLineArguments): VSCodeWindow {
B
Benjamin Pasero 已提交
1141
		const lastActive = this.getLastActiveWindow();
E
Erich Gamma 已提交
1142
		if (lastActive) {
B
Benjamin Pasero 已提交
1143
			lastActive.focus();
1144 1145

			return lastActive;
E
Erich Gamma 已提交
1146 1147 1148
		}

		// No window - open new one
1149 1150 1151 1152
		this.windowsState.openedFolders = []; // make sure we do not open too much
		const res = this.open({ cli: cli });

		return res && res[0];
E
Erich Gamma 已提交
1153 1154
	}

J
Joao Moreno 已提交
1155
	public getLastActiveWindow(): VSCodeWindow {
E
Erich Gamma 已提交
1156
		if (WindowsManager.WINDOWS.length) {
1157 1158
			const lastFocussedDate = Math.max.apply(Math, WindowsManager.WINDOWS.map(w => w.lastFocusTime));
			const res = WindowsManager.WINDOWS.filter(w => w.lastFocusTime === lastFocussedDate);
E
Erich Gamma 已提交
1159 1160 1161 1162 1163 1164 1165 1166
			if (res && res.length) {
				return res[0];
			}
		}

		return null;
	}

J
Joao Moreno 已提交
1167
	public findWindow(workspacePath: string, filePath?: string, extensionDevelopmentPath?: string): VSCodeWindow {
E
Erich Gamma 已提交
1168 1169 1170
		if (WindowsManager.WINDOWS.length) {

			// Sort the last active window to the front of the array of windows to test
B
Benjamin Pasero 已提交
1171 1172
			const windowsToTest = WindowsManager.WINDOWS.slice(0);
			const lastActiveWindow = this.getLastActiveWindow();
E
Erich Gamma 已提交
1173 1174 1175 1176 1177 1178
			if (lastActiveWindow) {
				windowsToTest.splice(windowsToTest.indexOf(lastActiveWindow), 1);
				windowsToTest.unshift(lastActiveWindow);
			}

			// Find it
1179
			const res = windowsToTest.filter(w => {
E
Erich Gamma 已提交
1180 1181

				// match on workspace
1182
				if (typeof w.openedWorkspacePath === 'string' && (this.isPathEqual(w.openedWorkspacePath, workspacePath))) {
E
Erich Gamma 已提交
1183 1184 1185 1186
					return true;
				}

				// match on file
B
Benjamin Pasero 已提交
1187
				if (typeof w.openedFilePath === 'string' && this.isPathEqual(w.openedFilePath, filePath)) {
E
Erich Gamma 已提交
1188 1189 1190 1191 1192 1193 1194 1195
					return true;
				}

				// match on file path
				if (typeof w.openedWorkspacePath === 'string' && filePath && paths.isEqualOrParent(filePath, w.openedWorkspacePath)) {
					return true;
				}

1196 1197 1198 1199 1200
				// match on extension development path
				if (typeof extensionDevelopmentPath === 'string' && w.extensionDevelopmentPath === extensionDevelopmentPath) {
					return true;
				}

E
Erich Gamma 已提交
1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212
				return false;
			});

			if (res && res.length) {
				return res[0];
			}
		}

		return null;
	}

	public openNewWindow(): void {
J
Joao Moreno 已提交
1213
		this.open({ cli: this.envService.cliArgs, forceNewWindow: true, forceEmpty: true });
E
Erich Gamma 已提交
1214 1215 1216 1217 1218 1219
	}

	public sendToFocused(channel: string, ...args: any[]): void {
		const focusedWindow = this.getFocusedWindow() || this.getLastActiveWindow();

		if (focusedWindow) {
1220
			focusedWindow.sendWhenReady(channel, ...args);
E
Erich Gamma 已提交
1221 1222 1223 1224
		}
	}

	public sendToAll(channel: string, payload: any, windowIdsToIgnore?: number[]): void {
1225
		WindowsManager.WINDOWS.forEach(w => {
B
Benjamin Pasero 已提交
1226
			if (windowIdsToIgnore && windowIdsToIgnore.indexOf(w.id) >= 0) {
E
Erich Gamma 已提交
1227 1228 1229
				return; // do not send if we are instructed to ignore it
			}

1230
			w.sendWhenReady(channel, payload);
E
Erich Gamma 已提交
1231 1232 1233
		});
	}

J
Joao Moreno 已提交
1234
	public getFocusedWindow(): VSCodeWindow {
B
Benjamin Pasero 已提交
1235
		const win = BrowserWindow.getFocusedWindow();
E
Erich Gamma 已提交
1236 1237 1238 1239 1240 1241 1242
		if (win) {
			return this.getWindowById(win.id);
		}

		return null;
	}

J
Joao Moreno 已提交
1243
	public getWindowById(windowId: number): VSCodeWindow {
1244
		const res = WindowsManager.WINDOWS.filter(w => w.id === windowId);
E
Erich Gamma 已提交
1245 1246 1247 1248 1249 1250 1251
		if (res && res.length === 1) {
			return res[0];
		}

		return null;
	}

J
Joao Moreno 已提交
1252
	public getWindows(): VSCodeWindow[] {
E
Erich Gamma 已提交
1253 1254 1255 1256 1257 1258 1259
		return WindowsManager.WINDOWS;
	}

	public getWindowCount(): number {
		return WindowsManager.WINDOWS.length;
	}

J
Joao Moreno 已提交
1260
	private onWindowError(vscodeWindow: VSCodeWindow, error: WindowError): void {
E
Erich Gamma 已提交
1261 1262 1263 1264
		console.error(error === WindowError.CRASHED ? '[VS Code]: render process crashed!' : '[VS Code]: detected unresponsive');

		// Unresponsive
		if (error === WindowError.UNRESPONSIVE) {
1265
			dialog.showMessageBox(vscodeWindow.win, {
B
Benjamin Pasero 已提交
1266
				title: product.nameLong,
E
Erich Gamma 已提交
1267
				type: 'warning',
B
Benjamin Pasero 已提交
1268
				buttons: [nls.localize('reopen', "Reopen"), nls.localize('wait', "Keep Waiting"), nls.localize('close', "Close")],
1269
				message: nls.localize('appStalled', "The window is no longer responding"),
B
Benjamin Pasero 已提交
1270
				detail: nls.localize('appStalledDetail', "You can reopen or close the window or keep waiting."),
E
Erich Gamma 已提交
1271
				noLink: true
1272
			}, result => {
E
Erich Gamma 已提交
1273
				if (result === 0) {
1274 1275
					vscodeWindow.reload();
				} else if (result === 2) {
1276
					this.onBeforeWindowClose(vscodeWindow); // 'close' event will not be fired on destroy(), so run it manually
1277
					vscodeWindow.win.destroy(); // make sure to destroy the window as it is unresponsive
E
Erich Gamma 已提交
1278 1279 1280 1281 1282 1283
				}
			});
		}

		// Crashed
		else {
1284
			dialog.showMessageBox(vscodeWindow.win, {
B
Benjamin Pasero 已提交
1285
				title: product.nameLong,
E
Erich Gamma 已提交
1286
				type: 'warning',
B
Benjamin Pasero 已提交
1287
				buttons: [nls.localize('reopen', "Reopen"), nls.localize('close', "Close")],
1288
				message: nls.localize('appCrashed', "The window has crashed"),
B
Benjamin Pasero 已提交
1289
				detail: nls.localize('appCrashedDetail', "We are sorry for the inconvenience! You can reopen the window to continue where you left off."),
E
Erich Gamma 已提交
1290
				noLink: true
1291
			}, result => {
1292 1293 1294
				if (result === 0) {
					vscodeWindow.reload();
				} else if (result === 1) {
1295
					this.onBeforeWindowClose(vscodeWindow); // 'close' event will not be fired on destroy(), so run it manually
1296 1297
					vscodeWindow.win.destroy(); // make sure to destroy the window as it has crashed
				}
E
Erich Gamma 已提交
1298 1299 1300 1301
			});
		}
	}

J
Joao Moreno 已提交
1302 1303
	private onBeforeWindowClose(win: VSCodeWindow): void {
		if (win.readyState !== ReadyState.READY) {
E
Erich Gamma 已提交
1304 1305 1306 1307
			return; // only persist windows that are fully loaded
		}

		// On Window close, update our stored state of this window
B
Benjamin Pasero 已提交
1308
		const state: IWindowState = { workspacePath: win.openedWorkspacePath, uiState: win.serializeWindowState() };
E
Erich Gamma 已提交
1309 1310 1311 1312 1313 1314
		if (win.isPluginDevelopmentHost) {
			this.windowsState.lastPluginDevelopmentHostWindow = state;
		} else {
			this.windowsState.lastActiveWindow = state;

			this.windowsState.openedFolders.forEach(o => {
B
Benjamin Pasero 已提交
1315
				if (this.isPathEqual(o.workspacePath, win.openedWorkspacePath)) {
E
Erich Gamma 已提交
1316 1317 1318 1319 1320 1321
					o.uiState = state.uiState;
				}
			});
		}
	}

J
Joao Moreno 已提交
1322
	private onWindowClosed(win: VSCodeWindow): void {
E
Erich Gamma 已提交
1323 1324 1325 1326 1327

		// Tell window
		win.dispose();

		// Remove from our list so that Electron can clean it up
B
Benjamin Pasero 已提交
1328
		const index = WindowsManager.WINDOWS.indexOf(win);
E
Erich Gamma 已提交
1329 1330 1331
		WindowsManager.WINDOWS.splice(index, 1);

		// Emit
J
Joao Moreno 已提交
1332
		this.eventEmitter.emit(EventTypes.CLOSE, win.id);
E
Erich Gamma 已提交
1333
	}
B
Benjamin Pasero 已提交
1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357

	private isPathEqual(pathA: string, pathB: string): boolean {
		if (pathA === pathB) {
			return true;
		}

		if (!pathA || !pathB) {
			return false;
		}

		pathA = path.normalize(pathA);
		pathB = path.normalize(pathB);

		if (pathA === pathB) {
			return true;
		}

		if (!platform.isLinux) {
			pathA = pathA.toLowerCase();
			pathB = pathB.toLowerCase();
		}

		return pathA === pathB;
	}
1358
}