io.methvin.watcher.PathUtils Maven / Gradle / Ivy
/**
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.methvin.watcher;
import java.io.File;
import java.io.IOException;
import java.nio.file.Path;
import java.nio.file.WatchEvent;
import java.nio.file.WatchKey;
import java.util.Collections;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import java.util.concurrent.ConcurrentHashMap;
import com.google.common.base.Charsets;
import com.google.common.hash.HashCode;
import com.google.common.hash.HashFunction;
import com.google.common.hash.Hashing;
import com.google.common.io.Files;
public class PathUtils {
private final static HashFunction HASH_FUNCTION = Hashing.goodFastHash(64);
public static HashCode hash(Path file) {
try {
File f = file.toFile();
if (!f.isDirectory()) {
if (!f.exists()) {
return null;
}
return Files.asByteSource(file.toFile()).hash(HASH_FUNCTION);
} else {
return HASH_FUNCTION.newHasher().putString(file.toString(), Charsets.UTF_8).hash();
}
} catch (IOException e) {
}
return null;
}
public static Map createKeyRootsMap() {
return new ConcurrentHashMap();
}
public static Map createHashCodeMap(Path file) {
return createHashCodeMap(Collections.singletonList(file));
}
public static Map createHashCodeMap(List files) {
Map lastModifiedMap = new ConcurrentHashMap();
for (Path file : files) {
for (Path child : recursiveListFiles(file)) {
HashCode hash = hash(child);
if (hash != null) {
lastModifiedMap.put(child, hash);
}
}
}
return lastModifiedMap;
}
public static Set recursiveListFiles(Path file) {
Set files = new HashSet();
files.add(file);
if (file.toFile().isDirectory()) {
File[] filesInDirectory = file.toFile().listFiles();
if (filesInDirectory != null) {
for (File child : filesInDirectory) {
files.addAll(recursiveListFiles(child.toPath()));
}
}
}
return files;
}
@SuppressWarnings("unchecked")
public static WatchEvent cast(WatchEvent> event) {
return (WatchEvent) event;
}
}