Package org.apache.openjpa.kernel
Class AbstractBrokerFactory
java.lang.Object
org.apache.openjpa.kernel.AbstractBrokerFactory
- All Implemented Interfaces:
Serializable
,BrokerFactory
,Closeable
- Direct Known Subclasses:
AbstractStoreBrokerFactory
,JDBCBrokerFactory
Abstract implementation of the
BrokerFactory
that must be subclassed for a specific runtime.- Author:
- Abe White
- See Also:
-
Constructor Summary
ModifierConstructorDescriptionprotected
Constructor. -
Method Summary
Modifier and TypeMethodDescriptionvoid
addLifecycleListener
(Object listener, Class<?>[] classes) Register a listener for lifecycle-related events on the specified classes.protected void
addListeners
(Broker broker) Add factory-registered lifecycle listeners to the broker.void
addTransactionListener
(Object listener) Register a listener for transaction-related events on the specified classes.void
Throw an exception if the factory is closed.void
close()
Close the factory.protected void
configureBroker
(BrokerImpl broker) Configures the given broker with the current factory option settings.protected DelegatingStoreManager
Create a DelegatingStoreManager for use with a Broker created by this factory.protected Broker
findBroker
(String user, String pass, boolean managed) Find a pooled broker, or return null if none.protected Broker
findTransactionalBroker
(String user, String pass) Find a managed runtime broker associated with the current transaction, or returns null if none.Return the configuration for this factory.protected Object
Return an object to be written to the log when this broker factory initializes.Returns a set of all the open brokers associated with this factory.static AbstractBrokerFactory
Return the pooled factory matching the given key, or null if none.Subclasses should override this method to add aPlatform
property listing the runtime platform, such as:OpenJPA JDBC Edition: Oracle Database
Return all of the supported properties as a set of keys.getUserObject
(Object key) Get the value for the specified key from the map of user objects.boolean
isClosed()
Returns true if this broker factory is closed.void
loadPersistentTypes
(ClassLoader envLoader) Load the configured persistent classes list.void
lock()
Synchronizes on an internal lock.void
Freezes the configuration of this factory.Return a broker with default settings.newBroker
(boolean managed, int connRetainMode) Return a broker using the given credentials and in the given transaction and connection retain mode, optionally finding existing broker in the global transaction.newBroker
(String user, String pass, boolean managed, int connRetainMode, boolean findExisting, String cf1Name, String cf2Name) Return a new broker using the supplied credentials transaction management mode connectionRetainMode connectionFactoriesprotected BrokerImpl
newBrokerImpl
(String user, String pass) Return a broker configured with the proper settings.protected abstract StoreManager
Return a new StoreManager for this runtime.protected static void
pool
(Object key, AbstractBrokerFactory factory) Registerfactory
in the pool underkey
.void
This method is invoked AFTER a BrokerFactory has been instantiated.putUserObject
(Object key, Object val) Put the specified key-value pair into the map of user objects.protected Object
Replaces the factory with this JVMs pooled version if it exists.protected void
releaseBroker
(BrokerImpl broker) Releasebroker
from any internal data structures.void
removeLifecycleListener
(Object listener) Remove a listener for lifecycle-related events.void
removeTransactionListener
(Object listener) Remove a listener for transaction-related events.protected void
setup()
Setup transient state used by this factory based on the current configuration, which will subsequently be locked down.protected static Object
Return an internal factory pool key for the given configuration.void
unlock()
Release the internal lock.
-
Constructor Details
-
AbstractBrokerFactory
Constructor. Configuration must be provided on construction.
-
-
Method Details
-
toPoolKey
Return an internal factory pool key for the given configuration.- Since:
- 1.1.0
-
pool
Registerfactory
in the pool underkey
.- Since:
- 1.1.0
-
getPooledFactoryForKey
Return the pooled factory matching the given key, or null if none. The key must be of the form created bygetPoolKey()
. -
getConfiguration
Return the configuration for this factory.- Specified by:
getConfiguration
in interfaceBrokerFactory
-
newBroker
Description copied from interface:BrokerFactory
Return a broker with default settings.- Specified by:
newBroker
in interfaceBrokerFactory
-
newBroker
-
newBroker
-
newBroker
-
newBroker
public Broker newBroker(String user, String pass, boolean managed, int connRetainMode, boolean findExisting) Description copied from interface:BrokerFactory
Return a broker using the given credentials and in the given transaction and connection retain mode, optionally finding existing broker in the global transaction.- Specified by:
newBroker
in interfaceBrokerFactory
-
newBroker
public Broker newBroker(String user, String pass, boolean managed, int connRetainMode, boolean findExisting, String cf1Name, String cf2Name) Description copied from interface:BrokerFactory
Return a new broker using the supplied- credentials
- transaction management mode
- connectionRetainMode
- connectionFactories
- Specified by:
newBroker
in interfaceBrokerFactory
- Parameters:
user
- Username to use when obtaining a connection. Will be ignored if a connection factory is obtained from JNDI.pass
- Password to use when obtaining a connection. Will be ignored if a connection factory is obtained from JNDI.managed
- Whether managed transactions will be used by this BrokerconnRetainMode
-ConnectionRetainMode
findExisting
- Whether the internal pool of brokers should be used.cf1Name
- JTA ConnectionFactory to usecf2Name
- Non-JTA ConnectionFactory to use.- Returns:
- A Broker which matches the provided criteria.
-
addListeners
Add factory-registered lifecycle listeners to the broker. -
loadPersistentTypes
Load the configured persistent classes list. Performed automatically whenever a broker is created. -
addLifecycleListener
Description copied from interface:BrokerFactory
Register a listener for lifecycle-related events on the specified classes. If the classes are null, all events will be propagated to the listener. The listener will be passed on to all new brokers.- Specified by:
addLifecycleListener
in interfaceBrokerFactory
-
removeLifecycleListener
Description copied from interface:BrokerFactory
Remove a listener for lifecycle-related events.- Specified by:
removeLifecycleListener
in interfaceBrokerFactory
-
addTransactionListener
Description copied from interface:BrokerFactory
Register a listener for transaction-related events on the specified classes. It will be registered with allBroker
s created from this instance moving forward.- Specified by:
addTransactionListener
in interfaceBrokerFactory
-
removeTransactionListener
Description copied from interface:BrokerFactory
Remove a listener for transaction-related events. It will no longer be registered with newBroker
s created from this instance.- Specified by:
removeTransactionListener
in interfaceBrokerFactory
-
isClosed
public boolean isClosed()Returns true if this broker factory is closed.- Specified by:
isClosed
in interfaceBrokerFactory
-
close
public void close()Description copied from interface:BrokerFactory
Close the factory.- Specified by:
close
in interfaceBrokerFactory
- Specified by:
close
in interfaceCloseable
-
getProperties
Subclasses should override this method to add aPlatform
property listing the runtime platform, such as:OpenJPA JDBC Edition: Oracle Database
- Specified by:
getProperties
in interfaceBrokerFactory
-
getSupportedProperties
Description copied from interface:BrokerFactory
Return all of the supported properties as a set of keys. If a property has multiple keys, all keys will be returned.- Specified by:
getSupportedProperties
in interfaceBrokerFactory
-
getUserObject
Description copied from interface:BrokerFactory
Get the value for the specified key from the map of user objects.- Specified by:
getUserObject
in interfaceBrokerFactory
-
putUserObject
Description copied from interface:BrokerFactory
Put the specified key-value pair into the map of user objects.- Specified by:
putUserObject
in interfaceBrokerFactory
-
lock
public void lock()Description copied from interface:BrokerFactory
Synchronizes on an internal lock.- Specified by:
lock
in interfaceBrokerFactory
-
unlock
public void unlock()Description copied from interface:BrokerFactory
Release the internal lock.- Specified by:
unlock
in interfaceBrokerFactory
-
readResolve
Replaces the factory with this JVMs pooled version if it exists. Also freezes the factory.- Throws:
ObjectStreamException
-
newStoreManager
Return a new StoreManager for this runtime. Note that the instance returned here may be wrapped before being passed to thenewBroker()
method. -
findBroker
Find a pooled broker, or return null if none. If using managed transactions, looks for a transactional broker; otherwise returns null by default. This method will be called beforenewStoreManager()
so that factory subclasses implementing pooling can return a matching manager before a newStoreManager
is created. -
newBrokerImpl
Return a broker configured with the proper settings. By default, this method constructs a new BrokerImpl of the class set for this factory. -
setup
protected void setup()Setup transient state used by this factory based on the current configuration, which will subsequently be locked down. This method will be called before the first broker is requested, and will be re-called each time the factory is deserialized into a JVM that has no configuration for this data store. -
findTransactionalBroker
Find a managed runtime broker associated with the current transaction, or returns null if none. -
configureBroker
Configures the given broker with the current factory option settings. -
makeReadOnly
public void makeReadOnly()Freezes the configuration of this factory. -
getFactoryInitializationBanner
Return an object to be written to the log when this broker factory initializes. This happens after the configuration is fully loaded. -
assertOpen
public void assertOpen()Throw an exception if the factory is closed. The exact message and content of the exception varies whether TRACE is enabled or not.- Specified by:
assertOpen
in interfaceBrokerFactory
-
getOpenBrokers
Returns a set of all the open brokers associated with this factory. The returned set is unmodifiable, and may contain null references. -
releaseBroker
Releasebroker
from any internal data structures. This is invoked bybroker
after the broker is fully closed.- Since:
- 1.1.0
-
getPoolKey
- Returns:
- a key that can be used to obtain this broker factory from the pool at a later time.
- Since:
- 1.1.0
-
createDelegatingStoreManager
Create a DelegatingStoreManager for use with a Broker created by this factory. If a DataCache has been enabled a DataCacheStoreManager will be returned.
If no DataCache is in use an ROPStoreManager will be returned.
- Returns:
- A delegating store manager suitable for the current configuration.
-
postCreationCallback
public void postCreationCallback()This method is invoked AFTER a BrokerFactory has been instantiated.- Specified by:
postCreationCallback
in interfaceBrokerFactory
-