Skip to content

Commit 570df42

Browse files
derrickstoleegitster
authored andcommitted
chunk-format: create chunk format write API
In anticipation of combining the logic from the commit-graph and multi-pack-index file formats, create a new chunk-format API. Use a 'struct chunkfile' pointer to keep track of data that has been registered for writes. This struct is anonymous outside of chunk-format.c to ensure no user attempts to interfere with the data. The next change will use this API in commit-graph.c, but the general approach is: 1. initialize the chunkfile with init_chunkfile(f). 2. add chunks in the intended writing order with add_chunk(). 3. write any header information to the hashfile f. 4. write the chunkfile data using write_chunkfile(). 5. free the chunkfile struct using free_chunkfile(). Helped-by: Taylor Blau <[email protected]> Helped-by: Junio C Hamano <[email protected]> Signed-off-by: Derrick Stolee <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent eb90719 commit 570df42

File tree

3 files changed

+112
-0
lines changed

3 files changed

+112
-0
lines changed

Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -854,6 +854,7 @@ LIB_OBJS += bundle.o
854854
LIB_OBJS += cache-tree.o
855855
LIB_OBJS += chdir-notify.o
856856
LIB_OBJS += checkout.o
857+
LIB_OBJS += chunk-format.o
857858
LIB_OBJS += color.o
858859
LIB_OBJS += column.o
859860
LIB_OBJS += combine-diff.o

chunk-format.c

Lines changed: 90 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,90 @@
1+
#include "cache.h"
2+
#include "chunk-format.h"
3+
#include "csum-file.h"
4+
5+
/*
6+
* When writing a chunk-based file format, collect the chunks in
7+
* an array of chunk_info structs. The size stores the _expected_
8+
* amount of data that will be written by write_fn.
9+
*/
10+
struct chunk_info {
11+
uint32_t id;
12+
uint64_t size;
13+
chunk_write_fn write_fn;
14+
};
15+
16+
struct chunkfile {
17+
struct hashfile *f;
18+
19+
struct chunk_info *chunks;
20+
size_t chunks_nr;
21+
size_t chunks_alloc;
22+
};
23+
24+
struct chunkfile *init_chunkfile(struct hashfile *f)
25+
{
26+
struct chunkfile *cf = xcalloc(1, sizeof(*cf));
27+
cf->f = f;
28+
return cf;
29+
}
30+
31+
void free_chunkfile(struct chunkfile *cf)
32+
{
33+
if (!cf)
34+
return;
35+
free(cf->chunks);
36+
free(cf);
37+
}
38+
39+
int get_num_chunks(struct chunkfile *cf)
40+
{
41+
return cf->chunks_nr;
42+
}
43+
44+
void add_chunk(struct chunkfile *cf,
45+
uint32_t id,
46+
size_t size,
47+
chunk_write_fn fn)
48+
{
49+
ALLOC_GROW(cf->chunks, cf->chunks_nr + 1, cf->chunks_alloc);
50+
51+
cf->chunks[cf->chunks_nr].id = id;
52+
cf->chunks[cf->chunks_nr].write_fn = fn;
53+
cf->chunks[cf->chunks_nr].size = size;
54+
cf->chunks_nr++;
55+
}
56+
57+
int write_chunkfile(struct chunkfile *cf, void *data)
58+
{
59+
int i;
60+
uint64_t cur_offset = hashfile_total(cf->f);
61+
62+
/* Add the table of contents to the current offset */
63+
cur_offset += (cf->chunks_nr + 1) * CHUNK_TOC_ENTRY_SIZE;
64+
65+
for (i = 0; i < cf->chunks_nr; i++) {
66+
hashwrite_be32(cf->f, cf->chunks[i].id);
67+
hashwrite_be64(cf->f, cur_offset);
68+
69+
cur_offset += cf->chunks[i].size;
70+
}
71+
72+
/* Trailing entry marks the end of the chunks */
73+
hashwrite_be32(cf->f, 0);
74+
hashwrite_be64(cf->f, cur_offset);
75+
76+
for (i = 0; i < cf->chunks_nr; i++) {
77+
off_t start_offset = hashfile_total(cf->f);
78+
int result = cf->chunks[i].write_fn(cf->f, data);
79+
80+
if (result)
81+
return result;
82+
83+
if (hashfile_total(cf->f) - start_offset != cf->chunks[i].size)
84+
BUG("expected to write %"PRId64" bytes to chunk %"PRIx32", but wrote %"PRId64" instead",
85+
cf->chunks[i].size, cf->chunks[i].id,
86+
hashfile_total(cf->f) - start_offset);
87+
}
88+
89+
return 0;
90+
}

chunk-format.h

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
#ifndef CHUNK_FORMAT_H
2+
#define CHUNK_FORMAT_H
3+
4+
#include "git-compat-util.h"
5+
6+
struct hashfile;
7+
struct chunkfile;
8+
9+
#define CHUNK_TOC_ENTRY_SIZE (sizeof(uint32_t) + sizeof(uint64_t))
10+
11+
struct chunkfile *init_chunkfile(struct hashfile *f);
12+
void free_chunkfile(struct chunkfile *cf);
13+
int get_num_chunks(struct chunkfile *cf);
14+
typedef int (*chunk_write_fn)(struct hashfile *f, void *data);
15+
void add_chunk(struct chunkfile *cf,
16+
uint32_t id,
17+
size_t size,
18+
chunk_write_fn fn);
19+
int write_chunkfile(struct chunkfile *cf, void *data);
20+
21+
#endif

0 commit comments

Comments
 (0)