public class TarArchiveEntry extends java.lang.Object implements ArchiveEntry, TarConstants, EntryStreamOffsets
TarEntries that are created from the header bytes read from
an archive are instantiated with the TarArchiveEntry(byte[])
constructor. These entries will be used when extracting from
or listing the contents of an archive. These entries have their
header filled in using the header bytes. They also set the File
to null, since they reference an archive entry not a file.
TarEntries that are created from Files that are to be written
into an archive are instantiated with the TarArchiveEntry(File)
or TarArchiveEntry(Path)
constructor.
These entries have their header filled in using the File's information.
They also keep a reference to the File for convenience when writing entries.
Finally, TarEntries can be constructed from nothing but a name. This allows the programmer to construct the entry by hand, for instance when only an InputStream is available for writing to the archive, and the header information is constructed from other information. In this case the header fields are set to defaults and the File is set to null.
The C structure for a Tar Entry's header is:
struct header { char name[100]; // TarConstants.NAMELEN - offset 0 char mode[8]; // TarConstants.MODELEN - offset 100 char uid[8]; // TarConstants.UIDLEN - offset 108 char gid[8]; // TarConstants.GIDLEN - offset 116 char size[12]; // TarConstants.SIZELEN - offset 124 char mtime[12]; // TarConstants.MODTIMELEN - offset 136 char chksum[8]; // TarConstants.CHKSUMLEN - offset 148 char linkflag[1]; // - offset 156 char linkname[100]; // TarConstants.NAMELEN - offset 157 // The following fields are only present in new-style POSIX tar archives: char magic[6]; // TarConstants.MAGICLEN - offset 257 char version[2]; // TarConstants.VERSIONLEN - offset 263 char uname[32]; // TarConstants.UNAMELEN - offset 265 char gname[32]; // TarConstants.GNAMELEN - offset 297 char devmajor[8]; // TarConstants.DEVLEN - offset 329 char devminor[8]; // TarConstants.DEVLEN - offset 337 char prefix[155]; // TarConstants.PREFIXLEN - offset 345 // Used if "name" field is not long enough to hold the path char pad[12]; // NULs - offset 500 } header;
All unused bytes are set to null.
New-style GNU tar files are slightly different from the above.
For values of size larger than 077777777777L (11 7s)
or uid and gid larger than 07777777L (7 7s)
the sign bit of the first byte is set, and the rest of the
field is the binary representation of the number.
See TarUtils.parseOctalOrBinary(byte[], int, int)
.
The C structure for a old GNU Tar Entry's header is:
struct oldgnu_header { char unused_pad1[345]; // TarConstants.PAD1LEN_GNU - offset 0 char atime[12]; // TarConstants.ATIMELEN_GNU - offset 345 char ctime[12]; // TarConstants.CTIMELEN_GNU - offset 357 char offset[12]; // TarConstants.OFFSETLEN_GNU - offset 369 char longnames[4]; // TarConstants.LONGNAMESLEN_GNU - offset 381 char unused_pad2; // TarConstants.PAD2LEN_GNU - offset 385 struct sparse sp[4]; // TarConstants.SPARSELEN_GNU - offset 386 char isextended; // TarConstants.ISEXTENDEDLEN_GNU - offset 482 char realsize[12]; // TarConstants.REALSIZELEN_GNU - offset 483 char unused_pad[17]; // TarConstants.PAD3LEN_GNU - offset 495 };
Whereas, "struct sparse" is:
struct sparse { char offset[12]; // offset 0 char numbytes[12]; // offset 12 };
The C structure for a xstar (J rg Schilling star) Tar Entry's header is:
struct star_header { char name[100]; // offset 0 char mode[8]; // offset 100 char uid[8]; // offset 108 char gid[8]; // offset 116 char size[12]; // offset 124 char mtime[12]; // offset 136 char chksum[8]; // offset 148 char typeflag; // offset 156 char linkname[100]; // offset 157 char magic[6]; // offset 257 char version[2]; // offset 263 char uname[32]; // offset 265 char gname[32]; // offset 297 char devmajor[8]; // offset 329 char devminor[8]; // offset 337 char prefix[131]; // offset 345 char atime[12]; // offset 476 char ctime[12]; // offset 488 char mfill[8]; // offset 500 char xmagic[4]; // offset 508 "tar\0" };
which is identical to new-style POSIX up to the first 130 bytes of the prefix.
The C structure for the xstar-specific parts of a xstar Tar Entry's header is:
struct xstar_in_header { char fill[345]; // offset 0 Everything before t_prefix char prefix[1]; // offset 345 Prefix for t_name char fill2; // offset 346 char fill3[8]; // offset 347 char isextended; // offset 355 struct sparse sp[SIH]; // offset 356 8 x 12 char realsize[12]; // offset 452 Real size for sparse data char offset[12]; // offset 464 Offset for multivolume data char atime[12]; // offset 476 char ctime[12]; // offset 488 char mfill[8]; // offset 500 char xmagic[4]; // offset 508 "tar\0" };
Modifier and Type | Field and Description |
---|---|
static int |
DEFAULT_DIR_MODE
Default permissions bits for directories
|
static int |
DEFAULT_FILE_MODE
Default permissions bits for files
|
static int |
MAX_NAMELEN
Maximum length of a user's name in the tar file
|
static int |
MILLIS_PER_SECOND
Convert millis to seconds
|
static long |
UNKNOWN
Value used to indicate unknown mode, user/groupids, device numbers and modTime when parsing a file in lenient
mode and the archive contains illegal fields.
|
SIZE_UNKNOWN
ATIMELEN_GNU, ATIMELEN_XSTAR, CHKSUM_OFFSET, CHKSUMLEN, CTIMELEN_GNU, CTIMELEN_XSTAR, DEFAULT_BLKSIZE, DEFAULT_RCDSIZE, DEVLEN, FORMAT_OLDGNU, FORMAT_POSIX, FORMAT_XSTAR, GIDLEN, GNAMELEN, GNU_LONGLINK, ISEXTENDEDLEN_GNU, ISEXTENDEDLEN_GNU_SPARSE, LF_BLK, LF_CHR, LF_CONTIG, LF_DIR, LF_FIFO, LF_GNUTYPE_LONGLINK, LF_GNUTYPE_LONGNAME, LF_GNUTYPE_SPARSE, LF_LINK, LF_MULTIVOLUME, LF_NORMAL, LF_OFFSET, LF_OLDNORM, LF_PAX_EXTENDED_HEADER_LC, LF_PAX_EXTENDED_HEADER_UC, LF_PAX_GLOBAL_EXTENDED_HEADER, LF_SYMLINK, LONGNAMESLEN_GNU, MAGIC_ANT, MAGIC_GNU, MAGIC_OFFSET, MAGIC_POSIX, MAGIC_XSTAR, MAGICLEN, MAXID, MAXSIZE, MODELEN, MODTIMELEN, NAMELEN, OFFSETLEN_GNU, PAD2LEN_GNU, PREFIXLEN, PREFIXLEN_XSTAR, REALSIZELEN_GNU, SIZELEN, SPARSE_HEADERS_IN_EXTENSION_HEADER, SPARSE_HEADERS_IN_OLDGNU_HEADER, SPARSE_NUMBYTES_LEN, SPARSE_OFFSET_LEN, SPARSELEN_GNU, SPARSELEN_GNU_SPARSE, UIDLEN, UNAMELEN, VERSION_ANT, VERSION_GNU_SPACE, VERSION_GNU_ZERO, VERSION_OFFSET, VERSION_POSIX, VERSIONLEN, XSTAR_ATIME_OFFSET, XSTAR_CTIME_OFFSET, XSTAR_MAGIC_LEN, XSTAR_MAGIC_OFFSET, XSTAR_MULTIVOLUME_OFFSET, XSTAR_PREFIX_OFFSET
OFFSET_UNKNOWN
Constructor and Description |
---|
TarArchiveEntry(byte[] headerBuf)
Construct an entry from an archive's header bytes.
|
TarArchiveEntry(byte[] headerBuf,
ZipEncoding encoding)
Construct an entry from an archive's header bytes.
|
TarArchiveEntry(byte[] headerBuf,
ZipEncoding encoding,
boolean lenient)
Construct an entry from an archive's header bytes.
|
TarArchiveEntry(byte[] headerBuf,
ZipEncoding encoding,
boolean lenient,
long dataOffset)
Construct an entry from an archive's header bytes for random access tar.
|
TarArchiveEntry(java.io.File file)
Construct an entry for a file.
|
TarArchiveEntry(java.io.File file,
java.lang.String fileName)
Construct an entry for a file.
|
TarArchiveEntry(java.util.Map<java.lang.String,java.lang.String> globalPaxHeaders,
byte[] headerBuf,
ZipEncoding encoding,
boolean lenient)
Construct an entry from an archive's header bytes.
|
TarArchiveEntry(java.util.Map<java.lang.String,java.lang.String> globalPaxHeaders,
byte[] headerBuf,
ZipEncoding encoding,
boolean lenient,
long dataOffset)
Construct an entry from an archive's header bytes for random access tar.
|
TarArchiveEntry(java.nio.file.Path file)
Construct an entry for a file.
|
TarArchiveEntry(java.nio.file.Path file,
java.lang.String fileName,
java.nio.file.LinkOption... linkOptions)
Construct an entry for a file.
|
TarArchiveEntry(java.lang.String name)
Construct an entry with only a name.
|
TarArchiveEntry(java.lang.String name,
boolean preserveAbsolutePath)
Construct an entry with only a name.
|
TarArchiveEntry(java.lang.String name,
byte linkFlag)
Construct an entry with a name and a link flag.
|
TarArchiveEntry(java.lang.String name,
byte linkFlag,
boolean preserveAbsolutePath)
Construct an entry with a name and a link flag.
|
Modifier and Type | Method and Description |
---|---|
void |
addPaxHeader(java.lang.String name,
java.lang.String value)
add a PAX header to this entry.
|
void |
clearExtraPaxHeaders()
clear all extra PAX headers.
|
boolean |
equals(java.lang.Object it)
Determine if the two entries are equal.
|
boolean |
equals(TarArchiveEntry it)
Determine if the two entries are equal.
|
java.nio.file.attribute.FileTime |
getCreationTime()
Get this entry's creation time.
|
long |
getDataOffset()
Gets the offset of data stream within the archive file,
|
int |
getDevMajor()
Get this entry's major device number.
|
int |
getDevMinor()
Get this entry's minor device number.
|
TarArchiveEntry[] |
getDirectoryEntries()
If this entry represents a file, and the file is a directory, return
an array of TarEntries for this entry's children.
|
java.lang.String |
getExtraPaxHeader(java.lang.String name)
get named extra PAX header
|
java.util.Map<java.lang.String,java.lang.String> |
getExtraPaxHeaders()
get extra PAX Headers
|
java.io.File |
getFile()
Get this entry's file.
|
int |
getGroupId()
Deprecated.
use #getLongGroupId instead as group ids can be
bigger than
Integer.MAX_VALUE |
java.lang.String |
getGroupName()
Get this entry's group name.
|
java.nio.file.attribute.FileTime |
getLastAccessTime()
Get this entry's last access time.
|
java.util.Date |
getLastModifiedDate()
Get this entry's modification time.
|
java.nio.file.attribute.FileTime |
getLastModifiedTime()
Get this entry's modification time.
|
java.lang.String |
getLinkName()
Get this entry's link name.
|
long |
getLongGroupId()
Get this entry's group id.
|
long |
getLongUserId()
Get this entry's user id.
|
int |
getMode()
Get this entry's mode.
|
java.util.Date |
getModTime()
Get this entry's modification time.
|
java.lang.String |
getName()
Get this entry's name.
|
java.util.List<TarArchiveStructSparse> |
getOrderedSparseHeaders()
Get this entry's sparse headers ordered by offset with all empty sparse sections at the start filtered out.
|
java.nio.file.Path |
getPath()
Get this entry's file.
|
long |
getRealSize()
Get this entry's real file size in case of a sparse file.
|
long |
getSize()
Get this entry's file size.
|
java.util.List<TarArchiveStructSparse> |
getSparseHeaders()
Get this entry's sparse headers
|
java.nio.file.attribute.FileTime |
getStatusChangeTime()
Get this entry's status change time.
|
int |
getUserId()
Deprecated.
use #getLongUserId instead as user ids can be
bigger than
Integer.MAX_VALUE |
java.lang.String |
getUserName()
Get this entry's user name.
|
int |
hashCode()
Hashcodes are based on entry names.
|
boolean |
isBlockDevice()
Check if this is a block device entry.
|
boolean |
isCharacterDevice()
Check if this is a character device entry.
|
boolean |
isCheckSumOK()
Get this entry's checksum status.
|
boolean |
isDescendent(TarArchiveEntry desc)
Determine if the given entry is a descendant of this entry.
|
boolean |
isDirectory()
Return whether or not this entry represents a directory.
|
boolean |
isExtended()
Indicates in case of an oldgnu sparse file if an extension
sparse header follows.
|
boolean |
isFIFO()
Check if this is a FIFO (pipe) entry.
|
boolean |
isFile()
Check if this is a "normal file"
|
boolean |
isGlobalPaxHeader()
Check if this is a Pax header.
|
boolean |
isGNULongLinkEntry()
Indicate if this entry is a GNU long linkname block
|
boolean |
isGNULongNameEntry()
Indicate if this entry is a GNU long name block
|
boolean |
isGNUSparse()
Indicate if this entry is a GNU sparse block.
|
boolean |
isLink()
Check if this is a link entry.
|
boolean |
isOldGNUSparse()
Indicate if this entry is a GNU or star sparse block using the
oldgnu format.
|
boolean |
isPaxGNU1XSparse()
Get if this entry is a sparse file with 1.X PAX Format or not
|
boolean |
isPaxGNUSparse()
Indicate if this entry is a GNU sparse block using one of the
PAX formats.
|
boolean |
isPaxHeader()
Check if this is a Pax header.
|
boolean |
isSparse()
Check whether this is a sparse entry.
|
boolean |
isStarSparse()
Indicate if this entry is a star sparse block using PAX headers.
|
boolean |
isStreamContiguous()
Indicates whether the stream is contiguous, i.e.
|
boolean |
isSymbolicLink()
Check if this is a symbolic link entry.
|
void |
parseTarHeader(byte[] header)
Parse an entry's header information from a header buffer.
|
void |
parseTarHeader(byte[] header,
ZipEncoding encoding)
Parse an entry's header information from a header buffer.
|
void |
setCreationTime(java.nio.file.attribute.FileTime time)
Set this entry's creation time.
|
void |
setDataOffset(long dataOffset)
Set the offset of the data for the tar entry.
|
void |
setDevMajor(int devNo)
Set this entry's major device number.
|
void |
setDevMinor(int devNo)
Set this entry's minor device number.
|
void |
setGroupId(int groupId)
Set this entry's group id.
|
void |
setGroupId(long groupId)
Set this entry's group id.
|
void |
setGroupName(java.lang.String groupName)
Set this entry's group name.
|
void |
setIds(int userId,
int groupId)
Convenience method to set this entry's group and user ids.
|
void |
setLastAccessTime(java.nio.file.attribute.FileTime time)
Set this entry's last access time.
|
void |
setLastModifiedTime(java.nio.file.attribute.FileTime time)
Set this entry's modification time.
|
void |
setLinkName(java.lang.String link)
Set this entry's link name.
|
void |
setMode(int mode)
Set the mode for this entry
|
void |
setModTime(java.util.Date time)
Set this entry's modification time.
|
void |
setModTime(java.nio.file.attribute.FileTime time)
Set this entry's modification time.
|
void |
setModTime(long time)
Set this entry's modification time.
|
void |
setName(java.lang.String name)
Set this entry's name.
|
void |
setNames(java.lang.String userName,
java.lang.String groupName)
Convenience method to set this entry's group and user names.
|
void |
setSize(long size)
Set this entry's file size.
|
void |
setSparseHeaders(java.util.List<TarArchiveStructSparse> sparseHeaders)
Set this entry's sparse headers
|
void |
setStatusChangeTime(java.nio.file.attribute.FileTime time)
Set this entry's status change time.
|
void |
setUserId(int userId)
Set this entry's user id.
|
void |
setUserId(long userId)
Set this entry's user id.
|
void |
setUserName(java.lang.String userName)
Set this entry's user name.
|
void |
writeEntryHeader(byte[] outbuf)
Write an entry's header information to a header buffer.
|
void |
writeEntryHeader(byte[] outbuf,
ZipEncoding encoding,
boolean starMode)
Write an entry's header information to a header buffer.
|
public static final long UNKNOWN
public static final int MAX_NAMELEN
public static final int DEFAULT_DIR_MODE
public static final int DEFAULT_FILE_MODE
public static final int MILLIS_PER_SECOND
public TarArchiveEntry(byte[] headerBuf)
headerBuf
- The header bytes from a tar archive entry.java.lang.IllegalArgumentException
- if any of the numeric fields have an invalid formatpublic TarArchiveEntry(byte[] headerBuf, ZipEncoding encoding) throws java.io.IOException
headerBuf
- The header bytes from a tar archive entry.encoding
- encoding to use for file namesjava.lang.IllegalArgumentException
- if any of the numeric fields have an invalid formatjava.io.IOException
- on errorpublic TarArchiveEntry(byte[] headerBuf, ZipEncoding encoding, boolean lenient) throws java.io.IOException
headerBuf
- The header bytes from a tar archive entry.encoding
- encoding to use for file nameslenient
- when set to true illegal values for group/userid, mode, device numbers and timestamp will be
ignored and the fields set to UNKNOWN
. When set to false such illegal fields cause an exception instead.java.lang.IllegalArgumentException
- if any of the numeric fields have an invalid formatjava.io.IOException
- on errorpublic TarArchiveEntry(byte[] headerBuf, ZipEncoding encoding, boolean lenient, long dataOffset) throws java.io.IOException
headerBuf
- the header bytes from a tar archive entry.encoding
- encoding to use for file names.lenient
- when set to true illegal values for group/userid, mode, device numbers and timestamp will be
ignored and the fields set to UNKNOWN
. When set to false such illegal fields cause an exception instead.dataOffset
- position of the entry data in the random access file.java.lang.IllegalArgumentException
- if any of the numeric fields have an invalid format.java.io.IOException
- on error.public TarArchiveEntry(java.io.File file)
The entry's name will be the value of the file
's
path with all file separators replaced by forward slashes and
leading slashes as well as Windows drive letters stripped. The
name will end in a slash if the file
represents a
directory.
Note: Since 1.21 this internally uses the same code as the
TarArchiveEntry constructors with a Path
as parameter.
But all thrown exceptions are ignored. If handling those
exceptions is needed consider switching to the path constructors.
file
- The file that the entry represents.public TarArchiveEntry(java.io.File file, java.lang.String fileName)
The entry's name will be the value of the fileName
argument with all file separators replaced by forward slashes
and leading slashes as well as Windows drive letters stripped.
The name will end in a slash if the file
represents a
directory.
Note: Since 1.21 this internally uses the same code as the
TarArchiveEntry constructors with a Path
as parameter.
But all thrown exceptions are ignored. If handling those
exceptions is needed consider switching to the path constructors.
file
- The file that the entry represents.fileName
- the name to be used for the entry.public TarArchiveEntry(java.util.Map<java.lang.String,java.lang.String> globalPaxHeaders, byte[] headerBuf, ZipEncoding encoding, boolean lenient) throws java.io.IOException
globalPaxHeaders
- the parsed global PAX headers, or null if this is the first one.headerBuf
- The header bytes from a tar archive entry.encoding
- encoding to use for file nameslenient
- when set to true illegal values for group/userid, mode, device numbers and timestamp will be
ignored and the fields set to UNKNOWN
. When set to false such illegal fields cause an exception instead.java.lang.IllegalArgumentException
- if any of the numeric fields have an invalid formatjava.io.IOException
- on errorpublic TarArchiveEntry(java.util.Map<java.lang.String,java.lang.String> globalPaxHeaders, byte[] headerBuf, ZipEncoding encoding, boolean lenient, long dataOffset) throws java.io.IOException
globalPaxHeaders
- the parsed global PAX headers, or null if this is the first one.headerBuf
- the header bytes from a tar archive entry.encoding
- encoding to use for file names.lenient
- when set to true illegal values for group/userid, mode, device numbers and timestamp will be
ignored and the fields set to UNKNOWN
. When set to false such illegal fields cause an exception instead.dataOffset
- position of the entry data in the random access file.java.lang.IllegalArgumentException
- if any of the numeric fields have an invalid format.java.io.IOException
- on error.public TarArchiveEntry(java.nio.file.Path file) throws java.io.IOException
The entry's name will be the value of the file
's
path with all file separators replaced by forward slashes and
leading slashes as well as Windows drive letters stripped. The
name will end in a slash if the file
represents a
directory.
file
- The file that the entry represents.java.io.IOException
- if an I/O error occurspublic TarArchiveEntry(java.nio.file.Path file, java.lang.String fileName, java.nio.file.LinkOption... linkOptions) throws java.io.IOException
The entry's name will be the value of the fileName
argument with all file separators replaced by forward slashes
and leading slashes as well as Windows drive letters stripped.
The name will end in a slash if the file
represents a
directory.
file
- The file that the entry represents.fileName
- the name to be used for the entry.linkOptions
- options indicating how symbolic links are handled.java.io.IOException
- if an I/O error occurspublic TarArchiveEntry(java.lang.String name)
The entry's name will be the value of the name
argument with all file separators replaced by forward slashes
and leading slashes as well as Windows drive letters stripped.
name
- the entry namepublic TarArchiveEntry(java.lang.String name, boolean preserveAbsolutePath)
The entry's name will be the value of the name
argument with all file separators replaced by forward slashes.
Leading slashes and Windows drive letters are stripped if
preserveAbsolutePath
is false
.
name
- the entry namepreserveAbsolutePath
- whether to allow leading slashes
or drive letters in the name.public TarArchiveEntry(java.lang.String name, byte linkFlag)
The entry's name will be the value of the name
argument with all file separators replaced by forward slashes
and leading slashes as well as Windows drive letters
stripped.
name
- the entry namelinkFlag
- the entry link flag.public TarArchiveEntry(java.lang.String name, byte linkFlag, boolean preserveAbsolutePath)
The entry's name will be the value of the name
argument with all file separators replaced by forward slashes.
Leading slashes and Windows drive letters are stripped if
preserveAbsolutePath
is false
.
name
- the entry namelinkFlag
- the entry link flag.preserveAbsolutePath
- whether to allow leading slashes
or drive letters in the name.public void addPaxHeader(java.lang.String name, java.lang.String value)
name
- The full name of the header to set.value
- value of header.public void clearExtraPaxHeaders()
public boolean equals(java.lang.Object it)
equals
in class java.lang.Object
it
- Entry to be checked for equality.public boolean equals(TarArchiveEntry it)
it
- Entry to be checked for equality.public java.nio.file.attribute.FileTime getCreationTime()
public long getDataOffset()
getDataOffset
in interface EntryStreamOffsets
OFFSET_UNKNOWN
if not known.public int getDevMajor()
public int getDevMinor()
public TarArchiveEntry[] getDirectoryEntries()
This method is only useful for entries created from a File
or Path
but not for entries read from an archive.
public java.lang.String getExtraPaxHeader(java.lang.String name)
name
- The full name of an extended PAX header to retrievepublic java.util.Map<java.lang.String,java.lang.String> getExtraPaxHeaders()
public java.io.File getFile()
This method is only useful for entries created from a File
or Path
but not for entries read from an archive.
@Deprecated public int getGroupId()
Integer.MAX_VALUE
public java.lang.String getGroupName()
public java.nio.file.attribute.FileTime getLastAccessTime()
public java.util.Date getLastModifiedDate()
getLastModifiedTime()
, but precision is truncated to milliseconds.getLastModifiedDate
in interface ArchiveEntry
getLastModifiedTime()
public java.nio.file.attribute.FileTime getLastModifiedTime()
public java.lang.String getLinkName()
public long getLongGroupId()
public long getLongUserId()
public int getMode()
public java.util.Date getModTime()
getLastModifiedTime()
, but precision is truncated to milliseconds.getLastModifiedTime()
public java.lang.String getName()
This method returns the raw name as it is stored inside of the archive.
getName
in interface ArchiveEntry
public java.util.List<TarArchiveStructSparse> getOrderedSparseHeaders() throws java.io.IOException
java.io.IOException
- if the list of sparse headers contains blocks that overlappublic java.nio.file.Path getPath()
This method is only useful for entries created from a File
or Path
but not for entries read from an archive.
public long getRealSize()
This is the size a file would take on disk if the entry was expanded.
If the file is not a sparse file, return size instead of realSize.
public long getSize()
This is the size the entry's data uses inside of the archive. Usually this is the same as getRealSize()
, but it doesn't take the "holes" into account when the entry represents a sparse file.
getSize
in interface ArchiveEntry
public java.util.List<TarArchiveStructSparse> getSparseHeaders()
public java.nio.file.attribute.FileTime getStatusChangeTime()
@Deprecated public int getUserId()
Integer.MAX_VALUE
public java.lang.String getUserName()
public int hashCode()
hashCode
in class java.lang.Object
public boolean isBlockDevice()
public boolean isCharacterDevice()
public boolean isCheckSumOK()
TarUtils.verifyCheckSum(byte[])
public boolean isDescendent(TarArchiveEntry desc)
desc
- Entry to be checked as a descendent of this.public boolean isDirectory()
isDirectory
in interface ArchiveEntry
public boolean isExtended()
public boolean isFIFO()
public boolean isFile()
public boolean isGlobalPaxHeader()
true
if this is a Pax header.public boolean isGNULongLinkEntry()
public boolean isGNULongNameEntry()
public boolean isGNUSparse()
public boolean isLink()
public boolean isOldGNUSparse()
public boolean isPaxGNU1XSparse()
public boolean isPaxGNUSparse()
public boolean isPaxHeader()
true
if this is a Pax header.public boolean isSparse()
public boolean isStarSparse()
public boolean isStreamContiguous()
isStreamContiguous
in interface EntryStreamOffsets
public boolean isSymbolicLink()
public void parseTarHeader(byte[] header)
header
- The tar entry header buffer to get information from.java.lang.IllegalArgumentException
- if any of the numeric fields have an invalid formatpublic void parseTarHeader(byte[] header, ZipEncoding encoding) throws java.io.IOException
header
- The tar entry header buffer to get information from.encoding
- encoding to use for file namesjava.lang.IllegalArgumentException
- if any of the numeric fields
have an invalid formatjava.io.IOException
- on errorpublic void setCreationTime(java.nio.file.attribute.FileTime time)
time
- This entry's new creation time.public void setDataOffset(long dataOffset)
dataOffset
- the position of the data in the tar.public void setDevMajor(int devNo)
devNo
- This entry's major device number.java.lang.IllegalArgumentException
- if the devNo is < 0.public void setDevMinor(int devNo)
devNo
- This entry's minor device number.java.lang.IllegalArgumentException
- if the devNo is < 0.public void setGroupId(int groupId)
groupId
- This entry's new group id.public void setGroupId(long groupId)
groupId
- This entry's new group id.public void setGroupName(java.lang.String groupName)
groupName
- This entry's new group name.public void setIds(int userId, int groupId)
userId
- This entry's new user id.groupId
- This entry's new group id.public void setLastAccessTime(java.nio.file.attribute.FileTime time)
time
- This entry's new last access time.public void setLastModifiedTime(java.nio.file.attribute.FileTime time)
time
- This entry's new modification time.public void setLinkName(java.lang.String link)
link
- the link name to use.public void setMode(int mode)
mode
- the mode for this entrypublic void setModTime(java.util.Date time)
time
- This entry's new modification time.setLastModifiedTime(FileTime)
public void setModTime(java.nio.file.attribute.FileTime time)
time
- This entry's new modification time.setLastModifiedTime(FileTime)
public void setModTime(long time)
time
- This entry's new modification time.setLastModifiedTime(FileTime)
public void setName(java.lang.String name)
name
- This entry's new name.public void setNames(java.lang.String userName, java.lang.String groupName)
userName
- This entry's new user name.groupName
- This entry's new group name.public void setSize(long size)
size
- This entry's new file size.java.lang.IllegalArgumentException
- if the size is < 0.public void setSparseHeaders(java.util.List<TarArchiveStructSparse> sparseHeaders)
sparseHeaders
- The new sparse headerspublic void setStatusChangeTime(java.nio.file.attribute.FileTime time)
time
- This entry's new status change time.public void setUserId(int userId)
userId
- This entry's new user id.public void setUserId(long userId)
userId
- This entry's new user id.public void setUserName(java.lang.String userName)
userName
- This entry's new user name.public void writeEntryHeader(byte[] outbuf)
This method does not use the star/GNU tar/BSD tar extensions.
outbuf
- The tar entry header buffer to fill in.public void writeEntryHeader(byte[] outbuf, ZipEncoding encoding, boolean starMode) throws java.io.IOException
outbuf
- The tar entry header buffer to fill in.encoding
- encoding to use when writing the file name.starMode
- whether to use the star/GNU tar/BSD tar
extension for numeric fields if their value doesn't fit in the
maximum size of standard tar archivesjava.io.IOException
- on errorCopyright © 2010 - 2023 Adobe. All Rights Reserved