
org.gradle.internal.vfs.DarwinFileWatcherRegistry Maven / Gradle / Ivy
/*
* Copyright 2019 the original author or authors.
*
* 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 org.gradle.internal.vfs;
import com.google.common.collect.ImmutableSet;
import net.rubygrapefruit.platform.Native;
import net.rubygrapefruit.platform.internal.jni.OsxFileEventFunctions;
import org.gradle.internal.vfs.impl.WatcherEvent;
import org.gradle.internal.vfs.watch.FileWatcherRegistry;
import org.gradle.internal.vfs.watch.FileWatcherRegistryFactory;
import org.gradle.internal.vfs.watch.WatchRootUtil;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.io.File;
import java.nio.file.Path;
import java.util.Collection;
import java.util.Set;
import java.util.concurrent.TimeUnit;
import java.util.function.Predicate;
import java.util.stream.Collectors;
public class DarwinFileWatcherRegistry extends AbstractEventDrivenFileWatcherRegistry {
private static final Logger LOGGER = LoggerFactory.getLogger(DarwinFileWatcherRegistry.class);
public DarwinFileWatcherRegistry(Set watchRoots) {
super(events -> Native.get(OsxFileEventFunctions.class)
.startWatching(
watchRoots.stream()
.map(Path::toString)
.collect(Collectors.toList()),
// TODO Figure out a good value for this
300, TimeUnit.MICROSECONDS,
(type, path) -> events.add(WatcherEvent.createEvent(type, path))
));
}
public static class Factory implements FileWatcherRegistryFactory {
@Override
public FileWatcherRegistry startWatching(SnapshotHierarchy snapshotHierarchy, Predicate watchFilter, Collection mustWatchDirectories) {
Set mustWatchDirectoryPrefixes = ImmutableSet.copyOf(
mustWatchDirectories.stream()
.map(path -> path.getAbsolutePath() + File.separator)
::iterator
);
Set directories = WatchRootUtil.resolveDirectoriesToWatch(
snapshotHierarchy,
path -> watchFilter.test(path) || startsWithAnyPrefix(path, mustWatchDirectoryPrefixes),
mustWatchDirectories);
Set watchRoots = WatchRootUtil.resolveRootsToWatch(directories);
LOGGER.warn("Watching {} directory hierarchies to track changes between builds in {} directories", watchRoots.size(), directories.size());
return new DarwinFileWatcherRegistry(watchRoots);
}
private static boolean startsWithAnyPrefix(String path, Set prefixes) {
for (String prefix : prefixes) {
if (path.startsWith(prefix)) {
return true;
}
}
return false;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy