Created
April 27, 2012 11:02
-
-
Save taichi/2508403 to your computer and use it in GitHub Desktop.
example of java.nio.file.WatchService
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package sandbox; | |
import static java.nio.file.StandardWatchEventKinds.ENTRY_CREATE; | |
import static java.nio.file.StandardWatchEventKinds.ENTRY_DELETE; | |
import static java.nio.file.StandardWatchEventKinds.ENTRY_MODIFY; | |
import java.io.IOException; | |
import java.nio.file.ClosedWatchServiceException; | |
import java.nio.file.FileSystem; | |
import java.nio.file.FileSystems; | |
import java.nio.file.FileVisitResult; | |
import java.nio.file.Files; | |
import java.nio.file.LinkOption; | |
import java.nio.file.Path; | |
import java.nio.file.SimpleFileVisitor; | |
import java.nio.file.StandardWatchEventKinds; | |
import java.nio.file.WatchEvent; | |
import java.nio.file.WatchKey; | |
import java.nio.file.WatchService; | |
import java.nio.file.attribute.BasicFileAttributes; | |
import java.util.Map; | |
import java.util.concurrent.ConcurrentHashMap; | |
import java.util.concurrent.ExecutorService; | |
import java.util.concurrent.Executors; | |
import java.util.concurrent.TimeUnit; | |
public class Watcher { | |
public static void main(String[] args) throws Exception { | |
ExecutorService service = Executors.newCachedThreadPool(); | |
final FileSystem fs = FileSystems.getDefault(); | |
final WatchService ws = fs.newWatchService(); | |
final Map<WatchKey, Path> keys = new ConcurrentHashMap<>(); | |
reg(fs.getPath("build/classes"), keys, ws); | |
reg(fs.getPath("build/libs"), keys, ws); | |
service.submit(new Runnable() { | |
@Override | |
public void run() { | |
System.out.println("START"); | |
while (Thread.interrupted() == false) { | |
WatchKey key; | |
try { | |
key = ws.poll(10, TimeUnit.MILLISECONDS); | |
} catch (InterruptedException | ClosedWatchServiceException e) { | |
break; | |
} | |
if (key != null) { | |
Path path = keys.get(key); | |
for (WatchEvent<?> i : key.pollEvents()) { | |
WatchEvent<Path> event = cast(i); | |
WatchEvent.Kind<Path> kind = event.kind(); | |
Path name = event.context(); | |
Path child = path.resolve(name); | |
System.out.printf("%s: %s %s%n", kind.name(), path, | |
child); | |
if (kind == StandardWatchEventKinds.ENTRY_CREATE) { | |
if (Files.isDirectory(child, | |
LinkOption.NOFOLLOW_LINKS)) { | |
try { | |
walk(child, keys, ws); | |
} catch (IOException e) { | |
e.printStackTrace(); | |
} | |
} | |
} | |
} | |
if (key.reset() == false) { | |
System.out.printf("%s is invalid %n", key); | |
keys.remove(key); | |
if (keys.isEmpty()) { | |
break; | |
} | |
} | |
} | |
} | |
System.out.println("END"); | |
} | |
}); | |
while (true) { | |
Path p = fs.getPath("build/end"); | |
if (Files.isReadable(p)) { | |
ws.close(); | |
service.shutdownNow(); | |
break; | |
} | |
} | |
} | |
static void walk(Path root, final Map<WatchKey, Path> keys, | |
final WatchService ws) throws IOException { | |
Files.walkFileTree(root, new SimpleFileVisitor<Path>() { | |
@Override | |
public FileVisitResult preVisitDirectory(Path dir, | |
BasicFileAttributes attrs) throws IOException { | |
reg(dir, keys, ws); | |
return super.preVisitDirectory(dir, attrs); | |
} | |
}); | |
} | |
static void reg(Path dir, Map<WatchKey, Path> keys, WatchService ws) | |
throws IOException { | |
WatchKey key = dir.register(ws, ENTRY_CREATE, ENTRY_DELETE, | |
ENTRY_MODIFY); | |
keys.put(key, dir); | |
} | |
@SuppressWarnings("unchecked") | |
static <T> WatchEvent<T> cast(WatchEvent<?> event) { | |
return (WatchEvent<T>) event; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
please provide main method..