2021-01-11 12:13:41 -05:00
|
|
|
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
|
2021-02-04 17:18:32 -05:00
|
|
|
"use strict";
|
2020-07-19 13:49:44 -04:00
|
|
|
|
|
|
|
((window) => {
|
|
|
|
const { open, openSync } = window.__bootstrap.files;
|
2021-04-05 18:05:36 -04:00
|
|
|
const { readAll, readAllSync } = window.__bootstrap.io;
|
2020-07-19 13:49:44 -04:00
|
|
|
|
|
|
|
function readFileSync(path) {
|
|
|
|
const file = openSync(path);
|
2021-04-08 10:36:52 -04:00
|
|
|
try {
|
|
|
|
const contents = readAllSync(file);
|
|
|
|
return contents;
|
|
|
|
} finally {
|
|
|
|
file.close();
|
|
|
|
}
|
2020-07-19 13:49:44 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
async function readFile(path) {
|
|
|
|
const file = await open(path);
|
2021-04-08 10:36:52 -04:00
|
|
|
try {
|
|
|
|
const contents = await readAll(file);
|
|
|
|
return contents;
|
|
|
|
} finally {
|
|
|
|
file.close();
|
|
|
|
}
|
2020-07-19 13:49:44 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
function readTextFileSync(path) {
|
|
|
|
const file = openSync(path);
|
2021-04-08 10:36:52 -04:00
|
|
|
try {
|
|
|
|
const contents = readAllSync(file);
|
|
|
|
const decoder = new TextDecoder();
|
|
|
|
return decoder.decode(contents);
|
|
|
|
} finally {
|
|
|
|
file.close();
|
|
|
|
}
|
2020-07-19 13:49:44 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
async function readTextFile(path) {
|
|
|
|
const file = await open(path);
|
2021-04-08 10:36:52 -04:00
|
|
|
try {
|
|
|
|
const contents = await readAll(file);
|
|
|
|
const decoder = new TextDecoder();
|
|
|
|
return decoder.decode(contents);
|
|
|
|
} finally {
|
|
|
|
file.close();
|
|
|
|
}
|
2020-07-19 13:49:44 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
window.__bootstrap.readFile = {
|
|
|
|
readFile,
|
|
|
|
readFileSync,
|
|
|
|
readTextFileSync,
|
|
|
|
readTextFile,
|
|
|
|
};
|
|
|
|
})(this);
|