public class TarUtils
extends java.lang.Object
Modifier and Type | Method and Description |
---|---|
static long |
computeCheckSum(byte[] buf)
Compute the checksum of a tar entry header.
|
static int |
formatCheckSumOctalBytes(long value,
byte[] buf,
int offset,
int length)
Writes an octal value into a buffer.
|
static int |
formatLongOctalBytes(long value,
byte[] buf,
int offset,
int length)
Write an octal long integer into a buffer.
|
static int |
formatLongOctalOrBinaryBytes(long value,
byte[] buf,
int offset,
int length)
Write an long integer into a buffer as an octal string if this
will fit, or as a binary number otherwise.
|
static int |
formatNameBytes(java.lang.String name,
byte[] buf,
int offset,
int length)
Copy a name into a buffer.
|
static int |
formatNameBytes(java.lang.String name,
byte[] buf,
int offset,
int length,
ZipEncoding encoding)
Copy a name into a buffer.
|
static int |
formatOctalBytes(long value,
byte[] buf,
int offset,
int length)
Write an octal integer into a buffer.
|
static void |
formatUnsignedOctalString(long value,
byte[] buffer,
int offset,
int length)
Fill buffer with unsigned octal number, padded with leading zeroes.
|
static boolean |
parseBoolean(byte[] buffer,
int offset)
Parse a boolean byte from a buffer.
|
static java.lang.String |
parseName(byte[] buffer,
int offset,
int length)
Parse an entry name from a buffer.
|
static java.lang.String |
parseName(byte[] buffer,
int offset,
int length,
ZipEncoding encoding)
Parse an entry name from a buffer.
|
static long |
parseOctal(byte[] buffer,
int offset,
int length)
Parse an octal string from a buffer.
|
static long |
parseOctalOrBinary(byte[] buffer,
int offset,
int length)
Compute the value contained in a byte buffer.
|
static boolean |
verifyCheckSum(byte[] header)
Wikipedia says:
The checksum is calculated by taking the sum of the unsigned byte values
of the header block with the eight checksum bytes taken to be ascii
spaces (decimal value 32).
|
public static long parseOctal(byte[] buffer, int offset, int length)
Leading spaces are ignored. The buffer must contain a trailing space or NUL, and may contain an additional trailing space or NUL.
The input buffer is allowed to contain all NULs, in which case the method returns 0L (this allows for missing fields).
To work-around some tar implementations that insert a leading NUL this method returns 0 if it detects a leading NUL since Commons Compress 1.4.
buffer
- The buffer from which to parse.offset
- The offset into the buffer from which to parse.length
- The maximum number of bytes to parse - must be at least 2 bytes.java.lang.IllegalArgumentException
- if the trailing space/NUL is missing or if a invalid byte is detected.public static long parseOctalOrBinary(byte[] buffer, int offset, int length)
buffer
- The buffer from which to parse.offset
- The offset into the buffer from which to parse.length
- The maximum number of bytes to parse.java.lang.IllegalArgumentException
- if the trailing space/NUL is
missing or an invalid byte is detected in an octal number, or
if a binary number would exceed the size of a signed long
64-bit integer.public static boolean parseBoolean(byte[] buffer, int offset)
buffer
- The buffer from which to parse.offset
- The offset into the buffer from which to parse.java.lang.IllegalArgumentException
- if an invalid byte is detected.public static java.lang.String parseName(byte[] buffer, int offset, int length)
buffer
- The buffer from which to parse.offset
- The offset into the buffer from which to parse.length
- The maximum number of bytes to parse.public static java.lang.String parseName(byte[] buffer, int offset, int length, ZipEncoding encoding) throws java.io.IOException
buffer
- The buffer from which to parse.offset
- The offset into the buffer from which to parse.length
- The maximum number of bytes to parse.encoding
- name of the encoding to use for file namesjava.io.IOException
- on errorpublic static int formatNameBytes(java.lang.String name, byte[] buf, int offset, int length)
name
- The header name from which to copy the characters.buf
- The buffer where the name is to be stored.offset
- The starting offset into the bufferlength
- The maximum number of header bytes to copy.public static int formatNameBytes(java.lang.String name, byte[] buf, int offset, int length, ZipEncoding encoding) throws java.io.IOException
name
- The header name from which to copy the characters.buf
- The buffer where the name is to be stored.offset
- The starting offset into the bufferlength
- The maximum number of header bytes to copy.encoding
- name of the encoding to use for file namesjava.io.IOException
- on errorpublic static void formatUnsignedOctalString(long value, byte[] buffer, int offset, int length)
value
- number to convert to octal - treated as unsignedbuffer
- destination bufferoffset
- starting offset in bufferlength
- length of buffer to filljava.lang.IllegalArgumentException
- if the value will not fit in the bufferpublic static int formatOctalBytes(long value, byte[] buf, int offset, int length)
formatUnsignedOctalString(long, byte[], int, int)
to format
the value as an octal string with leading zeros.
The converted number is followed by space and NULvalue
- The value to writebuf
- The buffer to receive the outputoffset
- The starting offset into the bufferlength
- The size of the output bufferjava.lang.IllegalArgumentException
- if the value (and trailer) will not fit in the bufferpublic static int formatLongOctalBytes(long value, byte[] buf, int offset, int length)
formatUnsignedOctalString(long, byte[], int, int)
to format
the value as an octal string with leading zeros.
The converted number is followed by a space.value
- The value to write as octalbuf
- The destinationbuffer.offset
- The starting offset into the buffer.length
- The length of the bufferjava.lang.IllegalArgumentException
- if the value (and trailer) will not fit in the bufferpublic static int formatLongOctalOrBinaryBytes(long value, byte[] buf, int offset, int length)
formatUnsignedOctalString(long, byte[], int, int)
to format
the value as an octal string with leading zeros.
The converted number is followed by a space.value
- The value to write into the buffer.buf
- The destination buffer.offset
- The starting offset into the buffer.length
- The length of the buffer.java.lang.IllegalArgumentException
- if the value (and trailer)
will not fit in the buffer.public static int formatCheckSumOctalBytes(long value, byte[] buf, int offset, int length)
formatUnsignedOctalString(long, byte[], int, int)
to format
the value as an octal string with leading zeros.
The converted number is followed by NUL and then space.value
- The value to convertbuf
- The destination bufferoffset
- The starting offset into the buffer.length
- The size of the buffer.java.lang.IllegalArgumentException
- if the value (and trailer) will not fit in the bufferpublic static long computeCheckSum(byte[] buf)
buf
- The tar entry's header buffer.public static boolean verifyCheckSum(byte[] header)
The checksum is calculated by taking the sum of the unsigned byte values of the header block with the eight checksum bytes taken to be ascii spaces (decimal value 32). It is stored as a six digit octal number with leading zeroes followed by a NUL and then a space. Various implementations do not adhere to this format. For better compatibility, ignore leading and trailing whitespace, and get the first six digits. In addition, some historic tar implementations treated bytes as signed. Implementations typically calculate the checksum both ways, and treat it as good if either the signed or unsigned sum matches the included checksum.
The return value of this method should be treated as a best-effort heuristic rather than an absolute and final truth. The checksum verification logic may well evolve over time as more special cases are encountered.
header
- tar header"Copyright © 2010 - 2020 Adobe Systems Incorporated. All Rights Reserved"