Add deno.truncate (#805)

This commit is contained in:
ztplz 2018-10-01 03:06:20 +08:00 committed by Ryan Dahl
parent f51903f773
commit 062b22fe56
7 changed files with 147 additions and 0 deletions

42
js/truncate.ts Normal file
View file

@ -0,0 +1,42 @@
// Copyright 2018 the Deno authors. All rights reserved. MIT license.
import * as fbs from "gen/msg_generated";
import { flatbuffers } from "flatbuffers";
import * as dispatch from "./dispatch";
/**
* Truncates or extends the specified file synchronously,
* updating the size of this file to become size.
*
* import { truncateSync } from "deno";
*
* truncateSync("hello.txt", 10);
*/
export function truncateSync(name: string, len?: number): void {
dispatch.sendSync(...req(name, len));
}
/**
* Truncates or extends the specified file,
* updating the size of this file to become size.
*
* import { truncate } from "deno";
*
* await truncate("hello.txt", 10);
*/
export async function truncate(name: string, len?: number): Promise<void> {
await dispatch.sendAsync(...req(name, len));
}
function req(
name: string,
len?: number
): [flatbuffers.Builder, fbs.Any, flatbuffers.Offset] {
const builder = new flatbuffers.Builder();
const name_ = builder.createString(name);
len = len && len > 0 ? Math.floor(len) : 0;
fbs.Truncate.startTruncate(builder);
fbs.Truncate.addName(builder, name_);
fbs.Truncate.addLen(builder, len);
const msg = fbs.Truncate.endTruncate(builder);
return [builder, fbs.Any.Truncate, msg];
}