feat: Implentation of the daemons

This commit is contained in:
BluJ
2023-04-11 17:05:52 -06:00
parent f3c1cea0b9
commit 77a9c6d20e
5 changed files with 370 additions and 525 deletions

View File

@@ -1,13 +1,10 @@
import { HealthReceipt, ReadyProof } from "../health";
import { CheckResult } from "../health/checkFns";
import { Trigger } from "../health/trigger";
import { Effects, ValidIfNoStupidEscape } from "../types";
import { defaultTrigger } from "../health/trigger/defaultTrigger";
import { DaemonReturned, Effects, ValidIfNoStupidEscape } from "../types";
import { InterfaceReceipt } from "./interfaceReceipt";
type Daemon<
Ids extends string | never,
Command extends string,
Id extends string
> = {
type Daemon<Ids extends string | never, Command extends string, Id extends string> = {
id: Id;
command: ValidIfNoStupidEscape<Command> | [string, ...string[]];
@@ -20,11 +17,9 @@ type Daemon<
trigger?: Trigger;
};
requires?: Exclude<Ids, Id>[];
intervalTime?: number;
};
const todo = <A>(): A => {
throw new Error("TODO");
};
/**
* Used during the main of a function, it allows us to describe and ensure a set of daemons are running.
* With the dependency, we are using this like an init system, where we can ensure that a daemon is running
@@ -53,7 +48,7 @@ export class Daemons<Ids extends string | never> {
private constructor(
readonly effects: Effects,
readonly started: (onTerm: () => void) => null,
readonly daemons?: Daemon<Ids, "command", any>[]
readonly daemons?: Daemon<Ids, "command", Ids>[]
) {}
static of(config: {
@@ -64,15 +59,39 @@ export class Daemons<Ids extends string | never> {
}) {
return new Daemons<never>(config.effects, config.started);
}
addDaemon<Id extends string, Command extends string>(
newDaemon: Daemon<Ids, Command, Id>
) {
const daemons = [...(this?.daemons ?? [])];
daemons.push(newDaemon as any);
addDaemon<Id extends string, Command extends string>(newDaemon: Daemon<Ids, Command, Id>) {
const daemons = ((this?.daemons ?? []) as any[]).concat(newDaemon);
return new Daemons<Ids | Id>(this.effects, this.started, daemons);
}
build() {
return todo<any>();
async build() {
const daemonsStarted = {} as Record<Ids, Promise<DaemonReturned>>;
const { effects } = this;
const daemons = this.daemons ?? [];
const _config = await effects.getServiceConfig();
for (const daemon of daemons) {
const requiredPromise = Promise.all(daemon.requires?.map((id) => daemonsStarted[id]) ?? []);
daemonsStarted[daemon.id] = requiredPromise.then(async () => {
const { command } = daemon;
const child = effects.runDaemon(command);
const trigger = (daemon.ready.trigger ?? defaultTrigger)();
for (let res = await trigger.next({}); !res.done; res = await trigger.next({})) {
const response = await daemon.ready.fn();
if (response.status === "passing") {
return child;
}
}
return child;
});
}
return {
async term() {
await Promise.all(Object.values<Promise<DaemonReturned>>(daemonsStarted).map((x) => x.then((x) => x.term())));
},
async wait() {
await Promise.all(Object.values<Promise<DaemonReturned>>(daemonsStarted).map((x) => x.then((x) => x.wait())));
},
};
}
}

View File

@@ -22,13 +22,10 @@ export { Daemons } from "./Daemons";
* @returns
*/
export const runningMain: (
fn: (o: {
effects: Effects;
started(onTerm: () => void): null;
}) => Promise<Daemons<any>>
fn: (o: { effects: Effects; started(onTerm: () => void): null }) => Promise<Daemons<any>>
) => ExpectedExports.main = (fn) => {
return async (options) => {
/// TODO BLUJ
return null as any;
const result = await fn(options);
await result.build().then((x) => x.wait());
};
};