Package org.apache.iceberg.encryption
Class AesGcmInputStream
- java.lang.Object
-
- java.io.InputStream
-
- org.apache.iceberg.io.SeekableInputStream
-
- org.apache.iceberg.encryption.AesGcmInputStream
-
- All Implemented Interfaces:
java.io.Closeable
,java.lang.AutoCloseable
public class AesGcmInputStream extends SeekableInputStream
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
available()
void
close()
long
getPos()
Return the current position in the InputStream.int
read()
int
read(byte[] b, int off, int len)
void
seek(long newPos)
Seek to a new position in the InputStream.long
skip(long n)
-
-
-
Method Detail
-
available
public int available()
- Overrides:
available
in classjava.io.InputStream
-
read
public int read(byte[] b, int off, int len) throws java.io.IOException
- Overrides:
read
in classjava.io.InputStream
- Throws:
java.io.IOException
-
seek
public void seek(long newPos) throws java.io.IOException
Description copied from class:SeekableInputStream
Seek to a new position in the InputStream.- Specified by:
seek
in classSeekableInputStream
- Parameters:
newPos
- the new position to seek to- Throws:
java.io.IOException
- If the underlying stream throws IOException
-
skip
public long skip(long n)
- Overrides:
skip
in classjava.io.InputStream
-
getPos
public long getPos() throws java.io.IOException
Description copied from class:SeekableInputStream
Return the current position in the InputStream.- Specified by:
getPos
in classSeekableInputStream
- Returns:
- current position in bytes from the start of the stream
- Throws:
java.io.IOException
- If the underlying stream throws IOException
-
read
public int read() throws java.io.IOException
- Specified by:
read
in classjava.io.InputStream
- Throws:
java.io.IOException
-
close
public void close() throws java.io.IOException
- Specified by:
close
in interfacejava.lang.AutoCloseable
- Specified by:
close
in interfacejava.io.Closeable
- Overrides:
close
in classjava.io.InputStream
- Throws:
java.io.IOException
-
-