import { Hook, Manifest, RuntimeEnvironment } from "./types"; import { EventEmitter } from "../silverbullet-common/event"; import { SandboxFactory } from "./sandbox"; import { Plug } from "./plug"; export interface SysCallMapping { [key: string]: (ctx: SyscallContext, ...args: any) => Promise | any; } export type SystemJSON = { [key: string]: Manifest }; export type SystemEvents = { plugLoaded: (name: string, plug: Plug) => void; plugUnloaded: (name: string, plug: Plug) => void; }; export type SyscallContext = { plug: Plug; }; type SyscallSignature = ( ctx: SyscallContext, ...args: any[] ) => Promise | any; type Syscall = { requiredPermissions: string[]; callback: SyscallSignature; }; export class System extends EventEmitter> { readonly runtimeEnv: RuntimeEnvironment; protected plugs = new Map>(); protected registeredSyscalls = new Map(); protected enabledHooks = new Set>(); constructor(env: RuntimeEnvironment) { super(); this.runtimeEnv = env; } get loadedPlugs(): Map> { return this.plugs; } addHook(feature: Hook) { this.enabledHooks.add(feature); feature.apply(this); } registerSyscalls( requiredCapabilities: string[], ...registrationObjects: SysCallMapping[] ) { for (const registrationObject of registrationObjects) { for (let [name, callback] of Object.entries(registrationObject)) { this.registeredSyscalls.set(name, { requiredPermissions: requiredCapabilities, callback, }); } } } async syscallWithContext( ctx: SyscallContext, name: string, args: any[] ): Promise { const syscall = this.registeredSyscalls.get(name); if (!syscall) { throw Error(`Unregistered syscall ${name}`); } for (const permission of syscall.requiredPermissions) { if (!ctx.plug) { throw Error(`Syscall ${name} requires permission and no plug is set`); } if (!ctx.plug.grantedPermissions.includes(permission)) { throw Error(`Missing permission '${permission}' for syscall ${name}`); } } return Promise.resolve(syscall.callback(ctx, ...args)); } async load( name: string, manifest: Manifest, sandboxFactory: SandboxFactory ): Promise> { if (this.plugs.has(name)) { await this.unload(name); } // Validate let errors: string[] = []; for (const feature of this.enabledHooks) { errors = [...errors, ...feature.validateManifest(manifest)]; } if (errors.length > 0) { throw new Error(`Invalid manifest: ${errors.join(", ")}`); } // Ok, let's load this thing! const plug = new Plug(this, name, sandboxFactory); await plug.load(manifest); this.plugs.set(name, plug); this.emit("plugLoaded", name, plug); return plug; } async unload(name: string) { const plug = this.plugs.get(name); if (!plug) { throw Error(`Plug ${name} not found`); } await plug.stop(); this.emit("plugUnloaded", name, plug); this.plugs.delete(name); } toJSON(): SystemJSON { let plugJSON: { [key: string]: Manifest } = {}; for (let [name, plug] of this.plugs) { if (!plug.manifest) { continue; } plugJSON[name] = plug.manifest; } return plugJSON; } async replaceAllFromJSON( json: SystemJSON, sandboxFactory: SandboxFactory ) { await this.unloadAll(); for (let [name, manifest] of Object.entries(json)) { console.log("Loading plug", name); await this.load(name, manifest, sandboxFactory); } } async unloadAll(): Promise { return Promise.all( Array.from(this.plugs.keys()).map(this.unload.bind(this)) ); } }