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

org.gradle.internal.reflect.MethodDescription Maven / Gradle / Ivy

The newest version!
/*
 * Copyright 2014 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.gradle.internal.reflect;

import com.google.common.base.Function;
import com.google.common.base.Joiner;
import com.google.common.collect.Iterables;
import org.gradle.internal.Cast;

import java.lang.reflect.Constructor;
import java.lang.reflect.Method;
import java.lang.reflect.Type;
import java.util.Arrays;

public class MethodDescription {

    private String owner;
    private String name;
    private String returnType;
    private Iterable parameterTypes;

    public MethodDescription(String name) {
        this.name = name;
    }

    @Override
    public String toString() {
        StringBuilder sb = new StringBuilder();
        if (returnType != null) {
            sb.append(returnType).append(" ");
        }
        if (owner != null) {
            sb.append(owner).append("#");
        }
        sb.append(name);

        if (parameterTypes != null) {
            sb.append("(");
            Joiner.on(", ").appendTo(sb, parameterTypes);
            sb.append(")");
        }

        return sb.toString();
    }

    public static MethodDescription name(String name) {
        return new MethodDescription(name);
    }

    public static MethodDescription of(Method method) {
        return name(method.getName())
                .owner(method.getDeclaringClass())
                .returns(method.getGenericReturnType())
                .takes(method.getGenericParameterTypes());
    }

    public static MethodDescription of(Constructor constructor) {
        return name("")
                .owner(constructor.getDeclaringClass())
                .takes(constructor.getGenericParameterTypes());
    }

    private String typeName(Type type) {
        if (type == null) {
            return null;
        }
        return type instanceof Class ? Cast.cast(Class.class, type).getName() : type.toString();
    }

    public MethodDescription returns(Type returnType) {
        this.returnType = typeName(returnType);
        return this;
    }

    public MethodDescription owner(Class owner) {
        this.owner = typeName(owner);
        return this;
    }

    public MethodDescription takes(Type[] parameterTypes) {
        this.parameterTypes = Iterables.transform(Arrays.asList(parameterTypes), new Function() {
            @Override
            public String apply(Type input) {
                return typeName(input);
            }
        });
        return this;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy