2022-04-25 08:33:38 +00:00
|
|
|
import { SysCallMapping } from "@plugos/plugos/system";
|
|
|
|
import { proxySyscalls } from "@plugos/plugos/syscalls/transport";
|
2022-04-21 11:57:45 +00:00
|
|
|
import { Space } from "@silverbulletmd/common/spaces/space";
|
2022-03-25 11:03:06 +00:00
|
|
|
|
2022-04-07 13:21:30 +00:00
|
|
|
export function indexerSyscalls(space: Space): SysCallMapping {
|
2022-04-05 15:02:17 +00:00
|
|
|
return proxySyscalls(
|
2022-03-25 11:03:06 +00:00
|
|
|
[
|
2022-05-17 13:54:55 +00:00
|
|
|
"index.queryPrefix",
|
2022-04-03 16:42:12 +00:00
|
|
|
"index.get",
|
|
|
|
"index.set",
|
|
|
|
"index.batchSet",
|
|
|
|
"index.delete",
|
2022-03-25 11:03:06 +00:00
|
|
|
],
|
2022-04-05 15:02:17 +00:00
|
|
|
(ctx, name, ...args) => space.proxySyscall(ctx.plug, name, args)
|
2022-03-25 11:03:06 +00:00
|
|
|
);
|
|
|
|
}
|