Package net.sf.cglib.core
Class AbstractClassGenerator<T>
- java.lang.Object
-
- net.sf.cglib.core.AbstractClassGenerator<T>
-
- All Implemented Interfaces:
ClassGenerator
- Direct Known Subclasses:
BeanCopier.Generator,BeanGenerator,BeanMap.Generator,BulkBean.Generator,ConstructorDelegate.Generator,Enhancer,FastClass.Generator,ImmutableBean.Generator,InterfaceMaker,KeyFactory.Generator,MethodDelegate.Generator,Mixin.Generator,MulticastDelegate.Generator,ParallelSorter.Generator,StringSwitcher.Generator
public abstract class AbstractClassGenerator<T> extends java.lang.Object implements ClassGenerator
Abstract class for all code-generating CGLIB utilities. In addition to caching generated classes for performance, it provides hooks for customizing theClassLoader, name of the generated class, and transformations applied before generation.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description protected static classAbstractClassGenerator.ClassLoaderDataprotected static classAbstractClassGenerator.Source
-
Field Summary
Fields Modifier and Type Field Description private booleanattemptLoadprivate static java.util.Map<java.lang.ClassLoader,AbstractClassGenerator.ClassLoaderData>CACHEprivate java.lang.ClassLoaderclassLoaderprivate java.lang.StringclassNameprivate static java.lang.ThreadLocalCURRENTprivate static booleanDEFAULT_USE_CACHEprivate java.lang.Objectkeyprivate java.lang.StringnamePrefixprivate NamingPolicynamingPolicyprivate AbstractClassGenerator.Sourcesourceprivate GeneratorStrategystrategyprivate booleanuseCache
-
Constructor Summary
Constructors Modifier Constructor Description protectedAbstractClassGenerator(AbstractClassGenerator.Source source)
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description protected java.lang.Objectcreate(java.lang.Object key)protected abstract java.lang.ObjectfirstInstance(java.lang.Class type)protected java.lang.Classgenerate(AbstractClassGenerator.ClassLoaderData data)private java.lang.StringgenerateClassName(Predicate nameTestPredicate)booleangetAttemptLoad()java.lang.ClassLoadergetClassLoader()protected java.lang.StringgetClassName()static AbstractClassGeneratorgetCurrent()Used internally by CGLIB.protected abstract java.lang.ClassLoadergetDefaultClassLoader()NamingPolicygetNamingPolicy()protected java.security.ProtectionDomaingetProtectionDomain()Returns the protection domain to use when defining the class.GeneratorStrategygetStrategy()booleangetUseCache()protected abstract java.lang.ObjectnextInstance(java.lang.Object instance)voidsetAttemptLoad(boolean attemptLoad)If set, CGLIB will attempt to load classes from the specifiedClassLoaderbefore generating them.voidsetClassLoader(java.lang.ClassLoader classLoader)Set theClassLoaderin which the class will be generated.private voidsetClassName(java.lang.String className)protected voidsetNamePrefix(java.lang.String namePrefix)voidsetNamingPolicy(NamingPolicy namingPolicy)Override the default naming policy.voidsetStrategy(GeneratorStrategy strategy)Set the strategy to use to create the bytecode from this generator.voidsetUseCache(boolean useCache)Whether use and update the static cache of generated classes for a class with the same properties.protected java.lang.ObjectunwrapCachedValue(T cached)protected TwrapCachedClass(java.lang.Class klass)-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface net.sf.cglib.core.ClassGenerator
generateClass
-
-
-
-
Field Detail
-
CURRENT
private static final java.lang.ThreadLocal CURRENT
-
CACHE
private static volatile java.util.Map<java.lang.ClassLoader,AbstractClassGenerator.ClassLoaderData> CACHE
-
DEFAULT_USE_CACHE
private static final boolean DEFAULT_USE_CACHE
-
strategy
private GeneratorStrategy strategy
-
namingPolicy
private NamingPolicy namingPolicy
-
source
private AbstractClassGenerator.Source source
-
classLoader
private java.lang.ClassLoader classLoader
-
namePrefix
private java.lang.String namePrefix
-
key
private java.lang.Object key
-
useCache
private boolean useCache
-
className
private java.lang.String className
-
attemptLoad
private boolean attemptLoad
-
-
Constructor Detail
-
AbstractClassGenerator
protected AbstractClassGenerator(AbstractClassGenerator.Source source)
-
-
Method Detail
-
wrapCachedClass
protected T wrapCachedClass(java.lang.Class klass)
-
unwrapCachedValue
protected java.lang.Object unwrapCachedValue(T cached)
-
setNamePrefix
protected void setNamePrefix(java.lang.String namePrefix)
-
getClassName
protected final java.lang.String getClassName()
-
setClassName
private void setClassName(java.lang.String className)
-
generateClassName
private java.lang.String generateClassName(Predicate nameTestPredicate)
-
setClassLoader
public void setClassLoader(java.lang.ClassLoader classLoader)
Set theClassLoaderin which the class will be generated. Concrete subclasses ofAbstractClassGenerator(such asEnhancer) will try to choose an appropriate default if this is unset.Classes are cached per-
ClassLoaderusing aWeakHashMap, to allow the generated classes to be removed when the associated loader is garbage collected.- Parameters:
classLoader- the loader to generate the new class with, or null to use the default
-
setNamingPolicy
public void setNamingPolicy(NamingPolicy namingPolicy)
Override the default naming policy.- Parameters:
namingPolicy- the custom policy, or null to use the default- See Also:
DefaultNamingPolicy
-
getNamingPolicy
public NamingPolicy getNamingPolicy()
-
setUseCache
public void setUseCache(boolean useCache)
Whether use and update the static cache of generated classes for a class with the same properties. Default istrue.
-
getUseCache
public boolean getUseCache()
- See Also:
setUseCache(boolean)
-
setAttemptLoad
public void setAttemptLoad(boolean attemptLoad)
If set, CGLIB will attempt to load classes from the specifiedClassLoaderbefore generating them. Because generated class names are not guaranteed to be unique, the default isfalse.
-
getAttemptLoad
public boolean getAttemptLoad()
-
setStrategy
public void setStrategy(GeneratorStrategy strategy)
Set the strategy to use to create the bytecode from this generator. By default an instance of {@see DefaultGeneratorStrategy} is used.
-
getStrategy
public GeneratorStrategy getStrategy()
-
getCurrent
public static AbstractClassGenerator getCurrent()
Used internally by CGLIB. Returns theAbstractClassGeneratorthat is being used to generate a class in the current thread.
-
getClassLoader
public java.lang.ClassLoader getClassLoader()
-
getDefaultClassLoader
protected abstract java.lang.ClassLoader getDefaultClassLoader()
-
getProtectionDomain
protected java.security.ProtectionDomain getProtectionDomain()
Returns the protection domain to use when defining the class.Default implementation returns
nullfor using a default protection domain. Sub-classes may override to use a more specific protection domain.- Returns:
- the protection domain (
nullfor using a default)
-
create
protected java.lang.Object create(java.lang.Object key)
-
generate
protected java.lang.Class generate(AbstractClassGenerator.ClassLoaderData data)
-
firstInstance
protected abstract java.lang.Object firstInstance(java.lang.Class type) throws java.lang.Exception- Throws:
java.lang.Exception
-
nextInstance
protected abstract java.lang.Object nextInstance(java.lang.Object instance) throws java.lang.Exception- Throws:
java.lang.Exception
-
-