org.glassfish.hk2.utilities.reflection.internal.ClassReflectionHelperImpl Maven / Gradle / Ivy
/*
* Copyright (c) 2014, 2018 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0, which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* This Source Code may also be made available under the following Secondary
* Licenses when the conditions for such availability set forth in the
* Eclipse Public License v. 2.0 are satisfied: GNU General Public License,
* version 2 with the GNU Classpath Exception, which is available at
* https://www.gnu.org/software/classpath/license.html.
*
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
*/
package org.glassfish.hk2.utilities.reflection.internal;
import java.lang.reflect.Field;
import java.lang.reflect.Method;
import java.util.Set;
import org.glassfish.hk2.utilities.cache.Computable;
import org.glassfish.hk2.utilities.cache.HybridCacheEntry;
import org.glassfish.hk2.utilities.cache.LRUHybridCache;
import org.glassfish.hk2.utilities.reflection.ClassReflectionHelper;
import org.glassfish.hk2.utilities.reflection.MethodWrapper;
/**
* @author jwells
*
*/
public class ClassReflectionHelperImpl implements ClassReflectionHelper {
private final int MAX_CACHE_SIZE = 20000;
private final LRUHybridCache postConstructCache =
new LRUHybridCache(MAX_CACHE_SIZE, new Computable>() {
@Override
public HybridCacheEntry compute(LifecycleKey key) {
return postConstructCache.createCacheEntry(key, getPostConstructMethod(key.clazz, key.matchingClass), false);
}
});
private final LRUHybridCache preDestroyCache =
new LRUHybridCache(MAX_CACHE_SIZE, new Computable>() {
@Override
public HybridCacheEntry compute(LifecycleKey key) {
return preDestroyCache.createCacheEntry(key, getPreDestroyMethod(key.clazz, key.matchingClass), false);
}
});
private final LRUHybridCache, Set> methodCache =
new LRUHybridCache, Set>(MAX_CACHE_SIZE, new Computable, HybridCacheEntry>>() {
@Override
public HybridCacheEntry> compute(Class> key) {
return methodCache.createCacheEntry(key, ClassReflectionHelperUtilities.getAllMethodWrappers(key), false);
}
});
private final LRUHybridCache, Set> fieldCache =
new LRUHybridCache, Set>(MAX_CACHE_SIZE, new Computable, HybridCacheEntry>>() {
@Override
public HybridCacheEntry> compute(Class> key) {
return fieldCache.createCacheEntry(key, ClassReflectionHelperUtilities.getAllFieldWrappers(key), false);
}
});
public ClassReflectionHelperImpl() {
}
/* (non-Javadoc)
* @see org.glassfish.hk2.utilities.reflection.ClassReflectionHelper#getAllMethods(java.lang.Class)
*/
@Override
public Set getAllMethods(final Class> clazz) {
return methodCache.compute(clazz).getValue();
}
@Override
public Set getAllFields(final Class> clazz) {
return fieldCache.compute(clazz).getValue();
}
@Override
public Method findPostConstruct(final Class> clazz, Class> matchingClass)
throws IllegalArgumentException {
return postConstructCache.compute(new LifecycleKey(clazz, matchingClass)).getValue();
}
@Override
public Method findPreDestroy(final Class> clazz, Class> matchingClass)
throws IllegalArgumentException {
return preDestroyCache.compute(new LifecycleKey(clazz, matchingClass)).getValue();
}
@Override
public void clean(Class> clazz) {
while ((clazz != null) && !Object.class.equals(clazz)) {
postConstructCache.remove(new LifecycleKey(clazz, null));
preDestroyCache.remove(new LifecycleKey(clazz, null));
methodCache.remove(clazz);
fieldCache.remove(clazz);
clazz = clazz.getSuperclass();
}
}
/* (non-Javadoc)
* @see org.glassfish.hk2.utilities.reflection.ClassReflectionHelper#createMethodWrapper(java.lang.reflect.Method)
*/
@Override
public MethodWrapper createMethodWrapper(Method m) {
return new MethodWrapperImpl(m);
}
@Override
public void dispose() {
postConstructCache.clear();
preDestroyCache.clear();
methodCache.clear();
fieldCache.clear();
}
/* (non-Javadoc)
* @see org.glassfish.hk2.utilities.reflection.ClassReflectionHelper#size()
*/
@Override
public int size() {
return postConstructCache.size() +
preDestroyCache.size() +
methodCache.size() +
fieldCache.size();
}
private Method getPostConstructMethod(Class> clazz, Class> matchingClass) {
if (clazz == null || Object.class.equals(clazz)) return null;
if (matchingClass.isAssignableFrom(clazz)) {
// A little performance optimization
Method retVal;
try {
retVal = clazz.getMethod(ClassReflectionHelperUtilities.CONVENTION_POST_CONSTRUCT, new Class>[0]);
}
catch (NoSuchMethodException e) {
retVal = null;
}
return retVal;
}
for (MethodWrapper wrapper : getAllMethods(clazz)) {
Method m = wrapper.getMethod();
if (ClassReflectionHelperUtilities.isPostConstruct(m)) return m;
}
return null;
}
private Method getPreDestroyMethod(Class> clazz, Class> matchingClass) {
if (clazz == null || Object.class.equals(clazz)) return null;
if (matchingClass.isAssignableFrom(clazz)) {
// A little performance optimization
Method retVal;
try {
retVal = clazz.getMethod(ClassReflectionHelperUtilities.CONVENTION_PRE_DESTROY, new Class>[0]);
}
catch (NoSuchMethodException e) {
retVal = null;
}
return retVal;
}
for (MethodWrapper wrapper : getAllMethods(clazz)) {
Method m = wrapper.getMethod();
if (ClassReflectionHelperUtilities.isPreDestroy(m)) return m;
}
return null;
}
@Override
public String toString() {
return "ClassReflectionHelperImpl(" + System.identityHashCode(this) + ")";
}
private final static class LifecycleKey {
private final Class> clazz;
private final Class> matchingClass;
private final int hash;
private LifecycleKey(Class> clazz, Class> matchingClass) {
this.clazz = clazz;
this.matchingClass = matchingClass;
hash = clazz.hashCode();
}
@Override
public int hashCode() { return hash; }
@Override
public boolean equals(Object o) {
if (o == null) return false;
if (!(o instanceof LifecycleKey)) return false;
return clazz.equals(((LifecycleKey) o).clazz);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy