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) => {
|
2021-06-05 17:10:07 -04:00
|
|
|
const core = window.Deno.core;
|
2020-07-19 13:49:44 -04:00
|
|
|
const { open, openSync } = window.__bootstrap.files;
|
2021-06-22 11:45:26 -04:00
|
|
|
const { readAllInner, 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
|
|
|
}
|
|
|
|
|
2021-06-22 11:45:26 -04:00
|
|
|
async function readFile(path, options) {
|
2020-07-19 13:49:44 -04:00
|
|
|
const file = await open(path);
|
2021-04-08 10:36:52 -04:00
|
|
|
try {
|
2021-06-22 11:45:26 -04:00
|
|
|
const contents = await readAllInner(file, options);
|
2021-04-08 10:36:52 -04:00
|
|
|
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);
|
2021-06-05 17:10:07 -04:00
|
|
|
return core.decode(contents);
|
2021-04-08 10:36:52 -04:00
|
|
|
} finally {
|
|
|
|
file.close();
|
|
|
|
}
|
2020-07-19 13:49:44 -04:00
|
|
|
}
|
|
|
|
|
2021-06-22 11:45:26 -04:00
|
|
|
async function readTextFile(path, options) {
|
2020-07-19 13:49:44 -04:00
|
|
|
const file = await open(path);
|
2021-04-08 10:36:52 -04:00
|
|
|
try {
|
2021-06-22 11:45:26 -04:00
|
|
|
const contents = await readAllInner(file, options);
|
2021-06-05 17:10:07 -04:00
|
|
|
return core.decode(contents);
|
2021-04-08 10:36:52 -04:00
|
|
|
} finally {
|
|
|
|
file.close();
|
|
|
|
}
|
2020-07-19 13:49:44 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
window.__bootstrap.readFile = {
|
|
|
|
readFile,
|
|
|
|
readFileSync,
|
|
|
|
readTextFileSync,
|
|
|
|
readTextFile,
|
|
|
|
};
|
|
|
|
})(this);
|