TypeUtils.java
/*
* Copyright (C) 2007-2010 J��lio Vilmar Gesser.
* Copyright (C) 2011, 2013-2023 The JavaParser Team.
*
* This file is part of JavaParser.
*
* JavaParser can be used either under the terms of
* a) the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* b) the terms of the Apache License
*
* You should have received a copy of both licenses in LICENCE.LGPL and
* LICENCE.APACHE. Please refer to those files for details.
*
* JavaParser is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*/
package com.github.javaparser.utils;
import com.github.javaparser.ast.type.PrimitiveType.Primitive;
import com.github.javaparser.ast.type.VoidType;
import java.lang.reflect.Method;
import java.util.Optional;
public class TypeUtils {
/*
* Returns the method descriptor (https://docs.oracle.com/javase/specs/jvms/se8/html/jvms-4.html#jvms-4.3.3)
* The method descriptor for the method: {@code Object m(int i, double d, Thread t) {...}}
* is {@code (IDLjava/lang/Thread;)Ljava/lang/Object;}
* Note that the internal forms of the binary names of Thread and Object are used.
*/
public static String getMethodDescriptor(Method method) {
StringBuilder stringBuilder = new StringBuilder();
stringBuilder.append("(");
for (Class<?> parameter : method.getParameterTypes()) {
appendDescriptor(parameter, stringBuilder);
}
stringBuilder.append(")");
appendDescriptor(method.getReturnType(), stringBuilder);
return stringBuilder.toString();
}
private static void appendDescriptor(final Class<?> clazz, final StringBuilder stringBuilder) {
Class<?> currentClass = clazz;
while (currentClass.isArray()) {
stringBuilder.append("[");
currentClass = currentClass.getComponentType();
}
if (currentClass.isPrimitive()) {
String descriptor = getPrimitiveTypeDescriptor(currentClass);
stringBuilder.append(descriptor);
} else {
stringBuilder.append("L").append(currentClass.getName().replace(".", "/")).append(";");
}
}
public static String getPrimitiveTypeDescriptor(final Class<?> clazz) {
if (clazz == Void.TYPE || clazz == Void.class) {
return new VoidType().toDescriptor();
}
String className = clazz.getSimpleName();
Optional<Primitive> prim = Primitive.byTypeName(className);
if (prim.isPresent()) {
return prim.get().toDescriptor();
}
prim = Primitive.byBoxedTypeName(className);
return prim.map(pType -> pType.toDescriptor())
.orElseThrow(
() -> new IllegalArgumentException(String.format("Unknown primitive type \"%s\"", className)));
}
}