Class ByteStreams
- java.lang.Object
-
- com.impossibl.postgres.utils.guava.ByteStreams
-
public final class ByteStreams extends Object
Provides utility methods for working with byte arrays and I/O streams.- Since:
- 1.0
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
ByteStreams.LimitedInputStream
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static long
copy(InputStream from, OutputStream to)
Copies all bytes from the input stream to the output stream.static long
copy(ReadableByteChannel from, WritableByteChannel to)
Copies all bytes from the readable channel to the writable channel.static InputStream
limit(InputStream in, long limit)
Wraps aInputStream
, limiting the number of bytes which can be read.static OutputStream
nullOutputStream()
Returns anOutputStream
that simply discards written bytes.static int
read(InputStream in, byte[] b, int off, int len)
Reads some bytes from an input stream and stores them into the buffer arrayb
.static void
readFully(InputStream in, byte[] b)
Attempts to read enough bytes from the stream to fill the given byte array.static void
readFully(InputStream in, byte[] b, int off, int len)
Attempts to readlen
bytes from the stream into the given array starting atoff
.static void
skipFully(InputStream in, long n)
Discardsn
bytes of data from the input stream.static byte[]
toByteArray(InputStream in)
Reads all bytes from an input stream into a byte array.
-
-
-
Method Detail
-
copy
public static long copy(InputStream from, OutputStream to) throws IOException
Copies all bytes from the input stream to the output stream. Does not close or flush either stream.- Parameters:
from
- the input stream to read fromto
- the output stream to write to- Returns:
- the number of bytes copied
- Throws:
IOException
- if an I/O error occurs
-
copy
public static long copy(ReadableByteChannel from, WritableByteChannel to) throws IOException
Copies all bytes from the readable channel to the writable channel. Does not close or flush either channel.- Parameters:
from
- the readable channel to read fromto
- the writable channel to write to- Returns:
- the number of bytes copied
- Throws:
IOException
- if an I/O error occurs
-
toByteArray
public static byte[] toByteArray(InputStream in) throws IOException
Reads all bytes from an input stream into a byte array. Does not close the stream.- Parameters:
in
- the input stream to read from- Returns:
- a byte array containing all the bytes from the stream
- Throws:
IOException
- if an I/O error occurs
-
nullOutputStream
public static OutputStream nullOutputStream()
Returns anOutputStream
that simply discards written bytes.- Since:
- 14.0 (since 1.0 as com.google.common.io.NullOutputStream)
-
limit
public static InputStream limit(InputStream in, long limit)
Wraps aInputStream
, limiting the number of bytes which can be read.- Parameters:
in
- the input stream to be wrappedlimit
- the maximum number of bytes to be read- Returns:
- a length-limited
InputStream
- Since:
- 14.0 (since 1.0 as com.google.common.io.LimitInputStream)
-
readFully
public static void readFully(InputStream in, byte[] b) throws IOException
Attempts to read enough bytes from the stream to fill the given byte array. Does not close the stream.- Parameters:
in
- the input stream to read from.b
- the buffer into which the data is read.- Throws:
EOFException
- if this stream reaches the end before reading all the bytes.IOException
- if an I/O error occurs.
-
readFully
public static void readFully(InputStream in, byte[] b, int off, int len) throws IOException
Attempts to readlen
bytes from the stream into the given array starting atoff
. Does not close the stream.- Parameters:
in
- the input stream to read from.b
- the buffer into which the data is read.off
- an int specifying the offset into the data.len
- an int specifying the number of bytes to read.- Throws:
EOFException
- if this stream reaches the end before reading all the bytes.IOException
- if an I/O error occurs.
-
skipFully
public static void skipFully(InputStream in, long n) throws IOException
Discardsn
bytes of data from the input stream. This method will block until the full amount has been skipped. Does not close the stream.- Parameters:
in
- the input stream to read fromn
- the number of bytes to skip- Throws:
EOFException
- if this stream reaches the end before skipping all the bytesIOException
- if an I/O error occurs, or the stream does not support skipping
-
read
public static int read(InputStream in, byte[] b, int off, int len) throws IOException
Reads some bytes from an input stream and stores them into the buffer arrayb
. This method blocks untillen
bytes of input data have been read into the array, or end of file is detected. The number of bytes read is returned, possibly zero. Does not close the stream.A caller can detect EOF if the number of bytes read is less than
len
. All subsequent calls on the same stream will return zero.If
b
is null, aNullPointerException
is thrown. Ifoff
is negative, orlen
is negative, oroff+len
is greater than the length of the arrayb
, then anIndexOutOfBoundsException
is thrown. Iflen
is zero, then no bytes are read. Otherwise, the first byte read is stored into elementb[off]
, the next one intob[off+1]
, and so on. The number of bytes read is, at most, equal tolen
.- Parameters:
in
- the input stream to read fromb
- the buffer into which the data is readoff
- an int specifying the offset into the datalen
- an int specifying the number of bytes to read- Returns:
- the number of bytes read
- Throws:
IOException
- if an I/O error occurs
-
-