-
Notifications
You must be signed in to change notification settings - Fork 29.5k
/
window.ts
1225 lines (1021 loc) · 52.4 KB
/
window.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
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
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
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
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
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
436
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
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
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
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
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
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
import 'vs/css!./media/window';
import { localize } from 'vs/nls';
import { URI } from 'vs/base/common/uri';
import { onUnexpectedError } from 'vs/base/common/errors';
import { equals } from 'vs/base/common/objects';
import { EventType, EventHelper, addDisposableListener, ModifierKeyEmitter, getActiveElement, hasWindow, getWindow, getWindowById, getWindows } from 'vs/base/browser/dom';
import { Action, Separator, WorkbenchActionExecutedClassification, WorkbenchActionExecutedEvent } from 'vs/base/common/actions';
import { IFileService } from 'vs/platform/files/common/files';
import { EditorResourceAccessor, IUntitledTextResourceEditorInput, SideBySideEditor, pathsToEditors, IResourceDiffEditorInput, IUntypedEditorInput, IEditorPane, isResourceEditorInput, IResourceMergeEditorInput } from 'vs/workbench/common/editor';
import { IEditorService } from 'vs/workbench/services/editor/common/editorService';
import { ITelemetryService } from 'vs/platform/telemetry/common/telemetry';
import { WindowMinimumSize, IOpenFileRequest, IAddFoldersRequest, INativeRunActionInWindowRequest, INativeRunKeybindingInWindowRequest, INativeOpenFileRequest, hasNativeTitlebar } from 'vs/platform/window/common/window';
import { ITitleService } from 'vs/workbench/services/title/browser/titleService';
import { IWorkbenchThemeService } from 'vs/workbench/services/themes/common/workbenchThemeService';
import { ApplyZoomTarget, applyZoom } from 'vs/platform/window/electron-sandbox/window';
import { setFullscreen, getZoomLevel, onDidChangeZoomLevel, getZoomFactor } from 'vs/base/browser/browser';
import { ICommandService, CommandsRegistry } from 'vs/platform/commands/common/commands';
import { IResourceEditorInput } from 'vs/platform/editor/common/editor';
import { ipcRenderer, process } from 'vs/base/parts/sandbox/electron-sandbox/globals';
import { IWorkspaceEditingService } from 'vs/workbench/services/workspaces/common/workspaceEditing';
import { IMenuService, MenuId, IMenu, MenuItemAction, MenuRegistry } from 'vs/platform/actions/common/actions';
import { ICommandAction } from 'vs/platform/action/common/action';
import { createAndFillInActionBarActions } from 'vs/platform/actions/browser/menuEntryActionViewItem';
import { RunOnceScheduler } from 'vs/base/common/async';
import { Disposable, DisposableStore, MutableDisposable, toDisposable } from 'vs/base/common/lifecycle';
import { LifecyclePhase, ILifecycleService, WillShutdownEvent, ShutdownReason, BeforeShutdownErrorEvent, BeforeShutdownEvent } from 'vs/workbench/services/lifecycle/common/lifecycle';
import { IWorkspaceFolderCreationData } from 'vs/platform/workspaces/common/workspaces';
import { IIntegrityService } from 'vs/workbench/services/integrity/common/integrity';
import { isWindows, isMacintosh, isCI } from 'vs/base/common/platform';
import { IProductService } from 'vs/platform/product/common/productService';
import { INotificationService, NeverShowAgainScope, NotificationPriority, Severity } from 'vs/platform/notification/common/notification';
import { IKeybindingService } from 'vs/platform/keybinding/common/keybinding';
import { INativeWorkbenchEnvironmentService } from 'vs/workbench/services/environment/electron-sandbox/environmentService';
import { IAccessibilityService, AccessibilitySupport } from 'vs/platform/accessibility/common/accessibility';
import { WorkbenchState, IWorkspaceContextService } from 'vs/platform/workspace/common/workspace';
import { coalesce } from 'vs/base/common/arrays';
import { ConfigurationTarget, IConfigurationService } from 'vs/platform/configuration/common/configuration';
import { IStorageService, StorageScope, StorageTarget } from 'vs/platform/storage/common/storage';
import { assertIsDefined } from 'vs/base/common/types';
import { IOpenerService, IResolvedExternalUri, OpenOptions } from 'vs/platform/opener/common/opener';
import { Schemas } from 'vs/base/common/network';
import { INativeHostService } from 'vs/platform/native/common/native';
import { posix } from 'vs/base/common/path';
import { ITunnelService, RemoteTunnel, extractLocalHostUriMetaDataForPortMapping, extractQueryLocalHostUriMetaDataForPortMapping } from 'vs/platform/tunnel/common/tunnel';
import { IWorkbenchLayoutService, Parts, positionFromString, Position } from 'vs/workbench/services/layout/browser/layoutService';
import { IWorkingCopyService } from 'vs/workbench/services/workingCopy/common/workingCopyService';
import { WorkingCopyCapabilities } from 'vs/workbench/services/workingCopy/common/workingCopy';
import { IFilesConfigurationService } from 'vs/workbench/services/filesConfiguration/common/filesConfigurationService';
import { Event } from 'vs/base/common/event';
import { IRemoteAuthorityResolverService } from 'vs/platform/remote/common/remoteAuthorityResolver';
import { IAddressProvider, IAddress } from 'vs/platform/remote/common/remoteAgentConnection';
import { IEditorGroupsService } from 'vs/workbench/services/editor/common/editorGroupsService';
import { IDialogService } from 'vs/platform/dialogs/common/dialogs';
import { AuthInfo } from 'vs/base/parts/sandbox/electron-sandbox/electronTypes';
import { ILogService } from 'vs/platform/log/common/log';
import { IInstantiationService } from 'vs/platform/instantiation/common/instantiation';
import { whenEditorClosed } from 'vs/workbench/browser/editor';
import { ISharedProcessService } from 'vs/platform/ipc/electron-sandbox/services';
import { IProgressService, ProgressLocation } from 'vs/platform/progress/common/progress';
import { toErrorMessage } from 'vs/base/common/errorMessage';
import { ILabelService } from 'vs/platform/label/common/label';
import { dirname } from 'vs/base/common/resources';
import { IBannerService } from 'vs/workbench/services/banner/browser/bannerService';
import { Codicon } from 'vs/base/common/codicons';
import { IUriIdentityService } from 'vs/platform/uriIdentity/common/uriIdentity';
import { IPreferencesService } from 'vs/workbench/services/preferences/common/preferences';
import { IUtilityProcessWorkerWorkbenchService } from 'vs/workbench/services/utilityProcess/electron-sandbox/utilityProcessWorkerWorkbenchService';
import { registerWindowDriver } from 'vs/workbench/services/driver/electron-sandbox/driver';
import { mainWindow } from 'vs/base/browser/window';
import { BaseWindow } from 'vs/workbench/browser/window';
import { IHostService } from 'vs/workbench/services/host/browser/host';
import { IStatusbarService, ShowTooltipCommand, StatusbarAlignment } from 'vs/workbench/services/statusbar/browser/statusbar';
import { ActionBar } from 'vs/base/browser/ui/actionbar/actionbar';
import { ThemeIcon } from 'vs/base/common/themables';
import { getWorkbenchContribution } from 'vs/workbench/common/contributions';
import { DynamicWorkbenchSecurityConfiguration } from 'vs/workbench/common/configuration';
import { nativeHoverDelegate } from 'vs/platform/hover/browser/hover';
export class NativeWindow extends BaseWindow {
private readonly customTitleContextMenuDisposable = this._register(new DisposableStore());
private readonly addFoldersScheduler = this._register(new RunOnceScheduler(() => this.doAddFolders(), 100));
private pendingFoldersToAdd: URI[] = [];
private isDocumentedEdited = false;
private readonly mainPartEditorService: IEditorService;
constructor(
@IEditorService private readonly editorService: IEditorService,
@IEditorGroupsService private readonly editorGroupService: IEditorGroupsService,
@IConfigurationService private readonly configurationService: IConfigurationService,
@ITitleService private readonly titleService: ITitleService,
@IWorkbenchThemeService protected themeService: IWorkbenchThemeService,
@INotificationService private readonly notificationService: INotificationService,
@ICommandService private readonly commandService: ICommandService,
@IKeybindingService private readonly keybindingService: IKeybindingService,
@ITelemetryService private readonly telemetryService: ITelemetryService,
@IWorkspaceEditingService private readonly workspaceEditingService: IWorkspaceEditingService,
@IFileService private readonly fileService: IFileService,
@IMenuService private readonly menuService: IMenuService,
@ILifecycleService private readonly lifecycleService: ILifecycleService,
@IIntegrityService private readonly integrityService: IIntegrityService,
@INativeWorkbenchEnvironmentService private readonly nativeEnvironmentService: INativeWorkbenchEnvironmentService,
@IAccessibilityService private readonly accessibilityService: IAccessibilityService,
@IWorkspaceContextService private readonly contextService: IWorkspaceContextService,
@IOpenerService private readonly openerService: IOpenerService,
@INativeHostService private readonly nativeHostService: INativeHostService,
@ITunnelService private readonly tunnelService: ITunnelService,
@IWorkbenchLayoutService private readonly layoutService: IWorkbenchLayoutService,
@IWorkingCopyService private readonly workingCopyService: IWorkingCopyService,
@IFilesConfigurationService private readonly filesConfigurationService: IFilesConfigurationService,
@IProductService private readonly productService: IProductService,
@IRemoteAuthorityResolverService private readonly remoteAuthorityResolverService: IRemoteAuthorityResolverService,
@IDialogService private readonly dialogService: IDialogService,
@IStorageService private readonly storageService: IStorageService,
@ILogService private readonly logService: ILogService,
@IInstantiationService private readonly instantiationService: IInstantiationService,
@ISharedProcessService private readonly sharedProcessService: ISharedProcessService,
@IProgressService private readonly progressService: IProgressService,
@ILabelService private readonly labelService: ILabelService,
@IBannerService private readonly bannerService: IBannerService,
@IUriIdentityService private readonly uriIdentityService: IUriIdentityService,
@IPreferencesService private readonly preferencesService: IPreferencesService,
@IUtilityProcessWorkerWorkbenchService private readonly utilityProcessWorkerWorkbenchService: IUtilityProcessWorkerWorkbenchService,
@IHostService hostService: IHostService
) {
super(mainWindow, undefined, hostService, nativeEnvironmentService);
this.mainPartEditorService = editorService.createScoped('main', this._store);
this.registerListeners();
this.create();
}
protected registerListeners(): void {
// Layout
this._register(addDisposableListener(mainWindow, EventType.RESIZE, () => this.layoutService.layout()));
// React to editor input changes
this._register(this.editorService.onDidActiveEditorChange(() => this.updateTouchbarMenu()));
// Prevent opening a real URL inside the window
for (const event of [EventType.DRAG_OVER, EventType.DROP]) {
this._register(addDisposableListener(mainWindow.document.body, event, (e: DragEvent) => {
EventHelper.stop(e);
}));
}
// Support `runAction` event
ipcRenderer.on('vscode:runAction', async (event: unknown, request: INativeRunActionInWindowRequest) => {
const args: unknown[] = request.args || [];
// If we run an action from the touchbar, we fill in the currently active resource
// as payload because the touch bar items are context aware depending on the editor
if (request.from === 'touchbar') {
const activeEditor = this.editorService.activeEditor;
if (activeEditor) {
const resource = EditorResourceAccessor.getOriginalUri(activeEditor, { supportSideBySide: SideBySideEditor.PRIMARY });
if (resource) {
args.push(resource);
}
}
} else {
args.push({ from: request.from });
}
try {
await this.commandService.executeCommand(request.id, ...args);
this.telemetryService.publicLog2<WorkbenchActionExecutedEvent, WorkbenchActionExecutedClassification>('workbenchActionExecuted', { id: request.id, from: request.from });
} catch (error) {
this.notificationService.error(error);
}
});
// Support runKeybinding event
ipcRenderer.on('vscode:runKeybinding', (event: unknown, request: INativeRunKeybindingInWindowRequest) => {
const activeElement = getActiveElement();
if (activeElement) {
this.keybindingService.dispatchByUserSettingsLabel(request.userSettingsLabel, activeElement);
}
});
// Error reporting from main
ipcRenderer.on('vscode:reportError', (event: unknown, error: string) => {
if (error) {
onUnexpectedError(JSON.parse(error));
}
});
// Shared Process crash reported from main
ipcRenderer.on('vscode:reportSharedProcessCrash', (event: unknown, error: string) => {
this.notificationService.prompt(
Severity.Error,
localize('sharedProcessCrash', "A shared background process terminated unexpectedly. Please restart the application to recover."),
[{
label: localize('restart', "Restart"),
run: () => this.nativeHostService.relaunch()
}]
);
});
// Support openFiles event for existing and new files
ipcRenderer.on('vscode:openFiles', (event: unknown, request: IOpenFileRequest) => { this.onOpenFiles(request); });
// Support addFolders event if we have a workspace opened
ipcRenderer.on('vscode:addFolders', (event: unknown, request: IAddFoldersRequest) => { this.onAddFoldersRequest(request); });
// Message support
ipcRenderer.on('vscode:showInfoMessage', (event: unknown, message: string) => { this.notificationService.info(message); });
// Shell Environment Issue Notifications
ipcRenderer.on('vscode:showResolveShellEnvError', (event: unknown, message: string) => {
this.notificationService.prompt(
Severity.Error,
message,
[{
label: localize('restart', "Restart"),
run: () => this.nativeHostService.relaunch()
},
{
label: localize('configure', "Configure"),
run: () => this.preferencesService.openUserSettings({ query: 'application.shellEnvironmentResolutionTimeout' })
},
{
label: localize('learnMore', "Learn More"),
run: () => this.openerService.open('https://go.microsoft.com/fwlink/?linkid=2149667')
}]
);
});
ipcRenderer.on('vscode:showCredentialsError', (event: unknown, message: string) => {
this.notificationService.prompt(
Severity.Error,
localize('keychainWriteError', "Writing login information to the keychain failed with error '{0}'.", message),
[{
label: localize('troubleshooting', "Troubleshooting Guide"),
run: () => this.openerService.open('https://go.microsoft.com/fwlink/?linkid=2190713')
}]
);
});
ipcRenderer.on('vscode:showTranslatedBuildWarning', (event: unknown, message: string) => {
this.notificationService.prompt(
Severity.Warning,
localize("runningTranslated", "You are running an emulated version of {0}. For better performance download the native arm64 version of {0} build for your machine.", this.productService.nameLong),
[{
label: localize('downloadArmBuild', "Download"),
run: () => {
const quality = this.productService.quality;
const stableURL = 'https://code.visualstudio.com/docs/?dv=osx';
const insidersURL = 'https://code.visualstudio.com/docs/?dv=osx&build=insiders';
this.openerService.open(quality === 'stable' ? stableURL : insidersURL);
}
}]
);
});
// Fullscreen Events
ipcRenderer.on('vscode:enterFullScreen', () => setFullscreen(true, mainWindow));
ipcRenderer.on('vscode:leaveFullScreen', () => setFullscreen(false, mainWindow));
// Proxy Login Dialog
ipcRenderer.on('vscode:openProxyAuthenticationDialog', async (event: unknown, payload: { authInfo: AuthInfo; username?: string; password?: string; replyChannel: string }) => {
const rememberCredentialsKey = 'window.rememberProxyCredentials';
const rememberCredentials = this.storageService.getBoolean(rememberCredentialsKey, StorageScope.APPLICATION);
const result = await this.dialogService.input({
type: 'warning',
message: localize('proxyAuthRequired', "Proxy Authentication Required"),
primaryButton: localize({ key: 'loginButton', comment: ['&& denotes a mnemonic'] }, "&&Log In"),
inputs:
[
{ placeholder: localize('username', "Username"), value: payload.username },
{ placeholder: localize('password', "Password"), type: 'password', value: payload.password }
],
detail: localize('proxyDetail', "The proxy {0} requires a username and password.", `${payload.authInfo.host}:${payload.authInfo.port}`),
checkbox: {
label: localize('rememberCredentials', "Remember my credentials"),
checked: rememberCredentials
}
});
// Reply back to the channel without result to indicate
// that the login dialog was cancelled
if (!result.confirmed || !result.values) {
ipcRenderer.send(payload.replyChannel);
}
// Other reply back with the picked credentials
else {
// Update state based on checkbox
if (result.checkboxChecked) {
this.storageService.store(rememberCredentialsKey, true, StorageScope.APPLICATION, StorageTarget.MACHINE);
} else {
this.storageService.remove(rememberCredentialsKey, StorageScope.APPLICATION);
}
// Reply back to main side with credentials
const [username, password] = result.values;
ipcRenderer.send(payload.replyChannel, { username, password, remember: !!result.checkboxChecked });
}
});
// Accessibility support changed event
ipcRenderer.on('vscode:accessibilitySupportChanged', (event: unknown, accessibilitySupportEnabled: boolean) => {
this.accessibilityService.setAccessibilitySupport(accessibilitySupportEnabled ? AccessibilitySupport.Enabled : AccessibilitySupport.Disabled);
});
// Allow to update security settings around allowed UNC Host
ipcRenderer.on('vscode:configureAllowedUNCHost', async (event: unknown, host: string) => {
if (!isWindows) {
return; // only supported on Windows
}
const allowedUncHosts = new Set<string>();
const configuredAllowedUncHosts = this.configurationService.getValue<string[] | undefined>('security.allowedUNCHosts',) ?? [];
if (Array.isArray(configuredAllowedUncHosts)) {
for (const configuredAllowedUncHost of configuredAllowedUncHosts) {
if (typeof configuredAllowedUncHost === 'string') {
allowedUncHosts.add(configuredAllowedUncHost);
}
}
}
if (!allowedUncHosts.has(host)) {
allowedUncHosts.add(host);
await getWorkbenchContribution<DynamicWorkbenchSecurityConfiguration>(DynamicWorkbenchSecurityConfiguration.ID).ready; // ensure this setting is registered
this.configurationService.updateValue('security.allowedUNCHosts', [...allowedUncHosts.values()], ConfigurationTarget.USER);
}
});
// Allow to update security settings around protocol handlers
ipcRenderer.on('vscode:disablePromptForProtocolHandling', (event: unknown, kind: 'local' | 'remote') => {
const setting = kind === 'local' ? 'security.promptForLocalFileProtocolHandling' : 'security.promptForRemoteFileProtocolHandling';
this.configurationService.updateValue(setting, false);
});
// Window Zoom
this._register(this.configurationService.onDidChangeConfiguration(e => {
if (e.affectsConfiguration('window.zoomLevel') || (e.affectsConfiguration('window.zoomPerWindow') && this.configurationService.getValue('window.zoomPerWindow') === false)) {
this.onDidChangeConfiguredWindowZoomLevel();
} else if (e.affectsConfiguration('keyboard.touchbar.enabled') || e.affectsConfiguration('keyboard.touchbar.ignored')) {
this.updateTouchbarMenu();
}
}));
this._register(onDidChangeZoomLevel(targetWindowId => this.handleOnDidChangeZoomLevel(targetWindowId)));
this._register(this.editorGroupService.onDidCreateAuxiliaryEditorPart(({ instantiationService, disposables, part }) => {
this.createWindowZoomStatusEntry(instantiationService, part.windowId, disposables);
}));
// Listen to visible editor changes (debounced in case a new editor opens immediately after)
this._register(Event.debounce(this.editorService.onDidVisibleEditorsChange, () => undefined, 0, undefined, undefined, undefined, this._store)(() => this.maybeCloseWindow()));
// Listen to editor closing (if we run with --wait)
const filesToWait = this.nativeEnvironmentService.filesToWait;
if (filesToWait) {
this.trackClosedWaitFiles(filesToWait.waitMarkerFileUri, coalesce(filesToWait.paths.map(path => path.fileUri)));
}
// macOS OS integration
if (isMacintosh) {
const updateRepresentedFilename = (editorService: IEditorService, targetWindowId: number | undefined) => {
const file = EditorResourceAccessor.getOriginalUri(editorService.activeEditor, { supportSideBySide: SideBySideEditor.PRIMARY, filterByScheme: Schemas.file });
// Represented Filename
this.nativeHostService.setRepresentedFilename(file?.fsPath ?? '', { targetWindowId });
// Custom title menu (main window only currently)
if (typeof targetWindowId !== 'number') {
this.provideCustomTitleContextMenu(file?.fsPath);
}
};
this._register(this.mainPartEditorService.onDidActiveEditorChange(() => updateRepresentedFilename(this.mainPartEditorService, undefined)));
this._register(this.editorGroupService.onDidCreateAuxiliaryEditorPart(({ part, disposables }) => {
const auxiliaryEditorService = this.editorService.createScoped(part, disposables);
disposables.add(auxiliaryEditorService.onDidActiveEditorChange(() => updateRepresentedFilename(auxiliaryEditorService, part.windowId)));
}));
}
// Maximize/Restore on doubleclick (for macOS custom title)
if (isMacintosh && !hasNativeTitlebar(this.configurationService)) {
this._register(Event.runAndSubscribe(this.layoutService.onDidAddContainer, ({ container, disposables }) => {
const targetWindow = getWindow(container);
const targetWindowId = targetWindow.vscodeWindowId;
const titlePart = assertIsDefined(this.layoutService.getContainer(targetWindow, Parts.TITLEBAR_PART));
disposables.add(addDisposableListener(titlePart, EventType.DBLCLICK, e => {
EventHelper.stop(e);
this.nativeHostService.handleTitleDoubleClick({ targetWindowId });
}));
}, { container: this.layoutService.mainContainer, disposables: this._store }));
}
// Document edited: indicate for dirty working copies
this._register(this.workingCopyService.onDidChangeDirty(workingCopy => {
const gotDirty = workingCopy.isDirty();
if (gotDirty && !(workingCopy.capabilities & WorkingCopyCapabilities.Untitled) && this.filesConfigurationService.hasShortAutoSaveDelay(workingCopy.resource)) {
return; // do not indicate dirty of working copies that are auto saved after short delay
}
this.updateDocumentEdited(gotDirty ? true : undefined);
}));
this.updateDocumentEdited(undefined);
// Detect minimize / maximize
this._register(Event.any(
Event.map(Event.filter(this.nativeHostService.onDidMaximizeWindow, windowId => !!hasWindow(windowId)), windowId => ({ maximized: true, windowId })),
Event.map(Event.filter(this.nativeHostService.onDidUnmaximizeWindow, windowId => !!hasWindow(windowId)), windowId => ({ maximized: false, windowId }))
)(e => this.layoutService.updateWindowMaximizedState(getWindowById(e.windowId)!.window, e.maximized)));
this.layoutService.updateWindowMaximizedState(mainWindow, this.nativeEnvironmentService.window.maximized ?? false);
// Detect panel position to determine minimum width
this._register(this.layoutService.onDidChangePanelPosition(pos => this.onDidChangePanelPosition(positionFromString(pos))));
this.onDidChangePanelPosition(this.layoutService.getPanelPosition());
// Lifecycle
this._register(this.lifecycleService.onBeforeShutdown(e => this.onBeforeShutdown(e)));
this._register(this.lifecycleService.onBeforeShutdownError(e => this.onBeforeShutdownError(e)));
this._register(this.lifecycleService.onWillShutdown(e => this.onWillShutdown(e)));
}
//#region Window Lifecycle
private onBeforeShutdown({ veto, reason }: BeforeShutdownEvent): void {
if (reason === ShutdownReason.CLOSE) {
const confirmBeforeCloseSetting = this.configurationService.getValue<'always' | 'never' | 'keyboardOnly'>('window.confirmBeforeClose');
const confirmBeforeClose = confirmBeforeCloseSetting === 'always' || (confirmBeforeCloseSetting === 'keyboardOnly' && ModifierKeyEmitter.getInstance().isModifierPressed);
if (confirmBeforeClose) {
// When we need to confirm on close or quit, veto the shutdown
// with a long running promise to figure out whether shutdown
// can proceed or not.
return veto((async () => {
let actualReason: ShutdownReason = reason;
if (reason === ShutdownReason.CLOSE && !isMacintosh) {
const windowCount = await this.nativeHostService.getWindowCount();
if (windowCount === 1) {
actualReason = ShutdownReason.QUIT; // Windows/Linux: closing last window means to QUIT
}
}
let confirmed = true;
if (confirmBeforeClose) {
confirmed = await this.instantiationService.invokeFunction(accessor => NativeWindow.confirmOnShutdown(accessor, actualReason));
}
// Progress for long running shutdown
if (confirmed) {
this.progressOnBeforeShutdown(reason);
}
return !confirmed;
})(), 'veto.confirmBeforeClose');
}
}
// Progress for long running shutdown
this.progressOnBeforeShutdown(reason);
}
private progressOnBeforeShutdown(reason: ShutdownReason): void {
this.progressService.withProgress({
location: ProgressLocation.Window, // use window progress to not be too annoying about this operation
delay: 800, // delay so that it only appears when operation takes a long time
title: this.toShutdownLabel(reason, false),
}, () => {
return Event.toPromise(Event.any(
this.lifecycleService.onWillShutdown, // dismiss this dialog when we shutdown
this.lifecycleService.onShutdownVeto, // or when shutdown was vetoed
this.dialogService.onWillShowDialog // or when a dialog asks for input
));
});
}
private onBeforeShutdownError({ error, reason }: BeforeShutdownErrorEvent): void {
this.dialogService.error(this.toShutdownLabel(reason, true), localize('shutdownErrorDetail', "Error: {0}", toErrorMessage(error)));
}
private onWillShutdown({ reason, force, joiners }: WillShutdownEvent): void {
// Delay so that the dialog only appears after timeout
const shutdownDialogScheduler = new RunOnceScheduler(() => {
const pendingJoiners = joiners();
this.progressService.withProgress({
location: ProgressLocation.Dialog, // use a dialog to prevent the user from making any more interactions now
buttons: [this.toForceShutdownLabel(reason)], // allow to force shutdown anyway
cancellable: false, // do not allow to cancel
sticky: true, // do not allow to dismiss
title: this.toShutdownLabel(reason, false),
detail: pendingJoiners.length > 0 ? localize('willShutdownDetail', "The following operations are still running: \n{0}", pendingJoiners.map(joiner => `- ${joiner.label}`).join('\n')) : undefined
}, () => {
return Event.toPromise(this.lifecycleService.onDidShutdown); // dismiss this dialog when we actually shutdown
}, () => {
force();
});
}, 1200);
shutdownDialogScheduler.schedule();
// Dispose scheduler when we actually shutdown
Event.once(this.lifecycleService.onDidShutdown)(() => shutdownDialogScheduler.dispose());
}
private toShutdownLabel(reason: ShutdownReason, isError: boolean): string {
if (isError) {
switch (reason) {
case ShutdownReason.CLOSE:
return localize('shutdownErrorClose', "An unexpected error prevented the window to close");
case ShutdownReason.QUIT:
return localize('shutdownErrorQuit', "An unexpected error prevented the application to quit");
case ShutdownReason.RELOAD:
return localize('shutdownErrorReload', "An unexpected error prevented the window to reload");
case ShutdownReason.LOAD:
return localize('shutdownErrorLoad', "An unexpected error prevented to change the workspace");
}
}
switch (reason) {
case ShutdownReason.CLOSE:
return localize('shutdownTitleClose', "Closing the window is taking a bit longer...");
case ShutdownReason.QUIT:
return localize('shutdownTitleQuit', "Quitting the application is taking a bit longer...");
case ShutdownReason.RELOAD:
return localize('shutdownTitleReload', "Reloading the window is taking a bit longer...");
case ShutdownReason.LOAD:
return localize('shutdownTitleLoad', "Changing the workspace is taking a bit longer...");
}
}
private toForceShutdownLabel(reason: ShutdownReason): string {
switch (reason) {
case ShutdownReason.CLOSE:
return localize('shutdownForceClose', "Close Anyway");
case ShutdownReason.QUIT:
return localize('shutdownForceQuit', "Quit Anyway");
case ShutdownReason.RELOAD:
return localize('shutdownForceReload', "Reload Anyway");
case ShutdownReason.LOAD:
return localize('shutdownForceLoad', "Change Anyway");
}
}
//#endregion
private updateDocumentEdited(documentEdited: true | undefined): void {
let setDocumentEdited: boolean;
if (typeof documentEdited === 'boolean') {
setDocumentEdited = documentEdited;
} else {
setDocumentEdited = this.workingCopyService.hasDirty;
}
if ((!this.isDocumentedEdited && setDocumentEdited) || (this.isDocumentedEdited && !setDocumentEdited)) {
this.isDocumentedEdited = setDocumentEdited;
this.nativeHostService.setDocumentEdited(setDocumentEdited);
}
}
private getWindowMinimumWidth(panelPosition: Position = this.layoutService.getPanelPosition()): number {
// if panel is on the side, then return the larger minwidth
const panelOnSide = panelPosition === Position.LEFT || panelPosition === Position.RIGHT;
if (panelOnSide) {
return WindowMinimumSize.WIDTH_WITH_VERTICAL_PANEL;
}
return WindowMinimumSize.WIDTH;
}
private onDidChangePanelPosition(pos: Position): void {
const minWidth = this.getWindowMinimumWidth(pos);
this.nativeHostService.setMinimumSize(minWidth, undefined);
}
private maybeCloseWindow(): void {
const closeWhenEmpty = this.configurationService.getValue('window.closeWhenEmpty') || this.nativeEnvironmentService.args.wait;
if (!closeWhenEmpty) {
return; // return early if configured to not close when empty
}
// Close empty editor groups based on setting and environment
for (const editorPart of this.editorGroupService.parts) {
if (editorPart.groups.some(group => !group.isEmpty)) {
continue; // not empty
}
if (editorPart === this.editorGroupService.mainPart && (
this.contextService.getWorkbenchState() !== WorkbenchState.EMPTY || // only for empty windows
this.environmentService.isExtensionDevelopment || // not when developing an extension
this.editorService.visibleEditors.length > 0 // not when there are still editors open in other windows
)) {
continue;
}
if (editorPart === this.editorGroupService.mainPart) {
this.nativeHostService.closeWindow();
} else {
editorPart.removeGroup(editorPart.activeGroup);
}
}
}
private provideCustomTitleContextMenu(filePath: string | undefined): void {
// Clear old menu
this.customTitleContextMenuDisposable.clear();
// Provide new menu if a file is opened and we are on a custom title
if (!filePath || !hasNativeTitlebar(this.configurationService)) {
return;
}
// Split up filepath into segments
const segments = filePath.split(posix.sep);
for (let i = segments.length; i > 0; i--) {
const isFile = (i === segments.length);
let pathOffset = i;
if (!isFile) {
pathOffset++; // for segments which are not the file name we want to open the folder
}
const path = URI.file(segments.slice(0, pathOffset).join(posix.sep));
let label: string;
if (!isFile) {
label = this.labelService.getUriBasenameLabel(dirname(path));
} else {
label = this.labelService.getUriBasenameLabel(path);
}
const commandId = `workbench.action.revealPathInFinder${i}`;
this.customTitleContextMenuDisposable.add(CommandsRegistry.registerCommand(commandId, () => this.nativeHostService.showItemInFolder(path.fsPath)));
this.customTitleContextMenuDisposable.add(MenuRegistry.appendMenuItem(MenuId.TitleBarTitleContext, { command: { id: commandId, title: label || posix.sep }, order: -i, group: '1_file' }));
}
}
protected create(): void {
// Handle open calls
this.setupOpenHandlers();
// Notify some services about lifecycle phases
this.lifecycleService.when(LifecyclePhase.Ready).then(() => this.nativeHostService.notifyReady());
this.lifecycleService.when(LifecyclePhase.Restored).then(() => {
this.sharedProcessService.notifyRestored();
this.utilityProcessWorkerWorkbenchService.notifyRestored();
});
// Check for situations that are worth warning the user about
this.handleWarnings();
// Touchbar menu (if enabled)
this.updateTouchbarMenu();
// Zoom status
for (const { window, disposables } of getWindows()) {
this.createWindowZoomStatusEntry(this.instantiationService, window.vscodeWindowId, disposables);
}
// Smoke Test Driver
if (this.environmentService.enableSmokeTestDriver) {
this.setupDriver();
}
}
private async handleWarnings(): Promise<void> {
// Check for cyclic dependencies
if (typeof require.hasDependencyCycle === 'function' && require.hasDependencyCycle()) {
if (isCI) {
this.logService.error('Error: There is a dependency cycle in the AMD modules that needs to be resolved!');
this.nativeHostService.exit(37); // running on a build machine, just exit without showing a dialog
} else {
this.dialogService.error(localize('loaderCycle', "There is a dependency cycle in the AMD modules that needs to be resolved!"));
this.nativeHostService.openDevTools();
}
}
// After restored phase is fine for the following ones
await this.lifecycleService.when(LifecyclePhase.Restored);
// Integrity / Root warning
(async () => {
const isAdmin = await this.nativeHostService.isAdmin();
const { isPure } = await this.integrityService.isPure();
// Update to title
this.titleService.updateProperties({ isPure, isAdmin });
// Show warning message (unix only)
if (isAdmin && !isWindows) {
this.notificationService.warn(localize('runningAsRoot', "It is not recommended to run {0} as root user.", this.productService.nameShort));
}
})();
// Installation Dir Warning
if (this.environmentService.isBuilt) {
let installLocationUri: URI;
if (isMacintosh) {
// appRoot = /Applications/Visual Studio Code - Insiders.app/Contents/Resources/app
installLocationUri = dirname(dirname(dirname(URI.file(this.nativeEnvironmentService.appRoot))));
} else {
// appRoot = C:\Users\<name>\AppData\Local\Programs\Microsoft VS Code Insiders\resources\app
// appRoot = /usr/share/code-insiders/resources/app
installLocationUri = dirname(dirname(URI.file(this.nativeEnvironmentService.appRoot)));
}
for (const folder of this.contextService.getWorkspace().folders) {
if (this.uriIdentityService.extUri.isEqualOrParent(folder.uri, installLocationUri)) {
this.bannerService.show({
id: 'appRootWarning.banner',
message: localize('appRootWarning.banner', "Files you store within the installation folder ('{0}') may be OVERWRITTEN or DELETED IRREVERSIBLY without warning at update time.", this.labelService.getUriLabel(installLocationUri)),
icon: Codicon.warning
});
break;
}
}
}
// macOS 10.13 and 10.14 warning
if (isMacintosh) {
const majorVersion = this.nativeEnvironmentService.os.release.split('.')[0];
const eolReleases = new Map<string, string>([
['17', 'macOS High Sierra'],
['18', 'macOS Mojave'],
]);
if (eolReleases.has(majorVersion)) {
const message = localize('macoseolmessage', "{0} on {1} will soon stop receiving updates. Consider upgrading your macOS version.", this.productService.nameLong, eolReleases.get(majorVersion));
this.notificationService.prompt(
Severity.Warning,
message,
[{
label: localize('learnMore', "Learn More"),
run: () => this.openerService.open(URI.parse('https://aka.ms/vscode-faq-old-macOS'))
}],
{
neverShowAgain: { id: 'macoseol', isSecondary: true, scope: NeverShowAgainScope.APPLICATION },
priority: NotificationPriority.URGENT,
sticky: true
}
);
}
}
// Slow shell environment progress indicator
const shellEnv = process.shellEnv();
this.progressService.withProgress({
title: localize('resolveShellEnvironment', "Resolving shell environment..."),
location: ProgressLocation.Window,
delay: 1600,
buttons: [localize('learnMore', "Learn More")]
}, () => shellEnv, () => this.openerService.open('https://go.microsoft.com/fwlink/?linkid=2149667'));
}
private setupDriver(): void {
const that = this;
let pendingQuit = false;
registerWindowDriver(this.instantiationService, {
async exitApplication(): Promise<void> {
if (pendingQuit) {
that.logService.info('[driver] not handling exitApplication() due to pending quit() call');
return;
}
that.logService.info('[driver] handling exitApplication()');
pendingQuit = true;
return that.nativeHostService.quit();
}
});
}
private async openTunnel(address: string, port: number): Promise<RemoteTunnel | string | undefined> {
const remoteAuthority = this.environmentService.remoteAuthority;
const addressProvider: IAddressProvider | undefined = remoteAuthority ? {
getAddress: async (): Promise<IAddress> => {
return (await this.remoteAuthorityResolverService.resolveAuthority(remoteAuthority)).authority;
}
} : undefined;
const tunnel = await this.tunnelService.getExistingTunnel(address, port);
if (!tunnel || (typeof tunnel === 'string')) {
return this.tunnelService.openTunnel(addressProvider, address, port);
}
return tunnel;
}
async resolveExternalUri(uri: URI, options?: OpenOptions): Promise<IResolvedExternalUri | undefined> {
let queryTunnel: RemoteTunnel | string | undefined;
if (options?.allowTunneling) {
const portMappingRequest = extractLocalHostUriMetaDataForPortMapping(uri);
const queryPortMapping = extractQueryLocalHostUriMetaDataForPortMapping(uri);
if (queryPortMapping) {
queryTunnel = await this.openTunnel(queryPortMapping.address, queryPortMapping.port);
if (queryTunnel && (typeof queryTunnel !== 'string')) {
// If the tunnel was mapped to a different port, dispose it, because some services
// validate the port number in the query string.
if (queryTunnel.tunnelRemotePort !== queryPortMapping.port) {
queryTunnel.dispose();
queryTunnel = undefined;
} else {
if (!portMappingRequest) {
const tunnel = queryTunnel;
return {
resolved: uri,
dispose: () => tunnel.dispose()
};
}
}
}
}
if (portMappingRequest) {
const tunnel = await this.openTunnel(portMappingRequest.address, portMappingRequest.port);
if (tunnel && (typeof tunnel !== 'string')) {
const addressAsUri = URI.parse(tunnel.localAddress);
const resolved = addressAsUri.scheme.startsWith(uri.scheme) ? addressAsUri : uri.with({ authority: tunnel.localAddress });
return {
resolved,
dispose() {
tunnel.dispose();
if (queryTunnel && (typeof queryTunnel !== 'string')) {
queryTunnel.dispose();
}
}
};
}
}
}
if (!options?.openExternal) {
const canHandleResource = await this.fileService.canHandleResource(uri);
if (canHandleResource) {
return {
resolved: URI.from({
scheme: this.productService.urlProtocol,
path: 'workspace',
query: uri.toString()
}),
dispose() { }
};
}
}
return undefined;
}
private setupOpenHandlers(): void {
// Handle external open() calls
this.openerService.setDefaultExternalOpener({
openExternal: async (href: string) => {
const success = await this.nativeHostService.openExternal(href);
if (!success) {
const fileCandidate = URI.parse(href);
if (fileCandidate.scheme === Schemas.file) {
// if opening failed, and this is a file, we can still try to reveal it
await this.nativeHostService.showItemInFolder(fileCandidate.fsPath);
}
}
return true;
}
});
// Register external URI resolver
this.openerService.registerExternalUriResolver({
resolveExternalUri: async (uri: URI, options?: OpenOptions) => {
return this.resolveExternalUri(uri, options);
}
});
}
//#region Touchbar
private touchBarMenu: IMenu | undefined;
private readonly touchBarDisposables = this._register(new DisposableStore());
private lastInstalledTouchedBar: ICommandAction[][] | undefined;
private updateTouchbarMenu(): void {
if (!isMacintosh) {
return; // macOS only
}
// Dispose old
this.touchBarDisposables.clear();
this.touchBarMenu = undefined;
// Create new (delayed)
const scheduler: RunOnceScheduler = this.touchBarDisposables.add(new RunOnceScheduler(() => this.doUpdateTouchbarMenu(scheduler), 300));
scheduler.schedule();
}
private doUpdateTouchbarMenu(scheduler: RunOnceScheduler): void {
if (!this.touchBarMenu) {
const scopedContextKeyService = this.editorService.activeEditorPane?.scopedContextKeyService || this.editorGroupService.activeGroup.scopedContextKeyService;
this.touchBarMenu = this.menuService.createMenu(MenuId.TouchBarContext, scopedContextKeyService);
this.touchBarDisposables.add(this.touchBarMenu);
this.touchBarDisposables.add(this.touchBarMenu.onDidChange(() => scheduler.schedule()));
}
const actions: Array<MenuItemAction | Separator> = [];
const disabled = this.configurationService.getValue('keyboard.touchbar.enabled') === false;
const touchbarIgnored = this.configurationService.getValue('keyboard.touchbar.ignored');
const ignoredItems = Array.isArray(touchbarIgnored) ? touchbarIgnored : [];
// Fill actions into groups respecting order
createAndFillInActionBarActions(this.touchBarMenu, undefined, actions);
// Convert into command action multi array
const items: ICommandAction[][] = [];
let group: ICommandAction[] = [];
if (!disabled) {
for (const action of actions) {
// Command
if (action instanceof MenuItemAction) {
if (ignoredItems.indexOf(action.item.id) >= 0) {
continue; // ignored
}
group.push(action.item);
}
// Separator
else if (action instanceof Separator) {
if (group.length) {
items.push(group);
}
group = [];
}
}
if (group.length) {
items.push(group);
}
}
// Only update if the actions have changed
if (!equals(this.lastInstalledTouchedBar, items)) {
this.lastInstalledTouchedBar = items;
this.nativeHostService.updateTouchBar(items);
}
}
//#endregion
private onAddFoldersRequest(request: IAddFoldersRequest): void {
// Buffer all pending requests
this.pendingFoldersToAdd.push(...request.foldersToAdd.map(folder => URI.revive(folder)));
// Delay the adding of folders a bit to buffer in case more requests are coming
if (!this.addFoldersScheduler.isScheduled()) {
this.addFoldersScheduler.schedule();
}
}
private doAddFolders(): void {
const foldersToAdd: IWorkspaceFolderCreationData[] = [];
for (const folder of this.pendingFoldersToAdd) {
foldersToAdd.push(({ uri: folder }));
}
this.pendingFoldersToAdd = [];
this.workspaceEditingService.addFolders(foldersToAdd);
}
private async onOpenFiles(request: INativeOpenFileRequest): Promise<void> {
const diffMode = !!(request.filesToDiff && (request.filesToDiff.length === 2));
const mergeMode = !!(request.filesToMerge && (request.filesToMerge.length === 4));