org.gradle.internal.cleanup.DefaultBuildOutputCleanupRegistry 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 2016 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.cleanup;
import org.gradle.api.GradleException;
import org.gradle.api.file.FileCollection;
import org.gradle.api.internal.file.FileCollectionFactory;
import org.gradle.api.internal.project.HoldsProjectState;
import org.gradle.internal.execution.BuildOutputCleanupRegistry;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.io.File;
import java.util.HashSet;
import java.util.LinkedHashSet;
import java.util.Set;
public class DefaultBuildOutputCleanupRegistry implements BuildOutputCleanupRegistry, HoldsProjectState {
private static final Logger LOGGER = LoggerFactory.getLogger(DefaultBuildOutputCleanupRegistry.class);
private final Object lock = new Object();
private final FileCollectionFactory fileCollectionFactory;
private final Set outputs = new HashSet<>();
private Set resolvedPaths;
public DefaultBuildOutputCleanupRegistry(FileCollectionFactory fileCollectionFactory) {
this.fileCollectionFactory = fileCollectionFactory;
}
@Override
public void registerOutputs(Object files) {
synchronized (lock) {
if (resolvedPaths != null) {
// Some tasks cannot declare the dependencies on other projects, yet, for example the dependencies task.
// When configure on demand is enabled, those other projects are realized at execution time, long after the BuildOutputRegistry
// has been finalized. We ignore those problems for now, until the dependencies can be declared properly.
// See https://github.com/gradle/gradle/issues/18460.
LOGGER.debug("More outputs are being registered even though the build output cleanup registry has already been finalized. New outputs: {}", files);
} else {
this.outputs.add(fileCollectionFactory.resolving(files));
}
}
}
@Override
public boolean isOutputOwnedByBuild(File file) {
Set safeToDelete = getResolvedPaths();
File absoluteFile = file.getAbsoluteFile();
while (absoluteFile != null) {
if (safeToDelete.contains(absoluteFile.getPath())) {
return true;
}
absoluteFile = absoluteFile.getParentFile();
}
return false;
}
@Override
public void resolveOutputs() {
if (resolvedPaths == null) {
Set result = new LinkedHashSet<>();
for (FileCollection output : outputs) {
for (File file : output) {
result.add(file.getAbsolutePath());
}
}
resolvedPaths = result;
}
}
@Override
public Set getRegisteredOutputs() {
return outputs;
}
private Set getResolvedPaths() {
if (resolvedPaths == null) {
throw new GradleException("Build outputs have not been resolved yet");
}
return resolvedPaths;
}
@Override
public void discardAll() {
resolvedPaths = null;
outputs.clear();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy