Package org.apache.tools.tar
Class TarInputStream
- java.lang.Object
- 
- java.io.InputStream
- 
- java.io.FilterInputStream
- 
- org.apache.tools.tar.TarInputStream
 
 
 
- 
- All Implemented Interfaces:
- java.io.Closeable,- java.lang.AutoCloseable
 
 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().
- 
- 
Field SummaryFields Modifier and Type Field Description protected TarBufferbufferprotected TarEntrycurrEntryprotected booleandebugprotected longentryOffsetprotected longentrySizeprotected booleanhasHitEOFprotected byte[]oneBufThis contents of this array is not used at all in this class, it is only here to avoid repeated object creation during calls to the no-arg read method.protected byte[]readBuf
 - 
Constructor SummaryConstructors Constructor Description TarInputStream(java.io.InputStream is)Constructor for TarInputStream.TarInputStream(java.io.InputStream is, int blockSize)Constructor for TarInputStream.TarInputStream(java.io.InputStream is, int blockSize, int recordSize)Constructor for TarInputStream.TarInputStream(java.io.InputStream is, int blockSize, int recordSize, java.lang.String encoding)Constructor for TarInputStream.TarInputStream(java.io.InputStream is, int blockSize, java.lang.String encoding)Constructor for TarInputStream.TarInputStream(java.io.InputStream is, java.lang.String encoding)Constructor for TarInputStream.
 - 
Method SummaryModifier and Type Method Description intavailable()Get the available data that can be read from the current entry in the archive.booleancanReadEntryData(TarEntry te)Whether this class is able to read the given entry.voidclose()Closes this stream.voidcopyEntryContents(java.io.OutputStream out)Copies the contents of the current tar archive entry directly into an output stream.protected byte[]getLongNameData()Get the next entry in this tar archive as longname data.TarEntrygetNextEntry()Get the next entry in this tar archive.intgetRecordSize()Get the record size being used by this stream's TarBuffer.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, int offset, int numToRead)Reads bytes from the current tar archive entry.voidreset()Since we do not support marking just yet, we do nothing.voidsetDebug(boolean debug)Sets the debugging flag.longskip(long numToSkip)Skip bytes in the input buffer.
 
- 
- 
- 
Field Detail- 
debugprotected boolean debug 
 - 
hasHitEOFprotected boolean hasHitEOF 
 - 
entrySizeprotected long entrySize 
 - 
entryOffsetprotected long entryOffset 
 - 
readBufprotected byte[] readBuf 
 - 
bufferprotected TarBuffer buffer 
 - 
currEntryprotected TarEntry currEntry 
 - 
oneBufprotected byte[] oneBuf This contents of this array is not used at all in this class, it is only here to avoid repeated object creation during calls to the no-arg read method.
 
- 
 - 
Constructor Detail- 
TarInputStreampublic TarInputStream(java.io.InputStream is) Constructor for TarInputStream.- Parameters:
- is- the input stream to use
 
 - 
TarInputStreampublic TarInputStream(java.io.InputStream is, java.lang.String encoding)Constructor for TarInputStream.- Parameters:
- is- the input stream to use
- encoding- name of the encoding to use for file names
 
 - 
TarInputStreampublic TarInputStream(java.io.InputStream is, int blockSize)Constructor for TarInputStream.- Parameters:
- is- the input stream to use
- blockSize- the block size to use
 
 - 
TarInputStreampublic TarInputStream(java.io.InputStream is, int blockSize, java.lang.String encoding)Constructor for TarInputStream.- Parameters:
- is- the input stream to use
- blockSize- the block size to use
- encoding- name of the encoding to use for file names
 
 - 
TarInputStreampublic TarInputStream(java.io.InputStream is, int blockSize, int recordSize)Constructor for TarInputStream.- Parameters:
- is- the input stream to use
- blockSize- the block size to use
- recordSize- the record size to use
 
 - 
TarInputStreampublic TarInputStream(java.io.InputStream is, int blockSize, int recordSize, java.lang.String encoding)Constructor for TarInputStream.- Parameters:
- is- the input stream to use
- blockSize- the block size to use
- recordSize- the record size to use
- encoding- name of the encoding to use for file names
 
 
- 
 - 
Method Detail- 
setDebugpublic void setDebug(boolean debug) Sets the debugging flag.- Parameters:
- debug- True to turn on debugging.
 
 - 
closepublic void close() throws java.io.IOExceptionCloses this stream. Calls the TarBuffer's close() method.- Specified by:
- closein interface- java.lang.AutoCloseable
- Specified by:
- closein interface- java.io.Closeable
- Overrides:
- closein class- java.io.FilterInputStream
- Throws:
- java.io.IOException- on error
 
 - 
getRecordSizepublic int getRecordSize() Get the record size being used by this stream's TarBuffer.- Returns:
- The TarBuffer record size.
 
 - 
availablepublic 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. Integer.MAX_VALUE is returned in case more than Integer.MAX_VALUE bytes are left in the current entry in the archive.- Overrides:
- availablein class- java.io.FilterInputStream
- Returns:
- The number of available bytes for the current entry.
- Throws:
- java.io.IOException- for signature
 
 - 
skippublic 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 class- java.io.FilterInputStream
- Parameters:
- numToSkip- The number of bytes to skip.
- Returns:
- the number actually skipped
- Throws:
- java.io.IOException- on error
 
 - 
markSupportedpublic boolean markSupported() Since we do not support marking just yet, we return false.- Overrides:
- markSupportedin class- java.io.FilterInputStream
- Returns:
- False.
 
 - 
markpublic void mark(int markLimit) Since we do not support marking just yet, we do nothing.- Overrides:
- markin class- java.io.FilterInputStream
- Parameters:
- markLimit- The limit to mark.
 
 - 
resetpublic void reset() Since we do not support marking just yet, we do nothing.- Overrides:
- resetin class- java.io.FilterInputStream
 
 - 
getNextEntrypublic 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- on error
 
 - 
getLongNameDataprotected byte[] getLongNameData() throws java.io.IOExceptionGet the next entry in this tar archive as longname data.- Returns:
- The next entry in the archive as longname data, or null.
- Throws:
- java.io.IOException- on error
 
 - 
readpublic int read() throws java.io.IOExceptionReads a byte from the current tar archive entry. This method simply calls read(byte[], int, int).- Overrides:
- readin class- java.io.FilterInputStream
- Returns:
- The byte read, or -1 at EOF.
- Throws:
- java.io.IOException- on error
 
 - 
readpublic 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 class- java.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- on error
 
 - 
copyEntryContentspublic 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- on error
 
 - 
canReadEntryDatapublic boolean canReadEntryData(TarEntry te) Whether this class is able to read the given entry.May return false if the current entry is a sparse file. - Parameters:
- te- TarEntry
- Returns:
- boolean
 
 
- 
 
-