deno.land / std@0.166.0 / node / _fs / _fs_watch.ts

نووسراو ببینە
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
// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.import { basename } from "../path.ts";import { EventEmitter } from "../events.ts";import { notImplemented } from "../_utils.ts";import { promisify } from "../util.ts";import { getValidatedPath } from "../internal/fs/utils.mjs";import { validateFunction } from "../internal/validators.mjs";import { stat, Stats } from "./_fs_stat.ts";import { Stats as StatsClass } from "../internal/fs/utils.mjs";import { Buffer } from "../buffer.ts";import { delay } from "../../async/delay.ts";
const statPromisified = promisify(stat);const statAsync = async (filename: string): Promise<Stats | null> => { try { return await statPromisified(filename); } catch { return emptyStats; }};const emptyStats = new StatsClass( 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, Date.UTC(1970, 0, 1, 0, 0, 0), Date.UTC(1970, 0, 1, 0, 0, 0), Date.UTC(1970, 0, 1, 0, 0, 0), Date.UTC(1970, 0, 1, 0, 0, 0),) as unknown as Stats;
export function asyncIterableIteratorToCallback<T>( iterator: AsyncIterableIterator<T>, callback: (val: T, done?: boolean) => void,) { function next() { iterator.next().then((obj) => { if (obj.done) { callback(obj.value, true); return; } callback(obj.value); next(); }); } next();}
export function asyncIterableToCallback<T>( iter: AsyncIterable<T>, callback: (val: T, done?: boolean) => void, errCallback: (e: unknown) => void,) { const iterator = iter[Symbol.asyncIterator](); function next() { iterator.next().then((obj) => { if (obj.done) { callback(obj.value, true); return; } callback(obj.value); next(); }, errCallback); } next();}
type watchOptions = { persistent?: boolean; recursive?: boolean; encoding?: string;};
type watchListener = (eventType: string, filename: string) => void;
export function watch( filename: string | URL, options: watchOptions, listener: watchListener,): FSWatcher;export function watch( filename: string | URL, listener: watchListener,): FSWatcher;export function watch( filename: string | URL, options: watchOptions,): FSWatcher;export function watch(filename: string | URL): FSWatcher;export function watch( filename: string | URL, optionsOrListener?: watchOptions | watchListener, optionsOrListener2?: watchOptions | watchListener,) { const listener = typeof optionsOrListener === "function" ? optionsOrListener : typeof optionsOrListener2 === "function" ? optionsOrListener2 : undefined; const options = typeof optionsOrListener === "object" ? optionsOrListener : typeof optionsOrListener2 === "object" ? optionsOrListener2 : undefined;
const watchPath = getValidatedPath(filename).toString();
let iterator: Deno.FsWatcher; // Start the actual watcher a few msec later to avoid race condition // error in test case in compat test case // (parallel/test-fs-watch.js, parallel/test-fs-watchfile.js) const timer = setTimeout(() => { iterator = Deno.watchFs(watchPath, { recursive: options?.recursive || false, });
asyncIterableToCallback<Deno.FsEvent>(iterator, (val, done) => { if (done) return; fsWatcher.emit( "change", convertDenoFsEventToNodeFsEvent(val.kind), basename(val.paths[0]), ); }, (e) => { fsWatcher.emit("error", e); }); }, 5);
const fsWatcher = new FSWatcher(() => { clearTimeout(timer); try { iterator?.close(); } catch (e) { if (e instanceof Deno.errors.BadResource) { // already closed return; } throw e; } });
if (listener) { fsWatcher.on("change", listener.bind({ _handle: fsWatcher })); }
return fsWatcher;}
export const watchPromise = promisify(watch) as ( & (( filename: string | URL, options: watchOptions, listener: watchListener, ) => Promise<FSWatcher>) & (( filename: string | URL, listener: watchListener, ) => Promise<FSWatcher>) & (( filename: string | URL, options: watchOptions, ) => Promise<FSWatcher>) & ((filename: string | URL) => Promise<FSWatcher>));
type WatchFileListener = (curr: Stats, prev: Stats) => void;type WatchFileOptions = { bigint?: boolean; persistent?: boolean; interval?: number;};
export function watchFile( filename: string | Buffer | URL, listener: WatchFileListener,): StatWatcher;export function watchFile( filename: string | Buffer | URL, options: WatchFileOptions, listener: WatchFileListener,): StatWatcher;export function watchFile( filename: string | Buffer | URL, listenerOrOptions: WatchFileListener | WatchFileOptions, listener?: WatchFileListener,): StatWatcher { const watchPath = getValidatedPath(filename).toString(); const handler = typeof listenerOrOptions === "function" ? listenerOrOptions : listener!; validateFunction(handler, "listener"); const { bigint = false, persistent = true, interval = 5007, } = typeof listenerOrOptions === "object" ? listenerOrOptions : {};
let stat = statWatchers.get(watchPath); if (stat === undefined) { stat = new StatWatcher(bigint); stat[kFSStatWatcherStart](watchPath, persistent, interval); statWatchers.set(watchPath, stat); }
stat.addListener("change", listener!); return stat;}
export function unwatchFile( filename: string | Buffer | URL, listener?: WatchFileListener,) { const watchPath = getValidatedPath(filename).toString(); const stat = statWatchers.get(watchPath);
if (!stat) { return; }
if (typeof listener === "function") { const beforeListenerCount = stat.listenerCount("change"); stat.removeListener("change", listener); if (stat.listenerCount("change") < beforeListenerCount) { stat[kFSStatWatcherAddOrCleanRef]("clean"); } } else { stat.removeAllListeners("change"); stat[kFSStatWatcherAddOrCleanRef]("cleanAll"); }
if (stat.listenerCount("change") === 0) { stat.stop(); statWatchers.delete(watchPath); }}
const statWatchers = new Map<string, StatWatcher>();
const kFSStatWatcherStart = Symbol("kFSStatWatcherStart");const kFSStatWatcherAddOrCleanRef = Symbol("kFSStatWatcherAddOrCleanRef");
class StatWatcher extends EventEmitter { #bigint: boolean; #refCount = 0; #abortController = new AbortController(); constructor(bigint: boolean) { super(); this.#bigint = bigint; } [kFSStatWatcherStart]( filename: string, persistent: boolean, interval: number, ) { if (persistent) { this.#refCount++; }
(async () => { let prev = await statAsync(filename);
if (prev === emptyStats) { this.emit("change", prev, prev); }
try { while (true) { await delay(interval, { signal: this.#abortController.signal }); const curr = await statAsync(filename); if (curr?.mtime !== prev?.mtime) { this.emit("change", curr, prev); prev = curr; } } } catch (e) { if (e instanceof DOMException && e.name === "AbortError") { return; } this.emit("error", e); } })(); } [kFSStatWatcherAddOrCleanRef](addOrClean: "add" | "clean" | "cleanAll") { if (addOrClean === "add") { this.#refCount++; } else if (addOrClean === "clean") { this.#refCount--; } else { this.#refCount = 0; } } stop() { if (this.#abortController.signal.aborted) { return; } this.#abortController.abort(); this.emit("stop"); } ref() { notImplemented("FSWatcher.ref() is not implemented"); } unref() { notImplemented("FSWatcher.unref() is not implemented"); }}
class FSWatcher extends EventEmitter { #closer: () => void; #closed = false; constructor(closer: () => void) { super(); this.#closer = closer; } close() { if (this.#closed) { return; } this.#closed = true; this.emit("close"); this.#closer(); } ref() { notImplemented("FSWatcher.ref() is not implemented"); } unref() { notImplemented("FSWatcher.unref() is not implemented"); }}
type NodeFsEventType = "rename" | "change";
function convertDenoFsEventToNodeFsEvent( kind: Deno.FsEvent["kind"],): NodeFsEventType { if (kind === "create" || kind === "remove") { return "rename"; } else { return "change"; }}
std

Version Info

Tagged at
a year ago