All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
org.glowroot.instrumentation.api.util.Reflection Maven / Gradle / Ivy
/*
* Copyright 2016-2019 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.glowroot.instrumentation.api.util;
import java.lang.reflect.Field;
import java.lang.reflect.Method;
import org.glowroot.instrumentation.api.Logger;
import org.glowroot.instrumentation.api.checker.Nullable;
public class Reflection {
private static final Logger logger = Logger.getLogger(Reflection.class);
private Reflection() {}
public static @Nullable Class> getClass(String name, @Nullable ClassLoader loader) {
return getClass(name, loader, false);
}
public static @Nullable Class> getClassWithWarnIfNotFound(String name,
@Nullable ClassLoader loader) {
return getClass(name, loader, true);
}
public static @Nullable Method getMethod(@Nullable Class> clazz, String methodName,
Class>... parameterTypes) {
if (clazz == null) {
return null;
}
try {
return clazz.getMethod(methodName, parameterTypes);
} catch (NoSuchMethodException e) {
logger.debug(e.getMessage(), e);
return null;
} catch (Throwable t) {
logger.warn(t.getMessage(), t);
return null;
}
}
public static @Nullable Field getDeclaredField(@Nullable Class> clazz, String fieldName) {
if (clazz == null) {
return null;
}
try {
Field field = clazz.getDeclaredField(fieldName);
field.setAccessible(true);
return field;
} catch (NoSuchFieldException e) {
logger.debug(e.getMessage(), e);
return null;
} catch (Throwable t) {
logger.warn(t.getMessage(), t);
return null;
}
}
@SuppressWarnings("unchecked")
public static /*@Nullable*/ T invoke(@Nullable Method method, Object obj,
@Nullable Object... args) {
if (method == null) {
return null;
}
try {
return (T) method.invoke(obj, args);
} catch (Throwable t) {
logger.warn("error calling {}.{}()", method.getDeclaringClass().getName(),
method.getName(), t);
return null;
}
}
@SuppressWarnings("unchecked")
public static T invokeWithDefault(@Nullable Method method, Object obj, T defaultValue,
@Nullable Object... args) {
if (method == null) {
return defaultValue;
}
try {
Object value = method.invoke(obj, args);
if (value == null) {
return defaultValue;
}
return (T) value;
} catch (Throwable t) {
logger.warn("error calling {}.{}()", method.getDeclaringClass().getName(),
method.getName(), t);
return defaultValue;
}
}
public static @Nullable Object getFieldValue(@Nullable Field field, Object obj) {
if (field == null) {
return null;
}
try {
return field.get(obj);
} catch (Throwable t) {
logger.warn("error getting {}.{}()", field.getDeclaringClass().getName(),
field.getName(), t);
return null;
}
}
private static @Nullable Class> getClass(String name, @Nullable ClassLoader loader,
boolean warnIfNotFound) {
try {
return Class.forName(name, false, loader);
} catch (ClassNotFoundException e) {
if (warnIfNotFound) {
logger.warn(e.getMessage(), e);
} else {
logger.debug(e.getMessage(), e);
}
} catch (Throwable t) {
logger.warn(t.getMessage(), t);
}
return null;
}
}