All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.openhft.chronicle.wire.ReflectionUtil Maven / Gradle / Ivy

The newest version!
/*
 * Copyright 2016-2020 chronicle.software
 *
 *       https://chronicle.software
 *
 * 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 net.openhft.chronicle.wire;

import net.openhft.chronicle.core.Jvm;
import org.jetbrains.annotations.NotNull;

import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;

/**
 * A utility class for handling reflection-based tasks.
 * This class provides utility methods related to class reflection and
 * name generation, especially concerning interfaces and package names.
 * 

* Note: This class is not intended for instantiation. */ public final class ReflectionUtil { // Configuration flag to determine if package name should be prepended private static final boolean PREPEND_PACKAGE = Jvm.getBoolean("wire.method.prependPackage"); // Base package prefix for generated names private static final String PACKAGE_PREFIX = "net.openhft.chronicle.wire.method"; // Private constructor to prevent instantiation private ReflectionUtil() { } /** * Creates and returns a new List of all interfaces implemented by * the provided {@code oClass} and all its super classes. * * @param oClass The class to inspect. * @return A list of interfaces implemented by the given class and its ancestors. */ public static List> interfaces(@NotNull final Class oClass) { final List> list = new ArrayList<>(); interfaces(oClass, list); return list; } // Recursively gather interfaces from the given class and its superclasses private static void interfaces(final Class oClass, final List> list) { final Class baseClass = oClass.getSuperclass(); if (baseClass == null) // We have reached java.lang.Object return; list.addAll(Arrays.asList(oClass.getInterfaces())); interfaces(baseClass, list); } /** * Generates a package name based on a given class full name. * If the class belongs to specific packages (like 'java.', 'javax.', 'com.sun.'), * or if the {@code PREPEND_PACKAGE} flag is set, the generated package name * will be prefixed with {@code PACKAGE_PREFIX}. * * @param classFullName The full name of the class. * @return The generated package name. */ @NotNull public static String generatedPackageName(String classFullName) { int lastDot = classFullName.lastIndexOf('.'); if (lastDot != -1) { String packageName = classFullName.substring(0, lastDot); if (PREPEND_PACKAGE || classFullName.startsWith("java.") || classFullName.startsWith("javax.") || classFullName.startsWith("com.sun.") || classFullName.startsWith("jdk.")) { return PACKAGE_PREFIX + "." + packageName; } return packageName; } return PREPEND_PACKAGE ? PACKAGE_PREFIX : ""; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy