1
0
silverbullet/web/syscalls/system.ts

81 lines
2.3 KiB
TypeScript
Raw Normal View History

import type { Plug } from "../../plugos/plug.ts";
import { SysCallMapping, System } from "../../plugos/system.ts";
2023-07-14 14:56:20 +00:00
import type { Client } from "../client.ts";
import { CommandDef } from "../hooks/command.ts";
2023-08-27 12:13:18 +00:00
import { proxySyscall } from "./util.ts";
2022-03-25 11:03:06 +00:00
export function systemSyscalls(
system: System<any>,
2023-08-29 19:17:29 +00:00
client?: Client,
): SysCallMapping {
2023-08-27 12:13:18 +00:00
const api: SysCallMapping = {
2022-10-14 13:11:33 +00:00
"system.invokeFunction": (
2023-08-27 12:13:18 +00:00
ctx,
name: string,
...args: any[]
) => {
2023-08-28 15:12:15 +00:00
if (name === "server" || name === "client") {
// Backwards compatibility mode (previously there was an 'env' argument)
name = args[0];
args = args.slice(1);
}
let plug: Plug<any> | undefined = ctx.plug;
const fullName = name;
// console.log("Invoking function", fullName, "on plug", plug);
if (name.includes(".")) {
// plug name in the name
const [plugName, functionName] = name.split(".");
plug = system.loadedPlugs.get(plugName);
if (!plug) {
throw Error(`Plug ${plugName} not found`);
}
name = functionName;
}
const functionDef = plug?.manifest!.functions[name];
2023-08-27 12:13:18 +00:00
if (!functionDef) {
throw Error(`Function ${name} not found`);
}
2023-08-29 19:17:29 +00:00
if (
client && functionDef.env && system.env &&
functionDef.env !== system.env
) {
2023-08-27 12:13:18 +00:00
// Proxy to another environment
return proxySyscall(
ctx,
client.httpSpacePrimitives,
"system.invokeFunction",
[fullName, ...args],
);
2023-08-27 12:13:18 +00:00
}
return plug.invoke(name, args);
2022-04-26 17:04:36 +00:00
},
"system.invokeCommand": (_ctx, name: string, args?: string[]) => {
2023-08-29 19:17:29 +00:00
if (!client) {
throw new Error("Not supported");
}
return client.runCommandByName(name, args);
2022-07-11 07:08:22 +00:00
},
2022-10-14 13:11:33 +00:00
"system.listCommands": (): { [key: string]: CommandDef } => {
2023-08-29 19:17:29 +00:00
if (!client) {
throw new Error("Not supported");
}
2022-10-14 13:11:33 +00:00
const allCommands: { [key: string]: CommandDef } = {};
2023-08-29 19:17:29 +00:00
for (const [cmd, def] of client.system.commandHook.editorCommands) {
2022-09-06 12:36:06 +00:00
allCommands[cmd] = def.command;
}
return allCommands;
},
2022-10-14 13:11:33 +00:00
"system.reloadPlugs": () => {
2023-08-29 19:17:29 +00:00
if (!client) {
throw new Error("Not supported");
}
return client.loadPlugs();
2022-03-25 11:03:06 +00:00
},
2023-01-14 17:51:00 +00:00
"system.getEnv": () => {
return system.env;
},
2022-03-25 11:03:06 +00:00
};
2023-08-27 12:13:18 +00:00
return api;
2022-03-25 11:03:06 +00:00
}