mirror of
https://github.com/denoland/deno.git
synced 2024-10-31 09:14:20 -04:00
a21a5ad2fa
Resolves #1705 This PR adds the Deno APIs as a global namespace named `Deno`. For backwards compatibility, the ability to `import * from "deno"` is preserved. I have tried to convert every test and internal code the references the module to use the namespace instead, but because I didn't break compatibility I am not sure. On the REPL, `deno` no longer exists, replaced only with `Deno` to align with the regular runtime. The runtime type library includes both the namespace and module. This means it duplicates the whole type information. When we remove the functionality from the runtime, it will be a one line change to the library generator to remove the module definition from the type library. I marked a `TODO` in a couple places where to remove the `"deno"` module, but there are additional places I know I didn't mark.
46 lines
1.6 KiB
TypeScript
46 lines
1.6 KiB
TypeScript
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
|
|
import * as msg from "gen/msg_generated";
|
|
import * as flatbuffers from "./flatbuffers";
|
|
import { assert } from "./util";
|
|
import * as dispatch from "./dispatch";
|
|
|
|
/** Read the entire contents of a file synchronously.
|
|
*
|
|
* const decoder = new TextDecoder("utf-8");
|
|
* const data = Deno.readFileSync("hello.txt");
|
|
* console.log(decoder.decode(data));
|
|
*/
|
|
export function readFileSync(filename: string): Uint8Array {
|
|
return res(dispatch.sendSync(...req(filename)));
|
|
}
|
|
|
|
/** Read the entire contents of a file.
|
|
*
|
|
* const decoder = new TextDecoder("utf-8");
|
|
* const data = await Deno.readFile("hello.txt");
|
|
* console.log(decoder.decode(data));
|
|
*/
|
|
export async function readFile(filename: string): Promise<Uint8Array> {
|
|
return res(await dispatch.sendAsync(...req(filename)));
|
|
}
|
|
|
|
function req(
|
|
filename: string
|
|
): [flatbuffers.Builder, msg.Any, flatbuffers.Offset] {
|
|
const builder = flatbuffers.createBuilder();
|
|
const filename_ = builder.createString(filename);
|
|
msg.ReadFile.startReadFile(builder);
|
|
msg.ReadFile.addFilename(builder, filename_);
|
|
const inner = msg.ReadFile.endReadFile(builder);
|
|
return [builder, msg.Any.ReadFile, inner];
|
|
}
|
|
|
|
function res(baseRes: null | msg.Base): Uint8Array {
|
|
assert(baseRes != null);
|
|
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!);
|
|
}
|