Class JDBCBlobFile
- All Implemented Interfaces:
Blob
HSQLDB-Specific Information:
Starting with 2.1, in addition to HSQLDB driver support for both client-side in-memory and remote SQL CLOB data implementations, this class is provided to expose efficient, relatively high-performance BLOB operations over client accessible files.Design Notes
Although it is possible to implement a transactional version of this class, the present implementation directly propagates changes to the underlying file such that changes become visible as soon as they are either implicitly or explicitly flushed to disk.
- Since:
- HSQLDB 2.1
- Author:
- Campbell Burnet (campbell-burnet@users dot sourceforge.net)
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionConvenience constructor; equivalent to JDBCBlobFile(true);JDBCBlobFile(boolean deleteOnFree) Constructs a new instance backed by a File object created in response to invoking File.createTempFile(TEMP_FILE_PREFIX,TEMP_FILE_SUFFIX).JDBCBlobFile(File file) Convenience constructor; equivalent to JDBCBlobFile(file, false);JDBCBlobFile(File file, boolean deleteOnFree) Constructs a new instance backed by the given File object. -
Method Summary
Modifier and TypeMethodDescriptionvoidfree()This method frees theBlobobject and releases the resources that it holds.Retrieves theBLOBvalue designated by thisBlobinstance as a stream.getBinaryStream(long pos, long length) Returns anInputStreamobject that contains a partialBlobvalue, starting with the byte specified by pos, which is length bytes in length.byte[]getBytes(long pos, int length) Retrieves all or part of theBLOBvalue that thisBlobobject represents, as an array of bytes.getFile()Retrieves the canonicalFileobject denoting the file that backs this BLOB.booleanRetrieves whether an attempt to delete the backing file is made in response to invocation offree().longlength()Returns the number of bytes in theBLOBvalue designated by thisBlobobject.longposition(byte[] pattern, long start) Retrieves the byte position at which the specified byte arraypatternbegins within theBLOBvalue that thisBlobobject represents.longRetrieves the byte position in theBLOBvalue designated by thisBlobobject at whichpatternbegins.setBinaryStream(long pos) Retrieves a stream that can be used to write to theBLOBvalue that thisBlobobject represents.intsetBytes(long pos, byte[] bytes) Writes the given array of bytes to theBLOBvalue that thisBlobobject represents, starting at positionpos, and returns the number of bytes written.intsetBytes(long pos, byte[] bytes, int offset, int len) Writes all or part of the givenbytearray to theBLOBvalue that thisBlobobject represents and returns the number of bytes written.voidsetDeleteOnFree(boolean deleteOnFree) Assigns whether an attempt to delete the backing file is made in response to invocation offree().voidtruncate(long len) Truncates theBLOBvalue that thisBlobobject represents to belenbytes in length.
-
Field Details
-
TEMP_FILE_PREFIX
- See Also:
-
TEMP_FILE_SUFFIX
- See Also:
-
-
Constructor Details
-
JDBCBlobFile
Convenience constructor; equivalent to JDBCBlobFile(true);- Throws:
SQLException- If a file could not be created or if a security manager exists and its{@link java.lang.SecurityManager#checkWrite(java.lang.String)}method does not allow a file to be created.
-
JDBCBlobFile
Constructs a new instance backed by a File object created in response to invoking File.createTempFile(TEMP_FILE_PREFIX,TEMP_FILE_SUFFIX).- Parameters:
deleteOnFree- Assigns whether an attempt to delete the backing file is to be made in response to invocation offree().- Throws:
SQLException- If a file could not be created or if a security manager exists and its{@link java.lang.SecurityManager#checkWrite(java.lang.String)}method does not allow a file to be created.
-
JDBCBlobFile
Convenience constructor; equivalent to JDBCBlobFile(file, false);- Parameters:
file- used to back this BLOB instance.- Throws:
SQLException- If an I/O error occurs, which is possible because the construction of the canonical pathname may require file system queries; if a required system property value cannot be accessed, or if a security manager exists and its{@link java.lang.SecurityManager#checkRead}method denies read access to the file
-
JDBCBlobFile
Constructs a new instance backed by the given File object.- Parameters:
file- used to back this BLOB instance.deleteOnFree- Assigns whether an attempt to delete the backing file is to be made in response to invocation offree().- Throws:
SQLException- If an I/O error occurs, which is possible because the construction of the canonical pathname may require file system queries; if a required system property value cannot be accessed, or if a security manager exists and its{@link java.lang.SecurityManager#checkRead}method denies read access to the file
-
-
Method Details
-
length
Returns the number of bytes in theBLOBvalue designated by thisBlobobject.- Specified by:
lengthin interfaceBlob- Returns:
- length of the
BLOBin bytes - Throws:
SQLException- if there is an error accessing the length of theBLOBSQLFeatureNotSupportedException- if the JDBC driver does not support this method- Since:
- JDK 1.2
-
getBytes
Retrieves all or part of theBLOBvalue that thisBlobobject represents, as an array of bytes. Thisbytearray contains up tolengthconsecutive bytes starting at positionpos.- Specified by:
getBytesin interfaceBlob- Parameters:
pos- the ordinal position of the first byte in theBLOBvalue to be extracted; the first byte is at position 1length- the number of consecutive bytes to be copied; the value for length must be 0 or greater- Returns:
- a byte array containing up to
lengthconsecutive bytes from theBLOBvalue designated by thisBlobobject, starting with the byte at positionpos - Throws:
SQLException- if there is an error accessing theBLOBvalue; if pos is less than 1 or length is less than 0SQLFeatureNotSupportedException- if the JDBC driver does not support this method- Since:
- JDK 1.2
- See Also:
-
getBinaryStream
Retrieves theBLOBvalue designated by thisBlobinstance as a stream.- Specified by:
getBinaryStreamin interfaceBlob- Returns:
- a stream containing the
BLOBdata - Throws:
SQLException- if there is an error accessing theBLOBvalueSQLFeatureNotSupportedException- if the JDBC driver does not support this method- Since:
- JDK 1.2
- See Also:
-
position
Retrieves the byte position at which the specified byte arraypatternbegins within theBLOBvalue that thisBlobobject represents. The search forpatternbegins at positionstart.- Specified by:
positionin interfaceBlob- Parameters:
pattern- the byte array for which to searchstart- the position at which to begin searching; the first position is 1- Returns:
- the position at which the pattern appears, else -1
- Throws:
SQLException- if there is an error accessing theBLOBor if start is less than 1SQLFeatureNotSupportedException- if the JDBC driver does not support this method- Since:
- JDK 1.2
-
position
Retrieves the byte position in theBLOBvalue designated by thisBlobobject at whichpatternbegins. The search begins at positionstart.- Specified by:
positionin interfaceBlob- Parameters:
pattern- theBlobobject designating theBLOBvalue for which to searchstart- the position in theBLOBvalue at which to begin searching; the first position is 1- Returns:
- the position at which the pattern begins, else -1
- Throws:
SQLException- if there is an error accessing theBLOBvalue or if start is less than 1SQLFeatureNotSupportedException- if the JDBC driver does not support this method- Since:
- JDK 1.2
-
setBytes
Writes the given array of bytes to theBLOBvalue that thisBlobobject represents, starting at positionpos, and returns the number of bytes written. The array of bytes will overwrite the existing bytes in theBlobobject starting at the positionpos. If the end of theBlobvalue is reached while writing the array of bytes, then the length of theBlobvalue will be increased to accommodate the extra bytes.Note: If the value specified for
posis greater than the length+1 of theBLOBvalue then the behavior is undefined. Some JDBC drivers may throw aSQLExceptionwhile other drivers may support this operation.HSQLDB-Specific Information:
This operation affects only the content of the underlying file; it has no effect upon a value stored in a database. To propagate the updated Blob value to a database, it is required to supply the Blob instance to an updating or inserting setXXX method of a Prepared or Callable Statement, or to supply the Blob instance to an updateXXX method of an updatable ResultSet.- Specified by:
setBytesin interfaceBlob- Parameters:
pos- the position in theBLOBobject at which to start writing; the first position is 1bytes- the array of bytes to be written to theBLOBvalue that thisBlobobject represents- Returns:
- the number of bytes written
- Throws:
SQLException- if there is an error accessing theBLOBvalue or if pos is less than 1SQLFeatureNotSupportedException- if the JDBC driver does not support this method- Since:
- JDK 1.4
- See Also:
-
setBytes
Writes all or part of the givenbytearray to theBLOBvalue that thisBlobobject represents and returns the number of bytes written. Writing starts at positionposin theBLOBvalue;lenbytes from the given byte array are written. The array of bytes will overwrite the existing bytes in theBlobobject starting at the positionpos. If the end of theBlobvalue is reached while writing the array of bytes, then the length of theBlobvalue will be increased to accommodate the extra bytes.Note: If the value specified for
posis greater than the length+1 of theBLOBvalue then the behavior is undefined. Some JDBC drivers may throw aSQLExceptionwhile other drivers may support this operation.HSQLDB-Specific Information:
This operation affects only the content of the underlying file; it has no effect upon a value stored in a database. To propagate the updated Blob value to a database, it is required to supply the Blob instance to an updating or inserting setXXX method of a Prepared or Callable Statement, or to supply the Blob instance to an updateXXX method of an updatable ResultSet.- Specified by:
setBytesin interfaceBlob- Parameters:
pos- the position in theBLOBobject at which to start writing; the first position is 1bytes- the array of bytes to be written to thisBLOBobjectoffset- the offset into the arraybytesat which to start reading the bytes to be setlen- the number of bytes to be written to theBLOBvalue from the array of bytesbytes- Returns:
- the number of bytes written
- Throws:
SQLException- if there is an error accessing theBLOBvalue or if pos is less than 1SQLFeatureNotSupportedException- if the JDBC driver does not support this method- Since:
- JDK 1.4
- See Also:
-
setBinaryStream
Retrieves a stream that can be used to write to theBLOBvalue that thisBlobobject represents. The stream begins at positionpos. The bytes written to the stream will overwrite the existing bytes in theBlobobject starting at the positionpos. If the end of theBlobvalue is reached while writing to the stream, then the length of theBlobvalue will be increased to accommodate the extra bytes.Note: If the value specified for
posis greater than the length+1 of theBLOBvalue then the behavior is undefined. Some JDBC drivers may throw aSQLExceptionwhile other drivers may support this operation.HSQLDB-Specific Information:
Data written to the returned stream affects only the content of the underlying file; it has no effect upon a value stored in a database. To propagate the updated Blob value to a database, it is required to supply the Blob instance to an updating or inserting setXXX method of a Prepared or Callable Statement, or to supply the Blob instance to an updateXXX method of an updateable ResultSet.- Specified by:
setBinaryStreamin interfaceBlob- Parameters:
pos- the position in theBLOBvalue at which to start writing; the first position is 1- Returns:
- a
java.io.OutputStreamobject to which data can be written - Throws:
SQLException- if there is an error accessing theBLOBvalue or if pos is less than 1SQLFeatureNotSupportedException- if the JDBC driver does not support this method- Since:
- JDK 1.4
- See Also:
-
truncate
Truncates theBLOBvalue that thisBlobobject represents to belenbytes in length.Note: If the value specified for
posis greater than the length+1 of theBLOBvalue then the behavior is undefined. Some JDBC drivers may throw aSQLExceptionwhile other drivers may support this operation.HSQLDB-Specific Information:
This operation affects only the length of the underlying file; it has no effect upon a value stored in a database. To propagate the truncated Blob value to a database, it is required to supply the Blob instance to an updating or inserting setXXX method of a Prepared or Callable Statement, or to supply the Blob instance to an updateXXX method of an updatable ResultSet.- Specified by:
truncatein interfaceBlob- Parameters:
len- the length, in bytes, to which theBLOBvalue that thisBlobobject represents should be truncated- Throws:
SQLException- if there is an error accessing theBLOBvalue or if len is less than 0SQLFeatureNotSupportedException- if the JDBC driver does not support this method- Since:
- JDK 1.4
-
free
This method frees theBlobobject and releases the resources that it holds. The object is invalid once thefreemethod is called.After
freehas been called, any attempt to invoke a method other thanfreewill result in aSQLExceptionbeing thrown. Iffreeis called multiple times, the subsequent calls tofreeare treated as a no-op.HSQLDB-Specific Information:
This operation closes any input and/or output streams obtained viagetBinaryStream(),getBinaryStream(long, long)orsetBinaryStream(long).Additionally, if the property
isDeleteOnFree()is true, then an attempt is made to delete the backing file.- Specified by:
freein interfaceBlob- Throws:
SQLException- if an error occurs releasing the Blob's resourcesSQLFeatureNotSupportedException- if the JDBC driver does not support this method- Since:
- JDK 1.6
- See Also:
-
getBinaryStream
Returns anInputStreamobject that contains a partialBlobvalue, starting with the byte specified by pos, which is length bytes in length.- Specified by:
getBinaryStreamin interfaceBlob- Parameters:
pos- the offset to the first byte of the partial value to be retrieved. The first byte in theBlobis at position 1length- the length in bytes of the partial value to be retrieved- Returns:
InputStreamthrough which the partialBlobvalue can be read.- Throws:
SQLException- if pos is less than 1 or if pos is greater than the number of bytes in theBlobor if pos + length is greater than the number of bytes in theBlobSQLFeatureNotSupportedException- if the JDBC driver does not support this method- Since:
- JDK 1.6
-
getFile
Retrieves the canonicalFileobject denoting the file that backs this BLOB.- Returns:
- the file that backs this BLOB.
-
isDeleteOnFree
public boolean isDeleteOnFree()Retrieves whether an attempt to delete the backing file is made in response to invocation offree().- Returns:
- true if backing file deletion is attempted; otherwise false.
-
setDeleteOnFree
public void setDeleteOnFree(boolean deleteOnFree) Assigns whether an attempt to delete the backing file is made in response to invocation offree().- Parameters:
deleteOnFree- the new value to assign
-