mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
107 lines
3.5 KiB
TypeScript
107 lines
3.5 KiB
TypeScript
/**
|
|
* Copyright (c) OpenLens Authors. All rights reserved.
|
|
* Licensed under MIT License. See LICENSE in root directory for more information.
|
|
*/
|
|
import type { DiContainerForInjection, InjectionToken } from "@ogre-tools/injectable";
|
|
import type { SingleOrMany } from "../utils";
|
|
import { getOrInsertSetFor, isDefined } from "../utils";
|
|
import { observable, when } from "mobx";
|
|
import * as uuid from "uuid";
|
|
import assert from "assert";
|
|
|
|
export interface Runnable<TParameter = void> {
|
|
id: string;
|
|
run: Run<TParameter>;
|
|
runAfter?: SingleOrMany<Runnable<TParameter>>;
|
|
}
|
|
|
|
type Run<Param> = (parameter: Param) => Promise<void> | void;
|
|
|
|
export type RunMany = <Param>(injectionToken: InjectionToken<Runnable<Param>, void>) => Run<Param>;
|
|
|
|
const computedNextEdge = (traversed: string[], graph: Map<string, Set<string>>, currentId: string, seenIds: Set<string>) => {
|
|
seenIds.add(currentId);
|
|
const currentNode = graph.get(currentId);
|
|
|
|
assert(currentNode, `Runnable graph does not contain node with id="${currentId}"`);
|
|
|
|
for (const nextId of currentNode.values()) {
|
|
if (traversed.includes(nextId)) {
|
|
throw new Error(`Cycle in runnable graph: "${traversed.join(`" -> "`)}" -> "${nextId}"`);
|
|
}
|
|
|
|
computedNextEdge([...traversed, nextId], graph, nextId, seenIds);
|
|
}
|
|
};
|
|
|
|
const verifyRunnablesAreDAG = <Param>(injectionToken: InjectionToken<Runnable<Param>, void>, runnables: Runnable<Param>[]) => {
|
|
const rootId = uuid.v4();
|
|
const runnableGraph = new Map<string, Set<string>>();
|
|
const seenIds = new Set<string>();
|
|
const addRunnableId = getOrInsertSetFor(runnableGraph);
|
|
|
|
// Build the Directed graph
|
|
for (const runnable of runnables) {
|
|
addRunnableId(runnable.id);
|
|
|
|
if (!runnable.runAfter) {
|
|
addRunnableId(rootId).add(runnable.id);
|
|
} else if (Array.isArray(runnable.runAfter)) {
|
|
for (const parentRunnable of runnable.runAfter) {
|
|
addRunnableId(parentRunnable.id).add(runnable.id);
|
|
}
|
|
} else {
|
|
addRunnableId(runnable.runAfter.id).add(runnable.id);
|
|
}
|
|
}
|
|
|
|
addRunnableId(rootId);
|
|
|
|
// Do a DFS to find any cycles
|
|
computedNextEdge([], runnableGraph, rootId, seenIds);
|
|
|
|
for (const id of runnableGraph.keys()) {
|
|
if (!seenIds.has(id)) {
|
|
const runnable = runnables.find(runnable => runnable.id === id);
|
|
|
|
if (!runnable) {
|
|
throw new Error(`Runnable "${id}" is not part of the injection token "${injectionToken.id}"`);
|
|
}
|
|
|
|
const runAfters = [runnable.runAfter]
|
|
.flat()
|
|
.filter(isDefined)
|
|
.map(runnable => runnable.id)
|
|
.join('", "');
|
|
|
|
throw new Error(`Runnable "${id}" is unreachable for injection token "${injectionToken.id}": run afters "${runAfters}" are a part of different injection tokens.`);
|
|
}
|
|
}
|
|
};
|
|
|
|
const executeRunnableWith = <Param>(param: Param) => {
|
|
const finishedIds = observable.set<string>();
|
|
|
|
return async (runnable: Runnable<Param>): Promise<void> => {
|
|
const parentRunnables = [runnable.runAfter].flat().filter(isDefined);
|
|
|
|
for (const parentRunnable of parentRunnables) {
|
|
await when(() => finishedIds.has(parentRunnable.id));
|
|
}
|
|
|
|
await runnable.run(param);
|
|
finishedIds.add(runnable.id);
|
|
};
|
|
};
|
|
|
|
export function runManyFor(di: DiContainerForInjection): RunMany {
|
|
return <Param>(injectionToken: InjectionToken<Runnable<Param>, void>) => async (param: Param) => {
|
|
const executeRunnable = executeRunnableWith(param);
|
|
const allRunnables = di.injectMany(injectionToken);
|
|
|
|
verifyRunnablesAreDAG(injectionToken, allRunnables);
|
|
|
|
await Promise.all(allRunnables.map(executeRunnable));
|
|
};
|
|
}
|