2020-01-02 15:13:47 -05:00
|
|
|
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
2020-03-09 19:22:15 -04:00
|
|
|
import { sendSync, sendAsync } from "../dispatch_json.ts";
|
2018-09-30 15:06:20 -04:00
|
|
|
|
2019-08-26 10:18:42 -04:00
|
|
|
function coerceLen(len?: number): number {
|
|
|
|
if (!len) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (len < 0) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return len;
|
2019-03-09 12:30:38 -05:00
|
|
|
}
|
|
|
|
|
2020-03-02 10:19:42 -05:00
|
|
|
/** Synchronously truncates or extends the specified file, to reach the
|
|
|
|
* specified `len`.
|
2018-09-30 15:06:20 -04:00
|
|
|
*
|
2019-02-12 10:08:56 -05:00
|
|
|
* Deno.truncateSync("hello.txt", 10);
|
2020-03-02 10:19:42 -05:00
|
|
|
*
|
|
|
|
* Requires `allow-write` permission. */
|
2020-03-06 11:29:23 -05:00
|
|
|
export function truncateSync(path: string, len?: number): void {
|
|
|
|
sendSync("op_truncate", { path, len: coerceLen(len) });
|
2018-09-30 15:06:20 -04:00
|
|
|
}
|
|
|
|
|
2020-03-02 10:19:42 -05:00
|
|
|
/** Truncates or extends the specified file, to reach the specified `len`.
|
2018-09-30 15:06:20 -04:00
|
|
|
*
|
2019-02-12 10:08:56 -05:00
|
|
|
* await Deno.truncate("hello.txt", 10);
|
2020-03-02 10:19:42 -05:00
|
|
|
*
|
|
|
|
* Requires `allow-write` permission. */
|
2020-03-06 11:29:23 -05:00
|
|
|
export async function truncate(path: string, len?: number): Promise<void> {
|
|
|
|
await sendAsync("op_truncate", { path, len: coerceLen(len) });
|
2018-09-30 15:06:20 -04:00
|
|
|
}
|