1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-01 09:24:20 -04:00
denoland-deno/runtime/js/40_read_file.js
Satya Rohith 543080de55
fix(runtime/readFile*): close resources on error during read (#10059)
This commit ensures readFile, readFileSync, readTextFile,
and readTextFileSync does not leak resources on error.
2021-04-08 16:36:52 +02:00

56 lines
1.2 KiB
JavaScript

// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
"use strict";
((window) => {
const { open, openSync } = window.__bootstrap.files;
const { readAll, readAllSync } = window.__bootstrap.io;
function readFileSync(path) {
const file = openSync(path);
try {
const contents = readAllSync(file);
return contents;
} finally {
file.close();
}
}
async function readFile(path) {
const file = await open(path);
try {
const contents = await readAll(file);
return contents;
} finally {
file.close();
}
}
function readTextFileSync(path) {
const file = openSync(path);
try {
const contents = readAllSync(file);
const decoder = new TextDecoder();
return decoder.decode(contents);
} finally {
file.close();
}
}
async function readTextFile(path) {
const file = await open(path);
try {
const contents = await readAll(file);
const decoder = new TextDecoder();
return decoder.decode(contents);
} finally {
file.close();
}
}
window.__bootstrap.readFile = {
readFile,
readFileSync,
readTextFileSync,
readTextFile,
};
})(this);