Skip to content

takari/directory-watcher

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Directory Watcher

DEPRECATED: use https://github.com/gmethvin/directory-watcher

A recursive directory watcher with a native OSX implementation of the WatchService.

package io.takari.watchservice;

import java.io.IOException;
import java.nio.file.Path;

import io.takari.watcher.DirectoryChangeListener;
import io.takari.watcher.DirectoryWatcher;

public class DirectoryWatchingUtility {

  private final Path pathToWatch;

  public DirectoryWatchingUtility(Path directoryToWatch) {
    this.directoryToWatch = directoryToWatch;
  }

  public void watch() throws Exception {
    DirectoryWatcher watcher = DirectoryWatcher.builder()
      .directory(directoryToWatch)
      .listener(new DirectoryChangeListener() {

      @Override
      public void onCreate(Path path) throws IOException {
        // process create
      }

      @Override
      public void onModify(Path path) throws IOException {
        // process modifiy
      }

      @Override
      public void onDelete(Path path) throws IOException {
        // process delete
      }
    }).build();
    watcher.watch();
  }
}

Implementation Differences

The implementations of the OSX and JDK version of the WatchService, and the resulting event loop processing, are slightly different. The OSX implementation uses the Carbon File System Events API and only one WatchKey is created for a whole directory structure being watched and the path returned in the WatchEvent context is fully resolved. In the JDK implementation the path returned by the WatchEvent must be resolved against the WatchKey taken from the WatchService. It's likely not hard to make the OSX implementation exhibit the same behaviour so that the event processing loop can be identical. Right now you'll see there is an OSX specific event processing loop and a JDK specific event processing loop.

Other Known Implementations

About

No description, website, or topics provided.

Resources

License

Apache-2.0, Unknown licenses found

Licenses found

Apache-2.0
LICENSE
Unknown
LICENSE-HEADER.txt

Stars

Watchers

Forks

Packages

No packages published

Languages