29
29
import java .nio .file .DirectoryIteratorException ;
30
30
import java .nio .file .DirectoryStream ;
31
31
import java .nio .file .Files ;
32
- import java .nio .file .LinkOption ;
33
32
import java .nio .file .NotDirectoryException ;
34
33
import java .nio .file .Path ;
35
34
import java .nio .file .StandardWatchEventKinds ;
36
35
import java .nio .file .WatchEvent ;
37
36
import java .nio .file .WatchKey ;
38
37
import java .nio .file .attribute .BasicFileAttributes ;
38
+ import java .nio .file .attribute .FileTime ;
39
39
import java .security .AccessController ;
40
40
import java .security .PrivilegedAction ;
41
41
import java .security .PrivilegedExceptionAction ;
51
51
import java .util .concurrent .ScheduledFuture ;
52
52
import java .util .concurrent .ThreadFactory ;
53
53
import java .util .concurrent .TimeUnit ;
54
+ import static java .nio .file .LinkOption .NOFOLLOW_LINKS ;
54
55
55
56
/**
56
57
* Simple WatchService implementation that uses periodic tasks to poll
@@ -220,10 +221,10 @@ public Void run() {
220
221
* Entry in directory cache to record file last-modified-time and tick-count
221
222
*/
222
223
private static class CacheEntry {
223
- private long lastModified ;
224
+ private FileTime lastModified ;
224
225
private int lastTickCount ;
225
226
226
- CacheEntry (long lastModified , int lastTickCount ) {
227
+ CacheEntry (FileTime lastModified , int lastTickCount ) {
227
228
this .lastModified = lastModified ;
228
229
this .lastTickCount = lastTickCount ;
229
230
}
@@ -232,11 +233,11 @@ int lastTickCount() {
232
233
return lastTickCount ;
233
234
}
234
235
235
- long lastModified () {
236
+ FileTime lastModified () {
236
237
return lastModified ;
237
238
}
238
239
239
- void update (long lastModified , int tickCount ) {
240
+ void update (FileTime lastModified , int tickCount ) {
240
241
this .lastModified = lastModified ;
241
242
this .lastTickCount = tickCount ;
242
243
}
@@ -278,8 +279,7 @@ private class PollingWatchKey extends AbstractWatchKey {
278
279
try (DirectoryStream <Path > stream = Files .newDirectoryStream (dir )) {
279
280
for (Path entry : stream ) {
280
281
// don't follow links
281
- long lastModified =
282
- Files .getLastModifiedTime (entry , LinkOption .NOFOLLOW_LINKS ).toMillis ();
282
+ FileTime lastModified = Files .getLastModifiedTime (entry , NOFOLLOW_LINKS );
283
283
entries .put (entry .getFileName (), new CacheEntry (lastModified , tickCount ));
284
284
}
285
285
} catch (DirectoryIteratorException e ) {
@@ -356,10 +356,9 @@ synchronized void poll() {
356
356
// iterate over all entries in directory
357
357
try {
358
358
for (Path entry : stream ) {
359
- long lastModified = 0L ;
359
+ FileTime lastModified ;
360
360
try {
361
- lastModified =
362
- Files .getLastModifiedTime (entry , LinkOption .NOFOLLOW_LINKS ).toMillis ();
361
+ lastModified = Files .getLastModifiedTime (entry , NOFOLLOW_LINKS );
363
362
} catch (IOException x ) {
364
363
// unable to get attributes of entry. If file has just
365
364
// been deleted then we'll report it as deleted on the
@@ -371,8 +370,7 @@ synchronized void poll() {
371
370
CacheEntry e = entries .get (entry .getFileName ());
372
371
if (e == null ) {
373
372
// new file found
374
- entries .put (entry .getFileName (),
375
- new CacheEntry (lastModified , tickCount ));
373
+ entries .put (entry .getFileName (), new CacheEntry (lastModified , tickCount ));
376
374
377
375
// queue ENTRY_CREATE if event enabled
378
376
if (events .contains (StandardWatchEventKinds .ENTRY_CREATE )) {
@@ -391,7 +389,7 @@ synchronized void poll() {
391
389
}
392
390
393
391
// check if file has changed
394
- if (e .lastModified != lastModified ) {
392
+ if (! e .lastModified (). equals ( lastModified ) ) {
395
393
if (events .contains (StandardWatchEventKinds .ENTRY_MODIFY )) {
396
394
signalEvent (StandardWatchEventKinds .ENTRY_MODIFY ,
397
395
entry .getFileName ());
0 commit comments