All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.facebook.presto.druid.zip.Zip64EndOfCentralDirectoryLocator Maven / Gradle / Ivy

There is a newer version: 0.290
Show newest version
/*
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package com.facebook.presto.druid.zip;

import com.facebook.presto.druid.DataInputSource;

import java.io.IOException;
import java.util.zip.ZipException;

import static com.google.common.base.Preconditions.checkArgument;

public class Zip64EndOfCentralDirectoryLocator
{
    public static final int SIGNATURE = 0x07064b50;
    public static final int FIXED_DATA_SIZE = 20;
    public static final int ZIP64_EOCD_OFFSET_OFFSET = 8;

    private Zip64EndOfCentralDirectoryLocator()
    {
    }

    /**
     * Read the Zip64 end of central directory locator from the input stream and parse additional
     * {@link ZipFileData} from it.
     */
    public static ZipFileData read(ZipFileData file, DataInputSource dataInputSource, long position)
            throws IOException
    {
        checkArgument(file != null, "Zip file data for source:%s is null", dataInputSource.getId());

        byte[] fixedSizeData = new byte[FIXED_DATA_SIZE];
        dataInputSource.readFully(position, fixedSizeData, 0, FIXED_DATA_SIZE);
        if (!ZipUtil.arrayStartsWith(fixedSizeData, ZipUtil.intToLittleEndian(SIGNATURE))) {
            throw new ZipException(String.format("Malformed Zip64 Central Directory Locator; does not start with %08x", SIGNATURE));
        }
        file.setZip64(true);
        file.setZip64EndOfCentralDirectoryOffset(ZipUtil.getUnsignedLong(fixedSizeData, ZIP64_EOCD_OFFSET_OFFSET));
        return file;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy