-
Notifications
You must be signed in to change notification settings - Fork 12
/
PollingFileWatcher.hx
309 lines (256 loc) · 10.1 KB
/
PollingFileWatcher.hx
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
/*
* SPDX-FileCopyrightText: © Vegard IT GmbH (https://vegardit.com) and contributors
* SPDX-FileContributor: Sebastian Thomschke, Vegard IT GmbH
* SPDX-License-Identifier: Apache-2.0
*/
package hx.files.watcher;
import hx.concurrent.executor.Executor;
import hx.concurrent.lock.RLock;
import hx.files.watcher.FileWatcher;
import hx.strings.collection.SortedStringMap;
import hx.strings.collection.StringArray;
import hx.strings.collection.StringMap;
import hx.strings.internal.Either2;
#if (filesystem_support || macro)
class PollingFileWatcher extends AbstractFileWatcher {
final intervalMS:Int;
var scanTask:Null<TaskFuture<Void>>;
final watched = new StringMap<FSEntry>();
final watchedSync = new RLock();
/**
* @param executor the executor to be used for scheduling/executing the background polling task and for notifying subscribers of FileSystemEvents (optional, defaults to hx.concurrent.event.SyncEventDispatcher)
* @param intervalMS polling interval in milliseconds
*/
public function new(executor:Executor, intervalMS:Int, autostart = true) {
super(executor);
if (intervalMS < 1)
throw "[intervalMS] must be a positive value";
this.intervalMS = intervalMS;
if (autostart)
start();
}
override //
public function onStart():Void {
scanTask = executor.submit(this.scanAll, Schedule.FIXED_DELAY(intervalMS, 0));
}
override //
public function onStop():Void {
@:nullSafety(Off)
scanTask.cancel();
scanTask = null;
}
override //
public function watch(path:Either2<Path, String>):Void {
if (path == null)
throw "[path] must not be null";
final pathObj:Path = (switch(path.value) {
case a(obj): obj;
case b(str): Path.of(str);
}).normalize();
trace('[INFO] Watching [$pathObj]...');
watchedSync.execute(function() {
final pathStr = pathObj.toString();
if (watched.exists(pathStr))
return;
if (scanTask == null)
watched.set(pathStr, FSEntry.UNSCANNED(pathObj));
else
scanPath(FSEntry.UNSCANNED(pathObj));
});
}
override //
public function unwatch(path:Either2<Path, String>):Void {
if (path == null)
return;
watchedSync.execute(function() {
final pathStr = (
switch (path.value) {
case a(obj): obj;
case b(str): Path.of(str);
}
).normalize().toString();
trace('[INFO] Unwatching [$pathStr]...');
watched.remove(pathStr);
});
}
private function scanAll():Void {
final paths:StringArray = watchedSync.execute(() -> [ for (k in watched.keys()) k ]);
for (path in paths) {
watchedSync.execute(function() {
final fsEntry = watched.get(path);
if (fsEntry == null) // if null, then the path has been unwachted in the meantime
return;
scanPath(fsEntry);
});
}
}
private function compareFSEntry(old:FSEntry, now:FSEntry):Void {
switch(old:FSEntry) {
case DIR(dir, attrs, childrenOld):
switch(now) {
case DIR(_, attrsNow, childrenNow): {
if(!attrs.equals(attrsNow))
eventDispatcher.fire(FileSystemEvent.DIR_MODIFIED(dir, attrs, attrsNow));
for (childName => child in childrenOld) {
var childNow = childrenNow.get(childName);
if (childNow == null)
childNow = FSEntry.NONEXISTANT(null);
compareFSEntry(child, childNow);
}
for (childName => childNow in childrenOld) {
final child = childrenOld.get(childName);
if (child == null) {
compareFSEntry(FSEntry.NONEXISTANT(null), childNow);
}
}
}
case FILE(file, _):
eventDispatcher.fire(FileSystemEvent.DIR_DELETED(dir));
eventDispatcher.fire(FileSystemEvent.FILE_CREATED(file));
case NONEXISTANT(_) | UNKNOWN(_):
final deletedDirs:Array<Dir> = [ dir ];
// traverse the captured children of the deleted directory
// to fire deletion events
final work = [ childrenOld ];
var workItem:Null<SortedStringMap<FSEntry>>;
while ((workItem = work.pop()) != null) {
for (child in workItem) {
switch(child) {
case DIR(dir, attrsNow, children):
deletedDirs.push(dir);
work.push(children);
case FILE(file, _):
eventDispatcher.fire(FileSystemEvent.FILE_DELETED(file));
default:
// nothing to do
}
}
}
deletedDirs.reverse();
for(dir in deletedDirs)
eventDispatcher.fire(FileSystemEvent.DIR_DELETED(dir));
case UNSCANNED(_):
// nothing to do
}
case FILE(file, attrs):
switch(now) {
case DIR(dir, _, _):
eventDispatcher.fire(FileSystemEvent.FILE_DELETED(file));
compareFSEntry(FSEntry.NONEXISTANT(dir.path), now);
case FILE(_, attrsNow):
if (!attrs.equals(attrsNow)) {
eventDispatcher.fire(FileSystemEvent.FILE_MODIFIED(file, attrs, attrsNow));
}
case NONEXISTANT(_) | UNKNOWN(_):
eventDispatcher.fire(FileSystemEvent.FILE_DELETED(file));
case UNSCANNED(_):
// nothing to do
}
case NONEXISTANT(_) | UNKNOWN(_):
switch(now) {
case DIR(dir, _, childrenNow):
eventDispatcher.fire(FileSystemEvent.DIR_CREATED(dir));
final work = [ childrenNow ];
var workItem:Null<SortedStringMap<FSEntry>>;
while ((workItem = work.pop()) != null) {
for (child in workItem) {
switch(child) {
case DIR(dir, _, children):
eventDispatcher.fire(FileSystemEvent.DIR_CREATED(dir));
work.push(children);
case FILE(file, _):
eventDispatcher.fire(FileSystemEvent.FILE_CREATED(file));
default:
// nothing to do
}
}
}
case FILE(file, _):
eventDispatcher.fire(FileSystemEvent.FILE_CREATED(file));
default:
// nothing to do
}
case UNSCANNED(_):
// nothing to do
}
}
private function scanPath(fsEntry:FSEntry):Void {
switch(fsEntry) {
case DIR(dir, attrs, children): {
final fsEntryNow = createFSEntry_DIR(dir);
compareFSEntry(fsEntry, fsEntryNow);
watched.set(dir.path.toString(), fsEntryNow);
}
case FILE(file, attrs): {
final fsEntryNow = createFSEntry_FILE(file);
compareFSEntry(fsEntry, fsEntryNow);
watched.set(file.path.toString(), fsEntryNow);
}
case NONEXISTANT(path): {
if (path == null || !path.exists())
return;
if (path.isDirectory()) {
final fsEntryNow = createFSEntry_DIR(path.toDir());
compareFSEntry(fsEntry, fsEntryNow);
watched.set(path.toString(), fsEntryNow);
} else if (path.isFile()) {
final fsEntryNow = createFSEntry_FILE(path.toFile());
compareFSEntry(fsEntry, fsEntryNow);
watched.set(path.toString(), fsEntryNow);
} else {
trace('[WARN] Filesystem object at [$path] is of unknown type.');
}
}
case UNSCANNED(path): {
if (!path.exists()) {
watched.set(path.toString(), FSEntry.NONEXISTANT(path));
return;
}
if (path.isDirectory()) {
watched.set(path.toString(), createFSEntry_DIR(path.toDir()));
} else if (path.isFile()) {
watched.set(path.toString(), createFSEntry_FILE(path.toFile()));
} else {
watched.set(path.toString(), FSEntry.UNKNOWN(path));
}
}
case UNKNOWN(path): {
if (!path.exists()) {
watched.set(path.toString(), FSEntry.NONEXISTANT(path));
return;
}
scanPath(FSEntry.NONEXISTANT(path));
}
}
}
private function createFSEntry_DIR(dir:Dir):FSEntry {
if (!dir.path.exists())
return FSEntry.NONEXISTANT(dir.path);
final children = new SortedStringMap<FSEntry>();
for (path in dir.list()) {
if (path.isDirectory()) {
children.set(path.filename, createFSEntry_DIR(path.toDir()));
} else if (path.isFile()) {
children.set(path.filename, createFSEntry_FILE(path.toFile()));
} else {
trace('[WARN] Filesystem object at [$path] is of unknown type.');
}
}
return dir.path.exists() // check if dir was deleted meanwhile
? FSEntry.DIR(dir, DirAttrs.fromDir(dir), children)
: FSEntry.NONEXISTANT(dir.path);
}
inline //
private function createFSEntry_FILE(file:File):FSEntry
return file.path.exists()
? FSEntry.FILE(file, FileAttrs.fromFile(file))
: FSEntry.NONEXISTANT(file.path);
}
private enum FSEntry {
DIR(dir:Dir, attrs:DirAttrs, children:SortedStringMap<FSEntry>);
FILE(file:File, attrs:FileAttrs);
NONEXISTANT(?path:Path);
UNSCANNED(path:Path);
UNKNOWN(path:Path);
}
#end //filesystem_support