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

org.apache.cayenne.di.spi.ConstructorInjectingProvider Maven / Gradle / Ivy

There is a newer version: 4.2.1
Show newest version
/*****************************************************************
 *   Licensed to the Apache Software Foundation (ASF) under one
 *  or more contributor license agreements.  See the NOTICE file
 *  distributed with this work for additional information
 *  regarding copyright ownership.  The ASF licenses this file
 *  to you 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.apache.cayenne.di.spi;

import java.lang.annotation.Annotation;
import java.lang.reflect.Constructor;
import java.lang.reflect.Type;

import org.apache.cayenne.ConfigurationException;
import org.apache.cayenne.di.Inject;
import org.apache.cayenne.di.Key;
import org.apache.cayenne.di.Provider;

/**
 * @since 3.1
 */
class ConstructorInjectingProvider implements Provider {

    private Constructor constructor;
    private DefaultInjector injector;
    private String[] bindingNames;

    ConstructorInjectingProvider(Class implementation,
            DefaultInjector injector) {

        initConstructor(implementation);

        if (constructor == null) {
            throw new ConfigurationException(
                    "Can't find approprate constructor for implementation class '%s'",
                    implementation.getName());
        }

        this.constructor.setAccessible(true);
        this.injector = injector;
    }

    private void initConstructor(Class implementation) {

        Constructor[] constructors = implementation.getDeclaredConstructors();
        Constructor lastMatch = null;
        int lastSize = -1;

        // pick the first constructor with all injection-annotated parameters, or the
        // default constructor; constructor with the longest parameter list is preferred
        // if multiple matches are found
        for (Constructor constructor : constructors) {

            int size = constructor.getParameterTypes().length;
            if (size <= lastSize) {
                continue;
            }

            if (size == 0) {
                lastSize = 0;
                lastMatch = constructor;
                continue;
            }

            boolean injectable = true;
            for (Annotation[] annotations : constructor.getParameterAnnotations()) {

                boolean parameterInjectable = false;
                for (Annotation annotation : annotations) {
                    if (annotation.annotationType().equals(Inject.class)) {
                        parameterInjectable = true;
                        break;
                    }
                }

                if (!parameterInjectable) {
                    injectable = false;
                    break;
                }
            }

            if (injectable) {
                lastSize = size;
                lastMatch = constructor;
            }
        }

        if (lastMatch == null) {
            throw new ConfigurationException(
                    "No applicable constructor is found for constructor injection in class '%s'",
                    implementation.getName());
        }

        // the cast is lame, but Class.getDeclaredConstructors() is not using
        // generics in Java 5 and using  in Java 6, creating compilation problems.
        this.constructor = (Constructor) lastMatch;

        Annotation[][] annotations = lastMatch.getParameterAnnotations();
        this.bindingNames = new String[annotations.length];
        for (int i = 0; i < annotations.length; i++) {

            Annotation[] parameterAnnotations = annotations[i];
            for (int j = 0; j < parameterAnnotations.length; j++) {
                Annotation annotation = parameterAnnotations[j];
                if (annotation.annotationType().equals(Inject.class)) {
                    Inject inject = (Inject) annotation;
                    bindingNames[i] = inject.value();
                    break;
                }
            }
        }
    }

    public T get() {

        Class[] constructorParameters = constructor.getParameterTypes();
        Type[] genericTypes = constructor.getGenericParameterTypes();
        Object[] args = new Object[constructorParameters.length];
        InjectionStack stack = injector.getInjectionStack();

        for (int i = 0; i < constructorParameters.length; i++) {

            Class parameter = constructorParameters[i];

            if (Provider.class.equals(parameter)) {

                Class objectClass = DIUtil.parameterClass(genericTypes[i]);

                if (objectClass == null) {
                    throw new ConfigurationException(
                            "Constructor provider parameter %s must be "
                                    + "parameterized to be usable for injection",
                            parameter.getName());
                }

                args[i] = injector.getProvider(Key.get(objectClass, bindingNames[i]));
            }
            else {

                Key key = Key.get(parameter, bindingNames[i]);

                stack.push(key);
                try {
                    args[i] = injector.getInstance(key);
                }
                finally {
                    stack.pop();
                }
            }
        }

        try {
            return constructor.newInstance(args);
        }
        catch (Exception e) {
            throw new ConfigurationException(
                    "Error instantiating class '%s'",
                    e,
                    constructor.getDeclaringClass().getName());
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy