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

org.gradle.api.internal.DependencyInjectingInstantiator Maven / Gradle / Ivy

There is a newer version: 8.11.1
Show newest version
/*
 * Copyright 2012 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.api.internal;

import com.google.common.cache.CacheBuilder;
import com.google.common.cache.CacheLoader;
import com.google.common.cache.LoadingCache;
import org.gradle.internal.reflect.Instantiator;
import org.gradle.internal.reflect.JavaReflectionUtil;
import org.gradle.internal.reflect.ObjectInstantiationException;
import org.gradle.internal.service.ServiceRegistry;

import javax.inject.Inject;
import java.lang.reflect.Constructor;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Modifier;
import java.util.ArrayList;
import java.util.List;

/**
 * An {@link Instantiator} that applies JSR-330 style dependency injection.
 */
public class DependencyInjectingInstantiator implements Instantiator {

    private final ServiceRegistry services;
    private final DependencyInjectingInstantiator.ConstructorCache cachedConstructors;

    public DependencyInjectingInstantiator(ServiceRegistry services, ConstructorCache cachedConstructors) {
        this.services = services;
        this.cachedConstructors = cachedConstructors;
    }

    public  T newInstance(Class type, Object... parameters) {
        try {
            CachedConstructor cached = cachedConstructors.get(type);
            if (cached.error != null) {
                throw cached.error;
            }
            Constructor constructor = cached.constructor;
            Object[] resolvedParameters = convertParameters(type, constructor, parameters);
            try {
                Object instance = constructor.newInstance(resolvedParameters);
                if (instance instanceof WithServiceRegistry) {
                    ((WithServiceRegistry) instance).setServices(services);
                }
                return type.cast(instance);
            } catch (InvocationTargetException e) {
                throw e.getCause();
            }
        } catch (Throwable e) {
            throw new ObjectInstantiationException(type, e);
        }
    }

    private  Object[] convertParameters(Class type, Constructor match, Object[] parameters) {
        Class[] parameterTypes = match.getParameterTypes();
        if (parameterTypes.length < parameters.length) {
            throw new IllegalArgumentException(String.format("Too many parameters provided for constructor for class %s. Expected %s, received %s.", type.getName(), parameterTypes.length, parameters.length));
        }
        Object[] resolvedParameters = new Object[parameterTypes.length];
        int pos = 0;
        for (int i = 0; i < resolvedParameters.length; i++) {
            Class targetType = parameterTypes[i];
            if (targetType.isPrimitive()) {
                targetType = JavaReflectionUtil.getWrapperTypeForPrimitiveType(targetType);
            }
            if (pos < parameters.length && targetType.isInstance(parameters[pos])) {
                resolvedParameters[i] = parameters[pos];
                pos++;
            } else {
                resolvedParameters[i] = services.get(match.getGenericParameterTypes()[i]);
            }
        }
        if (pos != parameters.length) {
            throw new IllegalArgumentException(String.format("Unexpected parameter provided for constructor for class %s.", type.getName()));
        }
        return resolvedParameters;
    }


    public static class ConstructorCache {
        private final LoadingCache, CachedConstructor> cachedConstructors = CacheBuilder.newBuilder()
            .weakKeys()
            .build(new CacheLoader, CachedConstructor>() {
                @Override
                public CachedConstructor load(final Class type) throws Exception {
                    try {
                        validateType(type);
                        Constructor constructor = selectConstructor(type);
                        constructor.setAccessible(true);
                        return CachedConstructor.of(constructor);
                    } catch (Throwable e) {
                        return CachedConstructor.of(e);
                    }
                }
            });

        private static boolean isPublicOrPackageScoped(Class type, Constructor constructor) {
            if (isPackagePrivate(type.getModifiers())) {
                return !Modifier.isPrivate(constructor.getModifiers()) && !Modifier.isProtected(constructor.getModifiers());
            } else {
                return Modifier.isPublic(constructor.getModifiers());
            }
        }

        private static boolean isPackagePrivate(int modifiers) {
            return !Modifier.isPrivate(modifiers) && !Modifier.isProtected(modifiers) && !Modifier.isPublic(modifiers);
        }

        private static  void validateType(Class type) {
            if (type.isInterface() || type.isAnnotation() || type.isEnum()) {
                throw new IllegalArgumentException(String.format("Type %s is not a class.", type.getName()));
            }
            if (type.getEnclosingClass() != null && !Modifier.isStatic(type.getModifiers())) {
                throw new IllegalArgumentException(String.format("Class %s is a non-static inner class.", type.getName()));
            }
            if (Modifier.isAbstract(type.getModifiers())) {
                throw new IllegalArgumentException(String.format("Class %s is an abstract class.", type.getName()));
            }
        }

        private static  Constructor selectConstructor(Class type) {
            Constructor[] constructors = type.getDeclaredConstructors();

            if (constructors.length == 1) {
                Constructor constructor = constructors[0];
                if (constructor.getParameterTypes().length == 0 && isPublicOrPackageScoped(type, constructor)) {
                    return constructor;
                }
            }

            List> injectConstructors = new ArrayList>();
            for (Constructor constructor : constructors) {
                if (constructor.getAnnotation(Inject.class) != null) {
                    injectConstructors.add(constructor);
                }
            }

            if (injectConstructors.isEmpty()) {
                throw new IllegalArgumentException(String.format("Class %s has no constructor that is annotated with @Inject.", type.getName()));
            }
            if (injectConstructors.size() > 1) {
                throw new IllegalArgumentException(String.format("Class %s has multiple constructors that are annotated with @Inject.", type.getName()));
            }
            return injectConstructors.get(0);
        }

        public CachedConstructor get(Class clazz) {
            return cachedConstructors.getUnchecked(clazz);
        }

    }

    private static class CachedConstructor {
        private final Constructor constructor;
        private final Throwable error;

        private CachedConstructor(Constructor constructor, Throwable error) {
            this.constructor = constructor;
            this.error = error;
        }

        public static CachedConstructor of(Constructor ctor) {
            return new CachedConstructor(ctor, null);
        }

        public static CachedConstructor of(Throwable err) {
            return new CachedConstructor(null, err);
        }

    }

    /**
     * An internal interface that can be used by code generators/proxies to indicate that
     * they require a service registry.
     */
    interface WithServiceRegistry {
        void setServices(ServiceRegistry services);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy