Class TarInputStream
- java.lang.Object
-
- java.io.InputStream
-
- java.io.FilterInputStream
-
- org.jboss.shrinkwrap.impl.base.io.tar.TarInputStream
-
- All Implemented Interfaces:
java.io.Closeable,java.lang.AutoCloseable
- Direct Known Subclasses:
TarBzInputStream,TarGzInputStream
public class TarInputStream extends java.io.FilterInputStreamThe TarInputStream reads a UNIX tar archive as an InputStream. methods are provided to position at each successive entry in the archive, and the read each entry as a normal input stream using read(). Kerry MenzelContributed the code to support file sizes greater than 2GB (longs versus ints).
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description classTarInputStream.EntryAdapterstatic interfaceTarInputStream.EntryFactoryThis interface is provided, with the method setEntryFactory(), to allow the programmer to have their own TarEntry subclass instantiated for the entries return from getNextEntry().
-
Field Summary
Fields Modifier and Type Field Description protected TarBufferbufferprotected TarEntrycurrEntryprotected booleandebugprotected TarInputStream.EntryFactoryeFactoryprotected longentryOffsetprotected longentrySizeprotected booleanhasHitEOFprotected byte[]oneBufprotected byte[]readBuf
-
Constructor Summary
Constructors Constructor Description TarInputStream(java.io.InputStream is)TarInputStream(java.io.InputStream is, int blockSize)TarInputStream(java.io.InputStream is, int blockSize, int recordSize)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intavailable()Get the available data that can be read from the current entry in the archive.voidclose()Closes this stream.voidcopyEntryContents(java.io.OutputStream out)Copies the contents of the current tar archive entry directly into an output stream.longgetEntryPosition()Get the number of bytes into the current TarEntry.TarEntrygetNextEntry()Get the next entry in this tar archive.intgetRecordSize()Get the record size being used by this stream's TarBuffer.longgetStreamPosition()Get the number of bytes into the stream we are currently at.voidmark(int markLimit)Since we do not support marking just yet, we do nothing.booleanmarkSupported()Since we do not support marking just yet, we return false.intread()Reads a byte from the current tar archive entry.intread(byte[] buf)Reads bytes from the current tar archive entry.intread(byte[] buf, int offset, int numToRead)Reads bytes from the current tar archive entry.voidreset()Since we do not support marking just yet, we do nothing.voidsetBufferDebug(boolean debug)Sets the debugging flag in this stream's TarBuffer.voidsetDebug(boolean debugF)Sets the debugging flag.voidsetEntryFactory(TarInputStream.EntryFactory factory)Sets the debugging flag.longskip(long numToSkip)Skip bytes in the input buffer.
-
-
-
Field Detail
-
debug
protected boolean debug
-
hasHitEOF
protected boolean hasHitEOF
-
entrySize
protected long entrySize
-
entryOffset
protected long entryOffset
-
oneBuf
protected byte[] oneBuf
-
readBuf
protected byte[] readBuf
-
buffer
protected TarBuffer buffer
-
currEntry
protected TarEntry currEntry
-
eFactory
protected TarInputStream.EntryFactory eFactory
-
-
Method Detail
-
setDebug
public void setDebug(boolean debugF)
Sets the debugging flag.- Parameters:
debugF- True to turn on debugging.
-
setEntryFactory
public void setEntryFactory(TarInputStream.EntryFactory factory)
Sets the debugging flag.- Parameters:
debugF- True to turn on debugging.
-
setBufferDebug
public void setBufferDebug(boolean debug)
Sets the debugging flag in this stream's TarBuffer.- Parameters:
debugF- True to turn on debugging.
-
close
public void close() throws java.io.IOExceptionCloses this stream. Calls the TarBuffer's close() method.- Specified by:
closein interfacejava.lang.AutoCloseable- Specified by:
closein interfacejava.io.Closeable- Overrides:
closein classjava.io.FilterInputStream- Throws:
java.io.IOException
-
getRecordSize
public int getRecordSize()
Get the record size being used by this stream's TarBuffer.- Returns:
- The TarBuffer record size.
-
available
public int available() throws java.io.IOExceptionGet the available data that can be read from the current entry in the archive. This does not indicate how much data is left in the entire archive, only in the current entry. This value is determined from the entry's size header field and the amount of data already read from the current entry.- Overrides:
availablein classjava.io.FilterInputStream- Returns:
- The number of available bytes for the current entry.
- Throws:
java.io.IOException
-
skip
public long skip(long numToSkip) throws java.io.IOExceptionSkip bytes in the input buffer. This skips bytes in the current entry's data, not the entire archive, and will stop at the end of the current entry's data if the number to skip extends beyond that point.- Overrides:
skipin classjava.io.FilterInputStream- Parameters:
numToSkip- The number of bytes to skip.- Returns:
- The actual number of bytes skipped.
- Throws:
java.io.IOException
-
markSupported
public boolean markSupported()
Since we do not support marking just yet, we return false.- Overrides:
markSupportedin classjava.io.FilterInputStream- Returns:
- False.
-
mark
public void mark(int markLimit)
Since we do not support marking just yet, we do nothing.- Overrides:
markin classjava.io.FilterInputStream- Parameters:
markLimit- The limit to mark.
-
reset
public void reset()
Since we do not support marking just yet, we do nothing.- Overrides:
resetin classjava.io.FilterInputStream
-
getEntryPosition
public long getEntryPosition()
Get the number of bytes into the current TarEntry. This method returns the number of bytes that have been read from the current TarEntry's data.
-
getStreamPosition
public long getStreamPosition()
Get the number of bytes into the stream we are currently at. This method accounts for the blocking stream that tar uses, so it represents the actual position in input stream, as opposed to the place where the tar archive parsing is.
-
getNextEntry
public TarEntry getNextEntry() throws java.io.IOException
Get the next entry in this tar archive. This will skip over any remaining data in the current entry, if there is one, and place the input stream at the header of the next entry, and read the header and instantiate a new TarEntry from the header bytes and return that entry. If there are no more entries in the archive, null will be returned to indicate that the end of the archive has been reached.- Returns:
- The next TarEntry in the archive, or null.
- Throws:
java.io.IOException
-
read
public int read() throws java.io.IOExceptionReads a byte from the current tar archive entry. This method simply calls read( byte[], int, int ).- Overrides:
readin classjava.io.FilterInputStream- Returns:
- The byte read, or -1 at EOF.
- Throws:
java.io.IOException
-
read
public int read(byte[] buf) throws java.io.IOExceptionReads bytes from the current tar archive entry. This method simply calls read( byte[], int, int ).- Overrides:
readin classjava.io.FilterInputStream- Parameters:
buf- The buffer into which to place bytes read.- Returns:
- The number of bytes read, or -1 at EOF.
- Throws:
java.io.IOException
-
read
public int read(byte[] buf, int offset, int numToRead) throws java.io.IOExceptionReads bytes from the current tar archive entry. This method is aware of the boundaries of the current entry in the archive and will deal with them as if they were this stream's start and EOF.- Overrides:
readin classjava.io.FilterInputStream- Parameters:
buf- The buffer into which to place bytes read.offset- The offset at which to place bytes read.numToRead- The number of bytes to read.- Returns:
- The number of bytes read, or -1 at EOF.
- Throws:
java.io.IOException
-
copyEntryContents
public void copyEntryContents(java.io.OutputStream out) throws java.io.IOExceptionCopies the contents of the current tar archive entry directly into an output stream.- Parameters:
out- The OutputStream into which to write the entry's data.- Throws:
java.io.IOException
-
-