UNPKG

@finos/legend-data-cube

Version:
86 lines 2.64 kB
/** * Copyright (c) 2020-present, Goldman Sachs * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import { uuid } from '@finos/legend-shared'; import { action, computed, makeObservable, observable } from 'mobx'; export class Task { uuid = uuid(); description; // use Date.now() vs. performance.now() because need to record the moment // the task starts/ends for logging purposes. startTime = Date.now(); ownerId; endTime; constructor(description, ownerId) { this.description = description; this.ownerId = ownerId; } end() { this.endTime = Date.now(); } } export class TaskManager { // TODO?: keep a hashmap, in parallel, for faster lookup tasks = []; constructor() { makeObservable(this, { tasks: observable, newTask: action, endTask: action, endTasks: action, }); } newTask(description, ownerId) { const task = new Task(description, ownerId); this.tasks.push(task); return task; } endTask(task) { const match = this.tasks.find((t) => t.uuid === task.uuid); if (match) { this.tasks = this.tasks.filter((t) => t.uuid !== task.uuid); task.end(); } return task; } endTasks(tasks) { this.tasks = this.tasks.filter((task) => !tasks.find((t) => t.uuid === task.uuid)); tasks.forEach((task) => task.end()); } } export class DataCubeTaskService { uuid = uuid(); manager; constructor(manager) { makeObservable(this, { tasks: computed, }); this.manager = manager ?? new TaskManager(); } get tasks() { return this.manager.tasks.filter((task) => task.ownerId === this.uuid); } newTask(description) { return this.manager.newTask(description, this.uuid); } endTask(task) { return this.manager.endTask(task); } dispose() { // remove all tasks owned by this service this.manager.endTasks(this.tasks); } } //# sourceMappingURL=DataCubeTaskService.js.map