Package uk.ac.starlink.table.storage
Class FileByteStore
- java.lang.Object
-
- uk.ac.starlink.table.storage.FileByteStore
-
-
Constructor Summary
Constructors Constructor Description FileByteStore()Constructs a new FileByteStore which uses a temporary file as backing store.FileByteStore(java.io.File file)Constructs a new FileByteStore which uses the given file as a backing store.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclose()Tidies up.voidcopy(java.io.OutputStream out)Takes all the data written so far into this store's sink stream and copies it to a destination stream.java.io.FilegetFile()Returns the file used by this store.longgetLength()Returns the number of bytes currently stored in this object.java.io.OutputStreamgetOutputStream()Returns an output stream which can be used to write to the store.java.nio.ByteBuffer[]toByteBuffers()Returns an array of byte buffers containing the bytes written to this store.
-
-
-
Constructor Detail
-
FileByteStore
public FileByteStore(java.io.File file) throws java.io.IOExceptionConstructs a new FileByteStore which uses the given file as a backing store. Nothing is done to mark this file as temporary.- Parameters:
file- location of the backing file which will be used- Throws:
java.io.IOException- if there is some I/O-related problem with opening the filejava.lang.SecurityException- if the current security context does not allow writing to a temporary file
-
FileByteStore
public FileByteStore() throws java.io.IOExceptionConstructs a new FileByteStore which uses a temporary file as backing store. The temporary file will be written to the default temporary directory, given by the value of the java.io.tmpdir system property.- Throws:
java.io.IOException- if there is some I/O-related problem with opening the filejava.lang.SecurityException- if the current security context does not allow writing to a temporary file
-
-
Method Detail
-
getFile
public java.io.File getFile()
Returns the file used by this store.- Returns:
- file
-
getOutputStream
public java.io.OutputStream getOutputStream()
Description copied from interface:ByteStoreReturns an output stream which can be used to write to the store. May be called multiple times; always returns the same object. Note that this is not in general buffered - it is the responsibility of the user to take steps like wrapping it in aBufferedOutputStreamfor efficiency if required.- Specified by:
getOutputStreamin interfaceByteStore- Returns:
- data sink stream
-
getLength
public long getLength()
Description copied from interface:ByteStoreReturns the number of bytes currently stored in this object.
-
copy
public void copy(java.io.OutputStream out) throws java.io.IOExceptionDescription copied from interface:ByteStoreTakes all the data written so far into this store's sink stream and copies it to a destination stream. The output stream is not closed.
-
toByteBuffers
public java.nio.ByteBuffer[] toByteBuffers() throws java.io.IOExceptionDescription copied from interface:ByteStoreReturns an array of byte buffers containing the bytes written to this store. The stored bytes are all of the bytes from the first buffer in the returned array, followed by all in the second, etc. In many cases the returned array will, and probably should, contain a single buffer, but if the written byte count exceedsInteger.MAX_VALUE, more than one will be required. The limit of each buffer indicates the number of bytes it contains.Usual usage will be to write all data, then call this method once; this model may affect implementation decisions about efficiency.
- Specified by:
toByteBuffersin interfaceByteStore- Returns:
- byte buffer containing bytes written
- Throws:
java.io.IOException- if there is an I/O error
-
-