Package org.impalaframework.spring.service.exporter

Source Code of org.impalaframework.spring.service.exporter.SpringModuleServiceUtils

/*
* Copyright 2007-2008 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.impalaframework.spring.service.exporter;

import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.impalaframework.exception.ExecutionException;
import org.impalaframework.service.NamedServiceEndpoint;
import org.impalaframework.service.ServiceBeanReference;
import org.impalaframework.spring.service.SpringServiceBeanReference;
import org.impalaframework.spring.service.StaticSpringServiceBeanReference;
import org.springframework.beans.factory.BeanFactory;
import org.springframework.beans.factory.BeanIsNotAFactoryException;
import org.springframework.beans.factory.FactoryBean;
import org.springframework.beans.factory.HierarchicalBeanFactory;
import org.springframework.beans.factory.config.BeanDefinition;
import org.springframework.beans.factory.support.BeanDefinitionRegistry;
import org.springframework.util.Assert;

/**
*
* @author Phil Zoio
*/
public abstract class SpringModuleServiceUtils {

    private static final Log logger = LogFactory.getLog(SpringModuleServiceUtils.class);
   
    /**
     * Returns instance of {@link StaticSpringServiceBeanReference} if bean is represented by a singleton
     * and {@link SpringServiceBeanReference} if not.
     * @see #isSingleton(BeanFactory, String)
     */
    static ServiceBeanReference newServiceBeanReference(BeanFactory beanFactory, String beanName) {

        Object bean = beanFactory.getBean(beanName);
        boolean singleton = isSingleton(beanFactory, beanName);
        if (singleton) {
            return new StaticSpringServiceBeanReference(bean);
        }
        return new SpringServiceBeanReference(beanFactory, beanName);
    }

    /**
     * Checks that the bean with given name contained in the specified bean factory is a singleton.
     * Will return true if bean represented by a bean registered under the scope <code>singletone</code>.
     * If the bean is also a factory bean (see {@link FactoryBean}), then the {@link FactoryBean}
     * instance also needs to be a singleton
     * @return true if bean is singleton registered bean and, if applicable, a singleton {@link FactoryBean}.
     */
    public static boolean isSingleton(
            BeanFactory beanFactory,
            String beanName) {

        Assert.notNull(beanFactory, "beanFactory cannot be null");
        Assert.notNull(beanName, "beanName cannot be null");

        boolean singleton = true;

        boolean isBeanFactory = beanFactory.containsBean(BeanFactory.FACTORY_BEAN_PREFIX + beanName);
        if (isBeanFactory) {
            FactoryBean factoryBean = (FactoryBean) beanFactory.getBean(BeanFactory.FACTORY_BEAN_PREFIX + beanName);
            singleton = factoryBean.isSingleton();
        }
       
        if (singleton) {
            BeanDefinitionRegistry registry = (BeanDefinitionRegistry) beanFactory;
           
            //we're only interested in top level definitions
            //inner beans won't appear here, so
            boolean containsBeanDefinition = registry.containsBeanDefinition(beanName);
            if (containsBeanDefinition) {
                BeanDefinition beanDefinition = registry.getBeanDefinition(beanName);
                singleton = beanDefinition.isSingleton();
            } else {
                if (logger.isDebugEnabled()) {
                    logger.debug("Cannot check whether bean definition " + beanName + " is singleton as it is not available as a top level bean");
                }
            }
        }
        return singleton;
    }

    /**
     * If parent bean factory contains bean of the same name which is a {@link FactoryBean}
     * implementing the {@link NamedServiceEndpoint} interface, then this instance will be returned.
     * Otherwise, returns null.
     * @param beanFactory the current bean's bean factory
     * @param beanName the name of the bean to check
     * @return {@link NamedServiceEndpoint} if present, otherwise null.
     */
    static NamedServiceEndpoint findServiceEndpoint(
            BeanFactory beanFactory, String beanName) {

        NamedServiceEndpoint endpoint = null;

        //continue looping until you find an endpoint or have no more parents to check through
        while (beanFactory != null && endpoint == null) {

            if (beanFactory instanceof HierarchicalBeanFactory) {

                HierarchicalBeanFactory hierarchicalBeanFactory = (HierarchicalBeanFactory) beanFactory;
                beanFactory = hierarchicalBeanFactory.getParentBeanFactory();

                endpoint = getEndpoint(beanFactory, beanName);
            }

        }
        return endpoint;
    }

    /**
     * Returns {@link NamedServiceEndpoint} from specified {@link BeanFactory} and bean name
     * (qualified using the factory bean prefix &), assuming this exists.
     */
    private static NamedServiceEndpoint getEndpoint(BeanFactory beanFactory,
            String beanName) {
       
        NamedServiceEndpoint endpoint = null;
        if (beanFactory != null) {
     
            String parentFactoryBeanName = "&" + beanName;
     
            try {
     
                if (beanFactory.containsBean(parentFactoryBeanName)) {
                    Object o = beanFactory.getBean(parentFactoryBeanName);
                    if (o instanceof NamedServiceEndpoint) {
                        endpoint = (NamedServiceEndpoint) o;
                    }
                }
            }
            catch (BeanIsNotAFactoryException e) {
                // This is check is only present due to a bug in an early
                // 2.0
                // release, which was fixed certainly before 2.0.6
                // ordinarily, this exception will never be thrown
            }
        }
        return endpoint;
    }

    /**
     * Recursive method to return the root bean factory for the current bean factory.
     * Relies on children {@link BeanFactory}s implementing the {@link HierarchicalBeanFactory}
     * interface
     */
    static BeanFactory getRootBeanFactory(BeanFactory beanFactory) {

        if (!(beanFactory instanceof HierarchicalBeanFactory)) {
            throw new ExecutionException(BeanFactory.class.getSimpleName()
                    + " " + beanFactory + " is of type "
                    + beanFactory.getClass().getName()
                    + ", which is not an instance of "
                    + HierarchicalBeanFactory.class.getName());
        }

        HierarchicalBeanFactory hierarchicalFactory = (HierarchicalBeanFactory) beanFactory;
        BeanFactory parentBeanFactory = hierarchicalFactory
                .getParentBeanFactory();

        if (parentBeanFactory != null) {
            beanFactory = getRootBeanFactory(parentBeanFactory);
        }
        return beanFactory;
    }

}
TOP

Related Classes of org.impalaframework.spring.service.exporter.SpringModuleServiceUtils

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.