Module org.eclipse.persistence.core
Class DatasourceAccessor
java.lang.Object
org.eclipse.persistence.internal.databaseaccess.DatasourceAccessor
- Direct Known Subclasses:
DatabaseAccessor,EISAccessor,XMLAccessor
INTERNAL:
DatasourceAccessor is an abstract implementation
of the Accessor interface providing common functionality to the concrete database and EIS accessors.
It is responsible for
connecting,
transactions,
call execution- Since:
- OracleAS TopLink 10g (10.0.3) 05/28/2008-1.0M8 Andrei Ilitchev. - 224964: Provide support for Proxy Authentication through JPA. Added ConnectionCustomizer, also fixed postConnect/preDisconnect ExternalConnection calls so that they called in case of reads, too.
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected intKeep track of the number of concurrent active calls.protected AbstractSessionUsed only in externalConnectionPooling case.protected ConnectionCustomizerAllows session-specific connection customization.protected ObjectStore the reference to the driver level connection.protected booleanKeep track of whether the accessor is "connected".protected booleanKeep track if the accessor is within a transaction contextprotected booleanThis attribute is used to determine if the connection should be returned to the pool or removed from the pool and closed.protected LoginStore the login information that connected this accessor.protected DatasourcePlatformThis is also required to ensure all accessors for a session are using the same platform.protected ConnectionPoolprotected booleanThis attribute is used to track failures on an accessor that may be communication based.static final StringintKeep track of the number of the read statement that being executed.protected SequencingCallbackDuring (not external) transaction, SequencingManager may set SequencingCallback on the accessor, The callback's only method is called when transaction commits, after transaction is completed the callback is discarded.static booleanBack-door to allow isConnect checks.static final StringintKeep track of the number of the storedprocedure statement that being executed.protected booleanPERF: Cache connection pooling flag.static final StringintKeep track of the number of the write statement that being executed. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected abstract voidbasicBeginTransaction(AbstractSession session) Begin the driver level transaction.protected abstract voidbasicCommitTransaction(AbstractSession session) Commit the driver level transaction.protected abstract ObjectbasicExecuteCall(Call call, AbstractRecord row, AbstractSession session) Execute the call to driver level datasource.protected abstract voidbasicRollbackTransaction(AbstractSession session) Rollback the driver level transaction.voidbeginTransaction(AbstractSession session) Begin a transaction on the database.protected abstract voidbuildConnectLog(AbstractSession session) Build a log string of any driver metadata that can be obtained.clone()Clone the accessor.voidClose the accessor's connection.protected abstract voidClose the connection to the driver level datasource.voidCalled from beforeCompletion external transaction synchronization listener callback to close the external connection corresponding to the completing external transaction.voidcommitTransaction(AbstractSession session) Commit a transaction on the database.voidconnect(Login login, AbstractSession session) Connect to the datasource.protected voidconnectInternal(Login login, AbstractSession session) Connect to the database.voidcreateCustomizer(AbstractSession session) Attempts to create ConnectionCustomizer.voidUsed for load balancing and external pooling.voiddisconnect(AbstractSession session) Disconnect from the datasource.executeCall(Call call, AbstractRecord translationRow, AbstractSession session) Execute the call.voidflushSelectCalls(AbstractSession session) Added as a result of Bug 2804663 - satisfy the Accessor interface implementation.intUsed for load balancing and external pooling.getColumnInfo(String catalog, String schema, String tableName, String columnName, AbstractSession session) Return column information for the specified database objects.getColumnInfo(String tableName, String columnName, AbstractSession session) Return the column metadata for the specified selection criteria limited to the context of the currentAccessor.Helper method to return the JDBC connection for DatabaseAccessor.Return the driver level connection.Return the platform.getLogin()Return the logingetPool()Return the associated connection pool this connection was obtained from.intReturn the number of read statements.getSequencingCallback(SequencingCallbackFactory sequencingCallbackFactory) Return sequencing callback.intReturn the number of stored procedure call.getTableInfo(String tableName, String[] types, AbstractSession session) Return the table metadata for the specified selection criteria limited to the context of the currentAccessor.getTableInfo(String catalog, String schema, String tableName, String[] types, AbstractSession session) Return table information for the specified database objects.intReturn the number of write statements.voidincrementCallCount(AbstractSession session) Used for load balancing and external pooling.booleanReturn true if the accessor is currently connected to a data source.protected abstract booleanReturn if the driver level connection is connected.booleanReturn the transaction status of the receiver.booleanbooleanisValid()Returns true if this Accessor can continue to be used.protected voidreconnect(AbstractSession session) Attempt to save some of the cost associated with getting a fresh connection.voidreestablishConnection(AbstractSession session) PUBLIC: Reconnect to the database.protected voidThis method is called by reestablishConnection.voidClear customizer if it's active and set it to null.voidreleaseCustomizer(AbstractSession session) Clear and remove customizer if its session is the same as the passed one; in case prevCustomizer exists set it as a new customizer.voidreset()Reset statement count.voidrollbackTransaction(AbstractSession session) Rollback the transaction on the datasource.protected voidsetCallCount(int callCount) Used for load balancing and external pooling.protected voidsetCustomizer(ConnectionCustomizer newCustomizer) Set customizer, customize the connection if it's available.protected voidsetDatasourceConnection(Object connection) If client requires to manually set connection they can use the connection manager.voidsetDatasourcePlatform(DatasourcePlatform platform) Set the platform.protected voidsetIsConnected(boolean isConnected) Set whether the accessor has a connection to the "data store".protected voidsetIsInTransaction(boolean value) Set the transaction transaction status of the receiver.voidsetIsValid(boolean isValid) This should be set to false if a communication failure occurred during a call execution.protected voidSECURE: set the loginvoidsetPool(ConnectionPool pool) Set the associated connection pool this connection was obtained from.voidsetPossibleFailure(boolean possibleFailure) booleanReturn true if some external connection pool is in use.booleanReturn true if some external transaction service is controlling transactions.voidwritesCompleted(AbstractSession session) This method will be called after a series of writes have been issued to mark where a particular set of writes has completed.
-
Field Details
-
datasourceConnection
Store the reference to the driver level connection. -
login
Store the login information that connected this accessor. -
callCount
protected int callCountKeep track of the number of concurrent active calls. This is used for connection pooling for loadbalancing and for external connection pooling. -
storedProcedureStatementsCount
public int storedProcedureStatementsCountKeep track of the number of the storedprocedure statement that being executed. -
readStatementsCount
public int readStatementsCountKeep track of the number of the read statement that being executed. -
writeStatementsCount
public int writeStatementsCountKeep track of the number of the write statement that being executed. -
READ_STATEMENTS_COUNT_PROPERTY
- See Also:
-
WRITE_STATEMENTS_COUNT_PROPERTY
- See Also:
-
STOREDPROCEDURE_STATEMENTS_COUNT_PROPERTY
- See Also:
-
isInTransaction
protected boolean isInTransactionKeep track if the accessor is within a transaction context -
isConnected
protected boolean isConnectedKeep track of whether the accessor is "connected". -
platform
This is also required to ensure all accessors for a session are using the same platform. -
isValid
protected boolean isValidThis attribute is used to determine if the connection should be returned to the pool or removed from the pool and closed. It will be set to false if an exception occurs during Call execution. -
sequencingCallback
During (not external) transaction, SequencingManager may set SequencingCallback on the accessor, The callback's only method is called when transaction commits, after transaction is completed the callback is discarded. -
possibleFailure
protected boolean possibleFailureThis attribute is used to track failures on an accessor that may be communication based. If a failure is detected executing a call with a query timeout this flag is set. If an error happens twice in a row on the same accessor then that accessor will be checked for a comm error. If there is no query timeout then the flag is not set and the accessor will be checked immediately. -
currentSession
Used only in externalConnectionPooling case. Indicates which session is currently using connection. Allows to rise appropriate session's event when connection is already/still alive. Events will be risen when ClientSession or DatabaseSession acquires connection in the beginning and releases connection in the end of transaction (in afterCompletion in jta case). In case the session requires exclusive connection (ExclusiveIsolatedClientSession) the events will be risen every time the session acquires or releases connection - which is a rare event - the connection is kept for the duration of jta transaction, after jta transaction is completed the new connection is acquired on a first query execution and kept until the next beginTransaction call. In non-jta case the connection is acquired for session's life and release only by session's release. Note that the attribute is nullified only in one place - by closeConnection method. -
usesExternalConnectionPooling
protected boolean usesExternalConnectionPoolingPERF: Cache connection pooling flag. -
shouldCheckConnection
public static boolean shouldCheckConnectionBack-door to allow isConnect checks. Since we now support fail-over and retry, removing old isConnected usage which can cause major performance issues (on Sybase), and minor ones in general. -
customizer
Allows session-specific connection customization. -
pool
-
-
Constructor Details
-
DatasourceAccessor
protected DatasourceAccessor()Default Constructor.
-
-
Method Details
-
clone
Clone the accessor. -
closeJTSConnection
public void closeJTSConnection()Called from beforeCompletion external transaction synchronization listener callback to close the external connection corresponding to the completing external transaction. Final sql calls could be sent through the connection by this method before it closes the connection.- Specified by:
closeJTSConnectionin interfaceAccessor
-
setIsInTransaction
protected void setIsInTransaction(boolean value) Set the transaction transaction status of the receiver. -
setIsValid
public void setIsValid(boolean isValid) This should be set to false if a communication failure occurred during a call execution. In the case of an invalid accessor the Accessor will not be returned to the pool.- Specified by:
setIsValidin interfaceAccessor
-
isInTransaction
public boolean isInTransaction()Return the transaction status of the receiver.- Specified by:
isInTransactionin interfaceAccessor
-
isValid
public boolean isValid()Returns true if this Accessor can continue to be used. This will be false if a communication failure occurred during a call execution. In the case of an invalid accessor the Accessor will not be returned to the pool. -
isPossibleFailure
public boolean isPossibleFailure() -
setPossibleFailure
public void setPossibleFailure(boolean possibleFailure) -
usesExternalConnectionPooling
public boolean usesExternalConnectionPooling()Return true if some external connection pool is in use.- Specified by:
usesExternalConnectionPoolingin interfaceAccessor
-
beginTransaction
Begin a transaction on the database. If not using managed transaction begin a local transaction.- Specified by:
beginTransactionin interfaceAccessor- Throws:
DatabaseException
-
basicBeginTransaction
Begin the driver level transaction. -
basicCommitTransaction
Commit the driver level transaction. -
basicRollbackTransaction
Rollback the driver level transaction. -
decrementCallCount
public void decrementCallCount()Used for load balancing and external pooling.- Specified by:
decrementCallCountin interfaceAccessor
-
incrementCallCount
Used for load balancing and external pooling.- Specified by:
incrementCallCountin interfaceAccessor
-
reset
public void reset()Reset statement count. -
connectInternal
Connect to the database. Exceptions are caught and re-thrown as EclipseLink exceptions.- Throws:
DatabaseException
-
setIsConnected
protected void setIsConnected(boolean isConnected) Set whether the accessor has a connection to the "data store". -
setCallCount
protected void setCallCount(int callCount) Used for load balancing and external pooling. -
getCallCount
public int getCallCount()Used for load balancing and external pooling.- Specified by:
getCallCountin interfaceAccessor
-
commitTransaction
Commit a transaction on the database. If using non-managed transaction commit the local transaction.- Specified by:
commitTransactionin interfaceAccessor- Throws:
DatabaseException
-
connect
Connect to the datasource. Through using a CCI ConnectionFactory. Catch exceptions and re-throw as EclipseLink exceptions.- Specified by:
connectin interfaceAccessor- Throws:
DatabaseException
-
closeDatasourceConnection
protected abstract void closeDatasourceConnection()Close the connection to the driver level datasource. -
basicExecuteCall
Execute the call to driver level datasource. -
buildConnectLog
Build a log string of any driver metadata that can be obtained. -
getLogin
Return the login -
setLogin
SECURE: set the login -
disconnect
Disconnect from the datasource.- Specified by:
disconnectin interfaceAccessor- Throws:
DatabaseException
-
closeConnection
public void closeConnection()Close the accessor's connection. This is used only for external connection pooling when it is intended for the connection to be reconnected in the future.- Specified by:
closeConnectionin interfaceAccessor
-
executeCall
public Object executeCall(Call call, AbstractRecord translationRow, AbstractSession session) throws DatabaseException Execute the call.- Specified by:
executeCallin interfaceAccessor- Returns:
- depending of the type either the row count, row or vector of rows.
- Throws:
DatabaseException
-
reestablishConnection
PUBLIC: Reconnect to the database. This can be used if the connection was disconnected or timedout. This ensures that the security is checked as it is public. Because the messages can take a long time to build, pre-check whether messages should be logged.- Specified by:
reestablishConnectionin interfaceAccessor- Throws:
DatabaseException
-
reconnect
Attempt to save some of the cost associated with getting a fresh connection. Assume the DatabaseDriver has been cached, if appropriate. Note: Connections that are participating in transactions will not be refreshed.^M- Throws:
DatabaseException
-
getDatasourcePlatform
Return the platform. -
setDatasourcePlatform
Set the platform. This should be set to the session's platform, not the connections which may not be configured correctly. -
getDatasourceConnection
Return the driver level connection.- Specified by:
getDatasourceConnectionin interfaceAccessor
-
getConnection
Helper method to return the JDBC connection for DatabaseAccessor. Was going to deprecate this, but since most clients are JDBC this is useful.- Specified by:
getConnectionin interfaceAccessor
-
getColumnInfo
public Vector<AbstractRecord> getColumnInfo(String catalog, String schema, String tableName, String columnName, AbstractSession session) throws DatabaseException Return column information for the specified database objects.- Specified by:
getColumnInfoin interfaceAccessor- Throws:
DatabaseException
-
getColumnInfo
public Vector<AbstractRecord> getColumnInfo(String tableName, String columnName, AbstractSession session) throws DatabaseException Description copied from interface:AccessorReturn the column metadata for the specified selection criteria limited to the context of the currentAccessor.- Specified by:
getColumnInfoin interfaceAccessor- Throws:
DatabaseException
-
getReadStatementsCount
public int getReadStatementsCount()Return the number of read statements. -
getWriteStatementsCount
public int getWriteStatementsCount()Return the number of write statements. -
getStoredProcedureStatementsCount
public int getStoredProcedureStatementsCount()Return the number of stored procedure call. -
getTableInfo
public Vector<AbstractRecord> getTableInfo(String catalog, String schema, String tableName, String[] types, AbstractSession session) throws DatabaseException Return table information for the specified database objects.- Specified by:
getTableInfoin interfaceAccessor- Throws:
DatabaseException
-
getTableInfo
public Vector<AbstractRecord> getTableInfo(String tableName, String[] types, AbstractSession session) throws DatabaseException Description copied from interface:AccessorReturn the table metadata for the specified selection criteria limited to the context of the currentAccessor.- Specified by:
getTableInfoin interfaceAccessor- Throws:
DatabaseException
-
setDatasourceConnection
If client requires to manually set connection they can use the connection manager. -
rollbackTransaction
Rollback the transaction on the datasource. If not using managed transaction rollback the local transaction.- Specified by:
rollbackTransactionin interfaceAccessor- Throws:
DatabaseException
-
usesExternalTransactionController
public boolean usesExternalTransactionController()Return true if some external transaction service is controlling transactions.- Specified by:
usesExternalTransactionControllerin interfaceAccessor
-
isConnected
public boolean isConnected()Return true if the accessor is currently connected to a data source. Return false otherwise.- Specified by:
isConnectedin interfaceAccessor
-
isDatasourceConnected
protected abstract boolean isDatasourceConnected()Return if the driver level connection is connected. -
flushSelectCalls
Added as a result of Bug 2804663 - satisfy the Accessor interface implementation.- Specified by:
flushSelectCallsin interfaceAccessor- See Also:
-
writesCompleted
This method will be called after a series of writes have been issued to mark where a particular set of writes has completed. It will be called from commitTransaction and may be called from writeChanges. Its main purpose is to ensure that the batched statements have been executed- Specified by:
writesCompletedin interfaceAccessor
-
getSequencingCallback
public SequencingCallback getSequencingCallback(SequencingCallbackFactory sequencingCallbackFactory) Return sequencing callback.- Specified by:
getSequencingCallbackin interfaceAccessor
-
createCustomizer
Attempts to create ConnectionCustomizer. If created the customizer is cached by the accessor. Called by the owner of accessor (DatabaseSession, ServerSession through ConnectionPool) just once, typically right after the accessor is created. Also called by ClientSession when it acquires write accessor. If accessor already has a customizer set by ConnectionPool then ClientSession's customizer compared with the existing one and if they are not equal (don't produce identical customization) then the new customizer set onto accessor, caching the old customizer so that it could be restored later.- Specified by:
createCustomizerin interfaceAccessor
-
setCustomizer
Set customizer, customize the connection if it's available. -
releaseCustomizer
public void releaseCustomizer()Clear customizer if it's active and set it to null. Called by the same object that has created customizer (DatabaseSession, ConnectionPool) when the latter is no longer required, typically before releasing the accessor. Ignored if there's no customizer.- Specified by:
releaseCustomizerin interfaceAccessor
-
releaseCustomizer
Clear and remove customizer if its session is the same as the passed one; in case prevCustomizer exists set it as a new customizer. Called when ClientSession releases write accessor: if the customizer was created by the ClientSession it's removed, and the previous customizer (that ConnectionPool had set) is brought back; otherwise the customizer (created by ConnectionPool) is kept. Ignored if there's no customizer.- Specified by:
releaseCustomizerin interfaceAccessor
-
reestablishCustomizer
protected void reestablishCustomizer()This method is called by reestablishConnection. Nothing needs to be done in case customize is not active (customization hasn't been applied yet). to repair existing customizer after connection became invalid. However if connection has been customized then if connection is still there and deemed to be valid - clear customization. Otherwise (or if clear fails) remove customizer and set its prevCustomizer as a new customizer, then re-create customizer using the same session as the original one. -
getPool
Return the associated connection pool this connection was obtained from. -
setPool
Set the associated connection pool this connection was obtained from.
-