org.gradle.internal.vfs.WindowsFileWatcherRegistry Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gradle-api Show documentation
Show all versions of gradle-api Show documentation
Gradle 6.9.1 API redistribution.
/*
* 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 net.rubygrapefruit.platform.Native;
import net.rubygrapefruit.platform.internal.jni.WindowsFileEventFunctions;
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.function.Predicate;
import java.util.stream.Collectors;
public class WindowsFileWatcherRegistry extends AbstractEventDrivenFileWatcherRegistry {
private static final Logger LOGGER = LoggerFactory.getLogger(WindowsFileWatcherRegistry.class);
public WindowsFileWatcherRegistry(Set watchRoots) {
super(events -> Native.get(WindowsFileEventFunctions.class)
.startWatching(
watchRoots.stream()
.map(Path::toString)
.collect(Collectors.toList()),
(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 directories = WatchRootUtil.resolveDirectoriesToWatch(snapshotHierarchy, watchFilter, mustWatchDirectories);
Set watchRoots = WatchRootUtil.resolveRootsToWatch(directories);
LOGGER.warn("Watching {} directory hierarchies to track changes between builds in {} directories", watchRoots.size(), directories.size());
return new WindowsFileWatcherRegistry(watchRoots);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy