Class TarEntry
- All Implemented Interfaces:
TarConstants
TarEntries that are created from the header bytes read from an archive are instantiated with the TarEntry( 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 TarEntry( File ) 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[NAMSIZ];
char mode[8];
char uid[8];
char gid[8];
char size[12];
char mtime[12];
char chksum[8];
char linkflag;
char linkname[NAMSIZ];
char magic[8];
char uname[TUNMLEN];
char gname[TGNMLEN];
char devmajor[8];
char devminor[8];
} header;
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final intDefault permissions bits for directoriesstatic final intDefault permissions bits for filesstatic final intMaximum length of a user's name in the tar filestatic final intConvert millis to secondsFields inherited from interface org.apache.activemq.console.command.store.tar.TarConstants
CHKSUMLEN, DEVLEN, GIDLEN, GNAMELEN, GNU_LONGLINK, GNU_TMAGIC, LF_BLK, LF_CHR, LF_CONTIG, LF_DIR, LF_FIFO, LF_GNUTYPE_LONGNAME, LF_LINK, LF_NORMAL, LF_OLDNORM, LF_SYMLINK, MAGICLEN, MAXSIZE, MODELEN, MODTIMELEN, NAMELEN, SIZELEN, TMAGIC, UIDLEN, UNAMELEN -
Constructor Summary
ConstructorsConstructorDescriptionTarEntry(byte[] headerBuf) Construct an entry from an archive's header bytes.Construct an entry for a file.Construct an entry with only a name.Construct an entry with only a name.Construct an entry with a name and a link flag. -
Method Summary
Modifier and TypeMethodDescriptionbooleanDetermine if the two entries are equal.booleanDetermine if the two entries are equal.TarEntry[]If this entry represents a file, and the file is a directory, return an array of TarEntries for this entry's children.getFile()Get this entry's file.intGet this entry's group id.Get this entry's group name.Get this entry's link name.intgetMode()Get this entry's mode.Set this entry's modification time.getName()Get this entry's name.longgetSize()Get this entry's file size.intGet this entry's user id.Get this entry's user name.inthashCode()Hashcodes are based on entry names.booleanisDescendent(TarEntry desc) Determine if the given entry is a descendant of this entry.booleanReturn whether or not this entry represents a directory.booleanIndicate if this entry is a GNU long name blockvoidparseTarHeader(byte[] header) Parse an entry's header information from a header buffer.voidsetGroupId(int groupId) Set this entry's group id.voidsetGroupName(String groupName) Set this entry's group name.voidsetIds(int userId, int groupId) Convenience method to set this entry's group and user ids.voidsetMode(int mode) Set the mode for this entryvoidsetModTime(long time) Set this entry's modification time.voidsetModTime(Date time) Set this entry's modification time.voidSet this entry's name.voidConvenience method to set this entry's group and user names.voidsetSize(long size) Set this entry's file size.voidsetUserId(int userId) Set this entry's user id.voidsetUserName(String userName) Set this entry's user name.voidwriteEntryHeader(byte[] outbuf) Write an entry's header information to a header buffer.
-
Field Details
-
MAX_NAMELEN
public static final int MAX_NAMELENMaximum length of a user's name in the tar file- See Also:
-
DEFAULT_DIR_MODE
public static final int DEFAULT_DIR_MODEDefault permissions bits for directories- See Also:
-
DEFAULT_FILE_MODE
public static final int DEFAULT_FILE_MODEDefault permissions bits for files- See Also:
-
MILLIS_PER_SECOND
public static final int MILLIS_PER_SECONDConvert millis to seconds- See Also:
-
-
Constructor Details
-
TarEntry
Construct an entry with only a name. This allows the programmer to construct the entry's header "by hand". File is set to null.- Parameters:
name- the entry name
-
TarEntry
Construct an entry with only a name. This allows the programmer to construct the entry's header "by hand". File is set to null.- Parameters:
name- the entry namepreserveLeadingSlashes- whether to allow leading slashes in the name.
-
TarEntry
Construct an entry with a name and a link flag.- Parameters:
name- the entry namelinkFlag- the entry link flag.
-
TarEntry
Construct an entry for a file. File is set to file, and the header is constructed from information from the file.- Parameters:
file- The file that the entry represents.
-
TarEntry
public TarEntry(byte[] headerBuf) Construct an entry from an archive's header bytes. File is set to null.- Parameters:
headerBuf- The header bytes from a tar archive entry.
-
-
Method Details
-
equals
Determine if the two entries are equal. Equality is determined by the header names being equal.- Parameters:
it- Entry to be checked for equality.- Returns:
- True if the entries are equal.
-
equals
Determine if the two entries are equal. Equality is determined by the header names being equal. -
hashCode
public int hashCode()Hashcodes are based on entry names. -
isDescendent
Determine if the given entry is a descendant of this entry. Descendancy is determined by the name of the descendant starting with this entry's name.- Parameters:
desc- Entry to be checked as a descendent of this.- Returns:
- True if entry is a descendant of this.
-
getName
Get this entry's name.- Returns:
- This entry's name.
-
setName
Set this entry's name.- Parameters:
name- This entry's new name.
-
setMode
public void setMode(int mode) Set the mode for this entry- Parameters:
mode- the mode for this entry
-
getLinkName
Get this entry's link name.- Returns:
- This entry's link name.
-
getUserId
public int getUserId()Get this entry's user id.- Returns:
- This entry's user id.
-
setUserId
public void setUserId(int userId) Set this entry's user id.- Parameters:
userId- This entry's new user id.
-
getGroupId
public int getGroupId()Get this entry's group id.- Returns:
- This entry's group id.
-
setGroupId
public void setGroupId(int groupId) Set this entry's group id.- Parameters:
groupId- This entry's new group id.
-
getUserName
Get this entry's user name.- Returns:
- This entry's user name.
-
setUserName
Set this entry's user name.- Parameters:
userName- This entry's new user name.
-
getGroupName
Get this entry's group name.- Returns:
- This entry's group name.
-
setGroupName
Set this entry's group name.- Parameters:
groupName- This entry's new group name.
-
setIds
public void setIds(int userId, int groupId) Convenience method to set this entry's group and user ids.- Parameters:
userId- This entry's new user id.groupId- This entry's new group id.
-
setNames
Convenience method to set this entry's group and user names.- Parameters:
userName- This entry's new user name.groupName- This entry's new group name.
-
setModTime
public void setModTime(long time) Set this entry's modification time. The parameter passed to this method is in "Java time".- Parameters:
time- This entry's new modification time.
-
setModTime
Set this entry's modification time.- Parameters:
time- This entry's new modification time.
-
getModTime
Set this entry's modification time.- Returns:
- time This entry's new modification time.
-
getFile
Get this entry's file.- Returns:
- This entry's file.
-
getMode
public int getMode()Get this entry's mode.- Returns:
- This entry's mode.
-
getSize
public long getSize()Get this entry's file size.- Returns:
- This entry's file size.
-
setSize
public void setSize(long size) Set this entry's file size.- Parameters:
size- This entry's new file size.
-
isGNULongNameEntry
public boolean isGNULongNameEntry()Indicate if this entry is a GNU long name block- Returns:
- true if this is a long name extension provided by GNU tar
-
isDirectory
public boolean isDirectory()Return whether or not this entry represents a directory.- Returns:
- True if this entry is a directory.
-
getDirectoryEntries
If this entry represents a file, and the file is a directory, return an array of TarEntries for this entry's children.- Returns:
- An array of TarEntry's for this entry's children.
-
writeEntryHeader
public void writeEntryHeader(byte[] outbuf) Write an entry's header information to a header buffer.- Parameters:
outbuf- The tar entry header buffer to fill in.
-
parseTarHeader
public void parseTarHeader(byte[] header) Parse an entry's header information from a header buffer.- Parameters:
header- The tar entry header buffer to get information from.
-