2022-04-03 16:42:12 +00:00
|
|
|
import {PageMeta} from "../../common/types";
|
|
|
|
import {SysCallMapping} from "../../plugos/system";
|
|
|
|
import {Storage} from "../disk_storage";
|
2022-03-28 13:25:05 +00:00
|
|
|
|
2022-03-31 12:28:07 +00:00
|
|
|
export default (storage: Storage): SysCallMapping => {
|
2022-03-28 13:25:05 +00:00
|
|
|
return {
|
2022-04-03 16:42:12 +00:00
|
|
|
"space.listPages": (ctx): Promise<PageMeta[]> => {
|
2022-03-31 12:28:07 +00:00
|
|
|
return storage.listPages();
|
2022-03-28 13:25:05 +00:00
|
|
|
},
|
2022-04-03 16:42:12 +00:00
|
|
|
"space.readPage": async (
|
2022-03-28 13:25:05 +00:00
|
|
|
ctx,
|
|
|
|
name: string
|
|
|
|
): Promise<{ text: string; meta: PageMeta }> => {
|
2022-03-31 12:28:07 +00:00
|
|
|
return storage.readPage(name);
|
2022-03-28 13:25:05 +00:00
|
|
|
},
|
2022-04-03 16:42:12 +00:00
|
|
|
"space.writePage": async (
|
|
|
|
ctx,
|
|
|
|
name: string,
|
|
|
|
text: string
|
|
|
|
): Promise<PageMeta> => {
|
2022-03-31 12:28:07 +00:00
|
|
|
return storage.writePage(name, text);
|
2022-03-28 13:25:05 +00:00
|
|
|
},
|
2022-04-03 16:42:12 +00:00
|
|
|
"space.deletePage": async (ctx, name: string) => {
|
2022-03-31 12:28:07 +00:00
|
|
|
return storage.deletePage(name);
|
2022-03-28 13:25:05 +00:00
|
|
|
},
|
|
|
|
};
|
|
|
|
};
|