mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-07 01:25:38 -05:00
* Merge from vscode a234f13c45b40a0929777cb440ee011b7549eed2 * update distro * fix layering * update distro * fix tests
165 lines
6.0 KiB
TypeScript
165 lines
6.0 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 { Emitter, Event } from 'vs/base/common/event';
|
|
import { DisposableStore } from 'vs/base/common/lifecycle';
|
|
import { URI, UriComponents } from 'vs/base/common/uri';
|
|
import { IModelChangedEvent } from 'vs/editor/common/model/mirrorTextModel';
|
|
import { ExtHostDocumentsShape, IMainContext, MainContext, MainThreadDocumentsShape } from 'vs/workbench/api/common/extHost.protocol';
|
|
import { ExtHostDocumentData, setWordDefinitionFor } from 'vs/workbench/api/common/extHostDocumentData';
|
|
import { ExtHostDocumentsAndEditors } from 'vs/workbench/api/common/extHostDocumentsAndEditors';
|
|
import * as TypeConverters from 'vs/workbench/api/common/extHostTypeConverters';
|
|
import type * as vscode from 'vscode';
|
|
import { assertIsDefined } from 'vs/base/common/types';
|
|
import { deepFreeze } from 'vs/base/common/objects';
|
|
|
|
export class ExtHostDocuments implements ExtHostDocumentsShape {
|
|
|
|
private readonly _onDidAddDocument = new Emitter<vscode.TextDocument>();
|
|
private readonly _onDidRemoveDocument = new Emitter<vscode.TextDocument>();
|
|
private readonly _onDidChangeDocument = new Emitter<vscode.TextDocumentChangeEvent>();
|
|
private readonly _onDidSaveDocument = new Emitter<vscode.TextDocument>();
|
|
|
|
readonly onDidAddDocument: Event<vscode.TextDocument> = this._onDidAddDocument.event;
|
|
readonly onDidRemoveDocument: Event<vscode.TextDocument> = this._onDidRemoveDocument.event;
|
|
readonly onDidChangeDocument: Event<vscode.TextDocumentChangeEvent> = this._onDidChangeDocument.event;
|
|
readonly onDidSaveDocument: Event<vscode.TextDocument> = this._onDidSaveDocument.event;
|
|
|
|
private readonly _toDispose = new DisposableStore();
|
|
private _proxy: MainThreadDocumentsShape;
|
|
private _documentsAndEditors: ExtHostDocumentsAndEditors;
|
|
private _documentLoader = new Map<string, Promise<ExtHostDocumentData>>();
|
|
|
|
constructor(mainContext: IMainContext, documentsAndEditors: ExtHostDocumentsAndEditors) {
|
|
this._proxy = mainContext.getProxy(MainContext.MainThreadDocuments);
|
|
this._documentsAndEditors = documentsAndEditors;
|
|
|
|
this._documentsAndEditors.onDidRemoveDocuments(documents => {
|
|
for (const data of documents) {
|
|
this._onDidRemoveDocument.fire(data.document);
|
|
}
|
|
}, undefined, this._toDispose);
|
|
this._documentsAndEditors.onDidAddDocuments(documents => {
|
|
for (const data of documents) {
|
|
this._onDidAddDocument.fire(data.document);
|
|
}
|
|
}, undefined, this._toDispose);
|
|
}
|
|
|
|
public dispose(): void {
|
|
this._toDispose.dispose();
|
|
}
|
|
|
|
public getAllDocumentData(): ExtHostDocumentData[] {
|
|
return this._documentsAndEditors.allDocuments();
|
|
}
|
|
|
|
public getDocumentData(resource: vscode.Uri): ExtHostDocumentData | undefined {
|
|
if (!resource) {
|
|
return undefined;
|
|
}
|
|
const data = this._documentsAndEditors.getDocument(resource);
|
|
if (data) {
|
|
return data;
|
|
}
|
|
return undefined;
|
|
}
|
|
|
|
public getDocument(resource: vscode.Uri): vscode.TextDocument {
|
|
const data = this.getDocumentData(resource);
|
|
if (!data || !data.document) {
|
|
throw new Error('Unable to retrieve document from URI');
|
|
}
|
|
return data.document;
|
|
}
|
|
|
|
public ensureDocumentData(uri: URI): Promise<ExtHostDocumentData> {
|
|
|
|
const cached = this._documentsAndEditors.getDocument(uri);
|
|
if (cached) {
|
|
return Promise.resolve(cached);
|
|
}
|
|
|
|
let promise = this._documentLoader.get(uri.toString());
|
|
if (!promise) {
|
|
promise = this._proxy.$tryOpenDocument(uri).then(() => {
|
|
this._documentLoader.delete(uri.toString());
|
|
return assertIsDefined(this._documentsAndEditors.getDocument(uri));
|
|
}, err => {
|
|
this._documentLoader.delete(uri.toString());
|
|
return Promise.reject(err);
|
|
});
|
|
this._documentLoader.set(uri.toString(), promise);
|
|
}
|
|
|
|
return promise;
|
|
}
|
|
|
|
public createDocumentData(options?: { language?: string; content?: string }): Promise<URI> {
|
|
return this._proxy.$tryCreateDocument(options).then(data => URI.revive(data));
|
|
}
|
|
|
|
public $acceptModelModeChanged(uriComponents: UriComponents, oldModeId: string, newModeId: string): void {
|
|
const uri = URI.revive(uriComponents);
|
|
const data = this._documentsAndEditors.getDocument(uri);
|
|
if (!data) {
|
|
throw new Error('unknown document');
|
|
}
|
|
// Treat a mode change as a remove + add
|
|
|
|
this._onDidRemoveDocument.fire(data.document);
|
|
data._acceptLanguageId(newModeId);
|
|
this._onDidAddDocument.fire(data.document);
|
|
}
|
|
|
|
public $acceptModelSaved(uriComponents: UriComponents): void {
|
|
const uri = URI.revive(uriComponents);
|
|
const data = this._documentsAndEditors.getDocument(uri);
|
|
if (!data) {
|
|
throw new Error('unknown document');
|
|
}
|
|
this.$acceptDirtyStateChanged(uriComponents, false);
|
|
this._onDidSaveDocument.fire(data.document);
|
|
}
|
|
|
|
public $acceptDirtyStateChanged(uriComponents: UriComponents, isDirty: boolean): void {
|
|
const uri = URI.revive(uriComponents);
|
|
const data = this._documentsAndEditors.getDocument(uri);
|
|
if (!data) {
|
|
throw new Error('unknown document');
|
|
}
|
|
data._acceptIsDirty(isDirty);
|
|
this._onDidChangeDocument.fire({
|
|
document: data.document,
|
|
contentChanges: []
|
|
});
|
|
}
|
|
|
|
public $acceptModelChanged(uriComponents: UriComponents, events: IModelChangedEvent, isDirty: boolean): void {
|
|
const uri = URI.revive(uriComponents);
|
|
const data = this._documentsAndEditors.getDocument(uri);
|
|
if (!data) {
|
|
throw new Error('unknown document');
|
|
}
|
|
data._acceptIsDirty(isDirty);
|
|
data.onEvents(events);
|
|
this._onDidChangeDocument.fire(deepFreeze({
|
|
document: data.document,
|
|
contentChanges: events.changes.map((change) => {
|
|
return {
|
|
range: TypeConverters.Range.to(change.range),
|
|
rangeOffset: change.rangeOffset,
|
|
rangeLength: change.rangeLength,
|
|
text: change.text
|
|
};
|
|
})
|
|
}));
|
|
}
|
|
|
|
public setWordDefinitionFor(modeId: string, wordDefinition: RegExp | undefined): void {
|
|
setWordDefinitionFor(modeId, wordDefinition);
|
|
}
|
|
}
|