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

com.truthbean.debbie.bean.ConfigurationMethodBeanFactory Maven / Gradle / Ivy

The newest version!
/**
 * Copyright (c) 2022 TruthBean(Rogar·Q)
 * Debbie is licensed under Mulan PSL v2.
 * You can use this software according to the terms and conditions of the Mulan PSL v2.
 * You may obtain a copy of Mulan PSL v2 at:
 * http://license.coscl.org.cn/MulanPSL2
 * THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.
 * See the Mulan PSL v2 for more details.
 */
package com.truthbean.debbie.bean;

import com.truthbean.Logger;
import com.truthbean.LoggerFactory;
import com.truthbean.debbie.core.ApplicationContext;
import com.truthbean.debbie.reflection.ReflectionHelper;

import java.lang.reflect.Method;
import java.util.HashSet;
import java.util.Set;
import java.util.function.Supplier;

/**
 * @author TruthBean/Rogar·Q
 * @since 0.1.0
 * Created on 2020-08-27 14:11
 */
public class ConfigurationMethodBeanFactory implements BeanFactory {

    private final Supplier supplier;
    private final BeanType beanType;
    private final Method method;
    private final Set names = new HashSet<>();
    private final Set conditions;
    public ConfigurationMethodBeanFactory(Supplier supplier, Method method, BeanType beanType, String name,
                                          Set conditions) {
        this.supplier = supplier;
        this.method = method;
        this.beanType = beanType;
        this.names.add(name);
        this.conditions = conditions;
    }

    @Override
    public Bean factoryBean(ApplicationContext applicationContext) {
        // todo params
        return ReflectionHelper.invokeMethod(supplier.get(), method);
    }

    @Override
    public Bean factoryNamedBean(String name, ApplicationContext applicationContext) {
        // todo params
        return ReflectionHelper.invokeMethod(supplier.get(), method);
    }

    @Override
    public boolean isCreated() {
        return false;
    }

    @Override
    public Bean getCreatedBean() {
        return null;
    }

    @Override
    public Set getConditions() {
        return conditions;
    }

    @Override
    public Class getBeanClass() {
        return method.getReturnType();
    }

    @Override
    public BeanType getBeanType() {
        return beanType;
    }

    @Override
    public boolean isSingleton() {
        return true;
    }

    public void addName(String name) {
        this.names.add(name);
    }

    @Override
    public Set getBeanNames() {
        return names;
    }

    @Override
    public void destruct(ApplicationContext applicationContext) {
    }

    @Override
    public boolean equals(Object o) {
        return isEquals(o);
    }

    @Override
    public int hashCode() {
        return getHashCode(super.hashCode());
    }

    @Override
    public Logger getLogger() {
        return LoggerFactory.getLogger(ConfigurationMethodBeanFactory.class);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy