blob: 9d6941823ac7a5aa84f543bd11909e56202640ba [file] [log] [blame]
/*
* Copyright (C) 2022, Google LLC and others
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Distribution License v. 1.0 which is available at
* https://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
package org.eclipse.jgit.internal.storage.file;
import java.io.IOException;
import java.io.InputStream;
import java.util.Arrays;
/**
* Chooses the specific implementation of the object-size index based on the
* file version.
*/
public class PackObjectSizeIndexLoader {
/**
* Read an object size index from the stream
*
* @param in
* input stream at the beginning of the object size data
* @return an implementation of the object size index
* @throws IOException
* error reading the streams
*/
public static PackObjectSizeIndex load(InputStream in) throws IOException {
byte[] header = in.readNBytes(4);
if (!Arrays.equals(header, PackObjectSizeIndexWriter.HEADER)) {
throw new IOException("Stream is not an object index"); //$NON-NLS-1$
}
int version = in.readNBytes(1)[0];
if (version != 1) {
throw new IOException("Unknown object size version: " + version); //$NON-NLS-1$
}
return PackObjectSizeIndexV1.parse(in);
}
}