summaryrefslogtreecommitdiff
path: root/std/node/_fs/_fs_readFile.ts
blob: 448045fd24a3cace443948f9582527b8dbfcd532 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.

import { intoCallbackAPIWithIntercept, MaybeEmpty } from "../_utils.ts";

import { getEncoding, FileOptions } from "./_fs_common.ts";
import { Buffer } from "../buffer.ts";
import { fromFileUrl } from "../path.ts";

const { readFile: denoReadFile, readFileSync: denoReadFileSync } = Deno;

type ReadFileCallback = (
  err: MaybeEmpty<Error>,
  data: MaybeEmpty<string | Buffer>
) => void;

function maybeDecode(
  data: Uint8Array,
  encoding: string | null
): 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);

  intoCallbackAPIWithIntercept<Uint8Array, string | Buffer>(
    denoReadFile,
    (data: Uint8Array): string | Buffer => maybeDecode(data, encoding),
    cb,
    path
  );
}

export function readFileSync(
  path: string | URL,
  opt?: FileOptions | string
): string | Buffer {
  path = path instanceof URL ? fromFileUrl(path) : path;
  return maybeDecode(denoReadFileSync(path), getEncoding(opt));
}