UNPKG

@21epub/epub-thirdparty

Version:
642 lines (641 loc) 29.5 kB
/*--------------------------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) { var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d; if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc); else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r; return c > 3 && r && Object.defineProperty(target, key, r), r; }; var __param = (this && this.__param) || function (paramIndex, decorator) { return function (target, key) { decorator(target, key, paramIndex); } }; var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } return new (P || (P = Promise))(function (resolve, reject) { function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } step((generator = generator.apply(thisArg, _arguments || [])).next()); }); }; import { TimeoutTimer } from '../../../base/common/async.js'; import { CancellationTokenSource } from '../../../base/common/cancellation.js'; import { onUnexpectedError } from '../../../base/common/errors.js'; import { Emitter } from '../../../base/common/event.js'; import { DisposableStore, dispose } from '../../../base/common/lifecycle.js'; import { getLeadingWhitespace, isHighSurrogate, isLowSurrogate } from '../../../base/common/strings.js'; import { Selection } from '../../common/core/selection.js'; import { CompletionProviderRegistry } from '../../common/modes.js'; import { IEditorWorkerService } from '../../common/services/editorWorkerService.js'; import { SnippetController2 } from '../snippet/snippetController2.js'; import { WordDistance } from './wordDistance.js'; import { IClipboardService } from '../../../platform/clipboard/common/clipboardService.js'; import { IConfigurationService } from '../../../platform/configuration/common/configuration.js'; import { IContextKeyService } from '../../../platform/contextkey/common/contextkey.js'; import { ILogService } from '../../../platform/log/common/log.js'; import { ITelemetryService } from '../../../platform/telemetry/common/telemetry.js'; import { CompletionModel } from './completionModel.js'; import { CompletionOptions, getSnippetSuggestSupport, getSuggestionComparator, provideSuggestionItems } from './suggest.js'; export class LineContext { constructor(model, position, auto, shy) { this.leadingLineContent = model.getLineContent(position.lineNumber).substr(0, position.column - 1); this.leadingWord = model.getWordUntilPosition(position); this.lineNumber = position.lineNumber; this.column = position.column; this.auto = auto; this.shy = shy; } static shouldAutoTrigger(editor) { if (!editor.hasModel()) { return false; } const model = editor.getModel(); const pos = editor.getPosition(); model.tokenizeIfCheap(pos.lineNumber); const word = model.getWordAtPosition(pos); if (!word) { return false; } if (word.endColumn !== pos.column) { return false; } if (!isNaN(Number(word.word))) { return false; } return true; } } function isSuggestPreviewEnabled(editor) { return editor.getOption(105 /* suggest */).preview; } function canShowQuickSuggest(editor, contextKeyService, configurationService) { if (!Boolean(contextKeyService.getContextKeyValue('inlineSuggestionVisible'))) { // Allow if there is no inline suggestion. return true; } const allowQuickSuggestions = configurationService.getValue('editor.inlineSuggest.allowQuickSuggestions'); if (allowQuickSuggestions !== undefined) { // Use setting if available. return Boolean(allowQuickSuggestions); } // Don't allow if inline suggestions are visible and no suggest preview is configured. // TODO disabled for copilot return false && isSuggestPreviewEnabled(editor); } function canShowSuggestOnTriggerCharacters(editor, contextKeyService, configurationService) { if (!Boolean(contextKeyService.getContextKeyValue('inlineSuggestionVisible'))) { // Allow if there is no inline suggestion. return true; } const allowQuickSuggestions = configurationService.getValue('editor.inlineSuggest.allowSuggestOnTriggerCharacters'); if (allowQuickSuggestions !== undefined) { // Use setting if available. return Boolean(allowQuickSuggestions); } // Don't allow if inline suggestions are visible and no suggest preview is configured. // TODO disabled for copilot return false && isSuggestPreviewEnabled(editor); } let SuggestModel = class SuggestModel { constructor(_editor, _editorWorkerService, _clipboardService, _telemetryService, _logService, _contextKeyService, _configurationService) { this._editor = _editor; this._editorWorkerService = _editorWorkerService; this._clipboardService = _clipboardService; this._telemetryService = _telemetryService; this._logService = _logService; this._contextKeyService = _contextKeyService; this._configurationService = _configurationService; this._toDispose = new DisposableStore(); this._quickSuggestDelay = 10; this._triggerCharacterListener = new DisposableStore(); this._triggerQuickSuggest = new TimeoutTimer(); this._state = 0 /* Idle */; this._completionDisposables = new DisposableStore(); this._onDidCancel = new Emitter(); this._onDidTrigger = new Emitter(); this._onDidSuggest = new Emitter(); this.onDidCancel = this._onDidCancel.event; this.onDidTrigger = this._onDidTrigger.event; this.onDidSuggest = this._onDidSuggest.event; this._telemetryGate = 0; this._currentSelection = this._editor.getSelection() || new Selection(1, 1, 1, 1); // wire up various listeners this._toDispose.add(this._editor.onDidChangeModel(() => { this._updateTriggerCharacters(); this.cancel(); })); this._toDispose.add(this._editor.onDidChangeModelLanguage(() => { this._updateTriggerCharacters(); this.cancel(); })); this._toDispose.add(this._editor.onDidChangeConfiguration(() => { this._updateTriggerCharacters(); this._updateQuickSuggest(); })); this._toDispose.add(CompletionProviderRegistry.onDidChange(() => { this._updateTriggerCharacters(); this._updateActiveSuggestSession(); })); this._toDispose.add(this._editor.onDidChangeCursorSelection(e => { this._onCursorChange(e); })); let editorIsComposing = false; this._toDispose.add(this._editor.onDidCompositionStart(() => { editorIsComposing = true; })); this._toDispose.add(this._editor.onDidCompositionEnd(() => { editorIsComposing = false; this._onCompositionEnd(); })); this._toDispose.add(this._editor.onDidChangeModelContent(() => { // only filter completions when the editor isn't // composing a character, e.g. ¨ + u makes ü but just // ¨ cannot be used for filtering if (!editorIsComposing) { this._refilterCompletionItems(); } })); this._updateTriggerCharacters(); this._updateQuickSuggest(); } dispose() { dispose(this._triggerCharacterListener); dispose([this._onDidCancel, this._onDidSuggest, this._onDidTrigger, this._triggerQuickSuggest]); this._toDispose.dispose(); this._completionDisposables.dispose(); this.cancel(); } // --- handle configuration & precondition changes _updateQuickSuggest() { this._quickSuggestDelay = this._editor.getOption(79 /* quickSuggestionsDelay */); if (isNaN(this._quickSuggestDelay) || (!this._quickSuggestDelay && this._quickSuggestDelay !== 0) || this._quickSuggestDelay < 0) { this._quickSuggestDelay = 10; } } _updateTriggerCharacters() { this._triggerCharacterListener.clear(); if (this._editor.getOption(80 /* readOnly */) || !this._editor.hasModel() || !this._editor.getOption(108 /* suggestOnTriggerCharacters */)) { return; } const supportsByTriggerCharacter = new Map(); for (const support of CompletionProviderRegistry.all(this._editor.getModel())) { for (const ch of support.triggerCharacters || []) { let set = supportsByTriggerCharacter.get(ch); if (!set) { set = new Set(); set.add(getSnippetSuggestSupport()); supportsByTriggerCharacter.set(ch, set); } set.add(support); } } const checkTriggerCharacter = (text) => { if (!canShowSuggestOnTriggerCharacters(this._editor, this._contextKeyService, this._configurationService)) { return; } if (LineContext.shouldAutoTrigger(this._editor)) { // don't trigger by trigger characters when this is a case for quick suggest return; } if (!text) { // came here from the compositionEnd-event const position = this._editor.getPosition(); const model = this._editor.getModel(); text = model.getLineContent(position.lineNumber).substr(0, position.column - 1); } let lastChar = ''; if (isLowSurrogate(text.charCodeAt(text.length - 1))) { if (isHighSurrogate(text.charCodeAt(text.length - 2))) { lastChar = text.substr(text.length - 2); } } else { lastChar = text.charAt(text.length - 1); } const supports = supportsByTriggerCharacter.get(lastChar); if (supports) { // keep existing items that where not computed by the // supports/providers that want to trigger now const existing = this._completionModel ? { items: this._completionModel.adopt(supports), clipboardText: this._completionModel.clipboardText } : undefined; this.trigger({ auto: true, shy: false, triggerCharacter: lastChar }, Boolean(this._completionModel), supports, existing); } }; this._triggerCharacterListener.add(this._editor.onDidType(checkTriggerCharacter)); this._triggerCharacterListener.add(this._editor.onDidCompositionEnd(checkTriggerCharacter)); } // --- trigger/retrigger/cancel suggest get state() { return this._state; } cancel(retrigger = false) { var _a; if (this._state !== 0 /* Idle */) { this._triggerQuickSuggest.cancel(); (_a = this._requestToken) === null || _a === void 0 ? void 0 : _a.cancel(); this._requestToken = undefined; this._state = 0 /* Idle */; this._completionModel = undefined; this._context = undefined; this._onDidCancel.fire({ retrigger }); } } clear() { this._completionDisposables.clear(); } _updateActiveSuggestSession() { if (this._state !== 0 /* Idle */) { if (!this._editor.hasModel() || !CompletionProviderRegistry.has(this._editor.getModel())) { this.cancel(); } else { this.trigger({ auto: this._state === 2 /* Auto */, shy: false }, true); } } } _onCursorChange(e) { if (!this._editor.hasModel()) { return; } const prevSelection = this._currentSelection; this._currentSelection = this._editor.getSelection(); if (!e.selection.isEmpty() || (e.reason !== 0 /* NotSet */ && e.reason !== 3 /* Explicit */) || (e.source !== 'keyboard' && e.source !== 'deleteLeft')) { // Early exit if nothing needs to be done! // Leave some form of early exit check here if you wish to continue being a cursor position change listener ;) this.cancel(); return; } if (this._state === 0 /* Idle */ && e.reason === 0 /* NotSet */) { if (prevSelection.containsRange(this._currentSelection) || prevSelection.getEndPosition().isBeforeOrEqual(this._currentSelection.getPosition())) { // cursor did move RIGHT due to typing -> trigger quick suggest this._doTriggerQuickSuggest(); } } else if (this._state !== 0 /* Idle */ && e.reason === 3 /* Explicit */) { // suggest is active and something like cursor keys are used to move // the cursor. this means we can refilter at the new position this._refilterCompletionItems(); } } _onCompositionEnd() { // trigger or refilter when composition ends if (this._state === 0 /* Idle */) { this._doTriggerQuickSuggest(); } else { this._refilterCompletionItems(); } } _doTriggerQuickSuggest() { if (this._editor.getOption(78 /* quickSuggestions */) === false) { // not enabled return; } if (this._editor.getOption(105 /* suggest */).snippetsPreventQuickSuggestions && SnippetController2.get(this._editor).isInSnippet()) { // no quick suggestion when in snippet mode return; } this.cancel(); this._triggerQuickSuggest.cancelAndSet(() => { if (this._state !== 0 /* Idle */) { return; } if (!LineContext.shouldAutoTrigger(this._editor)) { return; } if (!this._editor.hasModel()) { return; } const model = this._editor.getModel(); const pos = this._editor.getPosition(); // validate enabled now const quickSuggestions = this._editor.getOption(78 /* quickSuggestions */); if (quickSuggestions === false) { return; } else if (quickSuggestions === true) { // all good } else { // Check the type of the token that triggered this model.tokenizeIfCheap(pos.lineNumber); const lineTokens = model.getLineTokens(pos.lineNumber); const tokenType = lineTokens.getStandardTokenType(lineTokens.findTokenIndexAtOffset(Math.max(pos.column - 1 - 1, 0))); const inValidScope = quickSuggestions.other && tokenType === 0 /* Other */ || quickSuggestions.comments && tokenType === 1 /* Comment */ || quickSuggestions.strings && tokenType === 2 /* String */; if (!inValidScope) { return; } } if (!canShowQuickSuggest(this._editor, this._contextKeyService, this._configurationService)) { // do not trigger quick suggestions if inline suggestions are shown return; } if (!CompletionProviderRegistry.has(model)) { return; } // we made it till here -> trigger now this.trigger({ auto: true, shy: false }); }, this._quickSuggestDelay); } _refilterCompletionItems() { // Re-filter suggestions. This MUST run async because filtering/scoring // uses the model content AND the cursor position. The latter is NOT // updated when the document has changed (the event which drives this method) // and therefore a little pause (next mirco task) is needed. See: // https://stackoverflow.com/questions/25915634/difference-between-microtask-and-macrotask-within-an-event-loop-context#25933985 Promise.resolve().then(() => { if (this._state === 0 /* Idle */) { return; } if (!this._editor.hasModel()) { return; } const model = this._editor.getModel(); const position = this._editor.getPosition(); const ctx = new LineContext(model, position, this._state === 2 /* Auto */, false); this._onNewContext(ctx); }); } trigger(context, retrigger = false, onlyFrom, existing) { var _a; if (!this._editor.hasModel()) { return; } const model = this._editor.getModel(); const auto = context.auto; const ctx = new LineContext(model, this._editor.getPosition(), auto, context.shy); // Cancel previous requests, change state & update UI this.cancel(retrigger); this._state = auto ? 2 /* Auto */ : 1 /* Manual */; this._onDidTrigger.fire({ auto, shy: context.shy, position: this._editor.getPosition() }); // Capture context when request was sent this._context = ctx; // Build context for request let suggestCtx = { triggerKind: (_a = context.triggerKind) !== null && _a !== void 0 ? _a : 0 /* Invoke */ }; if (context.triggerCharacter) { suggestCtx = { triggerKind: 1 /* TriggerCharacter */, triggerCharacter: context.triggerCharacter }; } this._requestToken = new CancellationTokenSource(); // kind filter and snippet sort rules const snippetSuggestions = this._editor.getOption(100 /* snippetSuggestions */); let snippetSortOrder = 1 /* Inline */; switch (snippetSuggestions) { case 'top': snippetSortOrder = 0 /* Top */; break; // ↓ that's the default anyways... // case 'inline': // snippetSortOrder = SnippetSortOrder.Inline; // break; case 'bottom': snippetSortOrder = 2 /* Bottom */; break; } const { itemKind: itemKindFilter, showDeprecated } = SuggestModel._createSuggestFilter(this._editor); const wordDistance = WordDistance.create(this._editorWorkerService, this._editor); const completions = provideSuggestionItems(model, this._editor.getPosition(), new CompletionOptions(snippetSortOrder, itemKindFilter, onlyFrom, showDeprecated), suggestCtx, this._requestToken.token); Promise.all([completions, wordDistance]).then(([completions, wordDistance]) => __awaiter(this, void 0, void 0, function* () { var _b; (_b = this._requestToken) === null || _b === void 0 ? void 0 : _b.dispose(); if (!this._editor.hasModel()) { return; } let clipboardText = existing === null || existing === void 0 ? void 0 : existing.clipboardText; if (!clipboardText && completions.needsClipboard) { clipboardText = yield this._clipboardService.readText(); } if (this._state === 0 /* Idle */) { return; } const model = this._editor.getModel(); let items = completions.items; if (existing) { const cmpFn = getSuggestionComparator(snippetSortOrder); items = items.concat(existing.items).sort(cmpFn); } const ctx = new LineContext(model, this._editor.getPosition(), auto, context.shy); this._completionModel = new CompletionModel(items, this._context.column, { leadingLineContent: ctx.leadingLineContent, characterCountDelta: ctx.column - this._context.column }, wordDistance, this._editor.getOption(105 /* suggest */), this._editor.getOption(100 /* snippetSuggestions */), clipboardText); // store containers so that they can be disposed later this._completionDisposables.add(completions.disposable); this._onNewContext(ctx); // finally report telemetry about durations this._reportDurationsTelemetry(completions.durations); })).catch(onUnexpectedError); } _reportDurationsTelemetry(durations) { if (this._telemetryGate++ % 230 !== 0) { return; } setTimeout(() => { this._telemetryService.publicLog2('suggest.durations.json', { data: JSON.stringify(durations) }); this._logService.debug('suggest.durations.json', durations); }); } static _createSuggestFilter(editor) { // kind filter and snippet sort rules const result = new Set(); // snippet setting const snippetSuggestions = editor.getOption(100 /* snippetSuggestions */); if (snippetSuggestions === 'none') { result.add(27 /* Snippet */); } // type setting const suggestOptions = editor.getOption(105 /* suggest */); if (!suggestOptions.showMethods) { result.add(0 /* Method */); } if (!suggestOptions.showFunctions) { result.add(1 /* Function */); } if (!suggestOptions.showConstructors) { result.add(2 /* Constructor */); } if (!suggestOptions.showFields) { result.add(3 /* Field */); } if (!suggestOptions.showVariables) { result.add(4 /* Variable */); } if (!suggestOptions.showClasses) { result.add(5 /* Class */); } if (!suggestOptions.showStructs) { result.add(6 /* Struct */); } if (!suggestOptions.showInterfaces) { result.add(7 /* Interface */); } if (!suggestOptions.showModules) { result.add(8 /* Module */); } if (!suggestOptions.showProperties) { result.add(9 /* Property */); } if (!suggestOptions.showEvents) { result.add(10 /* Event */); } if (!suggestOptions.showOperators) { result.add(11 /* Operator */); } if (!suggestOptions.showUnits) { result.add(12 /* Unit */); } if (!suggestOptions.showValues) { result.add(13 /* Value */); } if (!suggestOptions.showConstants) { result.add(14 /* Constant */); } if (!suggestOptions.showEnums) { result.add(15 /* Enum */); } if (!suggestOptions.showEnumMembers) { result.add(16 /* EnumMember */); } if (!suggestOptions.showKeywords) { result.add(17 /* Keyword */); } if (!suggestOptions.showWords) { result.add(18 /* Text */); } if (!suggestOptions.showColors) { result.add(19 /* Color */); } if (!suggestOptions.showFiles) { result.add(20 /* File */); } if (!suggestOptions.showReferences) { result.add(21 /* Reference */); } if (!suggestOptions.showColors) { result.add(22 /* Customcolor */); } if (!suggestOptions.showFolders) { result.add(23 /* Folder */); } if (!suggestOptions.showTypeParameters) { result.add(24 /* TypeParameter */); } if (!suggestOptions.showSnippets) { result.add(27 /* Snippet */); } if (!suggestOptions.showUsers) { result.add(25 /* User */); } if (!suggestOptions.showIssues) { result.add(26 /* Issue */); } return { itemKind: result, showDeprecated: suggestOptions.showDeprecated }; } _onNewContext(ctx) { if (!this._context) { // happens when 24x7 IntelliSense is enabled and still in its delay return; } if (ctx.lineNumber !== this._context.lineNumber) { // e.g. happens when pressing Enter while IntelliSense is computed this.cancel(); return; } if (getLeadingWhitespace(ctx.leadingLineContent) !== getLeadingWhitespace(this._context.leadingLineContent)) { // cancel IntelliSense when line start changes // happens when the current word gets outdented this.cancel(); return; } if (ctx.column < this._context.column) { // typed -> moved cursor LEFT -> retrigger if still on a word if (ctx.leadingWord.word) { this.trigger({ auto: this._context.auto, shy: false }, true); } else { this.cancel(); } return; } if (!this._completionModel) { // happens when IntelliSense is not yet computed return; } if (ctx.leadingWord.word.length !== 0 && ctx.leadingWord.startColumn > this._context.leadingWord.startColumn) { // started a new word while IntelliSense shows -> retrigger // Select those providers have not contributed to this completion model and re-trigger completions for // them. Also adopt the existing items and merge them into the new completion model const inactiveProvider = new Set(CompletionProviderRegistry.all(this._editor.getModel())); for (let provider of this._completionModel.allProvider) { inactiveProvider.delete(provider); } const items = this._completionModel.adopt(new Set()); this.trigger({ auto: this._context.auto, shy: false }, true, inactiveProvider, { items, clipboardText: this._completionModel.clipboardText }); return; } if (ctx.column > this._context.column && this._completionModel.incomplete.size > 0 && ctx.leadingWord.word.length !== 0) { // typed -> moved cursor RIGHT & incomple model & still on a word -> retrigger const { incomplete } = this._completionModel; const items = this._completionModel.adopt(incomplete); this.trigger({ auto: this._state === 2 /* Auto */, shy: false, triggerKind: 2 /* TriggerForIncompleteCompletions */ }, true, incomplete, { items, clipboardText: this._completionModel.clipboardText }); } else { // typed -> moved cursor RIGHT -> update UI let oldLineContext = this._completionModel.lineContext; let isFrozen = false; this._completionModel.lineContext = { leadingLineContent: ctx.leadingLineContent, characterCountDelta: ctx.column - this._context.column }; if (this._completionModel.items.length === 0) { if (LineContext.shouldAutoTrigger(this._editor) && this._context.leadingWord.endColumn < ctx.leadingWord.startColumn) { // retrigger when heading into a new word this.trigger({ auto: this._context.auto, shy: false }, true); return; } if (!this._context.auto) { // freeze when IntelliSense was manually requested this._completionModel.lineContext = oldLineContext; isFrozen = this._completionModel.items.length > 0; if (isFrozen && ctx.leadingWord.word.length === 0) { // there were results before but now there aren't // and also we are not on a word anymore -> cancel this.cancel(); return; } } else { // nothing left this.cancel(); return; } } this._onDidSuggest.fire({ completionModel: this._completionModel, auto: this._context.auto, shy: this._context.shy, isFrozen, }); } } }; SuggestModel = __decorate([ __param(1, IEditorWorkerService), __param(2, IClipboardService), __param(3, ITelemetryService), __param(4, ILogService), __param(5, IContextKeyService), __param(6, IConfigurationService) ], SuggestModel); export { SuggestModel };