Package org.springframework.context.annotation

Source Code of org.springframework.context.annotation.ConfigurationClassEnhancer$DisposableBeanMethodInterceptor

/*
* Copyright 2002-2014 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.springframework.context.annotation;

import java.lang.reflect.Field;
import java.lang.reflect.Method;
import java.util.Arrays;

import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;

import org.springframework.aop.scope.ScopedProxyFactoryBean;
import org.springframework.asm.Type;
import org.springframework.beans.factory.BeanFactory;
import org.springframework.beans.factory.BeanFactoryAware;
import org.springframework.beans.factory.DisposableBean;
import org.springframework.beans.factory.config.BeanFactoryPostProcessor;
import org.springframework.beans.factory.config.ConfigurableBeanFactory;
import org.springframework.beans.factory.support.SimpleInstantiationStrategy;
import org.springframework.cglib.core.ClassGenerator;
import org.springframework.cglib.core.Constants;
import org.springframework.cglib.core.DefaultGeneratorStrategy;
import org.springframework.cglib.core.SpringNamingPolicy;
import org.springframework.cglib.proxy.Callback;
import org.springframework.cglib.proxy.CallbackFilter;
import org.springframework.cglib.proxy.Enhancer;
import org.springframework.cglib.proxy.MethodInterceptor;
import org.springframework.cglib.proxy.MethodProxy;
import org.springframework.cglib.proxy.NoOp;
import org.springframework.cglib.transform.ClassEmitterTransformer;
import org.springframework.cglib.transform.TransformingClassGenerator;
import org.springframework.core.annotation.AnnotationUtils;
import org.springframework.util.Assert;
import org.springframework.util.ReflectionUtils;

/**
* Enhances {@link Configuration} classes by generating a CGLIB subclass which
* interacts with the Spring container to respect bean scoping semantics for
* {@code @Bean} methods. Each such {@code @Bean} method will be overridden in
* the generated subclass, only delegating to the actual {@code @Bean} method
* implementation if the container actually requests the construction of a new
* instance. Otherwise, a call to such an {@code @Bean} method serves as a
* reference back to the container, obtaining the corresponding bean by name.
*
* @author Chris Beams
* @author Juergen Hoeller
* @since 3.0
* @see #enhance
* @see ConfigurationClassPostProcessor
*/
class ConfigurationClassEnhancer {

  private static final Callback[] CALLBACKS = new Callback[] {
      new BeanMethodInterceptor(),
      new DisposableBeanMethodInterceptor(),
      new BeanFactoryAwareMethodInterceptor(),
      NoOp.INSTANCE
  };

  private static final ConditionalCallbackFilter CALLBACK_FILTER = new ConditionalCallbackFilter(CALLBACKS);

  private static final DefaultGeneratorStrategy GENERATOR_STRATEGY = new BeanFactoryAwareGeneratorStrategy();

  private static final String BEAN_FACTORY_FIELD = "$$beanFactory";

  private static final Log logger = LogFactory.getLog(ConfigurationClassEnhancer.class);


  /**
   * Loads the specified class and generates a CGLIB subclass of it equipped with
   * container-aware callbacks capable of respecting scoping and other bean semantics.
   * @return the enhanced subclass
   */
  public Class<?> enhance(Class<?> configClass) {
    if (EnhancedConfiguration.class.isAssignableFrom(configClass)) {
      if (logger.isDebugEnabled()) {
        logger.debug(String.format("Ignoring request to enhance %s as it has " +
            "already been enhanced. This usually indicates that more than one " +
            "ConfigurationClassPostProcessor has been registered (e.g. via " +
            "<context:annotation-config>). This is harmless, but you may " +
            "want check your configuration and remove one CCPP if possible",
            configClass.getName()));
      }
      return configClass;
    }
    Class<?> enhancedClass = createClass(newEnhancer(configClass));
    if (logger.isDebugEnabled()) {
      logger.debug(String.format("Successfully enhanced %s; enhanced class name is: %s",
          configClass.getName(), enhancedClass.getName()));
    }
    return enhancedClass;
  }

  /**
   * Creates a new CGLIB {@link Enhancer} instance.
   */
  private Enhancer newEnhancer(Class<?> superclass) {
    Enhancer enhancer = new Enhancer();
    enhancer.setSuperclass(superclass);
    enhancer.setInterfaces(new Class<?>[] {EnhancedConfiguration.class});
    enhancer.setUseFactory(false);
    enhancer.setNamingPolicy(SpringNamingPolicy.INSTANCE);
    enhancer.setStrategy(GENERATOR_STRATEGY);
    enhancer.setCallbackFilter(CALLBACK_FILTER);
    enhancer.setCallbackTypes(CALLBACK_FILTER.getCallbackTypes());
    return enhancer;
  }

  /**
   * Uses enhancer to generate a subclass of superclass,
   * ensuring that callbacks are registered for the new subclass.
   */
  private Class<?> createClass(Enhancer enhancer) {
    Class<?> subclass = enhancer.createClass();
    // Registering callbacks statically (as opposed to thread-local)
    // is critical for usage in an OSGi environment (SPR-5932)...
    Enhancer.registerStaticCallbacks(subclass, CALLBACKS);
    return subclass;
  }


  /**
   * Marker interface to be implemented by all @Configuration CGLIB subclasses.
   * Facilitates idempotent behavior for {@link ConfigurationClassEnhancer#enhance(Class)}
   * through checking to see if candidate classes are already assignable to it, e.g.
   * have already been enhanced.
   * <p>Also extends {@link DisposableBean} and {@link BeanFactoryAware}, as all
   * enhanced {@code @Configuration} classes require access to the {@link BeanFactory}
   * that created them and must de-register static CGLIB callbacks on destruction,
   * which is handled by the (private) {@code DisposableBeanMethodInterceptor}.
   * <p>Note that this interface is intended for framework-internal use only, however
   * must remain public in order to allow access to subclasses generated from other
   * packages (i.e. user code).
   */
  public interface EnhancedConfiguration extends DisposableBean, BeanFactoryAware {
  }


  /**
   * Conditional {@link Callback}.
   * @see ConditionalCallbackFilter
   */
  private static interface ConditionalCallback extends Callback {

    boolean isMatch(Method candidateMethod);
  }


  /**
   * A {@link CallbackFilter} that works by interrogating {@link Callback}s in the order
   * that they are defined via {@link ConditionalCallback}.
   */
  private static class ConditionalCallbackFilter implements CallbackFilter {

    private final Callback[] callbacks;

    private final Class<?>[] callbackTypes;

    public ConditionalCallbackFilter(Callback[] callbacks) {
      this.callbacks = callbacks;
      this.callbackTypes = new Class<?>[callbacks.length];
      for (int i = 0; i < callbacks.length; i++) {
        this.callbackTypes[i] = callbacks[i].getClass();
      }
    }

    @Override
    public int accept(Method method) {
      for (int i = 0; i < this.callbacks.length; i++) {
        if (!(this.callbacks[i] instanceof ConditionalCallback) ||
            ((ConditionalCallback) this.callbacks[i]).isMatch(method)) {
          return i;
        }
      }
      throw new IllegalStateException("No callback available for method " + method.getName());
    }

    public Class<?>[] getCallbackTypes() {
      return this.callbackTypes;
    }
  }


  /**
   * Custom extension of CGLIB's DefaultGeneratorStrategy, introducing a {@link BeanFactory} field.
   */
  private static class BeanFactoryAwareGeneratorStrategy extends DefaultGeneratorStrategy {

    @Override
    protected ClassGenerator transform(ClassGenerator cg) throws Exception {
      ClassEmitterTransformer transformer = new ClassEmitterTransformer() {
        @Override
        public void end_class() {
          declare_field(Constants.ACC_PUBLIC, BEAN_FACTORY_FIELD, Type.getType(BeanFactory.class), null);
          super.end_class();
        }
      };
      return new TransformingClassGenerator(cg, transformer);
    }
  }


  /**
   * Intercepts the invocation of any {@link BeanFactoryAware#setBeanFactory(BeanFactory)} on
   * {@code @Configuration} class instances for the purpose of recording the {@link BeanFactory}.
   * @see EnhancedConfiguration
   */
  private static class BeanFactoryAwareMethodInterceptor implements MethodInterceptor, ConditionalCallback {

    @Override
    public Object intercept(Object obj, Method method, Object[] args, MethodProxy proxy) throws Throwable {
      Field field = obj.getClass().getDeclaredField(BEAN_FACTORY_FIELD);
      Assert.state(field != null, "Unable to find generated BeanFactory field");
      field.set(obj, args[0]);

      // Does the actual (non-CGLIB) superclass actually implement BeanFactoryAware?
      // If so, call its setBeanFactory() method. If not, just exit.
      if (BeanFactoryAware.class.isAssignableFrom(obj.getClass().getSuperclass())) {
        return proxy.invokeSuper(obj, args);
      }
      return null;
    }

    @Override
    public boolean isMatch(Method candidateMethod) {
      return candidateMethod.getName().equals("setBeanFactory") &&
          candidateMethod.getParameterTypes().length == 1 &&
          candidateMethod.getParameterTypes()[0].equals(BeanFactory.class) &&
          BeanFactoryAware.class.isAssignableFrom(candidateMethod.getDeclaringClass());
    }
  }


  /**
   * Intercepts the invocation of any {@link Bean}-annotated methods in order to ensure proper
   * handling of bean semantics such as scoping and AOP proxying.
   * @see Bean
   * @see ConfigurationClassEnhancer
   */
  private static class BeanMethodInterceptor implements MethodInterceptor, ConditionalCallback {

    /**
     * Enhance a {@link Bean @Bean} method to check the supplied BeanFactory for the
     * existence of this bean object.
     * @throws Throwable as a catch-all for any exception that may be thrown when
     * invoking the super implementation of the proxied method i.e., the actual
     * {@code @Bean} method.
     */
    @Override
    public Object intercept(Object enhancedConfigInstance, Method beanMethod, Object[] beanMethodArgs,
          MethodProxy cglibMethodProxy) throws Throwable {

      ConfigurableBeanFactory beanFactory = getBeanFactory(enhancedConfigInstance);
      String beanName = BeanAnnotationHelper.determineBeanNameFor(beanMethod);

      // Determine whether this bean is a scoped-proxy
      Scope scope = AnnotationUtils.findAnnotation(beanMethod, Scope.class);
      if (scope != null && scope.proxyMode() != ScopedProxyMode.NO) {
        String scopedBeanName = ScopedProxyCreator.getTargetBeanName(beanName);
        if (beanFactory.isCurrentlyInCreation(scopedBeanName)) {
          beanName = scopedBeanName;
        }
      }

      // To handle the case of an inter-bean method reference, we must explicitly check the
      // container for already cached instances.

      // First, check to see if the requested bean is a FactoryBean. If so, create a subclass
      // proxy that intercepts calls to getObject() and returns any cached bean instance.
      // This ensures that the semantics of calling a FactoryBean from within @Bean methods
      // is the same as that of referring to a FactoryBean within XML. See SPR-6602.
      if (factoryContainsBean(beanFactory, BeanFactory.FACTORY_BEAN_PREFIX + beanName) &&
          factoryContainsBean(beanFactory, beanName)) {
        Object factoryBean = beanFactory.getBean(BeanFactory.FACTORY_BEAN_PREFIX + beanName);
        if (factoryBean instanceof ScopedProxyFactoryBean) {
          // Pass through - scoped proxy factory beans are a special case and should not
          // be further proxied
        }
        else {
          // It is a candidate FactoryBean - go ahead with enhancement
          return enhanceFactoryBean(factoryBean.getClass(), beanFactory, beanName);
        }
      }

      if (isCurrentlyInvokedFactoryMethod(beanMethod)) {
        // The factory is calling the bean method in order to instantiate and register the bean
        // (i.e. via a getBean() call) -> invoke the super implementation of the method to actually
        // create the bean instance.
        if (BeanFactoryPostProcessor.class.isAssignableFrom(beanMethod.getReturnType())) {
          logger.warn(String.format("@Bean method %s.%s is non-static and returns an object " +
              "assignable to Spring's BeanFactoryPostProcessor interface. This will " +
              "result in a failure to process annotations such as @Autowired, " +
              "@Resource and @PostConstruct within the method's declaring " +
              "@Configuration class. Add the 'static' modifier to this method to avoid " +
              "these container lifecycle issues; see @Bean javadoc for complete details",
              beanMethod.getDeclaringClass().getSimpleName(), beanMethod.getName()));
        }
        return cglibMethodProxy.invokeSuper(enhancedConfigInstance, beanMethodArgs);
      }
      else {
        // The user (i.e. not the factory) is requesting this bean through a
        // call to the bean method, direct or indirect. The bean may have already been
        // marked as 'in creation' in certain autowiring scenarios; if so, temporarily
        // set the in-creation status to false in order to avoid an exception.
        boolean alreadyInCreation = beanFactory.isCurrentlyInCreation(beanName);
        try {
          if (alreadyInCreation) {
            beanFactory.setCurrentlyInCreation(beanName, false);
          }
          return beanFactory.getBean(beanName);
        }
        finally {
          if (alreadyInCreation) {
            beanFactory.setCurrentlyInCreation(beanName, true);
          }
        }
      }
    }

    /**
     * Check the BeanFactory to see whether the bean named <var>beanName</var> already
     * exists. Accounts for the fact that the requested bean may be "in creation", i.e.:
     * we're in the middle of servicing the initial request for this bean. From an enhanced
     * factory method's perspective, this means that the bean does not actually yet exist,
     * and that it is now our job to create it for the first time by executing the logic
     * in the corresponding factory method.
     * <p>Said another way, this check repurposes
     * {@link ConfigurableBeanFactory#isCurrentlyInCreation(String)} to determine whether
     * the container is calling this method or the user is calling this method.
     * @param beanName name of bean to check for
     * @return whether <var>beanName</var> already exists in the factory
     */
    private boolean factoryContainsBean(ConfigurableBeanFactory beanFactory, String beanName) {
      return (beanFactory.containsBean(beanName) && !beanFactory.isCurrentlyInCreation(beanName));
    }

    /**
     * Check whether the given method corresponds to the container's currently invoked
     * factory method. Compares method name and parameter types only in order to work
     * around a potential problem with covariant return types (currently only known
     * to happen on Groovy classes).
     */
    private boolean isCurrentlyInvokedFactoryMethod(Method method) {
      Method currentlyInvoked = SimpleInstantiationStrategy.getCurrentlyInvokedFactoryMethod();
      return (currentlyInvoked != null && method.getName().equals(currentlyInvoked.getName()) &&
          Arrays.equals(method.getParameterTypes(), currentlyInvoked.getParameterTypes()));
    }

    /**
     * Create a subclass proxy that intercepts calls to getObject(), delegating to the current BeanFactory
     * instead of creating a new instance. These proxies are created only when calling a FactoryBean from
     * within a Bean method, allowing for proper scoping semantics even when working against the FactoryBean
     * instance directly. If a FactoryBean instance is fetched through the container via &-dereferencing,
     * it will not be proxied. This too is aligned with the way XML configuration works.
     */
    private Object enhanceFactoryBean(Class<?> fbClass, final ConfigurableBeanFactory beanFactory,
        final String beanName) throws InstantiationException, IllegalAccessException {

      Enhancer enhancer = new Enhancer();
      enhancer.setSuperclass(fbClass);
      enhancer.setUseFactory(false);
      enhancer.setNamingPolicy(SpringNamingPolicy.INSTANCE);
      enhancer.setCallback(new MethodInterceptor() {
        @Override
        public Object intercept(Object obj, Method method, Object[] args, MethodProxy proxy) throws Throwable {
          if (method.getName().equals("getObject") && args.length == 0) {
            return beanFactory.getBean(beanName);
          }
          return proxy.invokeSuper(obj, args);
        }
      });
      return enhancer.create();
    }

    private ConfigurableBeanFactory getBeanFactory(Object enhancedConfigInstance) {
      Field field = ReflectionUtils.findField(enhancedConfigInstance.getClass(), BEAN_FACTORY_FIELD);
      Assert.state(field != null, "Unable to find generated bean factory field");
      Object beanFactory = ReflectionUtils.getField(field, enhancedConfigInstance);
      Assert.state(beanFactory != null, "BeanFactory has not been injected into @Configuration class");
      Assert.state(beanFactory instanceof ConfigurableBeanFactory,
          "Injected BeanFactory is not a ConfigurableBeanFactory");
      return (ConfigurableBeanFactory) beanFactory;
    }

    @Override
    public boolean isMatch(Method candidateMethod) {
      return BeanAnnotationHelper.isBeanAnnotated(candidateMethod);
    }
  }


  /**
   * Intercepts the invocation of any {@link DisposableBean#destroy()} on @Configuration
   * class instances for the purpose of de-registering CGLIB callbacks. This helps avoid
   * garbage collection issues. See SPR-7901.
   * @see EnhancedConfiguration
   */
  private static class DisposableBeanMethodInterceptor implements MethodInterceptor, ConditionalCallback {

    @Override
    public Object intercept(Object obj, Method method, Object[] args, MethodProxy proxy) throws Throwable {
      Enhancer.registerStaticCallbacks(obj.getClass(), null);
      // Does the actual (non-CGLIB) superclass actually implement DisposableBean?
      // If so, call its dispose() method. If not, just exit.
      if (DisposableBean.class.isAssignableFrom(obj.getClass().getSuperclass())) {
        return proxy.invokeSuper(obj, args);
      }
      return null;
    }

    @Override
    public boolean isMatch(Method candidateMethod) {
      return candidateMethod.getName().equals("destroy") &&
          candidateMethod.getParameterTypes().length == 0 &&
          DisposableBean.class.isAssignableFrom(candidateMethod.getDeclaringClass());
    }
  }

}
TOP

Related Classes of org.springframework.context.annotation.ConfigurationClassEnhancer$DisposableBeanMethodInterceptor

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.