-
-
Notifications
You must be signed in to change notification settings - Fork 287
Expand file tree
/
Copy pathutils.js
More file actions
149 lines (123 loc) · 3.72 KB
/
utils.js
File metadata and controls
149 lines (123 loc) · 3.72 KB
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
/** @typedef {import("webpack").Compilation["inputFileSystem"]} InputFileSystem */
/** @typedef {import("fs").Stats} Stats */
/**
* @param {InputFileSystem} inputFileSystem the input file system to use for reading the file stats.
* @param {string} path the path to the file or directory to get stats for.
* @returns {Promise<undefined | Stats>} a promise that resolves to the stats of the file or directory.
*/
function stat(inputFileSystem, path) {
return new Promise((resolve, reject) => {
inputFileSystem.stat(
path,
/**
* @param {null | undefined | NodeJS.ErrnoException} err an error that occurred while trying to get the stats.
* @param {undefined | Stats} stats the stats of the file or directory, if available.
*/
(err, stats) => {
if (err) {
reject(err);
return;
}
resolve(stats);
},
);
});
}
/**
* @param {InputFileSystem} inputFileSystem the input file system to use for reading the file.
* @param {string} path the path to the file to read.
* @returns {Promise<string | Buffer>} a promise that resolves to the content of the file.
*/
function readFile(inputFileSystem, path) {
return new Promise((resolve, reject) => {
inputFileSystem.readFile(
path,
/**
* @param {null | undefined | NodeJS.ErrnoException} err /an error that occurred while trying to read the file.
* @param {undefined | string | Buffer} data the content of the file, if available.
*/
(err, data) => {
if (err) {
reject(err);
return;
}
resolve(/** @type {string | Buffer} */ (data));
},
);
});
}
const notSettled = Symbol("not-settled");
/**
* @template T
* @typedef {() => Promise<T>} Task
*/
/**
* Run tasks with limited concurrency.
* @template T
* @param {number} limit Limit of tasks that run at once.
* @param {Task<T>[]} tasks List of tasks to run.
* @returns {Promise<T[]>} A promise that fulfills to an array of the results
*/
function throttleAll(limit, tasks) {
if (!Number.isInteger(limit) || limit < 1) {
throw new TypeError(
`Expected \`limit\` to be a finite number > 0, got \`${limit}\` (${typeof limit})`,
);
}
if (
!Array.isArray(tasks) ||
!tasks.every((task) => typeof task === "function")
) {
throw new TypeError(
"Expected `tasks` to be a list of functions returning a promise",
);
}
return new Promise((resolve, reject) => {
const result = Array.from({ length: tasks.length }).fill(notSettled);
const entries = tasks.entries();
const next = () => {
const { done, value } = entries.next();
if (done) {
const isLast = !result.includes(notSettled);
if (isLast) {
resolve(/** @type {T[]} */ (result));
}
return;
}
const [index, task] = value;
/**
* @param {T} taskResult The result of the task that was fulfilled.
*/
const onFulfilled = (taskResult) => {
result[index] = taskResult;
next();
};
task().then(onFulfilled, reject);
};
for (let i = 0; i < limit; i++) {
next();
}
});
}
/**
* @template T
* @param {(() => unknown) | undefined} fn The function to memoize.
* @returns {() => T} A memoized function that returns the result of the original function.
*/
function memoize(fn) {
let cache = false;
/** @type {T} */
let result;
return () => {
if (cache) {
return result;
}
result = /** @type {T} */ (/** @type {() => unknown} */ (fn)());
cache = true;
// Allow to clean up memory for fn
// and all dependent resources
fn = undefined;
return result;
};
}
module.exports = { memoize, readFile, stat, throttleAll };