summaryrefslogtreecommitdiff
path: root/runtime/js/40_read_file.js
blob: fd656c1cb63f0c8a249b1b154a459023930e3cd2 (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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
"use strict";

((window) => {
  const core = window.Deno.core;
  const ops = core.ops;
  const { pathFromURL } = window.__bootstrap.util;
  const { abortSignal } = window.__bootstrap;

  function readFileSync(path) {
    return ops.op_readfile_sync(pathFromURL(path));
  }

  async function readFile(path, options) {
    let cancelRid;
    let abortHandler;
    if (options?.signal) {
      options.signal.throwIfAborted();
      cancelRid = ops.op_cancel_handle();
      abortHandler = () => core.tryClose(cancelRid);
      options.signal[abortSignal.add](abortHandler);
    }

    try {
      const read = await core.opAsync(
        "op_readfile_async",
        pathFromURL(path),
        cancelRid,
      );
      return read;
    } finally {
      if (options?.signal) {
        options.signal[abortSignal.remove](abortHandler);

        // always throw the abort error when aborted
        options.signal.throwIfAborted();
      }
    }
  }

  function readTextFileSync(path) {
    return ops.op_readfile_text_sync(pathFromURL(path));
  }

  async function readTextFile(path, options) {
    let cancelRid;
    let abortHandler;
    if (options?.signal) {
      options.signal.throwIfAborted();
      cancelRid = ops.op_cancel_handle();
      abortHandler = () => core.tryClose(cancelRid);
      options.signal[abortSignal.add](abortHandler);
    }

    try {
      const read = await core.opAsync(
        "op_readfile_text_async",
        pathFromURL(path),
        cancelRid,
      );
      return read;
    } finally {
      if (options?.signal) {
        options.signal[abortSignal.remove](abortHandler);

        // always throw the abort error when aborted
        options.signal.throwIfAborted();
      }
    }
  }

  window.__bootstrap.readFile = {
    readFile,
    readFileSync,
    readTextFileSync,
    readTextFile,
  };
})(this);