/* * Hibernate Validator, declare and validate application constraints * * License: Apache License, Version 2.0 * See the license.txt file in the root directory or <http://www.apache.org/licenses/LICENSE-2.0>. */ package org.hibernate.validator.internal.util.privilegedactions; import java.security.PrivilegedAction; import org.hibernate.validator.HibernateValidator; import org.hibernate.validator.internal.util.logging.Log; import org.hibernate.validator.internal.util.logging.LoggerFactory; /** * Loads a class specified by name. * <p> * If no class loader is provided, first the thread context class loader is tried, and finally Hibernate Validator's own * class loader. * <p> * <b>Note</b>: When loading classes provided by the user (such as XML-configured beans or constraint types), the user * class loader passed to the configuration must be passed. * * @author Emmanuel Bernard * @author Hardy Ferentschik * @author Kevin Pollet <kevin.pollet@serli.com> (C) 2011 SERLI * @author Gunnar Morling */ public final class LoadClass implements PrivilegedAction<Class<?>> { private static final Log log = LoggerFactory.make(); private static final String HIBERNATE_VALIDATOR_CLASS_NAME = "org.hibernate.validator"; private final String className; private final ClassLoader classLoader; /** * when true, it will check the Thread Context ClassLoader when the class is not found in the provided one */ private final boolean fallbackOnTCCL; public static LoadClass action(String className, ClassLoader classLoader) { return new LoadClass( className, classLoader, true ); } public static LoadClass action(String className, ClassLoader classLoader, boolean fallbackOnTCCL) { return new LoadClass( className, classLoader, fallbackOnTCCL ); } private LoadClass(String className, ClassLoader classLoader, boolean fallbackOnTCCL) { this.className = className; this.classLoader = classLoader; this.fallbackOnTCCL = fallbackOnTCCL; } @Override public Class<?> run() { if ( className.startsWith( HIBERNATE_VALIDATOR_CLASS_NAME ) ) { return loadClassInValidatorNameSpace(); } else { return loadNonValidatorClass(); } } // HV-363 - library internal classes are loaded via Class.forName first private Class<?> loadClassInValidatorNameSpace() { final ClassLoader loader = HibernateValidator.class.getClassLoader(); Exception exception; try { return Class.forName( className, true, HibernateValidator.class.getClassLoader() ); } catch (ClassNotFoundException e) { exception = e; } catch (RuntimeException e) { exception = e; } if ( fallbackOnTCCL ) { ClassLoader contextClassLoader = Thread.currentThread().getContextClassLoader(); if ( contextClassLoader != null ) { try { return Class.forName( className, false, contextClassLoader ); } catch (ClassNotFoundException e) { throw log.getUnableToLoadClassException( className, contextClassLoader, e ); } } else { throw log.getUnableToLoadClassException( className, loader, exception ); } } else { throw log.getUnableToLoadClassException( className, loader, exception ); } } private Class<?> loadNonValidatorClass() { Exception exception = null; try { if ( classLoader != null ) { return Class.forName( className, false, classLoader ); } } catch (ClassNotFoundException e) { exception = e; } catch (RuntimeException e) { exception = e; } if ( fallbackOnTCCL ) { try { ClassLoader contextClassLoader = Thread.currentThread().getContextClassLoader(); if ( contextClassLoader != null ) { return Class.forName( className, false, contextClassLoader ); } } catch (ClassNotFoundException e) { // ignore - try using the classloader of the caller first // TODO: might be wise to somehow log this } catch (RuntimeException e) { // ignore } final ClassLoader loader = LoadClass.class.getClassLoader(); try { return Class.forName( className, true, loader ); } catch (ClassNotFoundException e) { throw log.getUnableToLoadClassException( className, loader, e ); } } else { throw log.getUnableToLoadClassException( className, classLoader, exception ); } } }