blob: f69e68d4ba122b1a44278e40ca2a3f9b4b5c3150 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
/*
* Copyright (C) 2024, Google LLC.
*
* 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.pack;
import java.io.IOException;
import java.util.List;
import org.eclipse.jgit.transport.PackedObjectInfo;
/**
* Represents a function that accepts a collection of objects to write into a
* primary pack index storage format.
*/
public interface PackIndexWriter {
/**
* Write all object entries to the index stream.
*
* @param toStore
* sorted list of objects to store in the index. The caller must
* have previously sorted the list using
* {@link org.eclipse.jgit.transport.PackedObjectInfo}'s native
* {@link java.lang.Comparable} implementation.
* @param packDataChecksum
* checksum signature of the entire pack data content. This is
* traditionally the last 20 bytes of the pack file's own stream.
* @throws java.io.IOException
* an error occurred while writing to the output stream, or the
* underlying format cannot store the object data supplied.
*/
void write(List<? extends PackedObjectInfo> toStore,
byte[] packDataChecksum) throws IOException;
}
|