Class JDOImplHelper
JDOImplHelper allows construction of instances of
persistence-capable classes without using reflection.
Persistence-capable classes register themselves via a static method at class load time. There is no security restriction on this access. JDO implementations get access to the functions provided by this class only if they are authorized by the security manager. To avoid having every call go through the security manager, only the call to get an instance is checked. Once an implementation has an instance, any of the methods can be invoked without security checks.
- Version:
- 2.1
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic interfaceThis is an interface used to interrogate the state of an instance that does not implement PersistenceCapable.static interfaceThis is an interface used to interrogate the state of an instance that does not implement PersistenceCapable.static interfaceConstruct an instance of a key class using a String as input. -
Method Summary
Modifier and TypeMethodDescriptionvoidAdd the specifiedRegisterClassListenerto the listener list.voidAdd a StateInterrogation to the list.static voidCheck that the parameter instance is of a class that is authorized for JDOPermission("setStateManager").static voidcheckAuthorizedStateManagerClass(Class smClass) Check that the parameter instance is a class that is authorized for JDOPermission("setStateManager").static ObjectConstruct an instance of the parameter class, using the keyString as an argument to the constructor.voidcopyKeyFieldsFromObjectId(Class pcClass, PersistenceCapable.ObjectIdFieldConsumer fm, Object oid) Copy fields to an outside source from the key fields in the ObjectId.voidcopyKeyFieldsToObjectId(Class pcClass, PersistenceCapable.ObjectIdFieldSupplier fm, Object oid) Copy fields from an outside source to the key fields in the ObjectId.byte[]getFieldFlags(Class pcClass) Get the field flags for aPersistenceCapableclass.String[]getFieldNames(Class pcClass) Get the field names for aPersistenceCapableclass.Class[]getFieldTypes(Class pcClass) Get the field types for aPersistenceCapableclass.static JDOImplHelperGet an instance ofJDOImplHelper.getPersistenceCapableSuperclass(Class pcClass) Get the persistence-capable superclass for aPersistenceCapableclass.Returns a collection of class objects of the registered persistence-capable classes.static DocumentBuilderFactoryReturn the registered instance of DocumentBuilderFactory.static ErrorHandlerReturn the registered instance of ErrorHandler.newInstance(Class pcClass, StateManager sm) Create a new instance of the class and assign itsjdoStateManager.newInstance(Class pcClass, StateManager sm, Object oid) Create a new instance of the class and assign itsjdoStateManagerand key values from the ObjectId.newObjectIdInstance(Class pcClass) Create a new instance of the ObjectId class of thisPersistenceCapableclass.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.Return an object associated with a non-binary-compatible instance.booleanDetermine the state of a non-binary-compatible instance.voidnonBinaryCompatibleMakeDirty(Object pc, String fieldName) Mark a non-binary-compatible instance dirty.static voidregisterAuthorizedStateManagerClass(Class smClass) Register a class authorized to replaceStateManager.static voidregisterAuthorizedStateManagerClasses(Collection smClasses) Register classes authorized to replaceStateManager.static voidregisterClass(Class pcClass, String[] fieldNames, Class[] fieldTypes, byte[] fieldFlags, Class persistenceCapableSuperclass, PersistenceCapable pc) Register metadata by class.voidRegister a DateFormat instance for use with constructing Date instances.voidRegister a DocumentBuilderFactory instance for use in parsing the resource(s) META-INF/jdoconfig.xml.voidregisterErrorHandler(ErrorHandler handler) Register an ErrorHandler instance for use in parsing the resource(s) META-INF/jdoconfig.xml.Register special StringConstructor instances.voidRemove the specifiedRegisterClassListenerfrom the listener list.voidRemove a StateInterrogation from the list.voidunregisterClass(Class pcClass) Unregister metadata by class.voidUnregister metadata by class loader.
-
Method Details
-
getInstance
Get an instance ofJDOImplHelper. This method checks that the caller is authorized forJDOPermission("getMetadata"), and if not, throwsSecurityException.- Returns:
- an instance of
JDOImplHelper. - Throws:
SecurityException- if the caller is not authorized for JDOPermission("getMetadata").
-
getFieldNames
-
getFieldTypes
-
getFieldFlags
Get the field flags for aPersistenceCapableclass. The order of fields is the same as for field names.- Parameters:
pcClass- thePersistenceCapableclass.- Returns:
- the field types for the class.
-
getPersistenceCapableSuperclass
-
newInstance
Create a new instance of the class and assign itsjdoStateManager. The new instance has itsjdoFlagsset toLOAD_REQUIRED.- Parameters:
pcClass- thePersistenceCapableclass.sm- theStateManagerwhich will own the new instance.- Returns:
- the new instance, or
nullif the class is not registered. - See Also:
-
newInstance
Create a new instance of the class and assign itsjdoStateManagerand key values from the ObjectId. If the oid parameter isnull, no key values are copied. The new instance has itsjdoFlagsset toLOAD_REQUIRED.- Parameters:
pcClass- thePersistenceCapableclass.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:
-
newObjectIdInstance
Create a new instance of the ObjectId class of thisPersistenceCapableclass. 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- thePersistenceCapableclass.- Returns:
- the new ObjectId instance, or
nullif the class is not registered.
-
newObjectIdInstance
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:
pcClass- thePersistenceCapableclass.obj- theObjectform of the object id- Returns:
- the new ObjectId instance, or
nullif the class is not registered. - Since:
- 2.0
-
copyKeyFieldsToObjectId
public void copyKeyFieldsToObjectId(Class pcClass, PersistenceCapable.ObjectIdFieldSupplier fm, Object oid) Copy fields from an outside source to the key fields in the ObjectId. This method is generated in thePersistenceCapableclass to generate a call to the field manager for each key field in the ObjectId.For example, an ObjectId class that has three key fields (
int id,String name, andFloat salary) would have the method generated:void jdoCopyKeyFieldsToObjectId (Object oid, ObjectIdFieldSupplier fm) {
oid.id = fm.fetchIntField (0);
oid.name = fm.fetchStringField (1);
oid.salary = fm.fetchObjectField (2);
}The implementation is responsible for implementing the
ObjectIdFieldSupplierto provide the values for the key fields.- Parameters:
pcClass- thePersistenceCapable Class.fm- the field manager that supplies the field values.oid- the ObjectId target of the copy.
-
copyKeyFieldsFromObjectId
public void copyKeyFieldsFromObjectId(Class pcClass, PersistenceCapable.ObjectIdFieldConsumer fm, Object oid) Copy fields to an outside source from the key fields in the ObjectId. This method is generated in thePersistenceCapableclass to generate a call to the field manager for each key field in the ObjectId. For example, an ObjectId class that has three key fields (int id,String name, andFloat salary) would have the method generated:void jdoCopyKeyFieldsFromObjectId
(PersistenceCapable oid, ObjectIdFieldConsumer fm) {
fm.storeIntField (0, oid.id);
fm.storeStringField (1, oid.name);
fm.storeObjectField (2, oid.salary);
}The implementation is responsible for implementing the
ObjectIdFieldConsumerto store the values for the key fields.- Parameters:
pcClass- thePersistenceCapableclassfm- the field manager that receives the field values.oid- the ObjectId source of the copy.
-
registerClass
public static void registerClass(Class pcClass, String[] fieldNames, Class[] fieldTypes, byte[] fieldFlags, Class persistenceCapableSuperclass, PersistenceCapable pc) Register metadata by class. The registration will be done in the class namedJDOImplHelperloaded by the same or an ancestor class loader as thePersistenceCapableclass performing the registration.- Parameters:
pcClass- thePersistenceCapableclass used as the key for lookup.fieldNames- an array ofStringfield names for persistent and transactional fieldsfieldTypes- an array ofClassfield typesfieldFlags- the Field Flags for persistent and transactional fieldspersistenceCapableSuperclass- the most immediate superclass that isPersistenceCapablepc- an instance of thePersistenceCapableclass
-
unregisterClasses
Unregister metadata by class loader. This method unregisters all registeredPersistenceCapableclasses loaded by the specified class loader. Any attempt to get metadata for unregistered classes will result in aJDOFatalUserException.- Parameters:
cl- the class loader.- Since:
- 1.0.2
-
unregisterClass
Unregister metadata by class. This method unregisters the specified class. Any further attempt to get metadata for the specified class will result in aJDOFatalUserException.- Parameters:
pcClass- thePersistenceCapableclass to be unregistered.- Since:
- 1.0.2
-
addRegisterClassListener
Add the specifiedRegisterClassListenerto the listener list.- Parameters:
crl- the listener to be added
-
removeRegisterClassListener
Remove the specifiedRegisterClassListenerfrom the listener list.- Parameters:
crl- the listener to be removed
-
getRegisteredClasses
Returns a collection of class objects of the registered persistence-capable classes.- Returns:
- registered persistence-capable classes
-
registerAuthorizedStateManagerClass
Register a class authorized to replaceStateManager. The caller of this method must be authorized for JDOPermission("setStateManager"). During replaceStateManager, a persistence-capable class will call the corresponding checkAuthorizedStateManager and the class of the instance of the parameter must have been registered.- Parameters:
smClass- a Class that is authorized for JDOPermission("setStateManager").- Throws:
SecurityException- if the caller is not authorized for JDOPermission("setStateManager").- Since:
- 1.0.1
-
registerAuthorizedStateManagerClasses
public static void registerAuthorizedStateManagerClasses(Collection smClasses) throws SecurityException Register classes authorized to replaceStateManager. The caller of this method must be authorized for JDOPermission("setStateManager"). During replaceStateManager, a persistence-capable class will call the corresponding checkAuthorizedStateManager and the class of the instance of the parameter must have been registered.- Parameters:
smClasses- a Collection of Classes that are authorized for JDOPermission("setStateManager").- Throws:
SecurityException- if the caller is not authorized for JDOPermission("setStateManager").- Since:
- 1.0.1
-
registerDocumentBuilderFactory
Register a DocumentBuilderFactory instance for use in parsing the resource(s) META-INF/jdoconfig.xml. The default is governed by the semantics of DocumentBuilderFactory.newInstance().- Parameters:
factory- the DocumentBuilderFactory instance to use- Since:
- 2.1
-
getRegisteredDocumentBuilderFactory
Return the registered instance of DocumentBuilderFactory.- Returns:
- the DocumentBuilderFactory if registered; null otherwise
- Since:
- 2.1
-
registerErrorHandler
Register an ErrorHandler instance for use in parsing the resource(s) META-INF/jdoconfig.xml. The default is an ErrorHandler that throws on error or fatalError and ignores warnings.- Parameters:
handler- the ErrorHandler instance to use- Since:
- 2.1
-
getRegisteredErrorHandler
Return the registered instance of ErrorHandler.- Returns:
- the registered ErrorHandler if registered; null otherwise
- Since:
- 2.1
-
checkAuthorizedStateManager
Check that the parameter instance is of a class that is authorized for JDOPermission("setStateManager"). This method is called by the replaceStateManager method in persistence-capable classes. A class that is passed as the parameter to replaceStateManager must be authorized for JDOPermission("setStateManager"). To improve performance, first the set of authorized classes is checked, and if not present, a regular permission check is made. The regular permission check requires that all callers on the stack, including the persistence-capable class itself, must be authorized for JDOPermission("setStateManager").- Parameters:
sm- an instance of StateManager whose class is to be checked.- Since:
- 1.0.1
-
checkAuthorizedStateManagerClass
Check that the parameter instance is a class that is authorized for JDOPermission("setStateManager"). This method is called by the constructors of JDO Reference Implementation classes.- Parameters:
smClass- a Class to be checked for JDOPermission("setStateManager")- Since:
- 1.0.1
-
registerStringConstructor
Register special StringConstructor instances. These instances are for constructing instances from String parameters where there is no String constructor for them.- Parameters:
cls- the class to register a StringConstructor forsc- the StringConstructor instance- Returns:
- the previous StringConstructor registered for this class
-
construct
Construct an instance of the parameter class, using the keyString as an argument to the constructor. If the class has a StringConstructor instance registered, use it. If not, try to find a constructor for the class with a single String argument. Otherwise, throw a JDOUserException.- Parameters:
className- the name of the classkeyString- the String parameter for the constructor- Returns:
- the result of construction
-
registerDateFormat
Register a DateFormat instance for use with constructing Date instances. The default is the default DateFormat instance. If the new instance implements SimpleDateFormat, get its pattern for error messages.- Parameters:
df- the DateFormat instance to use- Since:
- 2.0
-
addStateInterrogation
Add a StateInterrogation to the list. Create a new list in case there is an iterator open on the original list.- Parameters:
si- the StateInterrogation to add
-
removeStateInterrogation
Remove a StateInterrogation from the list. Create a new list in case there is an iterator open on the original list.- Parameters:
si- the StateInterrogation to remove
-
nonBinaryCompatibleMakeDirty
-
nonBinaryCompatibleIs
Determine the state of a non-binary-compatible instance. Delegate to all registered StateInterrogation instances until one of them handles the call (returns a non-null Boolean with the answer). The caller provides the stateless "method object" that does the actual call to the StateInterrogation instance.- Parameters:
pc- the instance to be checkedsibr- the method object that delegates to the non-binary-compatible implementation- Returns:
- Boolean.TRUE if the instance satisfies the state interrogation; Boolean.FALSE if the instance does not satisfy the interrogation; or null if the implementation does not manage the class of the instance
-
nonBinaryCompatibleGet
Return an object associated with a non-binary-compatible instance. Delegate to all registered StateInterrogation instances until one of them handles the call (returns a non-null answer). The caller provides the stateless "method object" that does the actual call to the StateInterrogation instance.- Parameters:
pc- the instance whose associated object is neededsibr- the method object that delegates to the non-binary-compatible implementation- Returns:
- the associated object or null if the implementation does not manage the class of the instance
-