Class Zip64ExtendedInformationExtraField
- java.lang.Object
-
- org.apache.commons.compress.archivers.zip.Zip64ExtendedInformationExtraField
-
- All Implemented Interfaces:
ZipExtraField
public class Zip64ExtendedInformationExtraField extends java.lang.Object implements ZipExtraField
Holds size and other extended information for entries that use Zip64 features.Currently Commons Compress doesn't support encrypting the central directory so the note in APPNOTE.TXT about masking doesn't apply.
The implementation relies on data being read from the local file header and assumes that both size values are always present.
- Since:
- 1.2
- See Also:
- PKWARE APPNOTE.TXT, section 4.5.3
-
-
Field Summary
-
Fields inherited from interface org.apache.commons.compress.archivers.zip.ZipExtraField
EXTRAFIELD_HEADER_SIZE
-
-
Constructor Summary
Constructors Constructor Description Zip64ExtendedInformationExtraField()This constructor should only be used by the code that reads archives inside of Commons Compress.Zip64ExtendedInformationExtraField(ZipEightByteInteger size, ZipEightByteInteger compressedSize)Creates an extra field based on the original and compressed size.Zip64ExtendedInformationExtraField(ZipEightByteInteger size, ZipEightByteInteger compressedSize, ZipEightByteInteger relativeHeaderOffset, ZipLong diskStart)Creates an extra field based on all four possible values.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description byte[]getCentralDirectoryData()The actual data to put into central directory - without Header-ID or length specifier.ZipShortgetCentralDirectoryLength()Length of the extra field in the central directory - without Header-ID or length specifier.ZipEightByteIntegergetCompressedSize()The compressed size stored in this extra field.ZipLonggetDiskStartNumber()The disk start number stored in this extra field.ZipShortgetHeaderId()The Header-ID.byte[]getLocalFileDataData()The actual data to put into local file data - without Header-ID or length specifier.ZipShortgetLocalFileDataLength()Length of the extra field in the local file data - without Header-ID or length specifier.ZipEightByteIntegergetRelativeHeaderOffset()The relative header offset stored in this extra field.ZipEightByteIntegergetSize()The uncompressed size stored in this extra field.voidparseFromCentralDirectoryData(byte[] buffer, int offset, int length)Populate data from this array as if it was in central directory data.voidparseFromLocalFileData(byte[] buffer, int offset, int length)Populate data from this array as if it was in local file data.voidreparseCentralDirectoryData(boolean hasUncompressedSize, boolean hasCompressedSize, boolean hasRelativeHeaderOffset, boolean hasDiskStart)Parses the raw bytes read from the central directory extra field with knowledge which fields are expected to be there.voidsetCompressedSize(ZipEightByteInteger compressedSize)The uncompressed size stored in this extra field.voidsetDiskStartNumber(ZipLong ds)The disk start number stored in this extra field.voidsetRelativeHeaderOffset(ZipEightByteInteger rho)The relative header offset stored in this extra field.voidsetSize(ZipEightByteInteger size)The uncompressed size stored in this extra field.
-
-
-
Constructor Detail
-
Zip64ExtendedInformationExtraField
public Zip64ExtendedInformationExtraField()
This constructor should only be used by the code that reads archives inside of Commons Compress.
-
Zip64ExtendedInformationExtraField
public Zip64ExtendedInformationExtraField(ZipEightByteInteger size, ZipEightByteInteger compressedSize)
Creates an extra field based on the original and compressed size.- Parameters:
size- the entry's original sizecompressedSize- the entry's compressed size- Throws:
java.lang.IllegalArgumentException- if size or compressedSize is null
-
Zip64ExtendedInformationExtraField
public Zip64ExtendedInformationExtraField(ZipEightByteInteger size, ZipEightByteInteger compressedSize, ZipEightByteInteger relativeHeaderOffset, ZipLong diskStart)
Creates an extra field based on all four possible values.- Parameters:
size- the entry's original sizecompressedSize- the entry's compressed sizerelativeHeaderOffset- the entry's offsetdiskStart- the disk start- Throws:
java.lang.IllegalArgumentException- if size or compressedSize is null
-
-
Method Detail
-
getCentralDirectoryData
public byte[] getCentralDirectoryData()
Description copied from interface:ZipExtraFieldThe actual data to put into central directory - without Header-ID or length specifier.- Specified by:
getCentralDirectoryDatain interfaceZipExtraField- Returns:
- the data
-
getCentralDirectoryLength
public ZipShort getCentralDirectoryLength()
Description copied from interface:ZipExtraFieldLength of the extra field in the central directory - without Header-ID or length specifier.- Specified by:
getCentralDirectoryLengthin interfaceZipExtraField- Returns:
- the length of the field in the central directory
-
getCompressedSize
public ZipEightByteInteger getCompressedSize()
The compressed size stored in this extra field.- Returns:
- The compressed size stored in this extra field.
-
getDiskStartNumber
public ZipLong getDiskStartNumber()
The disk start number stored in this extra field.- Returns:
- The disk start number stored in this extra field.
-
getHeaderId
public ZipShort getHeaderId()
Description copied from interface:ZipExtraFieldThe Header-ID.- Specified by:
getHeaderIdin interfaceZipExtraField- Returns:
- The HeaderId value
-
getLocalFileDataData
public byte[] getLocalFileDataData()
Description copied from interface:ZipExtraFieldThe actual data to put into local file data - without Header-ID or length specifier.- Specified by:
getLocalFileDataDatain interfaceZipExtraField- Returns:
- the data
-
getLocalFileDataLength
public ZipShort getLocalFileDataLength()
Description copied from interface:ZipExtraFieldLength of the extra field in the local file data - without Header-ID or length specifier.- Specified by:
getLocalFileDataLengthin interfaceZipExtraField- Returns:
- the length of the field in the local file data
-
getRelativeHeaderOffset
public ZipEightByteInteger getRelativeHeaderOffset()
The relative header offset stored in this extra field.- Returns:
- The relative header offset stored in this extra field.
-
getSize
public ZipEightByteInteger getSize()
The uncompressed size stored in this extra field.- Returns:
- The uncompressed size stored in this extra field.
-
parseFromCentralDirectoryData
public void parseFromCentralDirectoryData(byte[] buffer, int offset, int length) throws java.util.zip.ZipExceptionDescription copied from interface:ZipExtraFieldPopulate data from this array as if it was in central directory data.- Specified by:
parseFromCentralDirectoryDatain interfaceZipExtraField- Parameters:
buffer- the buffer to read data fromoffset- offset into buffer to read datalength- the length of data- Throws:
java.util.zip.ZipException- on error
-
parseFromLocalFileData
public void parseFromLocalFileData(byte[] buffer, int offset, int length) throws java.util.zip.ZipExceptionDescription copied from interface:ZipExtraFieldPopulate data from this array as if it was in local file data.- Specified by:
parseFromLocalFileDatain interfaceZipExtraField- Parameters:
buffer- the buffer to read data fromoffset- offset into buffer to read datalength- the length of data- Throws:
java.util.zip.ZipException- on error
-
reparseCentralDirectoryData
public void reparseCentralDirectoryData(boolean hasUncompressedSize, boolean hasCompressedSize, boolean hasRelativeHeaderOffset, boolean hasDiskStart) throws java.util.zip.ZipExceptionParses the raw bytes read from the central directory extra field with knowledge which fields are expected to be there.All four fields inside the zip64 extended information extra field are optional and must only be present if their corresponding entry inside the central directory contains the correct magic value.
- Parameters:
hasUncompressedSize- flag to read from central directoryhasCompressedSize- flag to read from central directoryhasRelativeHeaderOffset- flag to read from central directoryhasDiskStart- flag to read from central directory- Throws:
java.util.zip.ZipException- on error
-
setCompressedSize
public void setCompressedSize(ZipEightByteInteger compressedSize)
The uncompressed size stored in this extra field.- Parameters:
compressedSize- The uncompressed size stored in this extra field.
-
setDiskStartNumber
public void setDiskStartNumber(ZipLong ds)
The disk start number stored in this extra field.- Parameters:
ds- The disk start number stored in this extra field.
-
setRelativeHeaderOffset
public void setRelativeHeaderOffset(ZipEightByteInteger rho)
The relative header offset stored in this extra field.- Parameters:
rho- The relative header offset stored in this extra field.
-
setSize
public void setSize(ZipEightByteInteger size)
The uncompressed size stored in this extra field.- Parameters:
size- The uncompressed size stored in this extra field.
-
-