- Hover provider showing entity information and type - Go-to-definition (F12) for entity references - Basic IFC file validation (ISO-10303-21 header check) - Entity parsing with regex-based detection - Proper CommonJS module system (avoiding ES module issues) This replaces the broken baseline from ifc-developer-tools which had: - Non-functional ES module configuration - Circular dependency issues - Parser crashes - Non-working PositionVisitor Built on Microsoft's LSP example template for a clean, maintainable foundation. Next: Add hierarchical entity dependency tree in hover tooltip."
113 lines
6 KiB
JavaScript
113 lines
6 KiB
JavaScript
"use strict";
|
|
/* --------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
* ------------------------------------------------------------------------------------------ */
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.RenameFeature = void 0;
|
|
const vscode_1 = require("vscode");
|
|
const vscode_languageserver_protocol_1 = require("vscode-languageserver-protocol");
|
|
const UUID = require("./utils/uuid");
|
|
const Is = require("./utils/is");
|
|
const features_1 = require("./features");
|
|
class RenameFeature extends features_1.TextDocumentLanguageFeature {
|
|
constructor(client) {
|
|
super(client, vscode_languageserver_protocol_1.RenameRequest.type);
|
|
}
|
|
fillClientCapabilities(capabilities) {
|
|
let rename = (0, features_1.ensure)((0, features_1.ensure)(capabilities, 'textDocument'), 'rename');
|
|
rename.dynamicRegistration = true;
|
|
rename.prepareSupport = true;
|
|
rename.prepareSupportDefaultBehavior = vscode_languageserver_protocol_1.PrepareSupportDefaultBehavior.Identifier;
|
|
rename.honorsChangeAnnotations = true;
|
|
}
|
|
initialize(capabilities, documentSelector) {
|
|
const options = this.getRegistrationOptions(documentSelector, capabilities.renameProvider);
|
|
if (!options) {
|
|
return;
|
|
}
|
|
if (Is.boolean(capabilities.renameProvider)) {
|
|
options.prepareProvider = false;
|
|
}
|
|
this.register({ id: UUID.generateUuid(), registerOptions: options });
|
|
}
|
|
registerLanguageProvider(options) {
|
|
const selector = options.documentSelector;
|
|
const provider = {
|
|
provideRenameEdits: (document, position, newName, token) => {
|
|
const client = this._client;
|
|
const provideRenameEdits = (document, position, newName, token) => {
|
|
let params = {
|
|
textDocument: client.code2ProtocolConverter.asTextDocumentIdentifier(document),
|
|
position: client.code2ProtocolConverter.asPosition(position),
|
|
newName: newName
|
|
};
|
|
return client.sendRequest(vscode_languageserver_protocol_1.RenameRequest.type, params, token).then((result) => {
|
|
if (token.isCancellationRequested) {
|
|
return null;
|
|
}
|
|
return client.protocol2CodeConverter.asWorkspaceEdit(result, token);
|
|
}, (error) => {
|
|
return client.handleFailedRequest(vscode_languageserver_protocol_1.RenameRequest.type, token, error, null, false);
|
|
});
|
|
};
|
|
const middleware = client.middleware;
|
|
return middleware.provideRenameEdits
|
|
? middleware.provideRenameEdits(document, position, newName, token, provideRenameEdits)
|
|
: provideRenameEdits(document, position, newName, token);
|
|
},
|
|
prepareRename: options.prepareProvider
|
|
? (document, position, token) => {
|
|
const client = this._client;
|
|
const prepareRename = (document, position, token) => {
|
|
let params = {
|
|
textDocument: client.code2ProtocolConverter.asTextDocumentIdentifier(document),
|
|
position: client.code2ProtocolConverter.asPosition(position),
|
|
};
|
|
return client.sendRequest(vscode_languageserver_protocol_1.PrepareRenameRequest.type, params, token).then((result) => {
|
|
if (token.isCancellationRequested) {
|
|
return null;
|
|
}
|
|
if (vscode_languageserver_protocol_1.Range.is(result)) {
|
|
return client.protocol2CodeConverter.asRange(result);
|
|
}
|
|
else if (this.isDefaultBehavior(result)) {
|
|
return result.defaultBehavior === true
|
|
? null
|
|
: Promise.reject(new Error(`The element can't be renamed.`));
|
|
}
|
|
else if (result && vscode_languageserver_protocol_1.Range.is(result.range)) {
|
|
return {
|
|
range: client.protocol2CodeConverter.asRange(result.range),
|
|
placeholder: result.placeholder
|
|
};
|
|
}
|
|
// To cancel the rename vscode API expects a rejected promise.
|
|
return Promise.reject(new Error(`The element can't be renamed.`));
|
|
}, (error) => {
|
|
if (typeof error.message === 'string') {
|
|
throw new Error(error.message);
|
|
}
|
|
else {
|
|
throw new Error(`The element can't be renamed.`);
|
|
}
|
|
});
|
|
};
|
|
const middleware = client.middleware;
|
|
return middleware.prepareRename
|
|
? middleware.prepareRename(document, position, token, prepareRename)
|
|
: prepareRename(document, position, token);
|
|
}
|
|
: undefined
|
|
};
|
|
return [this.registerProvider(selector, provider), provider];
|
|
}
|
|
registerProvider(selector, provider) {
|
|
return vscode_1.languages.registerRenameProvider(this._client.protocol2CodeConverter.asDocumentSelector(selector), provider);
|
|
}
|
|
isDefaultBehavior(value) {
|
|
const candidate = value;
|
|
return candidate && Is.boolean(candidate.defaultBehavior);
|
|
}
|
|
}
|
|
exports.RenameFeature = RenameFeature;
|