Package org.apache.jackrabbit.value
Class BinaryImpl
java.lang.Object
org.apache.jackrabbit.value.BinaryImpl
- All Implemented Interfaces:
Binary
BinaryImpl implements the Binary interface.-
Constructor Summary
ConstructorsConstructorDescriptionBinaryImpl(byte[] buffer) Creates a newBinaryImplinstance from abyte[]array.Creates a newBinaryImplinstance from anInputStream. -
Method Summary
Modifier and TypeMethodDescriptionvoiddispose()Releases all resources associated with thisBinaryobject and informs the repository that these resources may now be reclaimed.longgetSize()Returns the size of thisBinaryvalue in bytes.Returns anInputStreamrepresentation of this value.intread(byte[] b, long position) Reads successive bytes from the specifiedpositionin thisBinaryinto the passed byte array until either the byte array is full or the end of theBinaryis encountered.
-
Constructor Details
-
BinaryImpl
Creates a newBinaryImplinstance from anInputStream. The contents of the stream is spooled to a temporary file or to a byte buffer if its size is smaller thanMAX_BUFFER_SIZE.- Parameters:
in- stream to be represented as aBLOBFileValueinstance- Throws:
IOException- if an error occurs while reading from the stream or writing to the temporary file
-
BinaryImpl
public BinaryImpl(byte[] buffer) Creates a newBinaryImplinstance from abyte[]array.- Parameters:
buffer- byte array to be represented as aBinaryImplinstance
-
-
Method Details
-
getStream
Returns anInputStreamrepresentation of this value. Each call togetStream()returns a new stream. The API consumer is responsible for callingclose()on the returned stream.If
Binary.dispose()has been called on thisBinaryobject, then this method will throw the runtime exceptionIllegalStateException.- Specified by:
getStreamin interfaceBinary- Returns:
- A stream representation of this value.
- Throws:
RepositoryException- if an error occurs.
-
read
Reads successive bytes from the specifiedpositionin thisBinaryinto the passed byte array until either the byte array is full or the end of theBinaryis encountered.If
Binary.dispose()has been called on thisBinaryobject, then this method will throw the runtime exceptionIllegalStateException.- Specified by:
readin interfaceBinary- Parameters:
b- the buffer into which the data is read.position- the position in this Binary from which to start reading bytes.- Returns:
- the number of bytes read into the buffer, or -1 if there is no more data because the end of the Binary has been reached.
- Throws:
IOException- if an I/O error occurs.RepositoryException- if another error occurs.
-
getSize
Returns the size of thisBinaryvalue in bytes.If
Binary.dispose()has been called on thisBinaryobject, then this method will throw the runtime exceptionIllegalStateException.- Specified by:
getSizein interfaceBinary- Returns:
- the size of this value in bytes.
- Throws:
RepositoryException- if an error occurs.
-
dispose
public void dispose()Releases all resources associated with thisBinaryobject and informs the repository that these resources may now be reclaimed. An application should call this method when it is finished with theBinaryobject.
-