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

global.namespace.neuron.di.internal.MethodInfo Maven / Gradle / Ivy

There is a newer version: 6.7.1
Show newest version
/*
 * Copyright © 2016 - 2019 Schlichtherle IT Services
 *
 * 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 global.namespace.neuron.di.internal;

import global.namespace.neuron.di.java.Caching;
import global.namespace.neuron.di.java.CachingStrategy;

import java.lang.reflect.Method;
import java.lang.reflect.Modifier;
import java.util.Optional;

import static global.namespace.neuron.di.internal.Reflection.findAnnotation;

@FunctionalInterface
public interface MethodInfo {

    default boolean canEqual(Object other) {
        return other instanceof MethodInfo;
    }

    default Optional findCachingAnnotation() {
        return findAnnotation(Caching.class).apply(method());
    }

    default boolean hasParameters() {
        return 0 != method().getParameterCount();
    }

    default boolean isAbstract() {
        return Modifier.isAbstract(method().getModifiers());
    }

    default boolean isVoid() {
        final Class returnType = method().getReturnType();
        return Void.TYPE == returnType || Void.class == returnType;
    }

    Method method();

    default Optional declaredCachingStrategy() {
        return findCachingAnnotation().map(Caching::value);
    }

    default String name() {
        return method().getName();
    }

    default String proxyFieldName() {
        // To be unique, both the method name and the return type in some encoded form is required:
        // https://docs.oracle.com/javase/specs/jvms/se8/html/jvms-4.html#jvms-4.5
        // However, you can only override one method at any time, so we can ignore the return type here.
        // Regarding valid field names:
        // https://docs.oracle.com/javase/specs/jvms/se8/html/jvms-4.html#jvms-4.2.2
        return '$' + name();
    }

    default Class returnType() {
        return method().getReturnType();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy