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_file.ts

47 lines
1.6 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";
import { assert } from "./util";
import * as dispatch from "./dispatch";
2018-10-14 16:29:50 -04:00
/** Read the entire contents of a file synchronously.
*
2018-10-14 16:29:50 -04:00
* const decoder = new TextDecoder("utf-8");
* const data = Deno.readFileSync("hello.txt");
2018-10-14 16:29:50 -04:00
* console.log(decoder.decode(data));
*/
export function readFileSync(filename: string): Uint8Array {
return res(dispatch.sendSync(...req(filename)));
}
2018-10-14 16:29:50 -04:00
/** Read the entire contents of a file.
*
2018-10-14 16:29:50 -04:00
* const decoder = new TextDecoder("utf-8");
* const data = await Deno.readFile("hello.txt");
2018-10-14 16:29:50 -04:00
* console.log(decoder.decode(data));
*/
export async function readFile(filename: string): Promise<Uint8Array> {
return res(await dispatch.sendAsync(...req(filename)));
}
function req(
filename: string
2018-10-03 21:18:23 -04:00
): [flatbuffers.Builder, msg.Any, flatbuffers.Offset] {
const builder = flatbuffers.createBuilder();
const filename_ = builder.createString(filename);
2018-10-03 21:18:23 -04:00
msg.ReadFile.startReadFile(builder);
msg.ReadFile.addFilename(builder, filename_);
const inner = msg.ReadFile.endReadFile(builder);
return [builder, msg.Any.ReadFile, inner];
}
2018-10-03 21:18:23 -04:00
function res(baseRes: null | msg.Base): Uint8Array {
assert(baseRes != null);
2018-10-03 21:18:23 -04:00
assert(msg.Any.ReadFileRes === baseRes!.innerType());
const inner = new msg.ReadFileRes();
assert(baseRes!.inner(inner) != null);
const dataArray = inner.dataArray();
assert(dataArray != null);
return new Uint8Array(dataArray!);
}