org.gradle.api.internal.tasks.options.FieldOptionElement 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.options;
import org.apache.commons.lang.StringUtils;
import org.gradle.internal.typeconversion.NotationParser;
import java.lang.reflect.Field;
import java.lang.reflect.Method;
import java.util.List;
public class FieldOptionElement extends AbstractOptionElement {
public static FieldOptionElement create(Option option, Field field, OptionValueNotationParserFactory optionValueNotationParserFactory){
String optionName = calOptionName(option, field);
Class> optionType = calculateOptionType(field.getType());
NotationParser notationParser = createNotationParserOrFail(optionValueNotationParserFactory, optionName, optionType, field.getDeclaringClass());
return new FieldOptionElement(field, optionName, option, optionType, notationParser);
}
private final Field field;
public FieldOptionElement(Field field, String optionName, Option option, Class> optionType, NotationParser notationParser) {
super(optionName, option, optionType, field.getDeclaringClass(), notationParser);
this.field = field;
getSetter();
}
private static String calOptionName(Option option, Field field) {
if (option.option().length() == 0) {
return field.getName();
} else {
return option.option();
}
}
private Method getSetter() {
try{
String setterName = "set" + StringUtils.capitalize(field.getName());
return field.getDeclaringClass().getMethod(setterName, field.getType());
} catch (NoSuchMethodException e) {
throw new OptionValidationException(String.format("No setter for Option annotated field '%s' in class '%s'.",
getElementName(), getDeclaredClass()));
}
}
public String getElementName() {
return field.getName();
}
public Class> getDeclaredClass() {
return field.getDeclaringClass();
}
public void apply(Object object, List parameterValues) {
if (getOptionType() == Void.TYPE && parameterValues.size() == 0) {
setFieldValue(object, true);
} else if (parameterValues.size() > 1 || List.class.equals(getOptionType())) {
setFieldValue(object, parameterValues);
} else {
Object arg = getNotationParser().parseNotation(parameterValues.get(0));
setFieldValue(object, arg);
}
}
private void setFieldValue(Object object, Object value) {
Method setter = getSetter();
invokeMethod(object, setter, value);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy