/* * Copyright 2012-2017 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.springframework.boot.configurationprocessor; import java.util.ArrayList; import java.util.Collections; import java.util.LinkedHashMap; import java.util.List; import java.util.Map; import javax.annotation.processing.ProcessingEnvironment; import javax.lang.model.element.Element; import javax.lang.model.element.ExecutableElement; import javax.lang.model.element.Modifier; import javax.lang.model.element.TypeElement; import javax.lang.model.element.VariableElement; import javax.lang.model.type.TypeKind; import javax.lang.model.type.TypeMirror; import javax.lang.model.util.ElementFilter; import org.springframework.boot.configurationprocessor.fieldvalues.FieldValuesParser; /** * Provides access to relevant {@link TypeElement} members. * * @author Stephane Nicoll * @author Phillip Webb * @since 1.2.0 */ class TypeElementMembers { private static final String OBJECT_CLASS_NAME = Object.class.getName(); private final ProcessingEnvironment env; private final TypeUtils typeUtils; private final Map<String, VariableElement> fields = new LinkedHashMap<>(); private final Map<String, ExecutableElement> publicGetters = new LinkedHashMap<>(); private final Map<String, List<ExecutableElement>> publicSetters = new LinkedHashMap<>(); private final Map<String, Object> fieldValues = new LinkedHashMap<>(); private final FieldValuesParser fieldValuesParser; TypeElementMembers(ProcessingEnvironment env, FieldValuesParser fieldValuesParser, TypeElement element) { this.env = env; this.typeUtils = new TypeUtils(this.env); this.fieldValuesParser = fieldValuesParser; process(element); } private void process(TypeElement element) { for (ExecutableElement method : ElementFilter .methodsIn(element.getEnclosedElements())) { processMethod(method); } for (VariableElement field : ElementFilter .fieldsIn(element.getEnclosedElements())) { processField(field); } try { Map<String, Object> fieldValues = this.fieldValuesParser .getFieldValues(element); for (Map.Entry<String, Object> entry : fieldValues.entrySet()) { if (!this.fieldValues.containsKey(entry.getKey())) { this.fieldValues.put(entry.getKey(), entry.getValue()); } } } catch (Exception ex) { // continue } Element superType = this.env.getTypeUtils().asElement(element.getSuperclass()); if (superType != null && superType instanceof TypeElement && !OBJECT_CLASS_NAME.equals(superType.toString())) { process((TypeElement) superType); } } private void processMethod(ExecutableElement method) { if (method.getModifiers().contains(Modifier.PUBLIC)) { String name = method.getSimpleName().toString(); if (isGetter(method) && !this.publicGetters.containsKey(name)) { this.publicGetters.put(getAccessorName(name), method); } else if (isSetter(method)) { String propertyName = getAccessorName(name); List<ExecutableElement> matchingSetters = this.publicSetters .get(propertyName); if (matchingSetters == null) { matchingSetters = new ArrayList<>(); this.publicSetters.put(propertyName, matchingSetters); } TypeMirror paramType = method.getParameters().get(0).asType(); if (getMatchingSetter(matchingSetters, paramType) == null) { matchingSetters.add(method); } } } } private ExecutableElement getMatchingSetter(List<ExecutableElement> candidates, TypeMirror type) { for (ExecutableElement candidate : candidates) { TypeMirror paramType = candidate.getParameters().get(0).asType(); if (this.env.getTypeUtils().isSameType(paramType, type)) { return candidate; } } return null; } private boolean isGetter(ExecutableElement method) { String name = method.getSimpleName().toString(); return ((name.startsWith("get") && name.length() > 3) || (name.startsWith("is") && name.length() > 2)) && method.getParameters().isEmpty() && (TypeKind.VOID != method.getReturnType().getKind()); } private boolean isSetter(ExecutableElement method) { final String name = method.getSimpleName().toString(); return (name.startsWith("set") && name.length() > 3 && method.getParameters().size() == 1 && isSetterReturnType(method)); } private boolean isSetterReturnType(ExecutableElement method) { TypeMirror returnType = method.getReturnType(); return (TypeKind.VOID == returnType.getKind() || this.env.getTypeUtils() .isSameType(method.getEnclosingElement().asType(), returnType)); } private String getAccessorName(String methodName) { String name = methodName.startsWith("is") ? methodName.substring(2) : methodName.substring(3); name = Character.toLowerCase(name.charAt(0)) + name.substring(1); return name; } private void processField(VariableElement field) { String name = field.getSimpleName().toString(); if (!this.fields.containsKey(name)) { this.fields.put(name, field); } } public Map<String, VariableElement> getFields() { return Collections.unmodifiableMap(this.fields); } public Map<String, ExecutableElement> getPublicGetters() { return Collections.unmodifiableMap(this.publicGetters); } public ExecutableElement getPublicGetter(String name, TypeMirror type) { ExecutableElement candidate = this.publicGetters.get(name); if (candidate != null) { TypeMirror returnType = candidate.getReturnType(); if (this.env.getTypeUtils().isSameType(returnType, type)) { return candidate; } TypeMirror alternative = this.typeUtils.getWrapperOrPrimitiveFor(type); if (alternative != null && this.env.getTypeUtils().isSameType(returnType, alternative)) { return candidate; } } return null; } public ExecutableElement getPublicSetter(String name, TypeMirror type) { List<ExecutableElement> candidates = this.publicSetters.get(name); if (candidates != null) { ExecutableElement matching = getMatchingSetter(candidates, type); if (matching != null) { return matching; } TypeMirror alternative = this.typeUtils.getWrapperOrPrimitiveFor(type); if (alternative != null) { return getMatchingSetter(candidates, alternative); } } return null; } public Map<String, Object> getFieldValues() { return Collections.unmodifiableMap(this.fieldValues); } }