0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-10-31 09:14:20 -04:00
denoland-deno/js/read_dir.ts

45 lines
1.5 KiB
TypeScript
Raw Normal View History

2019-01-21 14:03:30 -05:00
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
2018-10-03 21:18:23 -04:00
import * as msg from "gen/msg_generated";
import * as flatbuffers from "./flatbuffers";
2018-10-03 17:56:56 -04:00
import * as dispatch from "./dispatch";
2018-10-03 21:41:59 -04:00
import { FileInfo, FileInfoImpl } from "./file_info";
2018-10-03 17:56:56 -04:00
import { assert } from "./util";
2018-10-03 21:18:23 -04:00
function req(path: string): [flatbuffers.Builder, msg.Any, flatbuffers.Offset] {
const builder = flatbuffers.createBuilder();
2018-10-03 17:56:56 -04:00
const path_ = builder.createString(path);
2018-10-03 21:18:23 -04:00
msg.ReadDir.startReadDir(builder);
msg.ReadDir.addPath(builder, path_);
const inner = msg.ReadDir.endReadDir(builder);
return [builder, msg.Any.ReadDir, inner];
2018-10-03 17:56:56 -04:00
}
2018-10-03 21:18:23 -04:00
function res(baseRes: null | msg.Base): FileInfo[] {
2018-10-03 17:56:56 -04:00
assert(baseRes != null);
2018-10-03 21:18:23 -04:00
assert(msg.Any.ReadDirRes === baseRes!.innerType());
const res = new msg.ReadDirRes();
assert(baseRes!.inner(res) != null);
2018-10-03 17:56:56 -04:00
const fileInfos: FileInfo[] = [];
for (let i = 0; i < res.entriesLength(); i++) {
fileInfos.push(new FileInfoImpl(res.entries(i)!));
}
return fileInfos;
}
/** Reads the directory given by path and returns a list of file info
* synchronously.
*
* const files = Deno.readDirSync("/");
*/
export function readDirSync(path: string): FileInfo[] {
return res(dispatch.sendSync(...req(path)));
}
/** Reads the directory given by path and returns a list of file info.
*
* const files = await Deno.readDir("/");
*/
export async function readDir(path: string): Promise<FileInfo[]> {
return res(await dispatch.sendAsync(...req(path)));
}