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";
|
2018-10-17 13:04:28 -04:00
|
|
|
import * as flatbuffers from "./flatbuffers";
|
2018-09-09 20:25:43 -04:00
|
|
|
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-09-09 20:25:43 -04:00
|
|
|
*
|
2018-10-14 16:29:50 -04:00
|
|
|
* import { readFileSync } from "deno";
|
|
|
|
* const decoder = new TextDecoder("utf-8");
|
|
|
|
* const data = readFileSync("hello.txt");
|
|
|
|
* console.log(decoder.decode(data));
|
2018-09-09 20:25:43 -04:00
|
|
|
*/
|
|
|
|
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-09-09 20:25:43 -04:00
|
|
|
*
|
2018-10-14 16:29:50 -04:00
|
|
|
* import { readFile } from "deno";
|
|
|
|
* const decoder = new TextDecoder("utf-8");
|
|
|
|
* const data = await readFile("hello.txt");
|
|
|
|
* console.log(decoder.decode(data));
|
2018-09-09 20:25:43 -04:00
|
|
|
*/
|
|
|
|
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] {
|
2018-10-17 13:04:28 -04:00
|
|
|
const builder = flatbuffers.createBuilder();
|
2018-09-09 20:25:43 -04:00
|
|
|
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-09-09 20:25:43 -04:00
|
|
|
}
|
|
|
|
|
2018-10-03 21:18:23 -04:00
|
|
|
function res(baseRes: null | msg.Base): Uint8Array {
|
2018-09-09 20:25:43 -04:00
|
|
|
assert(baseRes != null);
|
2018-10-03 21:18:23 -04:00
|
|
|
assert(msg.Any.ReadFileRes === baseRes!.innerType());
|
|
|
|
const inner = new msg.ReadFileRes();
|
2018-10-03 21:12:23 -04:00
|
|
|
assert(baseRes!.inner(inner) != null);
|
|
|
|
const dataArray = inner.dataArray();
|
2018-09-09 20:25:43 -04:00
|
|
|
assert(dataArray != null);
|
|
|
|
return new Uint8Array(dataArray!);
|
|
|
|
}
|