1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-01 09:24:20 -04:00
denoland-deno/std/node/_fs/_fs_readFile.ts

55 lines
1.5 KiB
TypeScript
Raw Normal View History

// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
import { intoCallbackAPIWithIntercept, MaybeEmpty } from "../_utils.ts";
import { getEncoding, FileOptions } from "./_fs_common.ts";
2020-06-06 15:56:49 -04:00
import { Buffer } from "../buffer.ts";
import { fromFileUrl } from "../path.ts";
const { readFile: denoReadFile, readFileSync: denoReadFileSync } = Deno;
type ReadFileCallback = (
err: MaybeEmpty<Error>,
2020-06-06 15:56:49 -04:00
data: MaybeEmpty<string | Buffer>
) => void;
function maybeDecode(
data: Uint8Array,
encoding: string | null
2020-06-06 15:56:49 -04:00
): string | Buffer {
const buffer = new Buffer(data.buffer, data.byteOffset, data.byteLength);
if (encoding) return buffer.toString(encoding);
return buffer;
}
export function readFile(
path: string | URL,
optOrCallback: ReadFileCallback | FileOptions | string | undefined,
callback?: ReadFileCallback
): void {
path = path instanceof URL ? fromFileUrl(path) : path;
let cb: ReadFileCallback | undefined;
if (typeof optOrCallback === "function") {
cb = optOrCallback;
} else {
cb = callback;
}
const encoding = getEncoding(optOrCallback);
2020-06-06 15:56:49 -04:00
intoCallbackAPIWithIntercept<Uint8Array, string | Buffer>(
denoReadFile,
2020-06-06 15:56:49 -04:00
(data: Uint8Array): string | Buffer => maybeDecode(data, encoding),
cb,
path
);
}
export function readFileSync(
path: string | URL,
opt?: FileOptions | string
2020-06-06 15:56:49 -04:00
): string | Buffer {
path = path instanceof URL ? fromFileUrl(path) : path;
return maybeDecode(denoReadFileSync(path), getEncoding(opt));
}