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

com.hazelcast.internal.util.InstantiationUtils Maven / Gradle / Ivy

There is a newer version: 5.5.0
Show newest version
/*
 * Copyright (c) 2008-2021, Hazelcast, Inc. All Rights Reserved.
 *
 * 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 com.hazelcast.internal.util;

import java.lang.reflect.Constructor;
import java.lang.reflect.InvocationTargetException;
import java.util.Arrays;

/**
 * Convenience for class instantiation.
 *
 */
public final class InstantiationUtils {
    private InstantiationUtils() {

    }

    /**
     * Create a new instance of a given class. It will search for a constructor matching passed parameters.
     * If a matching constructor is not found then it returns null.
     *
     * Constructor is matching when it can be invoked with given parameters. The order of parameters is significant.
     *
     * When a class constructor contains a primitive argument then it's matching if and only if
     * a parameter at the same position is not null.
     *
     * It throws {@link AmbiguousInstantiationException} when multiple matching constructors are found.
     *
     * @param clazz class to be instantiated
     * @param params parameters to be passed to the constructor
     * @param  class type to be instantiated
     * @return a new instance of a given class
     * @throws AmbiguousInstantiationException when multiple constructors matching the parameters
     */
    public static  T newInstanceOrNull(Class clazz, Object...params)  {
        Constructor constructor = selectMatchingConstructor(clazz, params);
        if (constructor == null) {
            return null;
        }
        try {
            return constructor.newInstance(params);
        } catch (IllegalAccessException e) {
            return null;
        } catch (InstantiationException e) {
            return null;
        } catch (InvocationTargetException e) {
            return null;
        }
    }

    private static  Constructor selectMatchingConstructor(Class clazz, Object[] params) {
        Constructor[] constructors = clazz.getConstructors();
        Constructor selectedConstructor = null;
        for (Constructor constructor : constructors) {
            if (isParamsMatching(constructor, params)) {
                if (selectedConstructor == null) {
                    selectedConstructor = (Constructor) constructor;
                } else {
                    throw new AmbiguousInstantiationException("Class " + clazz + " has multiple constructors matching "
                            + "given parameters: " + Arrays.toString(params));
                }
            }
        }
        return selectedConstructor;
    }

    private static boolean isParamsMatching(Constructor constructor, Object[] params) {
        Class[] constructorParamTypes = constructor.getParameterTypes();
        if (constructorParamTypes.length != params.length) {
            return false;
        }
        for (int i = 0; i < constructorParamTypes.length; i++) {
            Class constructorParamType = constructorParamTypes[i];
            Object param = params[i];
            if (constructorParamType.isPrimitive()) {
                // 1. Constructors can accept primitive arguments
                // 2. Parameters are never primitives because they are passed inside an object array
                // 3. As a user I expect this utility class to do auto-unboxing of passed parameters
                //  ->  If a constructor argument is a primitive type then we have to use its boxed version otherwise
                //      isAssignableFrom() bellow fails. It's because an instance of Integer.class cannot be directly
                //      assigned to int.class without Java compiler doing its magic.
                if (param == null) {
                    // passed parameter was null, but the argument in constructor is primitive - it's not matching
                    return false;
                } else {
                    constructorParamType = toBoxedType(constructorParamType);
                }
            }
            if (param == null) {
                // null is matching all non-primitive types
                continue;
            }
            Class paramType = param.getClass();
            if (!constructorParamType.isAssignableFrom(paramType)) {
                return false;
            }
        }
        return true;
    }

    private static Class toBoxedType(Class type) {
        assert type.isPrimitive();

        // void cannot be used as a constructor argument in Java
        assert type != void.class;

        if (type == boolean.class) {
            return Boolean.class;
        } else if (type == byte.class) {
            return Byte.class;
        } else if (type == char.class) {
            return Character.class;
        } else if (type == double.class) {
            return Double.class;
        } else if (type == float.class) {
            return Float.class;
        } else if (type == int.class) {
            return Integer.class;
        } else if (type == long.class) {
            return Long.class;
        } else if (type == short.class) {
            return Short.class;
        } else {
            // should never happen ;-)
            throw new IllegalArgumentException("Unknown primitive type " + type.getName());
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy