org.openrewrite.style.StyleHelper Maven / Gradle / Ivy
Show all versions of rewrite-core Show documentation
/*
* Copyright 2020 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
*
* https://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.openrewrite.style;
import org.openrewrite.internal.StringUtils;
import java.lang.reflect.Field;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.util.HashSet;
import java.util.Set;
public class StyleHelper {
private static final Set> primitiveWrapperClasses = new HashSet<>();
static {
primitiveWrapperClasses.add(Double.class);
primitiveWrapperClasses.add(Float.class);
primitiveWrapperClasses.add(Long.class);
primitiveWrapperClasses.add(Integer.class);
primitiveWrapperClasses.add(Short.class);
primitiveWrapperClasses.add(Character.class);
primitiveWrapperClasses.add(Byte.class);
primitiveWrapperClasses.add(Boolean.class);
}
private static boolean isPrimitiveOrWrapper(Object value) {
Class> type = value.getClass();
return type.isPrimitive() || primitiveWrapperClasses.contains(type);
}
private static boolean isEnum(Object value) {
Class> type = value.getClass();
return type.isEnum();
}
/**
* Copies all non-null properties from right into left, recursively. Assumes use of @With from project lombok.
*
* @param left left object, target of merged properties
* @param right right object, source of merged properties
* @param Type of left and right
* @return left object with merged properties from right
*/
public static T merge(T left, T right) {
Class> styleClass = left.getClass();
if (right.getClass() != styleClass) {
throw new RuntimeException(left.getClass().getName() + " and " + right.getClass().getName() + " should match exactly.");
}
for (Field f : styleClass.getDeclaredFields()) {
Method wither;
Method getter;
try {
wither = styleClass.getMethod("with" + StringUtils.capitalize(f.getName()), f.getType());
getter = styleClass.getMethod("get" + StringUtils.capitalize(f.getName()));
} catch (NoSuchMethodException e) {
continue;
}
try {
Object rightValue = getter.invoke(right);
if (rightValue != null) {
if (!isPrimitiveOrWrapper(rightValue) && !isEnum(rightValue)) {
Object leftValue = getter.invoke(left);
rightValue = merge(leftValue, rightValue);
}
//noinspection unchecked
left = (T) wither.invoke(left, rightValue);
}
} catch (IllegalAccessException | InvocationTargetException e) {
throw new RuntimeException(e);
}
}
return left;
}
}