forked from smogon/pokemon-showdown
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fs.js
355 lines (348 loc) · 9.08 KB
/
fs.js
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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
/**
* FS
* Pokemon Showdown - http://pokemonshowdown.com/
*
* An abstraction layer around Node's filesystem.
*
* Advantages:
* - write() etc do nothing in unit tests
* - paths are always relative to PS's base directory
* - Promises (seriously wtf Node Core what are you thinking)
* - PS-style API: FS("foo.txt").write("bar") for easier argument order
* - mkdirp
*
* FS is used nearly everywhere, but exceptions include:
* - crashlogger.js - in case the crash is in here
* - repl.js - which use Unix sockets out of this file's scope
* - launch script - happens before modules are loaded
* - sim/ - intended to be self-contained
*
* @license MIT license
*/
'use strict';
const pathModule = require('path');
const fs = require('fs');
/*eslint no-unused-expressions: ["error", { "allowTernary": true }]*/
class FSPath {
/**
* @param {string} path
*/
constructor(path) {
this.path = pathModule.resolve(__dirname, path);
}
parentDir() {
return new FSPath(pathModule.dirname(this.path));
}
read(/** @type {AnyObject | string} */ options = {}) {
return new Promise((resolve, reject) => {
fs.readFile(this.path, options, (err, data) => {
err ? reject(err) : resolve(data);
});
});
}
readSync(/** @type {AnyObject | string} */ options = {}) {
return fs.readFileSync(this.path, options);
}
readTextIfExists() {
return new Promise((resolve, reject) => {
fs.readFile(this.path, 'utf8', (err, data) => {
if (err && err.code === 'ENOENT') return resolve('');
err ? reject(err) : resolve(data);
});
});
}
readTextIfExistsSync() {
try {
return fs.readFileSync(this.path, 'utf8');
} catch (err) {
if (err.code !== 'ENOENT') throw err;
}
return '';
}
/**
* @param {string | Buffer} data
* @param {Object} options
*/
write(data, options = {}) {
if (Config.nofswriting) return Promise.resolve();
return new Promise((resolve, reject) => {
fs.writeFile(this.path, data, options, err => {
err ? reject(err) : resolve();
});
});
}
/**
* @param {string | Buffer} data
* @param {Object} options
*/
writeSync(data, options = {}) {
if (Config.nofswriting) return;
return fs.writeFileSync(this.path, data, options);
}
/**
* Writes to a new file before renaming to replace an old file. If
* the process crashes while writing, the old file won't be lost.
* Does not protect against simultaneous writing; use writeUpdate
* for that.
*
* @param {string | Buffer} data
* @param {Object} options
*/
async safeWrite(data, options = {}) {
await FS(this.path + '.NEW').write(data, options);
await FS(this.path + '.NEW').rename(this.path);
}
/**
* @param {string | Buffer} data
* @param {Object} options
*/
safeWriteSync(data, options = {}) {
FS(this.path + '.NEW').writeSync(data, options);
FS(this.path + '.NEW').renameSync(this.path);
}
/**
* Safest way to update a file with in-memory state. Pass a callback
* that fetches the data to be written. It will write an update,
* avoiding race conditions. The callback may not necessarily be
* called, if `writeUpdate` is called many times in a short period.
*
* `options.throttle`, if it exists, will make sure updates are not
* written more than once every `options.throttle` milliseconds.
*
* No synchronous version because there's no risk of race conditions
* with synchronous code; just use `safeWriteSync`.
*
* DO NOT do anything with the returned Promise; it's not meaningful.
*
* @param {() => string | Buffer} dataFetcher
* @param {Object} options
*/
async writeUpdate(dataFetcher, options = {}) {
if (Config.nofswriting) return;
const pendingUpdate = FS.pendingUpdates.get(this.path);
if (pendingUpdate) {
pendingUpdate[1] = dataFetcher;
pendingUpdate[2] = options;
return;
}
let pendingFetcher = /** @type {(() => string | Buffer)?} */ (dataFetcher);
while (pendingFetcher) {
let updatePromise = this.safeWrite(pendingFetcher(), options);
FS.pendingUpdates.set(this.path, [updatePromise, null, options]);
await updatePromise;
if (options.throttle) {
await new Promise(resolve => setTimeout(resolve, options.throttle));
}
const pendingUpdate = FS.pendingUpdates.get(this.path);
if (!pendingUpdate) return;
[updatePromise, pendingFetcher, options] = pendingUpdate;
}
FS.pendingUpdates.delete(this.path);
}
/**
* @param {string | Buffer} data
* @param {Object} options
*/
append(data, options = {}) {
if (Config.nofswriting) return Promise.resolve();
return new Promise((resolve, reject) => {
fs.appendFile(this.path, data, options, err => {
err ? reject(err) : resolve();
});
});
}
/**
* @param {string | Buffer} data
* @param {Object} options
*/
appendSync(data, options = {}) {
if (Config.nofswriting) return;
return fs.appendFileSync(this.path, data, options);
}
/**
* @param {string} target
*/
symlinkTo(target) {
if (Config.nofswriting) return Promise.resolve();
return new Promise((resolve, reject) => {
// @ts-ignore TypeScript bug
fs.symlink(target, this.path, err => {
err ? reject(err) : resolve();
});
});
}
/**
* @param {string} target
*/
symlinkToSync(target) {
if (Config.nofswriting) return;
return fs.symlinkSync(target, this.path);
}
/**
* @param {string} target
*/
rename(target) {
if (Config.nofswriting) return Promise.resolve();
return new Promise((resolve, reject) => {
fs.rename(this.path, target, err => {
err ? reject(err) : resolve();
});
});
}
/**
* @param {string} target
*/
renameSync(target) {
if (Config.nofswriting) return;
return fs.renameSync(this.path, target);
}
readdir() {
return new Promise((resolve, reject) => {
fs.readdir(this.path, (err, data) => {
err ? reject(err) : resolve(data);
});
});
}
readdirSync() {
return fs.readdirSync(this.path);
}
/**
* @return {NodeJS.WritableStream}
*/
createWriteStream(options = {}) {
if (Config.nofswriting) {
const Writable = require('stream').Writable;
return new Writable({write: (chunk, encoding, callback) => callback()});
}
return fs.createWriteStream(this.path, options);
}
/**
* @return {NodeJS.WritableStream}
*/
createAppendStream(options = {}) {
if (Config.nofswriting) {
const Writable = require('stream').Writable;
return new Writable({write: (chunk, encoding, callback) => callback()});
}
options.flags = options.flags || 'a';
return fs.createWriteStream(this.path, options);
}
unlinkIfExists() {
if (Config.nofswriting) return Promise.resolve();
return new Promise((resolve, reject) => {
fs.unlink(this.path, err => {
if (err && err.code === 'ENOENT') return resolve();
err ? reject(err) : resolve();
});
});
}
unlinkIfExistsSync() {
if (Config.nofswriting) return;
try {
fs.unlinkSync(this.path);
} catch (err) {
if (err.code !== 'ENOENT') throw err;
}
}
/**
* @param {string | number} mode
*/
mkdir(mode = 0o755) {
if (Config.nofswriting) return Promise.resolve();
return new Promise((resolve, reject) => {
// @ts-ignore
fs.mkdir(this.path, mode, err => {
err ? reject(err) : resolve();
});
});
}
/**
* @param {string | number} mode
*/
mkdirSync(mode = 0o755) {
if (Config.nofswriting) return;
// @ts-ignore
return fs.mkdirSync(this.path, mode);
}
/**
* @param {string | number} mode
*/
mkdirIfNonexistent(mode = 0o755) {
if (Config.nofswriting) return Promise.resolve();
return new Promise((resolve, reject) => {
// @ts-ignore
fs.mkdir(this.path, mode, err => {
if (err && err.code === 'EEXIST') return resolve();
err ? reject(err) : resolve();
});
});
}
/**
* @param {string | number} mode
*/
mkdirIfNonexistentSync(mode = 0o755) {
if (Config.nofswriting) return;
try {
// @ts-ignore
fs.mkdirSync(this.path, mode);
} catch (err) {
if (err.code !== 'EEXIST') throw err;
}
}
/**
* Creates the directory (and any parent directories if necessary).
* Does not throw if the directory already exists.
* @param {string | number} mode
*/
async mkdirp(mode = 0o755) {
try {
await this.mkdirIfNonexistent(mode);
} catch (err) {
if (err.code !== 'ENOENT') throw err;
await this.parentDir().mkdirp(mode);
await this.mkdirIfNonexistent(mode);
}
}
/**
* Creates the directory (and any parent directories if necessary).
* Does not throw if the directory already exists. Synchronous.
* @param {string | number} mode
*/
mkdirpSync(mode = 0o755) {
try {
this.mkdirIfNonexistentSync(mode);
} catch (err) {
if (err.code !== 'ENOENT') throw err;
this.parentDir().mkdirpSync(mode);
this.mkdirIfNonexistentSync(mode);
}
}
/**
* Calls the callback if the file is modified.
* @param {function (): void} callback
*/
onModify(callback) {
fs.watchFile(this.path, (curr, prev) => {
if (curr.mtime > prev.mtime) return callback();
});
}
/**
* Clears callbacks added with onModify()
*/
unwatch() {
fs.unwatchFile(this.path);
}
}
/**
* @param {string} path
*/
function getFs(path) {
return new FSPath(path);
}
const FS = Object.assign(getFs, {
/**
* @type {Map<string, [Promise, (() => string | Buffer)?, Object]>}
*/
pendingUpdates: new Map(),
});
module.exports = FS;