Package org.hibernate.bytecode.cglib

Source Code of org.hibernate.bytecode.cglib.BytecodeProviderImpl

/*
* Hibernate, Relational Persistence for Idiomatic Java
*
* Copyright (c) 2008, Red Hat Middleware LLC or third-party contributors as
* indicated by the @author tags or express copyright attribution
* statements applied by the authors.  All third-party contributions are
* distributed under license by Red Hat Middleware LLC.
*
* This copyrighted material is made available to anyone wishing to use, modify,
* copy, or redistribute it subject to the terms and conditions of the GNU
* Lesser General Public License, as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License
* for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this distribution; if not, write to:
* Free Software Foundation, Inc.
* 51 Franklin Street, Fifth Floor
* Boston, MA  02110-1301  USA
*
*/
package org.hibernate.bytecode.cglib;

import java.lang.reflect.Modifier;

import org.hibernate.repackage.cglib.beans.BulkBean;
import org.hibernate.repackage.cglib.beans.BulkBeanException;
import org.hibernate.repackage.cglib.reflect.FastClass;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.hibernate.bytecode.BytecodeProvider;
import org.hibernate.bytecode.ProxyFactoryFactory;
import org.hibernate.bytecode.ReflectionOptimizer;
import org.hibernate.bytecode.util.FieldFilter;
import org.hibernate.util.StringHelper;

/**
* Bytecode provider implementation for CGLIB.
*
* @author Steve Ebersole
*/
public class BytecodeProviderImpl implements BytecodeProvider {

  private static final Logger log = LoggerFactory.getLogger( BytecodeProviderImpl.class );

  public BytecodeProviderImpl() {
    log.warn( "The CGLIB BytecodeProvider impl is considered deprecated and not recommended for use" );
  }

  public ProxyFactoryFactory getProxyFactoryFactory() {
    return new ProxyFactoryFactoryImpl();
  }

  public ReflectionOptimizer getReflectionOptimizer(
      Class clazz,
          String[] getterNames,
          String[] setterNames,
          Class[] types) {
    FastClass fastClass;
    BulkBean bulkBean;
    try {
      fastClass = FastClass.create( clazz );
      bulkBean = BulkBean.create( clazz, getterNames, setterNames, types );
      if ( !clazz.isInterface() && !Modifier.isAbstract( clazz.getModifiers() ) ) {
        if ( fastClass == null ) {
          bulkBean = null;
        }
        else {
          //test out the optimizer:
          Object instance = fastClass.newInstance();
          bulkBean.setPropertyValues( instance, bulkBean.getPropertyValues( instance ) );
        }
      }
    }
    catch( Throwable t ) {
      fastClass = null;
      bulkBean = null;
      String message = "reflection optimizer disabled for: " +
                       clazz.getName() +
                       " [" +
                       StringHelper.unqualify( t.getClass().getName() ) +
                       ": " +
                       t.getMessage();

      if (t instanceof BulkBeanException ) {
        int index = ( (BulkBeanException) t ).getIndex();
        if (index >= 0) {
          message += " (property " + setterNames[index] + ")";
        }
      }

      log.debug( message );
    }

    if ( fastClass != null && bulkBean != null ) {
      return new ReflectionOptimizerImpl(
          new InstantiationOptimizerAdapter( fastClass ),
              new AccessOptimizerAdapter( bulkBean, clazz )
      );
    }
    else {
      return null;
    }
  }

  public org.hibernate.bytecode.ClassTransformer getTransformer(org.hibernate.bytecode.util.ClassFilter classFilter, FieldFilter fieldFilter) {
    return new CglibClassTransformer( classFilter, fieldFilter );
  }

}
TOP

Related Classes of org.hibernate.bytecode.cglib.BytecodeProviderImpl

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.