File size: 15,381 Bytes
5c2ed06
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
"use strict";
var __create = Object.create;
var __defProp = Object.defineProperty;
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
var __getOwnPropNames = Object.getOwnPropertyNames;
var __getProtoOf = Object.getPrototypeOf;
var __hasOwnProp = Object.prototype.hasOwnProperty;
var __export = (target, all) => {
  for (var name in all)
    __defProp(target, name, { get: all[name], enumerable: true });
};
var __copyProps = (to, from, except, desc) => {
  if (from && typeof from === "object" || typeof from === "function") {
    for (let key of __getOwnPropNames(from))
      if (!__hasOwnProp.call(to, key) && key !== except)
        __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
  }
  return to;
};
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
  // If the importer is in node compatibility mode or this is not an ESM
  // file that has been converted to a CommonJS file using a Babel-
  // compatible transform (i.e. "__esModule" has not been set), then set
  // "default" to the CommonJS "module.exports" for node compatibility.
  isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
  mod
));
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
var fs_exports = {};
__export(fs_exports, {
  FS: () => FS,
  FSPath: () => FSPath
});
module.exports = __toCommonJS(fs_exports);
var fs = __toESM(require("fs"));
var pathModule = __toESM(require("path"));
var import_streams = require("./streams");
/**
 * 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
 *
 * @author Guangcong Luo <guangcongluo@gmail.com>
 * @license MIT
 */
const DIST = `${pathModule.sep}dist${pathModule.sep}`;
const ROOT_PATH = pathModule.resolve(__dirname, __dirname.includes(DIST) ? ".." : "", "..");
if (!global.__fsState) {
  global.__fsState = {
    pendingUpdates: /* @__PURE__ */ new Map()
  };
}
class FSPath {
  constructor(path) {
    this.path = pathModule.resolve(ROOT_PATH, path);
  }
  parentDir() {
    return new FSPath(pathModule.dirname(this.path));
  }
  read(options = "utf8") {
    if (typeof options !== "string" && options.encoding === void 0) {
      options.encoding = "utf8";
    }
    return new Promise((resolve, reject) => {
      fs.readFile(this.path, options, (err, data) => {
        err ? reject(err) : resolve(data);
      });
    });
  }
  readSync(options = "utf8") {
    if (typeof options !== "string" && options.encoding === void 0) {
      options.encoding = "utf8";
    }
    return fs.readFileSync(this.path, options);
  }
  readBuffer(options = {}) {
    return new Promise((resolve, reject) => {
      fs.readFile(this.path, options, (err, data) => {
        err ? reject(err) : resolve(data);
      });
    });
  }
  readBufferSync(options = {}) {
    return fs.readFileSync(this.path, options);
  }
  exists() {
    return new Promise((resolve) => {
      fs.exists(this.path, (exists) => {
        resolve(exists);
      });
    });
  }
  existsSync() {
    return fs.existsSync(this.path);
  }
  readIfExists() {
    return new Promise((resolve, reject) => {
      fs.readFile(this.path, "utf8", (err, data) => {
        if (err && err.code === "ENOENT")
          return resolve("");
        err ? reject(err) : resolve(data);
      });
    });
  }
  readIfExistsSync() {
    try {
      return fs.readFileSync(this.path, "utf8");
    } catch (err) {
      if (err.code !== "ENOENT")
        throw err;
    }
    return "";
  }
  write(data, options = {}) {
    if (global.Config?.nofswriting)
      return Promise.resolve();
    return new Promise((resolve, reject) => {
      fs.writeFile(this.path, data, options, (err) => {
        err ? reject(err) : resolve();
      });
    });
  }
  writeSync(data, options = {}) {
    if (global.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.
   */
  async safeWrite(data, options = {}) {
    await FS(this.path + ".NEW").write(data, options);
    await FS(this.path + ".NEW").rename(this.path);
  }
  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`.
   */
  writeUpdate(dataFetcher, options = {}) {
    if (global.Config?.nofswriting)
      return;
    const pendingUpdate = __fsState.pendingUpdates.get(this.path);
    const throttleTime = options.throttle ? Date.now() + options.throttle : 0;
    if (pendingUpdate) {
      pendingUpdate.pendingDataFetcher = dataFetcher;
      pendingUpdate.pendingOptions = options;
      if (pendingUpdate.throttleTimer && throttleTime < pendingUpdate.throttleTime) {
        pendingUpdate.throttleTime = throttleTime;
        clearTimeout(pendingUpdate.throttleTimer);
        pendingUpdate.throttleTimer = setTimeout(() => this.checkNextUpdate(), throttleTime - Date.now());
      }
      return;
    }
    if (!throttleTime) {
      this.writeUpdateNow(dataFetcher, options);
      return;
    }
    const update = {
      isWriting: false,
      pendingDataFetcher: dataFetcher,
      pendingOptions: options,
      throttleTime,
      throttleTimer: setTimeout(() => this.checkNextUpdate(), throttleTime - Date.now())
    };
    __fsState.pendingUpdates.set(this.path, update);
  }
  writeUpdateNow(dataFetcher, options) {
    const throttleTime = options.throttle ? Date.now() + options.throttle : 0;
    const update = {
      isWriting: true,
      pendingDataFetcher: null,
      pendingOptions: null,
      throttleTime,
      throttleTimer: null
    };
    __fsState.pendingUpdates.set(this.path, update);
    void this.safeWrite(dataFetcher(), options).then(() => this.finishUpdate());
  }
  checkNextUpdate() {
    const pendingUpdate = __fsState.pendingUpdates.get(this.path);
    if (!pendingUpdate)
      throw new Error(`FS: Pending update not found`);
    if (pendingUpdate.isWriting)
      throw new Error(`FS: Conflicting update`);
    const { pendingDataFetcher: dataFetcher, pendingOptions: options } = pendingUpdate;
    if (!dataFetcher || !options) {
      __fsState.pendingUpdates.delete(this.path);
      return;
    }
    this.writeUpdateNow(dataFetcher, options);
  }
  finishUpdate() {
    const pendingUpdate = __fsState.pendingUpdates.get(this.path);
    if (!pendingUpdate)
      throw new Error(`FS: Pending update not found`);
    if (!pendingUpdate.isWriting)
      throw new Error(`FS: Conflicting update`);
    pendingUpdate.isWriting = false;
    const throttleTime = pendingUpdate.throttleTime;
    if (!throttleTime || throttleTime < Date.now()) {
      this.checkNextUpdate();
      return;
    }
    pendingUpdate.throttleTimer = setTimeout(() => this.checkNextUpdate(), throttleTime - Date.now());
  }
  append(data, options = {}) {
    if (global.Config?.nofswriting)
      return Promise.resolve();
    return new Promise((resolve, reject) => {
      fs.appendFile(this.path, data, options, (err) => {
        err ? reject(err) : resolve();
      });
    });
  }
  appendSync(data, options = {}) {
    if (global.Config?.nofswriting)
      return;
    return fs.appendFileSync(this.path, data, options);
  }
  symlinkTo(target) {
    if (global.Config?.nofswriting)
      return Promise.resolve();
    return new Promise((resolve, reject) => {
      fs.symlink(target, this.path, (err) => {
        err ? reject(err) : resolve();
      });
    });
  }
  symlinkToSync(target) {
    if (global.Config?.nofswriting)
      return;
    return fs.symlinkSync(target, this.path);
  }
  copyFile(dest) {
    if (global.Config?.nofswriting)
      return Promise.resolve();
    return new Promise((resolve, reject) => {
      fs.copyFile(this.path, dest, (err) => {
        err ? reject(err) : resolve();
      });
    });
  }
  rename(target) {
    if (global.Config?.nofswriting)
      return Promise.resolve();
    return new Promise((resolve, reject) => {
      fs.rename(this.path, target, (err) => {
        err ? reject(err) : resolve();
      });
    });
  }
  renameSync(target) {
    if (global.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);
  }
  async readdirIfExists() {
    if (await this.exists())
      return this.readdir();
    return Promise.resolve([]);
  }
  readdirIfExistsSync() {
    if (this.existsSync())
      return this.readdirSync();
    return [];
  }
  createReadStream() {
    return new FileReadStream(this.path);
  }
  createWriteStream(options = {}) {
    if (global.Config?.nofswriting) {
      return new import_streams.WriteStream({ write() {
      } });
    }
    return new import_streams.WriteStream(fs.createWriteStream(this.path, options));
  }
  createAppendStream(options = {}) {
    if (global.Config?.nofswriting) {
      return new import_streams.WriteStream({ write() {
      } });
    }
    options.flags = options.flags || "a";
    return new import_streams.WriteStream(fs.createWriteStream(this.path, options));
  }
  unlinkIfExists() {
    if (global.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 (global.Config?.nofswriting)
      return;
    try {
      fs.unlinkSync(this.path);
    } catch (err) {
      if (err.code !== "ENOENT")
        throw err;
    }
  }
  async rmdir(recursive) {
    if (global.Config?.nofswriting)
      return Promise.resolve();
    return new Promise((resolve, reject) => {
      fs.rmdir(this.path, { recursive }, (err) => {
        err ? reject(err) : resolve();
      });
    });
  }
  rmdirSync(recursive) {
    if (global.Config?.nofswriting)
      return;
    return fs.rmdirSync(this.path, { recursive });
  }
  mkdir(mode = 493) {
    if (global.Config?.nofswriting)
      return Promise.resolve();
    return new Promise((resolve, reject) => {
      fs.mkdir(this.path, mode, (err) => {
        err ? reject(err) : resolve();
      });
    });
  }
  mkdirSync(mode = 493) {
    if (global.Config?.nofswriting)
      return;
    return fs.mkdirSync(this.path, mode);
  }
  mkdirIfNonexistent(mode = 493) {
    if (global.Config?.nofswriting)
      return Promise.resolve();
    return new Promise((resolve, reject) => {
      fs.mkdir(this.path, mode, (err) => {
        if (err && err.code === "EEXIST")
          return resolve();
        err ? reject(err) : resolve();
      });
    });
  }
  mkdirIfNonexistentSync(mode = 493) {
    if (global.Config?.nofswriting)
      return;
    try {
      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.
   */
  async mkdirp(mode = 493) {
    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.
   */
  mkdirpSync(mode = 493) {
    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. */
  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);
  }
  async isFile() {
    return new Promise((resolve, reject) => {
      fs.stat(this.path, (err, stats) => {
        err ? reject(err) : resolve(stats.isFile());
      });
    });
  }
  isFileSync() {
    return fs.statSync(this.path).isFile();
  }
  async isDirectory() {
    return new Promise((resolve, reject) => {
      fs.stat(this.path, (err, stats) => {
        err ? reject(err) : resolve(stats.isDirectory());
      });
    });
  }
  isDirectorySync() {
    return fs.statSync(this.path).isDirectory();
  }
  async realpath() {
    return new Promise((resolve, reject) => {
      fs.realpath(this.path, (err, path) => {
        err ? reject(err) : resolve(path);
      });
    });
  }
  realpathSync() {
    return fs.realpathSync(this.path);
  }
}
class FileReadStream extends import_streams.ReadStream {
  constructor(file) {
    super();
    this.fd = new Promise((resolve, reject) => {
      fs.open(file, "r", (err, fd) => err ? reject(err) : resolve(fd));
    });
    this.atEOF = false;
  }
  _read(size = 16384) {
    return new Promise((resolve, reject) => {
      if (this.atEOF)
        return void resolve();
      this.ensureCapacity(size);
      void this.fd.then((fd) => {
        fs.read(fd, this.buf, this.bufEnd, size, null, (err, bytesRead, buf) => {
          if (err)
            return reject(err);
          if (!bytesRead) {
            this.atEOF = true;
            this.resolvePush();
            return resolve();
          }
          this.bufEnd += bytesRead;
          this.resolvePush();
          resolve();
        });
      });
    });
  }
  _destroy() {
    return new Promise((resolve) => {
      void this.fd.then((fd) => {
        fs.close(fd, () => resolve());
      });
    });
  }
}
function getFs(path) {
  return new FSPath(path);
}
const FS = Object.assign(getFs, {
  FileReadStream,
  FSPath,
  ROOT_PATH
});
//# sourceMappingURL=fs.js.map