import { FileMeta } from "../types.ts"; import { SpacePrimitives } from "./space_primitives.ts"; import type { SysCallMapping } from "../../plugos/system.ts"; // Enriches the file list listing with custom metadata from the page index export class FileMetaSpacePrimitives implements SpacePrimitives { constructor( private wrapped: SpacePrimitives, private indexSyscalls: SysCallMapping, ) { } async fetchFileList(): Promise { const files = await this.wrapped.fetchFileList(); // Enrich the file list with custom meta data (for pages) const allFilesMap: Map = new Map( files.map((fm) => [fm.name, fm]), ); for ( const { page, value } of await this.indexSyscalls["index.queryPrefix"]( {} as any, "meta:", ) ) { const p = allFilesMap.get(`${page}.md`); if (p) { for (const [k, v] of Object.entries(value)) { if ( ["name", "lastModified", "size", "perm", "contentType"].includes(k) ) { continue; } p[k] = v; } } } return [...allFilesMap.values()]; } readFile( name: string, ): Promise<{ data: Uint8Array; meta: FileMeta }> { return this.wrapped.readFile(name); } getFileMeta(name: string): Promise { return this.wrapped.getFileMeta(name); } writeFile( name: string, data: Uint8Array, selfUpdate?: boolean, lastModified?: number, ): Promise { return this.wrapped.writeFile( name, data, selfUpdate, lastModified, ); } deleteFile(name: string): Promise { return this.wrapped.deleteFile(name); } }