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

import type EditorStore from '../editor/EditorStore';

import type UpdateService from './UpdateService';
import { ModelGenerationResult } from './xtextServiceResults';

export default class ModelGenerationService {
  constructor(
    private readonly store: EditorStore,
    private readonly updateService: UpdateService,
  ) {}

  onPush(push: unknown): void {
    const result = ModelGenerationResult.parse(push);
    if ('status' in result) {
      this.store.setGeneratedModelMessage(result.uuid, result.status);
    } else if ('error' in result) {
      this.store.setGeneratedModelError(result.uuid, result.error);
    } else {
      this.store.setGeneratedModelSemantics(result.uuid, result);
    }
  }

  onDisconnect(): void {
    this.store.modelGenerationCancelled();
  }

  async start(): Promise<void> {
    const result = await this.updateService.startModelGeneration();
    if (!result.cancelled) {
      this.store.addGeneratedModel(result.data.uuid);
    }
  }

  async cancel(): Promise<void> {
    const result = await this.updateService.cancelModelGeneration();
    if (!result.cancelled) {
      this.store.modelGenerationCancelled();
    }
  }
}