Class TarArchiveOutputStream
- java.lang.Object
-
- java.io.OutputStream
-
- java.io.FilterOutputStream
-
- org.apache.commons.compress.archivers.ArchiveOutputStream<TarArchiveEntry>
-
- org.apache.commons.compress.archivers.tar.TarArchiveOutputStream
-
- All Implemented Interfaces:
java.io.Closeable,java.io.Flushable,java.lang.AutoCloseable
public class TarArchiveOutputStream extends ArchiveOutputStream<TarArchiveEntry>
The TarOutputStream writes a UNIX tar archive as an OutputStream. Methods are provided to put entries, and then write their contents by writing to this stream using write().tar archives consist of a sequence of records of 512 bytes each that are grouped into blocks. Prior to Apache Commons Compress 1.14 it has been possible to configure a record size different from 512 bytes and arbitrary block sizes. Starting with Compress 1.15 512 is the only valid option for the record size and the block size must be a multiple of 512. Also the default block size changed from 10240 bytes prior to Compress 1.15 to 512 bytes with Compress 1.15.
-
-
Field Summary
Fields Modifier and Type Field Description private booleanaddPaxHeadersForNonAsciiNamesprivate static ZipEncodingASCIIstatic intBIGNUMBER_ERRORFail if a big number (e.g.static intBIGNUMBER_POSIXPOSIX/PAX extensions are used to store big numbers in the archive.static intBIGNUMBER_STARstar/GNU tar/BSD tar extensions are used to store big number in the archive.private intbigNumberModeprivate static intBLOCK_SIZE_UNSPECIFIED(package private) java.lang.StringcharsetNameThe provided encoding (for unit tests).private org.apache.commons.io.output.CountingOutputStreamcountingOutprivate longcurrBytesprivate java.lang.StringcurrNameprivate longcurrSizeprivate booleanhaveUnclosedEntryIndicates if putArchiveEntry has been called without closeArchiveEntrystatic intLONGFILE_ERRORFail if a long file name is required in the archive.static intLONGFILE_GNUGNU tar extensions are used to store long file names in the archive.static intLONGFILE_POSIXPOSIX/PAX extensions are used to store long file names in the archive.static intLONGFILE_TRUNCATELong paths will be truncated in the archive.private intlongFileModeprivate static intRECORD_SIZEprivate byte[]recordBufprivate intrecordsPerBlockprivate longrecordsWrittenprivate ZipEncodingzipEncoding
-
Constructor Summary
Constructors Constructor Description TarArchiveOutputStream(java.io.OutputStream os)Constructs a new instance.TarArchiveOutputStream(java.io.OutputStream os, int blockSize)Constructs a new instance.TarArchiveOutputStream(java.io.OutputStream os, int blockSize, int recordSize)Deprecated.recordSize must always be 512 bytes.TarArchiveOutputStream(java.io.OutputStream os, int blockSize, int recordSize, java.lang.String encoding)Deprecated.recordSize must always be 512 bytes.TarArchiveOutputStream(java.io.OutputStream os, int blockSize, java.lang.String encoding)Constructs a new instance.TarArchiveOutputStream(java.io.OutputStream os, java.lang.String encoding)Constructs a new instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description private voidaddFileTimePaxHeader(java.util.Map<java.lang.String,java.lang.String> paxHeaders, java.lang.String header, java.nio.file.attribute.FileTime value)private voidaddFileTimePaxHeaderForBigNumber(java.util.Map<java.lang.String,java.lang.String> paxHeaders, java.lang.String header, java.nio.file.attribute.FileTime value, long maxValue)private voidaddInstantPaxHeader(java.util.Map<java.lang.String,java.lang.String> paxHeaders, java.lang.String header, long seconds, int nanos)private voidaddPaxHeaderForBigNumber(java.util.Map<java.lang.String,java.lang.String> paxHeaders, java.lang.String header, long value, long maxValue)private voidaddPaxHeadersForBigNumbers(java.util.Map<java.lang.String,java.lang.String> paxHeaders, TarArchiveEntry entry)voidclose()Closes the underlying OutputStream.voidcloseArchiveEntry()Closes an entry.TarArchiveEntrycreateArchiveEntry(java.io.File inputFile, java.lang.String entryName)Creates an archive entry using the inputFile and entryName provided.TarArchiveEntrycreateArchiveEntry(java.nio.file.Path inputPath, java.lang.String entryName, java.nio.file.LinkOption... options)Creates an archive entry using the inputPath and entryName provided.private byte[]encodeExtendedPaxHeadersContents(java.util.Map<java.lang.String,java.lang.String> headers)private voidfailForBigNumber(java.lang.String field, long value, long maxValue)private voidfailForBigNumber(java.lang.String field, long value, long maxValue, java.lang.String additionalMsg)private voidfailForBigNumbers(TarArchiveEntry entry)private voidfailForBigNumberWithPosixMessage(java.lang.String field, long value, long maxValue)voidfinish()Finishes the TAR archive without closing the underlying OutputStream.longgetBytesWritten()Gets the current number of bytes written to this stream.intgetCount()Deprecated.intgetRecordSize()Deprecated.private booleanhandleLongName(TarArchiveEntry entry, java.lang.String name, java.util.Map<java.lang.String,java.lang.String> paxHeaders, java.lang.String paxHeaderName, byte linkType, java.lang.String fieldName)Handles long file or link names according to the longFileMode setting.private voidpadAsNeeded()voidputArchiveEntry(TarArchiveEntry archiveEntry)Puts an entry on the output stream.voidsetAddPaxHeadersForNonAsciiNames(boolean b)Sets whether to add a PAX extension header for non-ASCII file names.voidsetBigNumberMode(int bigNumberMode)Sets the big number mode.voidsetLongFileMode(int longFileMode)Sets the long file mode.private booleanshouldBeReplaced(char c)Tests whether the character could lead to problems when used inside a TarArchiveEntry name for a PAX header.private java.lang.StringstripTo7Bits(java.lang.String name)private voidtransferModTime(TarArchiveEntry from, TarArchiveEntry to)voidwrite(byte[] wBuf, int wOffset, int numToWrite)Writes bytes to the current tar archive entry.private voidwriteEOFRecord()Writes an EOF (end of archive) record to the tar archive.(package private) voidwritePaxHeaders(TarArchiveEntry entry, java.lang.String entryName, java.util.Map<java.lang.String,java.lang.String> headers)Writes a PAX extended header with the given map as contents.private voidwriteRecord(byte[] record)Writes an archive record to the archive.-
Methods inherited from class org.apache.commons.compress.archivers.ArchiveOutputStream
canWriteEntryData, checkFinished, checkOpen, count, count, isClosed, isFinished, write
-
-
-
-
Field Detail
-
LONGFILE_ERROR
public static final int LONGFILE_ERROR
Fail if a long file name is required in the archive.- See Also:
- Constant Field Values
-
LONGFILE_TRUNCATE
public static final int LONGFILE_TRUNCATE
Long paths will be truncated in the archive.- See Also:
- Constant Field Values
-
LONGFILE_GNU
public static final int LONGFILE_GNU
GNU tar extensions are used to store long file names in the archive.- See Also:
- Constant Field Values
-
LONGFILE_POSIX
public static final int LONGFILE_POSIX
POSIX/PAX extensions are used to store long file names in the archive.- See Also:
- Constant Field Values
-
BIGNUMBER_ERROR
public static final int BIGNUMBER_ERROR
Fail if a big number (e.g. size > 8GiB) is required in the archive.- See Also:
- Constant Field Values
-
BIGNUMBER_STAR
public static final int BIGNUMBER_STAR
star/GNU tar/BSD tar extensions are used to store big number in the archive.- See Also:
- Constant Field Values
-
BIGNUMBER_POSIX
public static final int BIGNUMBER_POSIX
POSIX/PAX extensions are used to store big numbers in the archive.- See Also:
- Constant Field Values
-
RECORD_SIZE
private static final int RECORD_SIZE
- See Also:
- Constant Field Values
-
ASCII
private static final ZipEncoding ASCII
-
BLOCK_SIZE_UNSPECIFIED
private static final int BLOCK_SIZE_UNSPECIFIED
- See Also:
- Constant Field Values
-
currSize
private long currSize
-
currName
private java.lang.String currName
-
currBytes
private long currBytes
-
recordBuf
private final byte[] recordBuf
-
longFileMode
private int longFileMode
-
bigNumberMode
private int bigNumberMode
-
recordsWritten
private long recordsWritten
-
recordsPerBlock
private final int recordsPerBlock
-
haveUnclosedEntry
private boolean haveUnclosedEntry
Indicates if putArchiveEntry has been called without closeArchiveEntry
-
countingOut
private final org.apache.commons.io.output.CountingOutputStream countingOut
-
zipEncoding
private final ZipEncoding zipEncoding
-
charsetName
final java.lang.String charsetName
The provided encoding (for unit tests).
-
addPaxHeadersForNonAsciiNames
private boolean addPaxHeadersForNonAsciiNames
-
-
Constructor Detail
-
TarArchiveOutputStream
public TarArchiveOutputStream(java.io.OutputStream os)
Constructs a new instance.Uses a block size of 512 bytes.
- Parameters:
os- the output stream to use
-
TarArchiveOutputStream
public TarArchiveOutputStream(java.io.OutputStream os, int blockSize)Constructs a new instance.- Parameters:
os- the output stream to useblockSize- the block size to use. Must be a multiple of 512 bytes.
-
TarArchiveOutputStream
@Deprecated public TarArchiveOutputStream(java.io.OutputStream os, int blockSize, int recordSize)Deprecated.recordSize must always be 512 bytes. An IllegalArgumentException will be thrown if any other value is usedConstructs a new instance.- Parameters:
os- the output stream to useblockSize- the block size to userecordSize- the record size to use. Must be 512 bytes.
-
TarArchiveOutputStream
@Deprecated public TarArchiveOutputStream(java.io.OutputStream os, int blockSize, int recordSize, java.lang.String encoding)Deprecated.recordSize must always be 512 bytes. An IllegalArgumentException will be thrown if any other value is used.Constructs a new instance.- Parameters:
os- the output stream to useblockSize- the block size to use . Must be a multiple of 512 bytes.recordSize- the record size to use. Must be 512 bytes.encoding- name of the encoding to use for file names- Since:
- 1.4
-
TarArchiveOutputStream
public TarArchiveOutputStream(java.io.OutputStream os, int blockSize, java.lang.String encoding)Constructs a new instance.- Parameters:
os- the output stream to useblockSize- the block size to use. Must be a multiple of 512 bytes.encoding- name of the encoding to use for file names- Since:
- 1.4
-
TarArchiveOutputStream
public TarArchiveOutputStream(java.io.OutputStream os, java.lang.String encoding)Constructs a new instance.Uses a block size of 512 bytes.
- Parameters:
os- the output stream to useencoding- name of the encoding to use for file names- Since:
- 1.4
-
-
Method Detail
-
addFileTimePaxHeader
private void addFileTimePaxHeader(java.util.Map<java.lang.String,java.lang.String> paxHeaders, java.lang.String header, java.nio.file.attribute.FileTime value)
-
addFileTimePaxHeaderForBigNumber
private void addFileTimePaxHeaderForBigNumber(java.util.Map<java.lang.String,java.lang.String> paxHeaders, java.lang.String header, java.nio.file.attribute.FileTime value, long maxValue)
-
addInstantPaxHeader
private void addInstantPaxHeader(java.util.Map<java.lang.String,java.lang.String> paxHeaders, java.lang.String header, long seconds, int nanos)
-
addPaxHeaderForBigNumber
private void addPaxHeaderForBigNumber(java.util.Map<java.lang.String,java.lang.String> paxHeaders, java.lang.String header, long value, long maxValue)
-
addPaxHeadersForBigNumbers
private void addPaxHeadersForBigNumbers(java.util.Map<java.lang.String,java.lang.String> paxHeaders, TarArchiveEntry entry)
-
close
public void close() throws java.io.IOExceptionCloses the underlying OutputStream.- Specified by:
closein interfacejava.lang.AutoCloseable- Specified by:
closein interfacejava.io.Closeable- Overrides:
closein classArchiveOutputStream<TarArchiveEntry>- Throws:
java.io.IOException- on error
-
closeArchiveEntry
public void closeArchiveEntry() throws java.io.IOExceptionCloses an entry. This method MUST be called for all file entries that contain data. The reason is that we must buffer data written to the stream in order to satisfy the buffer's record based writes. Thus, there may be data fragments still being assembled that must be written to the output stream before this entry is closed and the next entry written.- Specified by:
closeArchiveEntryin classArchiveOutputStream<TarArchiveEntry>- Throws:
java.io.IOException- on error
-
createArchiveEntry
public TarArchiveEntry createArchiveEntry(java.io.File inputFile, java.lang.String entryName) throws java.io.IOException
Description copied from class:ArchiveOutputStreamCreates an archive entry using the inputFile and entryName provided.- Specified by:
createArchiveEntryin classArchiveOutputStream<TarArchiveEntry>- Parameters:
inputFile- the file to create the entry fromentryName- name to use for the entry- Returns:
- the ArchiveEntry set up with details from the file
- Throws:
java.io.IOException- if an I/O error occurs
-
createArchiveEntry
public TarArchiveEntry createArchiveEntry(java.nio.file.Path inputPath, java.lang.String entryName, java.nio.file.LinkOption... options) throws java.io.IOException
Description copied from class:ArchiveOutputStreamCreates an archive entry using the inputPath and entryName provided.The default implementation calls simply delegates as:
return createArchiveEntry(inputFile.toFile(), entryName);
Subclasses should override this method.
- Overrides:
createArchiveEntryin classArchiveOutputStream<TarArchiveEntry>- Parameters:
inputPath- the file to create the entry fromentryName- name to use for the entryoptions- options indicating how symbolic links are handled.- Returns:
- the ArchiveEntry set up with details from the file
- Throws:
java.io.IOException- if an I/O error occurs
-
encodeExtendedPaxHeadersContents
private byte[] encodeExtendedPaxHeadersContents(java.util.Map<java.lang.String,java.lang.String> headers)
-
failForBigNumber
private void failForBigNumber(java.lang.String field, long value, long maxValue)
-
failForBigNumber
private void failForBigNumber(java.lang.String field, long value, long maxValue, java.lang.String additionalMsg)
-
failForBigNumbers
private void failForBigNumbers(TarArchiveEntry entry)
-
failForBigNumberWithPosixMessage
private void failForBigNumberWithPosixMessage(java.lang.String field, long value, long maxValue)
-
finish
public void finish() throws java.io.IOExceptionFinishes the TAR archive without closing the underlying OutputStream. An archive consists of a series of file entries terminated by an end-of-archive entry, which consists of two 512 blocks of zero bytes. POSIX.1 requires two EOF records, like some other implementations.- Overrides:
finishin classArchiveOutputStream<TarArchiveEntry>- Throws:
java.io.IOException- on error
-
getBytesWritten
public long getBytesWritten()
Description copied from class:ArchiveOutputStreamGets the current number of bytes written to this stream.- Overrides:
getBytesWrittenin classArchiveOutputStream<TarArchiveEntry>- Returns:
- the number of written bytes
-
getCount
@Deprecated public int getCount()
Deprecated.Description copied from class:ArchiveOutputStreamGets the current number of bytes written to this stream.- Overrides:
getCountin classArchiveOutputStream<TarArchiveEntry>- Returns:
- the number of written bytes
-
getRecordSize
@Deprecated public int getRecordSize()
Deprecated.Gets the record size being used by this stream's TarBuffer.- Returns:
- The TarBuffer record size.
-
handleLongName
private boolean handleLongName(TarArchiveEntry entry, java.lang.String name, java.util.Map<java.lang.String,java.lang.String> paxHeaders, java.lang.String paxHeaderName, byte linkType, java.lang.String fieldName) throws java.io.IOException
Handles long file or link names according to the longFileMode setting.I.e. if the given name is too long to be written to a plain tar header then
- it creates a pax header who's name is given by the paxHeaderName parameter if longFileMode is POSIX
- it creates a GNU longlink entry who's type is given by the linkType parameter if longFileMode is GNU
- it throws an exception if longFileMode is ERROR
- it truncates the name if longFileMode is TRUNCATE
- Parameters:
entry- entry the name belongs toname- the name to writepaxHeaders- current map of pax headerspaxHeaderName- name of the pax header to writelinkType- type of the GNU entry to writefieldName- the name of the field- Returns:
- whether a pax header has been written.
- Throws:
java.lang.IllegalArgumentException- if thelongFileModeequalsLONGFILE_ERRORand the file name is too longjava.io.IOException
-
padAsNeeded
private void padAsNeeded() throws java.io.IOException- Throws:
java.io.IOException
-
putArchiveEntry
public void putArchiveEntry(TarArchiveEntry archiveEntry) throws java.io.IOException
Puts an entry on the output stream. This writes the entry's header record and positions the output stream for writing the contents of the entry. Once this method is called, the stream is ready for calls to write() to write the entry's contents. Once the contents are written, closeArchiveEntry() MUST be called to ensure that all buffered data is completely written to the output stream.- Specified by:
putArchiveEntryin classArchiveOutputStream<TarArchiveEntry>- Parameters:
archiveEntry- The TarEntry to be written to the archive.- Throws:
java.io.IOException- on errorjava.lang.ClassCastException- if archiveEntry is not an instance of TarArchiveEntryjava.lang.IllegalArgumentException- if thelongFileModeequalsLONGFILE_ERRORand the file name is too longjava.lang.IllegalArgumentException- if thebigNumberModeequalsBIGNUMBER_ERRORand one of the numeric values exceeds the limits of a traditional tar header.
-
setAddPaxHeadersForNonAsciiNames
public void setAddPaxHeadersForNonAsciiNames(boolean b)
Sets whether to add a PAX extension header for non-ASCII file names.- Parameters:
b- whether to add a PAX extension header for non-ASCII file names.- Since:
- 1.4
-
setBigNumberMode
public void setBigNumberMode(int bigNumberMode)
Sets the big number mode. This can be BIGNUMBER_ERROR(0), BIGNUMBER_STAR(1) or BIGNUMBER_POSIX(2). This specifies the treatment of big files (sizes > TarConstants.MAXSIZE) and other numeric values too big to fit into a traditional tar header. Default is BIGNUMBER_ERROR.- Parameters:
bigNumberMode- the mode to use- Since:
- 1.4
-
setLongFileMode
public void setLongFileMode(int longFileMode)
Sets the long file mode. This can be LONGFILE_ERROR(0), LONGFILE_TRUNCATE(1), LONGFILE_GNU(2) or LONGFILE_POSIX(3). This specifies the treatment of long file names (names >= TarConstants.NAMELEN). Default is LONGFILE_ERROR.- Parameters:
longFileMode- the mode to use
-
shouldBeReplaced
private boolean shouldBeReplaced(char c)
Tests whether the character could lead to problems when used inside a TarArchiveEntry name for a PAX header.- Returns:
- true if the character could lead to problems when used inside a TarArchiveEntry name for a PAX header.
-
stripTo7Bits
private java.lang.String stripTo7Bits(java.lang.String name)
-
transferModTime
private void transferModTime(TarArchiveEntry from, TarArchiveEntry to)
-
write
public void write(byte[] wBuf, int wOffset, int numToWrite) throws java.io.IOExceptionWrites bytes to the current tar archive entry. This method is aware of the current entry and will throw an exception if you attempt to write bytes past the length specified for the current entry.- Overrides:
writein classjava.io.FilterOutputStream- Parameters:
wBuf- The buffer to write to the archive.wOffset- The offset in the buffer from which to get bytes.numToWrite- The number of bytes to write.- Throws:
java.io.IOException- on error
-
writeEOFRecord
private void writeEOFRecord() throws java.io.IOExceptionWrites an EOF (end of archive) record to the tar archive. An EOF record consists of a record of all zeros.- Throws:
java.io.IOException
-
writePaxHeaders
void writePaxHeaders(TarArchiveEntry entry, java.lang.String entryName, java.util.Map<java.lang.String,java.lang.String> headers) throws java.io.IOException
Writes a PAX extended header with the given map as contents.- Throws:
java.io.IOException- Since:
- 1.4
-
writeRecord
private void writeRecord(byte[] record) throws java.io.IOExceptionWrites an archive record to the archive.- Parameters:
record- The record data to write to the archive.- Throws:
java.io.IOException- on error
-
-