aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/frontend/src/xtext/UpdateService.ts
blob: d1246d5e78f1ac00c868a333952f526b44e798b7 (plain) (blame)
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
/*
 * SPDX-FileCopyrightText: 2021-2023 The Refinery Authors <https://refinery.tools/>
 *
 * SPDX-License-Identifier: EPL-2.0
 */

import type { ChangeDesc, Transaction } from '@codemirror/state';
import { debounce } from 'lodash-es';
import { nanoid } from 'nanoid';

import type EditorStore from '../editor/EditorStore';
import CancelledError from '../utils/CancelledError';
import TimeoutError from '../utils/TimeoutError';
import getLogger from '../utils/getLogger';

import UpdateStateTracker from './UpdateStateTracker';
import type XtextWebSocketClient from './XtextWebSocketClient';
import {
  type ContentAssistEntry,
  ContentAssistResult,
  DocumentStateResult,
  FormattingResult,
  isConflictResult,
  OccurrencesResult,
  ModelGenerationStartedResult,
} from './xtextServiceResults';

const UPDATE_TIMEOUT_MS = 500;

const log = getLogger('xtext.UpdateService');

export interface AbortSignal {
  aborted: boolean;
}

export type CancellableResult<T> =
  | { cancelled: false; data: T }
  | { cancelled: true };

export interface ContentAssistParams {
  caretOffset: number;

  proposalsLimit: number;
}

export default class UpdateService {
  readonly resourceName: string;

  private readonly tracker: UpdateStateTracker;

  private readonly idleUpdateLater = debounce(
    () => this.idleUpdate(),
    UPDATE_TIMEOUT_MS,
  );

  constructor(
    private readonly store: EditorStore,
    private readonly webSocketClient: XtextWebSocketClient,
  ) {
    this.resourceName = `${nanoid(7)}.problem`;
    this.tracker = new UpdateStateTracker(store);
  }

  get xtextStateId(): string | undefined {
    return this.tracker.xtextStateId;
  }

  computeChangesSinceLastUpdate(): ChangeDesc {
    return this.tracker.computeChangesSinceLastUpdate();
  }

  onReconnect(): void {
    this.tracker.invalidateStateId();
    this.updateFullTextOrThrow().catch((error) => {
      // Let E_TIMEOUT errors propagate, since if the first update times out,
      // we can't use the connection.
      if (error instanceof CancelledError) {
        // Content assist will perform a full-text update anyways.
        log.debug('Full text update cancelled');
        return;
      }
      log.error('Unexpected error during initial update', error);
    });
  }

  onTransaction(transaction: Transaction): void {
    if (this.tracker.onTransaction(transaction)) {
      this.idleUpdateLater();
    }
  }

  get opened(): boolean {
    return this.webSocketClient.opened;
  }

  private idleUpdate(): void {
    if (!this.webSocketClient.opened || !this.tracker.needsUpdate) {
      return;
    }
    if (!this.tracker.lockedForUpdate) {
      this.updateOrThrow().catch((error) => {
        if (error instanceof CancelledError || error instanceof TimeoutError) {
          log.debug('Idle update cancelled');
          return;
        }
        log.error('Unexpected error during scheduled update', error);
      });
    }
    this.idleUpdateLater();
  }

  /**
   * Makes sure that the document state on the server reflects recent
   * local changes.
   *
   * Performs either an update with delta text or a full text update if needed.
   * If there are not local dirty changes, the promise resolves immediately.
   *
   * @returns a promise resolving when the update is completed
   */
  private async updateOrThrow(): Promise<void> {
    if (!this.tracker.needsUpdate) {
      return;
    }
    await this.tracker.runExclusive(() => this.updateExclusive());
  }

  private async updateExclusive(): Promise<void> {
    if (this.xtextStateId === undefined) {
      await this.updateFullTextExclusive();
    }
    const delta = this.tracker.prepareDeltaUpdateExclusive();
    if (delta === undefined) {
      return;
    }
    log.trace('Editor delta', delta);
    this.store.analysisStarted();
    const result = await this.webSocketClient.send({
      resource: this.resourceName,
      serviceType: 'update',
      requiredStateId: this.xtextStateId,
      ...delta,
    });
    const parsedDocumentStateResult = DocumentStateResult.safeParse(result);
    if (parsedDocumentStateResult.success) {
      this.tracker.setStateIdExclusive(parsedDocumentStateResult.data.stateId);
      return;
    }
    if (isConflictResult(result, 'invalidStateId')) {
      await this.updateFullTextExclusive();
    }
    throw parsedDocumentStateResult.error;
  }

  private updateFullTextOrThrow(): Promise<void> {
    return this.tracker.runExclusive(() => this.updateFullTextExclusive());
  }

  private async updateFullTextExclusive(): Promise<void> {
    log.debug('Performing full text update');
    this.tracker.prepareFullTextUpdateExclusive();
    this.store.analysisStarted();
    const result = await this.webSocketClient.send({
      resource: this.resourceName,
      serviceType: 'update',
      fullText: this.store.state.doc.sliceString(0),
    });
    const { stateId } = DocumentStateResult.parse(result);
    this.tracker.setStateIdExclusive(stateId);
  }

  async fetchContentAssist(
    params: ContentAssistParams,
    signal: AbortSignal,
  ): Promise<ContentAssistEntry[]> {
    if (!this.tracker.hasPendingChanges && this.xtextStateId !== undefined) {
      return this.fetchContentAssistFetchOnly(params, this.xtextStateId);
    }
    try {
      return await this.tracker.runExclusive(
        () => this.fetchContentAssistExclusive(params, signal),
        true,
      );
    } catch (error) {
      if (
        (error instanceof CancelledError || error instanceof TimeoutError) &&
        signal.aborted
      ) {
        return [];
      }
      throw error;
    }
  }

  private async fetchContentAssistExclusive(
    params: ContentAssistParams,
    signal: AbortSignal,
  ): Promise<ContentAssistEntry[]> {
    if (this.xtextStateId === undefined) {
      await this.updateFullTextExclusive();
      if (this.xtextStateId === undefined) {
        throw new Error('failed to obtain Xtext state id');
      }
    }
    if (signal.aborted) {
      return [];
    }
    let entries: ContentAssistEntry[] | undefined;
    if (this.tracker.needsUpdate) {
      entries = await this.fetchContentAssistWithDeltaExclusive(
        params,
        this.xtextStateId,
      );
    }
    if (entries !== undefined) {
      return entries;
    }
    if (signal.aborted) {
      return [];
    }
    if (this.xtextStateId === undefined) {
      throw new Error('failed to obtain Xtext state id');
    }
    return this.fetchContentAssistFetchOnly(params, this.xtextStateId);
  }

  private async fetchContentAssistWithDeltaExclusive(
    params: ContentAssistParams,
    requiredStateId: string,
  ): Promise<ContentAssistEntry[] | undefined> {
    const delta = this.tracker.prepareDeltaUpdateExclusive();
    if (delta === undefined) {
      return undefined;
    }
    log.trace('Editor delta for content assist', delta);
    const fetchUpdateResult = await this.webSocketClient.send({
      ...params,
      resource: this.resourceName,
      serviceType: 'assist',
      requiredStateId,
      ...delta,
    });
    const parsedContentAssistResult =
      ContentAssistResult.safeParse(fetchUpdateResult);
    if (parsedContentAssistResult.success) {
      const {
        data: { stateId, entries },
      } = parsedContentAssistResult;
      this.tracker.setStateIdExclusive(stateId);
      return entries;
    }
    if (isConflictResult(fetchUpdateResult, 'invalidStateId')) {
      log.warn('Server state invalid during content assist');
      await this.updateFullTextExclusive();
      return undefined;
    }
    throw parsedContentAssistResult.error;
  }

  private async fetchContentAssistFetchOnly(
    params: ContentAssistParams,
    requiredStateId: string,
  ): Promise<ContentAssistEntry[]> {
    // Fallback to fetching without a delta update.
    const fetchOnlyResult = await this.webSocketClient.send({
      ...params,
      resource: this.resourceName,
      serviceType: 'assist',
      requiredStateId,
    });
    const { stateId, entries: fetchOnlyEntries } =
      ContentAssistResult.parse(fetchOnlyResult);
    if (stateId !== requiredStateId) {
      throw new Error(
        `Unexpected state id, expected: ${requiredStateId} got: ${stateId}`,
      );
    }
    return fetchOnlyEntries;
  }

  formatText(): Promise<void> {
    return this.tracker.runExclusive(() => this.formatTextExclusive());
  }

  private async formatTextExclusive(): Promise<void> {
    await this.updateExclusive();
    let { from, to } = this.store.state.selection.main;
    if (to <= from) {
      from = 0;
      to = this.store.state.doc.length;
    }
    log.debug('Formatting from', from, 'to', to);
    const result = await this.webSocketClient.send({
      resource: this.resourceName,
      serviceType: 'format',
      selectionStart: from,
      selectionEnd: to,
    });
    const { stateId, formattedText } = FormattingResult.parse(result);
    this.tracker.setStateIdExclusive(stateId, {
      from,
      to,
      insert: formattedText,
    });
  }

  async fetchOccurrences(
    getCaretOffset: () => CancellableResult<number>,
  ): Promise<CancellableResult<OccurrencesResult>> {
    try {
      await this.updateOrThrow();
    } catch (error) {
      if (error instanceof CancelledError || error instanceof TimeoutError) {
        return { cancelled: true };
      }
      throw error;
    }
    const expectedStateId = this.xtextStateId;
    if (expectedStateId === undefined || this.tracker.hasPendingChanges) {
      // Just give up if another update is in progress.
      return { cancelled: true };
    }
    const caretOffsetResult = getCaretOffset();
    if (caretOffsetResult.cancelled) {
      return { cancelled: true };
    }
    const data = await this.webSocketClient.send({
      resource: this.resourceName,
      serviceType: 'occurrences',
      caretOffset: caretOffsetResult.data,
      expectedStateId,
    });
    if (
      isConflictResult(data) ||
      this.tracker.hasChangesSince(expectedStateId)
    ) {
      return { cancelled: true };
    }
    const parsedOccurrencesResult = OccurrencesResult.parse(data);
    if (parsedOccurrencesResult.stateId !== expectedStateId) {
      return { cancelled: true };
    }
    return { cancelled: false, data: parsedOccurrencesResult };
  }

  async startModelGeneration(): Promise<
    CancellableResult<ModelGenerationStartedResult>
  > {
    try {
      await this.updateOrThrow();
    } catch (error) {
      if (error instanceof CancelledError || error instanceof TimeoutError) {
        return { cancelled: true };
      }
      throw error;
    }
    log.debug('Starting model generation');
    const data = await this.webSocketClient.send({
      resource: this.resourceName,
      serviceType: 'modelGeneration',
      requiredStateId: this.xtextStateId,
      start: true,
    });
    if (isConflictResult(data)) {
      return { cancelled: true };
    }
    const parsedResult = ModelGenerationStartedResult.parse(data);
    return { cancelled: false, data: parsedResult };
  }

  async cancelModelGeneration(): Promise<CancellableResult<unknown>> {
    log.debug('Cancelling model generation');
    const data = await this.webSocketClient.send({
      resource: this.resourceName,
      serviceType: 'modelGeneration',
      cancel: true,
    });
    if (isConflictResult(data)) {
      return { cancelled: true };
    }
    return { cancelled: false, data };
  }
}