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.
71 lines
2.3 KiB
TypeScript
71 lines
2.3 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 * as dispatch from "./dispatch";
|
|
|
|
/** Options for writing to a file.
|
|
* `perm` would change the file's permission if set.
|
|
* `create` decides if the file should be created if not exists (default: true)
|
|
* `append` decides if the file should be appended (default: false)
|
|
*/
|
|
export interface WriteFileOptions {
|
|
perm?: number;
|
|
create?: boolean;
|
|
append?: boolean;
|
|
}
|
|
|
|
/** Write a new file, with given filename and data synchronously.
|
|
*
|
|
* const encoder = new TextEncoder();
|
|
* const data = encoder.encode("Hello world\n");
|
|
* Deno.writeFileSync("hello.txt", data);
|
|
*/
|
|
export function writeFileSync(
|
|
filename: string,
|
|
data: Uint8Array,
|
|
options: WriteFileOptions = {}
|
|
): void {
|
|
dispatch.sendSync(...req(filename, data, options));
|
|
}
|
|
|
|
/** Write a new file, with given filename and data.
|
|
*
|
|
* const encoder = new TextEncoder();
|
|
* const data = encoder.encode("Hello world\n");
|
|
* await Deno.writeFile("hello.txt", data);
|
|
*/
|
|
export async function writeFile(
|
|
filename: string,
|
|
data: Uint8Array,
|
|
options: WriteFileOptions = {}
|
|
): Promise<void> {
|
|
await dispatch.sendAsync(...req(filename, data, options));
|
|
}
|
|
|
|
function req(
|
|
filename: string,
|
|
data: Uint8Array,
|
|
options: WriteFileOptions
|
|
): [flatbuffers.Builder, msg.Any, flatbuffers.Offset, Uint8Array] {
|
|
const builder = flatbuffers.createBuilder();
|
|
const filename_ = builder.createString(filename);
|
|
msg.WriteFile.startWriteFile(builder);
|
|
msg.WriteFile.addFilename(builder, filename_);
|
|
// Perm is not updated by default
|
|
if (options.perm !== undefined && options.perm !== null) {
|
|
msg.WriteFile.addUpdatePerm(builder, true);
|
|
msg.WriteFile.addPerm(builder, options.perm!);
|
|
} else {
|
|
msg.WriteFile.addUpdatePerm(builder, false);
|
|
msg.WriteFile.addPerm(builder, 0o666);
|
|
}
|
|
// Create is turned on by default
|
|
if (options.create !== undefined) {
|
|
msg.WriteFile.addIsCreate(builder, !!options.create);
|
|
} else {
|
|
msg.WriteFile.addIsCreate(builder, true);
|
|
}
|
|
msg.WriteFile.addIsAppend(builder, !!options.append);
|
|
const inner = msg.WriteFile.endWriteFile(builder);
|
|
return [builder, msg.Any.WriteFile, inner, data];
|
|
}
|