
org.modelmapper.protobuf.ProtobufHelper Maven / Gradle / Ivy
The newest version!
/*
* Copyright 2018 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.modelmapper.protobuf;
import com.google.protobuf.Descriptors.Descriptor;
import com.google.protobuf.Descriptors.FieldDescriptor;
import com.google.protobuf.Message;
import com.google.protobuf.Message.Builder;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.util.ArrayList;
import java.util.List;
import org.modelmapper.internal.Errors;
/**
* Helper class that provides methods for handling protocol buffer classes.
*
* @author Chun Han Hsiao
*/
public class ProtobufHelper {
private static final char CASE_MASK = 0x20;
private ProtobufHelper() {}
public static boolean hasBuilder(Class> builderType, String field) {
return builder(builderType, field) != null;
}
@SuppressWarnings("unchecked")
public static Class extends Builder> builder(Class> builderType, String field) {
try {
String methodName = "get" + formatMethodName(field) + "Builder";
return (Class extends Builder>) builderType.getMethod(methodName).getReturnType();
} catch (NoSuchMethodException e) {
return null;
}
}
public static List fields(Class> type) {
if (Builder.class.isAssignableFrom(type))
return fieldsOfMessage(messageOfBuilder(type));
if (Message.class.isAssignableFrom(type))
return fieldsOfMessage(type);
throw new Errors().addMessage("Invalid protocol buffer type: %s", type.getName()).toConfigurationException();
}
public static Class> fieldType(Class> type, String memberName)
throws NoSuchFieldException, NoSuchMethodException {
final Class> fieldType = type.getDeclaredField(formatFieldName(memberName)).getType();
if (Iterable.class.isAssignableFrom(fieldType))
return fieldType;
return getter(type, memberName).getReturnType();
}
public static Method getter(Class> type, String field) throws NoSuchMethodException {
String methodName = "get" + formatMethodName(field);
return type.getMethod(methodName);
}
public static Class> messageOfBuilder(Class> builderType) {
try {
Method buildMethod = builderType.getDeclaredMethod("build");
return buildMethod.getReturnType();
} catch (NoSuchMethodException e) {
throw new Errors().addMessage(e, "Invalid protocol buffer type").toConfigurationException();
}
}
public static Method setterForBuilder(Class> type, String field) throws NoSuchMethodException {
String methodName = "set" + formatMethodName(field);
for (Method method : type.getMethods()) {
if (isSetterForBuilder(method, methodName))
return method;
}
throw new NoSuchMethodException(methodName);
}
public static Method setter(Class> type, String field) throws NoSuchMethodException {
String methodName = "set" + formatMethodName(field);
for (Method method : type.getMethods()) {
if (isSetterForPrimitive(method, methodName))
return method;
}
throw new NoSuchMethodException(methodName);
}
public static Method adder(Class> type, String field) throws NoSuchMethodException {
String methodName = "add" + formatMethodName(field);
for (Method method : type.getMethods()) {
if (isSetterForBuilder(method, methodName))
return method;
}
throw new NoSuchMethodException(methodName);
}
public static Class> iterableType(Class> type, String field) throws NoSuchMethodException {
return adder(type, field).getParameterTypes()[0];
}
public static Method hasMethod(Class> type, String field) throws NoSuchMethodException {
String methodName = "has" + formatMethodName(field);
return type.getMethod(methodName);
}
private static List fieldsOfMessage(Class> type) {
try {
Method descriptorMethod = type.getDeclaredMethod("getDescriptor");
Descriptor descriptor = (Descriptor) descriptorMethod.invoke(type);
List fields = new ArrayList();
for (FieldDescriptor field : descriptor.getFields()) {
fields.add(field.getName());
}
return fields;
} catch (NoSuchMethodException e) {
throw new Errors().addMessage(e, "Invalid protocol buffer type").toConfigurationException();
} catch (IllegalAccessException e) {
throw new Errors().addMessage(e, "Invalid protocol buffer type").toConfigurationException();
} catch (InvocationTargetException e) {
throw new Errors().addMessage(e, "Invalid protocol buffer type").toConfigurationException();
}
}
private static String formatFieldName(String str) {
if (str.contains("_")) {
String upperSnakeCase = formatSnakeCaseMethodName(str);
return upperSnakeCase.substring(0, 1).toLowerCase() + upperSnakeCase.substring(1) + "_";
}
return str + "_";
}
private static String formatMethodName(String str) {
if (str.contains("_")) {
return formatSnakeCaseMethodName(str);
}
return str.substring(0, 1).toUpperCase() + str.substring(1);
}
private static String formatSnakeCaseMethodName(String str) {
StringBuilder methodName = new StringBuilder();
for (int i = 0; i < str.length(); ++i) {
if (str.charAt(i) == '_' && i + 1 < str.length()) {
char c = str.charAt(++i);
if ((c >= 'a') && (c <= 'z')) {
methodName.append((char) (c ^ CASE_MASK));
} else {
methodName.append(c);
}
} else {
methodName.append(str.charAt(i));
}
}
return methodName.substring(0, 1).toUpperCase() + methodName.substring(1);
}
private static boolean isSetterForPrimitive(Method method, String methodName) {
if (!method.getName().equalsIgnoreCase(methodName))
return false;
Class>[] parameterTypes = method.getParameterTypes();
return parameterTypes.length == 1 && !Message.Builder.class.isAssignableFrom(parameterTypes[0]);
}
private static boolean isSetterForBuilder(Method method, String methodName) {
if (!method.getName().equalsIgnoreCase(methodName))
return false;
Class>[] parameterTypes = method.getParameterTypes();
return parameterTypes.length == 1 && Message.Builder.class.isAssignableFrom(parameterTypes[0]);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy