mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-13 19:48:37 -05:00
* Merge from vscode 37cb23d3dd4f9433d56d4ba5ea3203580719a0bd * fix issues with merges * bump node version in azpipe * replace license headers * remove duplicate launch task * fix build errors * fix build errors * fix tslint issues * working through package and linux build issues * more work * wip * fix packaged builds * working through linux build errors * wip * wip * wip * fix mac and linux file limits * iterate linux pipeline * disable editor typing * revert series to parallel * remove optimize vscode from linux * fix linting issues * revert testing change * add work round for new node * readd packaging for extensions * fix issue with angular not resolving decorator dependencies
1014 lines
38 KiB
TypeScript
1014 lines
38 KiB
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
import * as nls from 'vs/nls';
|
|
import { URI } from 'vs/base/common/uri';
|
|
import * as errors from 'vs/base/common/errors';
|
|
import * as objects from 'vs/base/common/objects';
|
|
import { Event, Emitter } from 'vs/base/common/event';
|
|
import * as platform from 'vs/base/common/platform';
|
|
import { IWindowsService, IWindowService } from 'vs/platform/windows/common/windows';
|
|
import { IBackupFileService } from 'vs/workbench/services/backup/common/backup';
|
|
import { IResult, ITextFileOperationResult, ITextFileService, IRawTextContent, IAutoSaveConfiguration, AutoSaveMode, SaveReason, ITextFileEditorModelManager, ITextFileEditorModel, ModelState, ISaveOptions, AutoSaveContext, IWillMoveEvent } from 'vs/workbench/services/textfile/common/textfiles';
|
|
import { ConfirmResult, IRevertOptions } from 'vs/workbench/common/editor';
|
|
import { ILifecycleService, ShutdownReason, LifecyclePhase } from 'vs/platform/lifecycle/common/lifecycle';
|
|
import { IWorkspaceContextService, WorkbenchState } from 'vs/platform/workspace/common/workspace';
|
|
import { IFileService, IResolveContentOptions, IFilesConfiguration, FileOperationError, FileOperationResult, AutoSaveConfiguration, HotExitConfiguration } from 'vs/platform/files/common/files';
|
|
import { IConfigurationService } from 'vs/platform/configuration/common/configuration';
|
|
import { Disposable } from 'vs/base/common/lifecycle';
|
|
import { IEnvironmentService } from 'vs/platform/environment/common/environment';
|
|
import { IUntitledEditorService } from 'vs/workbench/services/untitled/common/untitledEditorService';
|
|
import { UntitledEditorModel } from 'vs/workbench/common/editor/untitledEditorModel';
|
|
import { TextFileEditorModelManager } from 'vs/workbench/services/textfile/common/textFileEditorModelManager';
|
|
import { IInstantiationService } from 'vs/platform/instantiation/common/instantiation';
|
|
import { ResourceMap } from 'vs/base/common/map';
|
|
import { Schemas } from 'vs/base/common/network';
|
|
import { IHistoryService } from 'vs/workbench/services/history/common/history';
|
|
import { IContextKey, IContextKeyService } from 'vs/platform/contextkey/common/contextkey';
|
|
import { createTextBufferFactoryFromSnapshot, createTextBufferFactoryFromStream } from 'vs/editor/common/model/textModel';
|
|
import { IModelService } from 'vs/editor/common/services/modelService';
|
|
import { INotificationService, Severity } from 'vs/platform/notification/common/notification';
|
|
import { isEqualOrParent, isEqual, joinPath, dirname, extname, basename } from 'vs/base/common/resources';
|
|
import { REMOTE_HOST_SCHEME } from 'vs/platform/remote/common/remoteHosts';
|
|
import { getConfirmMessage, IDialogService, IFileDialogService, ISaveDialogOptions, IConfirmation } from 'vs/platform/dialogs/common/dialogs';
|
|
import { IModeService } from 'vs/editor/common/services/modeService';
|
|
import { IEditorService } from 'vs/workbench/services/editor/common/editorService';
|
|
import { coalesce } from 'vs/base/common/arrays';
|
|
import { trim } from 'vs/base/common/strings';
|
|
import { registerSingleton } from 'vs/platform/instantiation/common/extensions';
|
|
|
|
export interface IBackupResult {
|
|
didBackup: boolean;
|
|
}
|
|
|
|
/**
|
|
* The workbench file service implementation implements the raw file service spec and adds additional methods on top.
|
|
*
|
|
* It also adds diagnostics and logging around file system operations.
|
|
*/
|
|
export class TextFileService extends Disposable implements ITextFileService {
|
|
|
|
_serviceBrand: any;
|
|
|
|
private readonly _onAutoSaveConfigurationChange: Emitter<IAutoSaveConfiguration> = this._register(new Emitter<IAutoSaveConfiguration>());
|
|
get onAutoSaveConfigurationChange(): Event<IAutoSaveConfiguration> { return this._onAutoSaveConfigurationChange.event; }
|
|
|
|
private readonly _onFilesAssociationChange: Emitter<void> = this._register(new Emitter<void>());
|
|
get onFilesAssociationChange(): Event<void> { return this._onFilesAssociationChange.event; }
|
|
|
|
private readonly _onWillMove = this._register(new Emitter<IWillMoveEvent>());
|
|
get onWillMove(): Event<IWillMoveEvent> { return this._onWillMove.event; }
|
|
|
|
private _models: TextFileEditorModelManager;
|
|
private currentFilesAssociationConfig: { [key: string]: string; };
|
|
private configuredAutoSaveDelay?: number;
|
|
private configuredAutoSaveOnFocusChange: boolean;
|
|
private configuredAutoSaveOnWindowChange: boolean;
|
|
private configuredHotExit: string;
|
|
private autoSaveContext: IContextKey<string>;
|
|
|
|
constructor(
|
|
@IWorkspaceContextService private readonly contextService: IWorkspaceContextService,
|
|
@IFileService protected readonly fileService: IFileService,
|
|
@IUntitledEditorService private readonly untitledEditorService: IUntitledEditorService,
|
|
@ILifecycleService private readonly lifecycleService: ILifecycleService,
|
|
@IInstantiationService instantiationService: IInstantiationService,
|
|
@IConfigurationService private readonly configurationService: IConfigurationService,
|
|
@IModeService private readonly modeService: IModeService,
|
|
@IModelService private readonly modelService: IModelService,
|
|
@IWindowService private readonly windowService: IWindowService,
|
|
@IEnvironmentService private readonly environmentService: IEnvironmentService,
|
|
@INotificationService private readonly notificationService: INotificationService,
|
|
@IBackupFileService private readonly backupFileService: IBackupFileService,
|
|
@IWindowsService private readonly windowsService: IWindowsService,
|
|
@IHistoryService private readonly historyService: IHistoryService,
|
|
@IContextKeyService contextKeyService: IContextKeyService,
|
|
@IDialogService private readonly dialogService: IDialogService,
|
|
@IFileDialogService private readonly fileDialogService: IFileDialogService,
|
|
@IEditorService private readonly editorService: IEditorService
|
|
) {
|
|
super();
|
|
|
|
this._models = instantiationService.createInstance(TextFileEditorModelManager);
|
|
this.autoSaveContext = AutoSaveContext.bindTo(contextKeyService);
|
|
|
|
const configuration = configurationService.getValue<IFilesConfiguration>();
|
|
this.currentFilesAssociationConfig = configuration && configuration.files && configuration.files.associations;
|
|
|
|
this.onFilesConfigurationChange(configuration);
|
|
|
|
this.registerListeners();
|
|
}
|
|
|
|
get models(): ITextFileEditorModelManager {
|
|
return this._models;
|
|
}
|
|
|
|
resolveTextContent(resource: URI, options?: IResolveContentOptions): Promise<IRawTextContent> {
|
|
return this.fileService.resolveStreamContent(resource, options).then(streamContent => {
|
|
return createTextBufferFactoryFromStream(streamContent.value).then(res => {
|
|
const r: IRawTextContent = {
|
|
resource: streamContent.resource,
|
|
name: streamContent.name,
|
|
mtime: streamContent.mtime,
|
|
etag: streamContent.etag,
|
|
encoding: streamContent.encoding,
|
|
isReadonly: streamContent.isReadonly,
|
|
value: res
|
|
};
|
|
return r;
|
|
});
|
|
});
|
|
}
|
|
|
|
promptForPath(resource: URI, defaultUri: URI): Promise<URI | undefined> {
|
|
|
|
// Help user to find a name for the file by opening it first
|
|
return this.editorService.openEditor({ resource, options: { revealIfOpened: true, preserveFocus: true, } }).then(() => {
|
|
return this.fileDialogService.showSaveDialog(this.getSaveDialogOptions(defaultUri));
|
|
});
|
|
}
|
|
|
|
private getSaveDialogOptions(defaultUri: URI): ISaveDialogOptions {
|
|
const options: ISaveDialogOptions = {
|
|
defaultUri,
|
|
title: nls.localize('saveAsTitle', "Save As")
|
|
};
|
|
|
|
// Filters are only enabled on Windows where they work properly
|
|
if (!platform.isWindows) {
|
|
return options;
|
|
}
|
|
|
|
interface IFilter { name: string; extensions: string[]; }
|
|
|
|
// Build the file filter by using our known languages
|
|
const ext: string | undefined = defaultUri ? extname(defaultUri) : undefined;
|
|
let matchingFilter: IFilter | undefined;
|
|
const filters: IFilter[] = coalesce(this.modeService.getRegisteredLanguageNames().map(languageName => {
|
|
const extensions = this.modeService.getExtensions(languageName);
|
|
if (!extensions || !extensions.length) {
|
|
return null;
|
|
}
|
|
|
|
const filter: IFilter = { name: languageName, extensions: extensions.slice(0, 10).map(e => trim(e, '.')) };
|
|
|
|
if (ext && extensions.indexOf(ext) >= 0) {
|
|
matchingFilter = filter;
|
|
|
|
return null; // matching filter will be added last to the top
|
|
}
|
|
|
|
return filter;
|
|
}));
|
|
|
|
// Filters are a bit weird on Windows, based on having a match or not:
|
|
// Match: we put the matching filter first so that it shows up selected and the all files last
|
|
// No match: we put the all files filter first
|
|
const allFilesFilter = { name: nls.localize('allFiles', "All Files"), extensions: ['*'] };
|
|
if (matchingFilter) {
|
|
filters.unshift(matchingFilter);
|
|
filters.unshift(allFilesFilter);
|
|
} else {
|
|
filters.unshift(allFilesFilter);
|
|
}
|
|
|
|
// Allow to save file without extension
|
|
filters.push({ name: nls.localize('noExt', "No Extension"), extensions: [''] });
|
|
|
|
options.filters = filters;
|
|
|
|
return options;
|
|
}
|
|
|
|
confirmSave(resources?: URI[]): Promise<ConfirmResult> {
|
|
if (this.environmentService.isExtensionDevelopment) {
|
|
return Promise.resolve(ConfirmResult.DONT_SAVE); // no veto when we are in extension dev mode because we cannot assum we run interactive (e.g. tests)
|
|
}
|
|
|
|
const resourcesToConfirm = this.getDirty(resources);
|
|
if (resourcesToConfirm.length === 0) {
|
|
return Promise.resolve(ConfirmResult.DONT_SAVE);
|
|
}
|
|
|
|
const message = resourcesToConfirm.length === 1 ? nls.localize('saveChangesMessage', "Do you want to save the changes you made to {0}?", basename(resourcesToConfirm[0]))
|
|
: getConfirmMessage(nls.localize('saveChangesMessages', "Do you want to save the changes to the following {0} files?", resourcesToConfirm.length), resourcesToConfirm);
|
|
|
|
const buttons: string[] = [
|
|
resourcesToConfirm.length > 1 ? nls.localize({ key: 'saveAll', comment: ['&& denotes a mnemonic'] }, "&&Save All") : nls.localize({ key: 'save', comment: ['&& denotes a mnemonic'] }, "&&Save"),
|
|
nls.localize({ key: 'dontSave', comment: ['&& denotes a mnemonic'] }, "Do&&n't Save"),
|
|
nls.localize('cancel', "Cancel")
|
|
];
|
|
|
|
return this.dialogService.show(Severity.Warning, message, buttons, {
|
|
cancelId: 2,
|
|
detail: nls.localize('saveChangesDetail', "Your changes will be lost if you don't save them.")
|
|
}).then(index => {
|
|
switch (index) {
|
|
case 0: return ConfirmResult.SAVE;
|
|
case 1: return ConfirmResult.DONT_SAVE;
|
|
default: return ConfirmResult.CANCEL;
|
|
}
|
|
});
|
|
}
|
|
|
|
confirmOverwrite(resource: URI): Promise<boolean> {
|
|
const confirm: IConfirmation = {
|
|
message: nls.localize('confirmOverwrite', "'{0}' already exists. Do you want to replace it?", basename(resource)),
|
|
detail: nls.localize('irreversible', "A file or folder with the same name already exists in the folder {0}. Replacing it will overwrite its current contents.", basename(dirname(resource))),
|
|
primaryButton: nls.localize({ key: 'replaceButtonLabel', comment: ['&& denotes a mnemonic'] }, "&&Replace"),
|
|
type: 'warning'
|
|
};
|
|
|
|
return this.dialogService.confirm(confirm).then(result => result.confirmed);
|
|
}
|
|
|
|
private registerListeners(): void {
|
|
|
|
// Lifecycle
|
|
this.lifecycleService.onBeforeShutdown(event => event.veto(this.beforeShutdown(event.reason)));
|
|
this.lifecycleService.onShutdown(this.dispose, this);
|
|
|
|
// Files configuration changes
|
|
this._register(this.configurationService.onDidChangeConfiguration(e => {
|
|
if (e.affectsConfiguration('files')) {
|
|
this.onFilesConfigurationChange(this.configurationService.getValue<IFilesConfiguration>());
|
|
}
|
|
}));
|
|
}
|
|
|
|
private beforeShutdown(reason: ShutdownReason): boolean | Promise<boolean> {
|
|
|
|
// Dirty files need treatment on shutdown
|
|
const dirty = this.getDirty();
|
|
if (dirty.length) {
|
|
|
|
// If auto save is enabled, save all files and then check again for dirty files
|
|
// We DO NOT run any save participant if we are in the shutdown phase for performance reasons
|
|
if (this.getAutoSaveMode() !== AutoSaveMode.OFF) {
|
|
return this.saveAll(false /* files only */, { skipSaveParticipants: true }).then(() => {
|
|
|
|
// If we still have dirty files, we either have untitled ones or files that cannot be saved
|
|
const remainingDirty = this.getDirty();
|
|
if (remainingDirty.length) {
|
|
return this.handleDirtyBeforeShutdown(remainingDirty, reason);
|
|
}
|
|
|
|
return false;
|
|
});
|
|
}
|
|
|
|
// Auto save is not enabled
|
|
return this.handleDirtyBeforeShutdown(dirty, reason);
|
|
}
|
|
|
|
// No dirty files: no veto
|
|
return this.noVeto({ cleanUpBackups: true });
|
|
}
|
|
|
|
private handleDirtyBeforeShutdown(dirty: URI[], reason: ShutdownReason): boolean | Promise<boolean> {
|
|
|
|
// If hot exit is enabled, backup dirty files and allow to exit without confirmation
|
|
if (this.isHotExitEnabled) {
|
|
return this.backupBeforeShutdown(dirty, this.models, reason).then(result => {
|
|
if (result.didBackup) {
|
|
return this.noVeto({ cleanUpBackups: false }); // no veto and no backup cleanup (since backup was successful)
|
|
}
|
|
|
|
// since a backup did not happen, we have to confirm for the dirty files now
|
|
return this.confirmBeforeShutdown();
|
|
}, errors => {
|
|
const firstError = errors[0];
|
|
this.notificationService.error(nls.localize('files.backup.failSave', "Files that are dirty could not be written to the backup location (Error: {0}). Try saving your files first and then exit.", firstError.message));
|
|
|
|
return true; // veto, the backups failed
|
|
});
|
|
}
|
|
|
|
// Otherwise just confirm from the user what to do with the dirty files
|
|
return this.confirmBeforeShutdown();
|
|
}
|
|
|
|
private backupBeforeShutdown(dirtyToBackup: URI[], textFileEditorModelManager: ITextFileEditorModelManager, reason: ShutdownReason): Promise<IBackupResult> {
|
|
return this.windowsService.getWindowCount().then(windowCount => {
|
|
|
|
// When quit is requested skip the confirm callback and attempt to backup all workspaces.
|
|
// When quit is not requested the confirm callback should be shown when the window being
|
|
// closed is the only VS Code window open, except for on Mac where hot exit is only
|
|
// ever activated when quit is requested.
|
|
|
|
let doBackup: boolean | undefined;
|
|
switch (reason) {
|
|
case ShutdownReason.CLOSE:
|
|
if (this.contextService.getWorkbenchState() !== WorkbenchState.EMPTY && this.configuredHotExit === HotExitConfiguration.ON_EXIT_AND_WINDOW_CLOSE) {
|
|
doBackup = true; // backup if a folder is open and onExitAndWindowClose is configured
|
|
} else if (windowCount > 1 || platform.isMacintosh) {
|
|
doBackup = false; // do not backup if a window is closed that does not cause quitting of the application
|
|
} else {
|
|
doBackup = true; // backup if last window is closed on win/linux where the application quits right after
|
|
}
|
|
break;
|
|
|
|
case ShutdownReason.QUIT:
|
|
doBackup = true; // backup because next start we restore all backups
|
|
break;
|
|
|
|
case ShutdownReason.RELOAD:
|
|
doBackup = true; // backup because after window reload, backups restore
|
|
break;
|
|
|
|
case ShutdownReason.LOAD:
|
|
if (this.contextService.getWorkbenchState() !== WorkbenchState.EMPTY && this.configuredHotExit === HotExitConfiguration.ON_EXIT_AND_WINDOW_CLOSE) {
|
|
doBackup = true; // backup if a folder is open and onExitAndWindowClose is configured
|
|
} else {
|
|
doBackup = false; // do not backup because we are switching contexts
|
|
}
|
|
break;
|
|
}
|
|
|
|
if (!doBackup) {
|
|
return { didBackup: false };
|
|
}
|
|
|
|
// Backup
|
|
return this.backupAll(dirtyToBackup, textFileEditorModelManager).then(() => { return { didBackup: true }; });
|
|
});
|
|
}
|
|
|
|
private backupAll(dirtyToBackup: URI[], textFileEditorModelManager: ITextFileEditorModelManager): Promise<void> {
|
|
|
|
// split up between files and untitled
|
|
const filesToBackup: ITextFileEditorModel[] = [];
|
|
const untitledToBackup: URI[] = [];
|
|
dirtyToBackup.forEach(s => {
|
|
if (this.fileService.canHandleResource(s)) {
|
|
const model = textFileEditorModelManager.get(s);
|
|
if (model) {
|
|
filesToBackup.push(model);
|
|
}
|
|
} else if (s.scheme === Schemas.untitled) {
|
|
untitledToBackup.push(s);
|
|
}
|
|
});
|
|
|
|
return this.doBackupAll(filesToBackup, untitledToBackup);
|
|
}
|
|
|
|
private doBackupAll(dirtyFileModels: ITextFileEditorModel[], untitledResources: URI[]): Promise<void> {
|
|
const promises = dirtyFileModels.map(model => {
|
|
const snapshot = model.createSnapshot();
|
|
if (snapshot) {
|
|
return this.backupFileService.backupResource(model.getResource(), snapshot, model.getVersionId());
|
|
}
|
|
return Promise.resolve();
|
|
});
|
|
|
|
// Handle file resources first
|
|
return Promise.all(promises).then(results => {
|
|
|
|
// Handle untitled resources
|
|
const untitledModelPromises = untitledResources
|
|
.filter(untitled => this.untitledEditorService.exists(untitled))
|
|
.map(untitled => this.untitledEditorService.loadOrCreate({ resource: untitled }));
|
|
|
|
return Promise.all(untitledModelPromises).then(untitledModels => {
|
|
const untitledBackupPromises = untitledModels.map(model => {
|
|
const snapshot = model.createSnapshot();
|
|
if (snapshot) {
|
|
return this.backupFileService.backupResource(model.getResource(), snapshot, model.getVersionId());
|
|
}
|
|
return Promise.resolve();
|
|
});
|
|
|
|
return Promise.all(untitledBackupPromises).then(() => undefined);
|
|
});
|
|
});
|
|
}
|
|
|
|
private confirmBeforeShutdown(): boolean | Promise<boolean> {
|
|
return this.confirmSave().then(confirm => {
|
|
|
|
// Save
|
|
if (confirm === ConfirmResult.SAVE) {
|
|
return this.saveAll(true /* includeUntitled */, { skipSaveParticipants: true }).then(result => {
|
|
if (result.results.some(r => !r.success)) {
|
|
return true; // veto if some saves failed
|
|
}
|
|
|
|
return this.noVeto({ cleanUpBackups: true });
|
|
});
|
|
}
|
|
|
|
// Don't Save
|
|
else if (confirm === ConfirmResult.DONT_SAVE) {
|
|
|
|
// Make sure to revert untitled so that they do not restore
|
|
// see https://github.com/Microsoft/vscode/issues/29572
|
|
this.untitledEditorService.revertAll();
|
|
|
|
return this.noVeto({ cleanUpBackups: true });
|
|
}
|
|
|
|
// Cancel
|
|
else if (confirm === ConfirmResult.CANCEL) {
|
|
return true; // veto
|
|
}
|
|
|
|
return false;
|
|
});
|
|
}
|
|
|
|
private noVeto(options: { cleanUpBackups: boolean }): boolean | Promise<boolean> {
|
|
if (!options.cleanUpBackups) {
|
|
return false;
|
|
}
|
|
|
|
if (this.lifecycleService.phase < LifecyclePhase.Restored) {
|
|
return false; // if editors have not restored, we are not up to speed with backups and thus should not clean them
|
|
}
|
|
|
|
return this.cleanupBackupsBeforeShutdown().then(() => false, () => false);
|
|
}
|
|
|
|
protected cleanupBackupsBeforeShutdown(): Promise<void> {
|
|
if (this.environmentService.isExtensionDevelopment) {
|
|
return Promise.resolve(undefined);
|
|
}
|
|
|
|
return this.backupFileService.discardAllWorkspaceBackups();
|
|
}
|
|
|
|
protected onFilesConfigurationChange(configuration: IFilesConfiguration): void {
|
|
const wasAutoSaveEnabled = (this.getAutoSaveMode() !== AutoSaveMode.OFF);
|
|
|
|
const autoSaveMode = (configuration && configuration.files && configuration.files.autoSave) || AutoSaveConfiguration.OFF;
|
|
this.autoSaveContext.set(autoSaveMode);
|
|
switch (autoSaveMode) {
|
|
case AutoSaveConfiguration.AFTER_DELAY:
|
|
this.configuredAutoSaveDelay = configuration && configuration.files && configuration.files.autoSaveDelay;
|
|
this.configuredAutoSaveOnFocusChange = false;
|
|
this.configuredAutoSaveOnWindowChange = false;
|
|
break;
|
|
|
|
case AutoSaveConfiguration.ON_FOCUS_CHANGE:
|
|
this.configuredAutoSaveDelay = undefined;
|
|
this.configuredAutoSaveOnFocusChange = true;
|
|
this.configuredAutoSaveOnWindowChange = false;
|
|
break;
|
|
|
|
case AutoSaveConfiguration.ON_WINDOW_CHANGE:
|
|
this.configuredAutoSaveDelay = undefined;
|
|
this.configuredAutoSaveOnFocusChange = false;
|
|
this.configuredAutoSaveOnWindowChange = true;
|
|
break;
|
|
|
|
default:
|
|
this.configuredAutoSaveDelay = undefined;
|
|
this.configuredAutoSaveOnFocusChange = false;
|
|
this.configuredAutoSaveOnWindowChange = false;
|
|
break;
|
|
}
|
|
|
|
// Emit as event
|
|
this._onAutoSaveConfigurationChange.fire(this.getAutoSaveConfiguration());
|
|
|
|
// save all dirty when enabling auto save
|
|
if (!wasAutoSaveEnabled && this.getAutoSaveMode() !== AutoSaveMode.OFF) {
|
|
this.saveAll();
|
|
}
|
|
|
|
// Check for change in files associations
|
|
const filesAssociation = configuration && configuration.files && configuration.files.associations;
|
|
if (!objects.equals(this.currentFilesAssociationConfig, filesAssociation)) {
|
|
this.currentFilesAssociationConfig = filesAssociation;
|
|
this._onFilesAssociationChange.fire();
|
|
}
|
|
|
|
// Hot exit
|
|
const hotExitMode = configuration && configuration.files && configuration.files.hotExit;
|
|
if (hotExitMode === HotExitConfiguration.OFF || hotExitMode === HotExitConfiguration.ON_EXIT_AND_WINDOW_CLOSE) {
|
|
this.configuredHotExit = hotExitMode;
|
|
} else {
|
|
this.configuredHotExit = HotExitConfiguration.ON_EXIT;
|
|
}
|
|
}
|
|
|
|
getDirty(resources?: URI[]): URI[] {
|
|
|
|
// Collect files
|
|
const dirty = this.getDirtyFileModels(resources).map(m => m.getResource());
|
|
|
|
// Add untitled ones
|
|
dirty.push(...this.untitledEditorService.getDirty(resources));
|
|
|
|
return dirty;
|
|
}
|
|
|
|
isDirty(resource?: URI): boolean {
|
|
|
|
// Check for dirty file
|
|
if (this._models.getAll(resource).some(model => model.isDirty())) {
|
|
return true;
|
|
}
|
|
|
|
// Check for dirty untitled
|
|
return this.untitledEditorService.getDirty().some(dirty => !resource || dirty.toString() === resource.toString());
|
|
}
|
|
|
|
save(resource: URI, options?: ISaveOptions): Promise<boolean> {
|
|
|
|
// Run a forced save if we detect the file is not dirty so that save participants can still run
|
|
if (options && options.force && this.fileService.canHandleResource(resource) && !this.isDirty(resource)) {
|
|
const model = this._models.get(resource);
|
|
if (model) {
|
|
options.reason = SaveReason.EXPLICIT;
|
|
|
|
return model.save(options).then(() => !model.isDirty());
|
|
}
|
|
}
|
|
|
|
return this.saveAll([resource], options).then(result => result.results.length === 1 && !!result.results[0].success);
|
|
}
|
|
|
|
saveAll(includeUntitled?: boolean, options?: ISaveOptions): Promise<ITextFileOperationResult>;
|
|
saveAll(resources: URI[], options?: ISaveOptions): Promise<ITextFileOperationResult>;
|
|
saveAll(arg1?: any, options?: ISaveOptions): Promise<ITextFileOperationResult> {
|
|
|
|
// get all dirty
|
|
let toSave: URI[] = [];
|
|
if (Array.isArray(arg1)) {
|
|
toSave = this.getDirty(arg1);
|
|
} else {
|
|
toSave = this.getDirty();
|
|
}
|
|
|
|
// split up between files and untitled
|
|
const filesToSave: URI[] = [];
|
|
const untitledToSave: URI[] = [];
|
|
toSave.forEach(s => {
|
|
if ((Array.isArray(arg1) || arg1 === true /* includeUntitled */) && s.scheme === Schemas.untitled) {
|
|
untitledToSave.push(s);
|
|
} else {
|
|
filesToSave.push(s);
|
|
}
|
|
});
|
|
|
|
return this.doSaveAll(filesToSave, untitledToSave, options);
|
|
}
|
|
|
|
private doSaveAll(fileResources: URI[], untitledResources: URI[], options?: ISaveOptions): Promise<ITextFileOperationResult> {
|
|
|
|
// Handle files first that can just be saved
|
|
return this.doSaveAllFiles(fileResources, options).then(async result => {
|
|
|
|
// Preflight for untitled to handle cancellation from the dialog
|
|
const targetsForUntitled: URI[] = [];
|
|
for (const untitled of untitledResources) {
|
|
if (this.untitledEditorService.exists(untitled)) {
|
|
let targetUri: URI;
|
|
|
|
// Untitled with associated file path don't need to prompt
|
|
if (this.untitledEditorService.hasAssociatedFilePath(untitled)) {
|
|
targetUri = this.untitledToAssociatedFileResource(untitled);
|
|
}
|
|
|
|
// Otherwise ask user
|
|
else {
|
|
const targetPath = await this.promptForPath(untitled, this.suggestFileName(untitled));
|
|
if (!targetPath) {
|
|
return Promise.resolve({
|
|
results: [...fileResources, ...untitledResources].map(r => ({ source: r }))
|
|
});
|
|
}
|
|
|
|
targetUri = targetPath;
|
|
}
|
|
|
|
targetsForUntitled.push(targetUri);
|
|
}
|
|
}
|
|
|
|
// Handle untitled
|
|
const untitledSaveAsPromises: Promise<void>[] = [];
|
|
targetsForUntitled.forEach((target, index) => {
|
|
const untitledSaveAsPromise = this.saveAs(untitledResources[index], target).then(uri => {
|
|
result.results.push({
|
|
source: untitledResources[index],
|
|
target: uri,
|
|
success: !!uri
|
|
});
|
|
});
|
|
|
|
untitledSaveAsPromises.push(untitledSaveAsPromise);
|
|
});
|
|
|
|
return Promise.all(untitledSaveAsPromises).then(() => result);
|
|
});
|
|
}
|
|
|
|
private untitledToAssociatedFileResource(untitled: URI): URI {
|
|
const authority = this.windowService.getConfiguration().remoteAuthority;
|
|
|
|
return authority ? untitled.with({ scheme: REMOTE_HOST_SCHEME, authority }) : untitled.with({ scheme: Schemas.file });
|
|
}
|
|
|
|
private doSaveAllFiles(resources?: URI[], options: ISaveOptions = Object.create(null)): Promise<ITextFileOperationResult> {
|
|
const dirtyFileModels = this.getDirtyFileModels(Array.isArray(resources) ? resources : undefined /* Save All */)
|
|
.filter(model => {
|
|
if ((model.hasState(ModelState.CONFLICT) || model.hasState(ModelState.ERROR)) && (options.reason === SaveReason.AUTO || options.reason === SaveReason.FOCUS_CHANGE || options.reason === SaveReason.WINDOW_CHANGE)) {
|
|
return false; // if model is in save conflict or error, do not save unless save reason is explicit or not provided at all
|
|
}
|
|
|
|
return true;
|
|
});
|
|
|
|
const mapResourceToResult = new ResourceMap<IResult>();
|
|
dirtyFileModels.forEach(m => {
|
|
mapResourceToResult.set(m.getResource(), {
|
|
source: m.getResource()
|
|
});
|
|
});
|
|
|
|
return Promise.all(dirtyFileModels.map(model => {
|
|
return model.save(options).then(() => {
|
|
if (!model.isDirty()) {
|
|
const result = mapResourceToResult.get(model.getResource());
|
|
if (result) {
|
|
result.success = true;
|
|
}
|
|
}
|
|
});
|
|
})).then(r => ({ results: mapResourceToResult.values() }));
|
|
}
|
|
|
|
private getFileModels(resources?: URI[]): ITextFileEditorModel[];
|
|
private getFileModels(resource?: URI): ITextFileEditorModel[];
|
|
private getFileModels(arg1?: any): ITextFileEditorModel[] {
|
|
if (Array.isArray(arg1)) {
|
|
const models: ITextFileEditorModel[] = [];
|
|
(<URI[]>arg1).forEach(resource => {
|
|
models.push(...this.getFileModels(resource));
|
|
});
|
|
|
|
return models;
|
|
}
|
|
|
|
return this._models.getAll(<URI>arg1);
|
|
}
|
|
|
|
private getDirtyFileModels(resources?: URI[]): ITextFileEditorModel[];
|
|
private getDirtyFileModels(resource?: URI): ITextFileEditorModel[];
|
|
private getDirtyFileModels(arg1?: any): ITextFileEditorModel[] {
|
|
return this.getFileModels(arg1).filter(model => model.isDirty());
|
|
}
|
|
|
|
saveAs(resource: URI, target?: URI, options?: ISaveOptions): Promise<URI | undefined> {
|
|
|
|
// Get to target resource
|
|
let targetPromise: Promise<URI | undefined>;
|
|
if (target) {
|
|
targetPromise = Promise.resolve(target);
|
|
} else {
|
|
let dialogPath = resource;
|
|
if (resource.scheme === Schemas.untitled) {
|
|
dialogPath = this.suggestFileName(resource);
|
|
}
|
|
|
|
targetPromise = this.promptForPath(resource, dialogPath);
|
|
}
|
|
|
|
return targetPromise.then<URI | undefined>(target => {
|
|
if (!target) {
|
|
return undefined; // user canceled
|
|
}
|
|
|
|
// Just save if target is same as models own resource
|
|
if (resource.toString() === target.toString()) {
|
|
return this.save(resource, options).then(() => resource);
|
|
}
|
|
|
|
// Do it
|
|
return this.doSaveAs(resource, target, options);
|
|
});
|
|
}
|
|
|
|
private doSaveAs(resource: URI, target: URI, options?: ISaveOptions): Promise<URI> {
|
|
|
|
// Retrieve text model from provided resource if any
|
|
let modelPromise: Promise<ITextFileEditorModel | UntitledEditorModel | undefined> = Promise.resolve(undefined);
|
|
if (this.fileService.canHandleResource(resource)) {
|
|
modelPromise = Promise.resolve(this._models.get(resource));
|
|
} else if (resource.scheme === Schemas.untitled && this.untitledEditorService.exists(resource)) {
|
|
modelPromise = this.untitledEditorService.loadOrCreate({ resource });
|
|
}
|
|
|
|
return modelPromise.then(model => {
|
|
|
|
// We have a model: Use it (can be null e.g. if this file is binary and not a text file or was never opened before)
|
|
if (model) {
|
|
return this.doSaveTextFileAs(model, resource, target, options);
|
|
}
|
|
|
|
// Otherwise we can only copy
|
|
return this.fileService.copyFile(resource, target).then(() => true);
|
|
}).then(result => {
|
|
|
|
// Return early if the operation was not running
|
|
if (!result) {
|
|
return target;
|
|
}
|
|
|
|
// Revert the source
|
|
return this.revert(resource).then(() => {
|
|
|
|
// Done: return target
|
|
return target;
|
|
});
|
|
});
|
|
}
|
|
|
|
private doSaveTextFileAs(sourceModel: ITextFileEditorModel | UntitledEditorModel, resource: URI, target: URI, options?: ISaveOptions): Promise<boolean> {
|
|
let targetModelResolver: Promise<ITextFileEditorModel>;
|
|
let targetExists: boolean = false;
|
|
|
|
// Prefer an existing model if it is already loaded for the given target resource
|
|
const targetModel = this.models.get(target);
|
|
if (targetModel && targetModel.isResolved()) {
|
|
targetModelResolver = Promise.resolve(targetModel);
|
|
targetExists = true;
|
|
}
|
|
|
|
// Otherwise create the target file empty if it does not exist already and resolve it from there
|
|
else {
|
|
targetModelResolver = this.fileService.existsFile(target).then<any>(exists => {
|
|
targetExists = exists;
|
|
|
|
// create target model adhoc if file does not exist yet
|
|
if (!targetExists) {
|
|
return this.fileService.updateContent(target, '');
|
|
}
|
|
|
|
return undefined;
|
|
}).then(() => this.models.loadOrCreate(target));
|
|
}
|
|
|
|
return targetModelResolver.then(targetModel => {
|
|
|
|
// Confirm to overwrite if we have an untitled file with associated file where
|
|
// the file actually exists on disk and we are instructed to save to that file
|
|
// path. This can happen if the file was created after the untitled file was opened.
|
|
// See https://github.com/Microsoft/vscode/issues/67946
|
|
let confirmWrite: Promise<boolean>;
|
|
if (sourceModel instanceof UntitledEditorModel && sourceModel.hasAssociatedFilePath && targetExists && isEqual(target, this.untitledToAssociatedFileResource(sourceModel.getResource()))) {
|
|
confirmWrite = this.confirmOverwrite(target);
|
|
} else {
|
|
confirmWrite = Promise.resolve(true);
|
|
}
|
|
|
|
return confirmWrite.then(write => {
|
|
if (!write) {
|
|
return false;
|
|
}
|
|
|
|
// take over encoding and model value from source model
|
|
targetModel.updatePreferredEncoding(sourceModel.getEncoding());
|
|
if (targetModel.textEditorModel) {
|
|
const snapshot = sourceModel.createSnapshot();
|
|
if (snapshot) {
|
|
this.modelService.updateModel(targetModel.textEditorModel, createTextBufferFactoryFromSnapshot(snapshot));
|
|
}
|
|
}
|
|
|
|
// save model
|
|
return targetModel.save(options).then(() => true);
|
|
});
|
|
}, error => {
|
|
|
|
// binary model: delete the file and run the operation again
|
|
if ((<FileOperationError>error).fileOperationResult === FileOperationResult.FILE_IS_BINARY || (<FileOperationError>error).fileOperationResult === FileOperationResult.FILE_TOO_LARGE) {
|
|
return this.fileService.del(target).then(() => this.doSaveTextFileAs(sourceModel, resource, target, options));
|
|
}
|
|
|
|
return Promise.reject(error);
|
|
});
|
|
}
|
|
|
|
private suggestFileName(untitledResource: URI): URI {
|
|
const untitledFileName = this.untitledEditorService.suggestFileName(untitledResource);
|
|
const remoteAuthority = this.windowService.getConfiguration().remoteAuthority;
|
|
const schemeFilter = remoteAuthority ? REMOTE_HOST_SCHEME : Schemas.file;
|
|
|
|
const lastActiveFile = this.historyService.getLastActiveFile(schemeFilter);
|
|
if (lastActiveFile) {
|
|
const lastDir = dirname(lastActiveFile);
|
|
return joinPath(lastDir, untitledFileName);
|
|
}
|
|
|
|
const lastActiveFolder = this.historyService.getLastActiveWorkspaceRoot(schemeFilter);
|
|
if (lastActiveFolder) {
|
|
return joinPath(lastActiveFolder, untitledFileName);
|
|
}
|
|
|
|
return schemeFilter === Schemas.file ? URI.file(untitledFileName) : URI.from({ scheme: schemeFilter, authority: remoteAuthority, path: '/' + untitledFileName });
|
|
}
|
|
|
|
revert(resource: URI, options?: IRevertOptions): Promise<boolean> {
|
|
return this.revertAll([resource], options).then(result => result.results.length === 1 && !!result.results[0].success);
|
|
}
|
|
|
|
revertAll(resources?: URI[], options?: IRevertOptions): Promise<ITextFileOperationResult> {
|
|
|
|
// Revert files first
|
|
return this.doRevertAllFiles(resources, options).then(operation => {
|
|
|
|
// Revert untitled
|
|
const reverted = this.untitledEditorService.revertAll(resources);
|
|
reverted.forEach(res => operation.results.push({ source: res, success: true }));
|
|
|
|
return operation;
|
|
});
|
|
}
|
|
|
|
private doRevertAllFiles(resources?: URI[], options?: IRevertOptions): Promise<ITextFileOperationResult> {
|
|
const fileModels = options && options.force ? this.getFileModels(resources) : this.getDirtyFileModels(resources);
|
|
|
|
const mapResourceToResult = new ResourceMap<IResult>();
|
|
fileModels.forEach(m => {
|
|
mapResourceToResult.set(m.getResource(), {
|
|
source: m.getResource()
|
|
});
|
|
});
|
|
|
|
return Promise.all(fileModels.map(model => {
|
|
return model.revert(options && options.soft).then(() => {
|
|
if (!model.isDirty()) {
|
|
const result = mapResourceToResult.get(model.getResource());
|
|
if (result) {
|
|
result.success = true;
|
|
}
|
|
}
|
|
}, error => {
|
|
|
|
// FileNotFound means the file got deleted meanwhile, so still record as successful revert
|
|
if ((<FileOperationError>error).fileOperationResult === FileOperationResult.FILE_NOT_FOUND) {
|
|
const result = mapResourceToResult.get(model.getResource());
|
|
if (result) {
|
|
result.success = true;
|
|
}
|
|
}
|
|
|
|
// Otherwise bubble up the error
|
|
else {
|
|
return Promise.reject(error);
|
|
}
|
|
|
|
return undefined;
|
|
});
|
|
})).then(r => ({ results: mapResourceToResult.values() }));
|
|
}
|
|
|
|
create(resource: URI, contents?: string, options?: { overwrite?: boolean }): Promise<void> {
|
|
const existingModel = this.models.get(resource);
|
|
|
|
return this.fileService.createFile(resource, contents, options).then(() => {
|
|
|
|
// If we had an existing model for the given resource, load
|
|
// it again to make sure it is up to date with the contents
|
|
// we just wrote into the underlying resource by calling
|
|
// revert()
|
|
if (existingModel && !existingModel.isDisposed()) {
|
|
return existingModel.revert();
|
|
}
|
|
|
|
return undefined;
|
|
});
|
|
}
|
|
|
|
delete(resource: URI, options?: { useTrash?: boolean, recursive?: boolean }): Promise<void> {
|
|
const dirtyFiles = this.getDirty().filter(dirty => isEqualOrParent(dirty, resource, !platform.isLinux /* ignorecase */));
|
|
|
|
return this.revertAll(dirtyFiles, { soft: true }).then(() => this.fileService.del(resource, options));
|
|
}
|
|
|
|
move(source: URI, target: URI, overwrite?: boolean): Promise<void> {
|
|
const waitForPromises: Promise<any>[] = [];
|
|
|
|
// Event
|
|
this._onWillMove.fire({
|
|
oldResource: source,
|
|
newResource: target,
|
|
waitUntil(promise: Promise<any>) {
|
|
waitForPromises.push(promise.then(undefined, errors.onUnexpectedError));
|
|
}
|
|
});
|
|
|
|
// prevent async waitUntil-calls
|
|
Object.freeze(waitForPromises);
|
|
|
|
return Promise.all(waitForPromises).then(() => {
|
|
|
|
// Handle target models if existing (if target URI is a folder, this can be multiple)
|
|
let handleTargetModelPromise: Promise<any> = Promise.resolve();
|
|
const dirtyTargetModels = this.getDirtyFileModels().filter(model => isEqualOrParent(model.getResource(), target, false /* do not ignorecase, see https://github.com/Microsoft/vscode/issues/56384 */));
|
|
if (dirtyTargetModels.length) {
|
|
handleTargetModelPromise = this.revertAll(dirtyTargetModels.map(targetModel => targetModel.getResource()), { soft: true });
|
|
}
|
|
|
|
return handleTargetModelPromise.then(() => {
|
|
|
|
// Handle dirty source models if existing (if source URI is a folder, this can be multiple)
|
|
let handleDirtySourceModels: Promise<any>;
|
|
const dirtySourceModels = this.getDirtyFileModels().filter(model => isEqualOrParent(model.getResource(), source, !platform.isLinux /* ignorecase */));
|
|
const dirtyTargetModels: URI[] = [];
|
|
if (dirtySourceModels.length) {
|
|
handleDirtySourceModels = Promise.all(dirtySourceModels.map(sourceModel => {
|
|
const sourceModelResource = sourceModel.getResource();
|
|
let targetModelResource: URI;
|
|
|
|
// If the source is the actual model, just use target as new resource
|
|
if (isEqual(sourceModelResource, source, !platform.isLinux /* ignorecase */)) {
|
|
targetModelResource = target;
|
|
}
|
|
|
|
// Otherwise a parent folder of the source is being moved, so we need
|
|
// to compute the target resource based on that
|
|
else {
|
|
targetModelResource = sourceModelResource.with({ path: joinPath(target, sourceModelResource.path.substr(source.path.length + 1)).path });
|
|
}
|
|
|
|
// Remember as dirty target model to load after the operation
|
|
dirtyTargetModels.push(targetModelResource);
|
|
|
|
// Backup dirty source model to the target resource it will become later
|
|
const snapshot = sourceModel.createSnapshot();
|
|
if (snapshot) {
|
|
return this.backupFileService.backupResource(targetModelResource, snapshot, sourceModel.getVersionId());
|
|
}
|
|
return Promise.resolve();
|
|
}));
|
|
} else {
|
|
handleDirtySourceModels = Promise.resolve();
|
|
}
|
|
|
|
return handleDirtySourceModels.then(() => {
|
|
|
|
// Soft revert the dirty source files if any
|
|
return this.revertAll(dirtySourceModels.map(dirtySourceModel => dirtySourceModel.getResource()), { soft: true }).then(() => {
|
|
|
|
// Rename to target
|
|
return this.fileService.moveFile(source, target, overwrite).then(() => {
|
|
|
|
// Load models that were dirty before
|
|
return Promise.all(dirtyTargetModels.map(dirtyTargetModel => this.models.loadOrCreate(dirtyTargetModel))).then(() => undefined);
|
|
}, error => {
|
|
|
|
// In case of an error, discard any dirty target backups that were made
|
|
return Promise.all(dirtyTargetModels.map(dirtyTargetModel => this.backupFileService.discardResourceBackup(dirtyTargetModel)))
|
|
.then(() => Promise.reject(error));
|
|
});
|
|
});
|
|
});
|
|
});
|
|
});
|
|
}
|
|
|
|
getAutoSaveMode(): AutoSaveMode {
|
|
if (this.configuredAutoSaveOnFocusChange) {
|
|
return AutoSaveMode.ON_FOCUS_CHANGE;
|
|
}
|
|
|
|
if (this.configuredAutoSaveOnWindowChange) {
|
|
return AutoSaveMode.ON_WINDOW_CHANGE;
|
|
}
|
|
|
|
if (this.configuredAutoSaveDelay && this.configuredAutoSaveDelay > 0) {
|
|
return this.configuredAutoSaveDelay <= 1000 ? AutoSaveMode.AFTER_SHORT_DELAY : AutoSaveMode.AFTER_LONG_DELAY;
|
|
}
|
|
|
|
return AutoSaveMode.OFF;
|
|
}
|
|
|
|
getAutoSaveConfiguration(): IAutoSaveConfiguration {
|
|
return {
|
|
autoSaveDelay: this.configuredAutoSaveDelay && this.configuredAutoSaveDelay > 0 ? this.configuredAutoSaveDelay : undefined,
|
|
autoSaveFocusChange: this.configuredAutoSaveOnFocusChange,
|
|
autoSaveApplicationChange: this.configuredAutoSaveOnWindowChange
|
|
};
|
|
}
|
|
|
|
get isHotExitEnabled(): boolean {
|
|
return !this.environmentService.isExtensionDevelopment && this.configuredHotExit !== HotExitConfiguration.OFF;
|
|
}
|
|
|
|
dispose(): void {
|
|
|
|
// Clear all caches
|
|
this._models.clear();
|
|
|
|
super.dispose();
|
|
}
|
|
}
|
|
|
|
registerSingleton(ITextFileService, TextFileService); |