org.gradle.api.internal.tasks.compile.incremental.RecompilationSpecProvider 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 2013 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.api.internal.tasks.compile.incremental;
import org.gradle.api.Action;
import org.gradle.api.internal.file.FileOperations;
import org.gradle.api.internal.tasks.compile.incremental.jar.JarChangeProcessor;
import org.gradle.api.internal.tasks.compile.incremental.jar.JarClasspathSnapshot;
import org.gradle.api.internal.tasks.compile.incremental.jar.PreviousCompilation;
import org.gradle.api.internal.tasks.compile.incremental.recomp.RecompilationSpec;
import org.gradle.api.tasks.incremental.IncrementalTaskInputs;
import org.gradle.api.tasks.incremental.InputFileDetails;
import static org.gradle.internal.FileUtils.hasExtension;
public class RecompilationSpecProvider {
private final SourceToNameConverter sourceToNameConverter;
private final FileOperations fileOperations;
public RecompilationSpecProvider(SourceToNameConverter sourceToNameConverter, FileOperations fileOperations) {
this.sourceToNameConverter = sourceToNameConverter;
this.fileOperations = fileOperations;
}
public RecompilationSpec provideRecompilationSpec(IncrementalTaskInputs inputs, PreviousCompilation previousCompilation, JarClasspathSnapshot jarClasspathSnapshot) {
//creating an action that will be executed against all changes
RecompilationSpec spec = new RecompilationSpec();
JavaChangeProcessor javaChangeProcessor = new JavaChangeProcessor(previousCompilation, sourceToNameConverter);
ClassChangeProcessor classChangeProcessor = new ClassChangeProcessor(previousCompilation);
JarChangeProcessor jarChangeProcessor = new JarChangeProcessor(fileOperations, jarClasspathSnapshot, previousCompilation);
InputChangeAction action = new InputChangeAction(spec, javaChangeProcessor, classChangeProcessor, jarChangeProcessor);
//go!
inputs.outOfDate(action);
if (action.spec.getFullRebuildCause() != null) {
//short circuit in case we already know that that full rebuild is needed
return action.spec;
}
inputs.removed(action);
return action.spec;
}
private static class InputChangeAction implements Action {
private final RecompilationSpec spec;
private final JavaChangeProcessor javaChangeProcessor;
private final ClassChangeProcessor classChangeProcessor;
private final JarChangeProcessor jarChangeProcessor;
public InputChangeAction(RecompilationSpec spec, JavaChangeProcessor javaChangeProcessor, ClassChangeProcessor classChangeProcessor, JarChangeProcessor jarChangeProcessor) {
this.spec = spec;
this.javaChangeProcessor = javaChangeProcessor;
this.classChangeProcessor = classChangeProcessor;
this.jarChangeProcessor = jarChangeProcessor;
}
@Override
public void execute(InputFileDetails input) {
if (spec.getFullRebuildCause() != null) {
return;
}
if (hasExtension(input.getFile(), ".java")) {
javaChangeProcessor.processChange(input, spec);
} else if (hasExtension(input.getFile(), ".class")) {
classChangeProcessor.processChange(input, spec);
} else if (hasExtension(input.getFile(), ".jar")) {
jarChangeProcessor.processChange(input, spec);
}
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy