org.gradle.plugins.ide.api.GeneratorTask 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 2011 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.plugins.ide.api;
import org.gradle.api.GradleException;
import org.gradle.api.internal.ConventionTask;
import org.gradle.api.specs.Specs;
import org.gradle.api.tasks.InputFile;
import org.gradle.api.tasks.Internal;
import org.gradle.api.tasks.Optional;
import org.gradle.api.tasks.OutputFile;
import org.gradle.api.tasks.TaskAction;
import org.gradle.internal.reflect.Instantiator;
import org.gradle.internal.MutableActionSet;
import org.gradle.plugins.ide.internal.generator.generator.Generator;
import javax.inject.Inject;
import java.io.File;
/**
* A {@code GeneratorTask} generates a configuration file based on a domain object of type T.
* When executed the task:
*
*
* - loads the object from the input file, if it exists.
*
* - Calls the beforeConfigured actions, passing the object to each action.
*
* - Configures the object in some task-specific way.
*
* - Calls the afterConfigured actions, passing the object to each action.
*
* - writes the object to the output file.
*
*
*
* @param The domain object for the configuration file.
*/
public class GeneratorTask extends ConventionTask {
private File inputFile;
private File outputFile;
protected final MutableActionSet beforeConfigured = new MutableActionSet();
protected final MutableActionSet afterConfigured = new MutableActionSet();
protected Generator generator;
protected T domainObject;
public GeneratorTask() {
getOutputs().upToDateWhen(Specs.satisfyNone());
}
@SuppressWarnings("UnusedDeclaration")
@TaskAction
void generate() {
File inputFile = getInputFileIfExists();
if (inputFile != null) {
try {
domainObject = generator.read(inputFile);
} catch (RuntimeException e) {
throw new GradleException(String.format("Cannot parse file '%s'.\n"
+ " Perhaps this file was tinkered with? In that case try delete this file and then retry.",
inputFile), e);
}
} else {
domainObject = generator.defaultInstance();
}
beforeConfigured.execute(domainObject);
generator.configure(domainObject);
afterConfigured.execute(domainObject);
generator.write(domainObject, getOutputFile());
}
@Inject
protected Instantiator getInstantiator() {
throw new UnsupportedOperationException();
}
/**
* The input file to load the initial configuration from. Defaults to the output file. If the specified input file
* does not exist, this task uses some default initial configuration.
*
* @return The input file.
*/
@Internal("Covered by inputFileIfExists")
public File getInputFile() {
return inputFile != null ? inputFile : getOutputFile();
}
// Workaround for when the task is given an input file that doesn't exist
@Optional @InputFile
protected File getInputFileIfExists() {
File inputFile = getInputFile();
if (inputFile == null) {
File outputFile = getOutputFile();
if (outputFile != null && outputFile.exists()) {
return outputFile;
} else {
return null;
}
} else if (inputFile.exists()) {
return inputFile;
} else {
return null;
}
}
/**
* Sets the input file to load the initial configuration from.
*
* @param inputFile The input file. Use null to use the output file.
*/
public void setInputFile(File inputFile) {
this.inputFile = inputFile;
}
/**
* The output file to write the final configuration to.
*
* @return The output file.
*/
@OutputFile
public File getOutputFile() {
return outputFile;
}
/**
* Sets the output file to write the final configuration to.
*
* @param outputFile The output file.
*/
public void setOutputFile(File outputFile) {
this.outputFile = outputFile;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy