Package org.datanucleus.enhancer
Class EnhancementHelper
- java.lang.Object
-
- org.datanucleus.enhancer.EnhancementHelper
-
public class EnhancementHelper extends Object
Helper class for the DN bytecode enhancement contract. It contains methods to register metadata for persistable classes and to perform common operations needed by implementations, not by end users.It allows construction of instances of persistable classes without using reflection.
Persistable classes register themselves via a static method at class load time. There is no security restriction on this access. TODO Provide a mechanism to automatically deregister classes when their class loader exits? or register against the NucleusContext?
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interfaceEnhancementHelper.RegisterClassListener
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddRegisterClassListener(EnhancementHelper.RegisterClassListener crl)Add the specifiedRegisterClassListenerto the listener list.static EnhancementHelpergetInstance()Collection<Class>getRegisteredClasses()Returns a collection of class objects of the registered persistable classes.PersistablenewInstance(Class pcClass, StateManager sm)Create a new instance of the class and assign its StateManager.PersistablenewInstance(Class pcClass, StateManager sm, Object oid)Create a new instance of the class and assign its StateManager and key values from the ObjectId.ObjectnewObjectIdInstance(Class pcClass)Create a new instance of the ObjectId class of thisPersistableclass.ObjectnewObjectIdInstance(Class pcClass, Object obj)Create a new instance of the class used by the parameter Class for JDO identity, using the key constructor of the object id class.static voidregisterClass(Class pcClass, Persistable pc)Register metadata by class.voidremoveRegisterClassListener(EnhancementHelper.RegisterClassListener crl)Remove the specifiedRegisterClassListenerfrom the listener list.voidunregisterClasses(ClassLoader cl)Unregister all classes for the specified class loader.
-
-
-
Method Detail
-
getInstance
public static EnhancementHelper getInstance()
-
newInstance
public Persistable newInstance(Class pcClass, StateManager sm)
Create a new instance of the class and assign its StateManager.- Parameters:
pcClass- thePersistableclass.sm- theStateManagerwhich will own the new instance.- Returns:
- the new instance, or
nullif the class is not registered. - See Also:
Persistable.dnNewInstance(StateManager sm)
-
newInstance
public Persistable newInstance(Class pcClass, StateManager sm, Object oid)
Create a new instance of the class and assign its StateManager and key values from the ObjectId. If the oid parameter isnull, no key values are copied. The new instance has itsdnFlagsset toLOAD_REQUIRED.- Parameters:
pcClass- thePersistableclass.sm- theStateManagerwhich will own the new instance.oid- the ObjectId instance from which to copy key field values.- Returns:
- the new instance, or
nullif the class is not registered. - See Also:
Persistable.dnNewInstance(StateManager sm, Object oid)
-
newObjectIdInstance
public Object newObjectIdInstance(Class pcClass)
Create a new instance of the ObjectId class of thisPersistableclass. It is intended only for application identity. This method should not be called for classes that use single field identity; newObjectIdInstance(Class, Object) should be used instead. If the class has been enhanced for datastore identity, or if the class is abstract, null is returned.- Parameters:
pcClass- thePersistableclass.- Returns:
- the new ObjectId instance, or
nullif the class is not registered.
-
newObjectIdInstance
public Object newObjectIdInstance(Class pcClass, Object obj)
Create a new instance of the class used by the parameter Class for JDO identity, using the key constructor of the object id class. It is intended for single field identity. The identity instance returned has no relationship with the values of the primary key fields of the persistence-capable instance on which the method is called. If the key is the wrong class for the object id class, null is returned.For classes that use single field identity, if the parameter is of one of the following types, the behavior must be as specified:
NumberorCharacter: the parameter must be the single field type or the wrapper class of the primitive field type; the parameter is passed to the single field identity constructorObjectIdFieldSupplier: the field value is fetched from theObjectIdFieldSupplierand passed to the single field identity constructorString: the String is passed to the single field identity constructor
- Parameters:
obj- theObjectform of the object idpcClass- thePersistableclass.- Returns:
- the new ObjectId instance, or
nullif the class is not registered.
-
registerClass
public static void registerClass(Class pcClass, Persistable pc)
Register metadata by class. This is called by the enhanced constructor of thePersistableclass.- Parameters:
pcClass- thePersistableclass used as the key for lookup.pc- an instance of thePersistableclass. TODO We can just do pcClass.newInstance() to get one!
-
unregisterClasses
public void unregisterClasses(ClassLoader cl)
Unregister all classes for the specified class loader.- Parameters:
cl- ClassLoader
-
addRegisterClassListener
public void addRegisterClassListener(EnhancementHelper.RegisterClassListener crl)
Add the specifiedRegisterClassListenerto the listener list.- Parameters:
crl- the listener to be added
-
removeRegisterClassListener
public void removeRegisterClassListener(EnhancementHelper.RegisterClassListener crl)
Remove the specifiedRegisterClassListenerfrom the listener list.- Parameters:
crl- the listener to be removed
-
getRegisteredClasses
public Collection<Class> getRegisteredClasses()
Returns a collection of class objects of the registered persistable classes.- Returns:
- registered persistable classes
-
-