Class AbstractFbBlob
- All Implemented Interfaces:
AutoCloseable,FbBlob,DatabaseListener,ExceptionListenable,TransactionListener
- Direct Known Subclasses:
AbstractFbWireBlob,JnaBlob
- Since:
- 3.0
- Author:
- Mark Rotteveel
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.firebirdsql.gds.ng.FbBlob
FbBlob.SeekMode -
Field Summary
FieldsFields inherited from interface org.firebirdsql.gds.ng.FbBlob
NO_BLOB_ID -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedAbstractFbBlob(FbDatabase database, FbTransaction transaction, BlobParameterBuffer blobParameterBuffer) -
Method Summary
Modifier and TypeMethodDescriptionfinal voidaddExceptionListener(ExceptionListener listener) Adds an exception listener to this object.final voidcancel()Cancels an output blob (which means its contents will be thrown away).protected abstract voidInternal implementation ofcancel().protected voidprotected voidprotected voidprotected final voidprotected final voidprotected final voidfinal voidclose()Closes the blob.protected abstract voidInternal implementation ofclose().protected BlobLengthProcessorvoiddetached(FbDatabase database) Called when thedatabaseconnection has been detachedvoiddetaching(FbDatabase database) Called before thedatabasewill be detached.<T> TgetBlobInfo(byte[] requestItems, int bufferLength, InfoProcessor<T> infoProcessor) Request blob info.protected BlobParameterBufferintThe maximum segment size allowed by the protocol forFbBlob.getSegment(int)andFbBlob.putSegment(byte[]).final ObjectGet synchronization object.protected FbTransactionprotected final booleanfinal booleanisEof()final booleanisOpen()longlength()Requests the blob length from the server.protected abstract voidRelease Java resources held.final voidremoveExceptionListener(ExceptionListener listener) Removes an exception listener to this object.protected final voidresetEof()Resets the eof state of the blob to false (not eof).protected final voidsetEof()Marks this blob as EOF (End of file).protected final voidsetOpen(boolean open) Sets the open state of the blob to the specified value.voidtransactionStateChanged(FbTransaction transaction, TransactionState newState, TransactionState previousState) Signals that the transaction state changed.voidwarningReceived(FbDatabase database, SQLWarning warning) Called when a warning was received for thedatabaseconnection.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.firebirdsql.gds.ng.FbBlob
getBlobId, getBlobInfo, getHandle, getSegment, isOutput, open, putSegment, seek
-
Field Details
-
exceptionListenerDispatcher
-
-
Constructor Details
-
AbstractFbBlob
protected AbstractFbBlob(FbDatabase database, FbTransaction transaction, BlobParameterBuffer blobParameterBuffer)
-
-
Method Details
-
isOpen
public final boolean isOpen() -
isEof
public final boolean isEof() -
setEof
protected final void setEof()Marks this blob as EOF (End of file).For an output blob this is a no-op (as those are never end of file, unless explicitly closed)
-
resetEof
protected final void resetEof()Resets the eof state of the blob to false (not eof).This method should only be called by sub-classes of this class.
-
setOpen
protected final void setOpen(boolean open) Sets the open state of the blob to the specified value.This method should only be called by sub-classes of this class.
- Parameters:
open- New value of open.
-
close
Description copied from interface:FbBlobCloses the blob.Closing an already closed blob is a no-op.
- Specified by:
closein interfaceAutoCloseable- Specified by:
closein interfaceFbBlob- Throws:
SQLException- If the transaction is not active, or a database connection error occurred
-
closeImpl
Internal implementation ofclose(). The implementation does not need to check for attached database and active transaction, nor does it need to mark this blob as closed.- Throws:
SQLException
-
cancel
Description copied from interface:FbBlobCancels an output blob (which means its contents will be thrown away).Calling cancel on an input blob will close it. Contrary to
FbBlob.close(), calling cancel on an already closed (or cancelled) blob will throw anSQLException.- Specified by:
cancelin interfaceFbBlob- Throws:
SQLException- If the blob has already been closed, the transaction is not active, or a database connection error occurred.
-
cancelImpl
Internal implementation ofcancel(). The implementation does not need to check for attached database and active transaction, nor does it need to mark this blob as closed.- Throws:
SQLException
-
releaseResources
protected abstract void releaseResources()Release Java resources held. This should not communicate with the Firebird server. -
getSynchronizationObject
Description copied from interface:FbBlobGet synchronization object.- Specified by:
getSynchronizationObjectin interfaceFbBlob- Returns:
- object, cannot be
null.
-
transactionStateChanged
public void transactionStateChanged(FbTransaction transaction, TransactionState newState, TransactionState previousState) Description copied from interface:TransactionListenerSignals that the transaction state changed.- Specified by:
transactionStateChangedin interfaceTransactionListener- Parameters:
transaction-FbTransactionthat changed state
-
detaching
Description copied from interface:DatabaseListenerCalled before thedatabasewill be detached.This event is intended for cleanup action, implementer should take care that no exceptions are thrown from this method.
- Specified by:
detachingin interfaceDatabaseListener- Parameters:
database- The database object that is detaching
-
detached
Description copied from interface:DatabaseListenerCalled when thedatabaseconnection has been detached- Specified by:
detachedin interfaceDatabaseListener- Parameters:
database- The database object that was detached
-
warningReceived
Description copied from interface:DatabaseListenerCalled when a warning was received for thedatabaseconnection.In implementation it is possible that some warnings are not sent to listeners on the database, but only to listeners on specific connection derived objects (like an
FbStatementimplementation).- Specified by:
warningReceivedin interfaceDatabaseListener- Parameters:
database- Database receiving the warningwarning- Warning
-
isEndingTransaction
protected final boolean isEndingTransaction()- Returns:
trueif the transaction is committing, rolling back or preparing
-
checkTransactionActive
- Throws:
SQLException- When no transaction is set, or the transaction state is notTransactionState.ACTIVE
-
checkDatabaseAttached
- Throws:
SQLException- When no database is set, or the database is not attached
-
checkBlobOpen
- Throws:
SQLException- When the blob is closed.
-
checkBlobClosed
- Throws:
SQLException- When the blob is open.
-
getTransaction
-
clearTransaction
protected final void clearTransaction() -
getDatabase
- Specified by:
getDatabasein interfaceFbBlob- Returns:
- The database connection that created this blob
-
getBlobInfo
public <T> T getBlobInfo(byte[] requestItems, int bufferLength, InfoProcessor<T> infoProcessor) throws SQLException Description copied from interface:FbBlobRequest blob info.- Specified by:
getBlobInfoin interfaceFbBlob- Parameters:
requestItems- Array of info items to requestbufferLength- Response buffer length to useinfoProcessor- Implementation ofInfoProcessorto transform the info response- Returns:
- Transformed info response of type T
- Throws:
SQLException- For errors retrieving or transforming the response.
-
length
Description copied from interface:FbBlobRequests the blob length from the server.- Specified by:
lengthin interfaceFbBlob- Returns:
- Length of the blob.
- Throws:
SQLException- For Errors retrieving the length, or if the blob is not associated with a blob id, or the database is not attached.
-
addExceptionListener
Description copied from interface:ExceptionListenableAdds an exception listener to this object.Implementations use
WeakReference.- Specified by:
addExceptionListenerin interfaceExceptionListenable- Parameters:
listener- Listener to register
-
removeExceptionListener
Description copied from interface:ExceptionListenableRemoves an exception listener to this object.- Specified by:
removeExceptionListenerin interfaceExceptionListenable- Parameters:
listener- Listener to remove
-
clearDatabase
protected final void clearDatabase() -
getBlobParameterBuffer
- Returns:
- The blob parameter buffer of this blob.
-
createBlobLengthProcessor
- Returns:
- New instance of
BlobLengthProcessor(or subclass) for this blob.
-
getMaximumSegmentSize
public int getMaximumSegmentSize()Description copied from interface:FbBlobThe maximum segment size allowed by the protocol forFbBlob.getSegment(int)andFbBlob.putSegment(byte[]).This value is not the segment size (optionally) defined for the column.
- Specified by:
getMaximumSegmentSizein interfaceFbBlob- Returns:
- The maximum segment size allowed for get or put.
-