1 #include "git-compat-util.h"
2 #include "chunk-format.h"
9 * When writing a chunk-based file format, collect the chunks in
10 * an array of chunk_info structs. The size stores the _expected_
11 * amount of data that will be written by write_fn.
16 chunk_write_fn write_fn
;
24 struct chunk_info
*chunks
;
29 struct chunkfile
*init_chunkfile(struct hashfile
*f
)
31 struct chunkfile
*cf
= xcalloc(1, sizeof(*cf
));
36 void free_chunkfile(struct chunkfile
*cf
)
44 int get_num_chunks(struct chunkfile
*cf
)
49 void add_chunk(struct chunkfile
*cf
,
54 ALLOC_GROW(cf
->chunks
, cf
->chunks_nr
+ 1, cf
->chunks_alloc
);
56 cf
->chunks
[cf
->chunks_nr
].id
= id
;
57 cf
->chunks
[cf
->chunks_nr
].write_fn
= fn
;
58 cf
->chunks
[cf
->chunks_nr
].size
= size
;
62 int write_chunkfile(struct chunkfile
*cf
, void *data
)
65 uint64_t cur_offset
= hashfile_total(cf
->f
);
67 trace2_region_enter("chunkfile", "write", the_repository
);
69 /* Add the table of contents to the current offset */
70 cur_offset
+= (cf
->chunks_nr
+ 1) * CHUNK_TOC_ENTRY_SIZE
;
72 for (i
= 0; i
< cf
->chunks_nr
; i
++) {
73 hashwrite_be32(cf
->f
, cf
->chunks
[i
].id
);
74 hashwrite_be64(cf
->f
, cur_offset
);
76 cur_offset
+= cf
->chunks
[i
].size
;
79 /* Trailing entry marks the end of the chunks */
80 hashwrite_be32(cf
->f
, 0);
81 hashwrite_be64(cf
->f
, cur_offset
);
83 for (i
= 0; i
< cf
->chunks_nr
; i
++) {
84 off_t start_offset
= hashfile_total(cf
->f
);
85 result
= cf
->chunks
[i
].write_fn(cf
->f
, data
);
90 if (hashfile_total(cf
->f
) - start_offset
!= cf
->chunks
[i
].size
)
91 BUG("expected to write %"PRId64
" bytes to chunk %"PRIx32
", but wrote %"PRId64
" instead",
92 cf
->chunks
[i
].size
, cf
->chunks
[i
].id
,
93 hashfile_total(cf
->f
) - start_offset
);
97 trace2_region_leave("chunkfile", "write", the_repository
);
101 int read_table_of_contents(struct chunkfile
*cf
,
102 const unsigned char *mfile
,
109 const unsigned char *table_of_contents
= mfile
+ toc_offset
;
111 ALLOC_GROW(cf
->chunks
, toc_length
, cf
->chunks_alloc
);
113 while (toc_length
--) {
114 uint64_t chunk_offset
, next_chunk_offset
;
116 chunk_id
= get_be32(table_of_contents
);
117 chunk_offset
= get_be64(table_of_contents
+ 4);
120 error(_("terminating chunk id appears earlier than expected"));
124 table_of_contents
+= CHUNK_TOC_ENTRY_SIZE
;
125 next_chunk_offset
= get_be64(table_of_contents
+ 4);
127 if (next_chunk_offset
< chunk_offset
||
128 next_chunk_offset
> mfile_size
- the_hash_algo
->rawsz
) {
129 error(_("improper chunk offset(s) %"PRIx64
" and %"PRIx64
""),
130 chunk_offset
, next_chunk_offset
);
134 for (i
= 0; i
< cf
->chunks_nr
; i
++) {
135 if (cf
->chunks
[i
].id
== chunk_id
) {
136 error(_("duplicate chunk ID %"PRIx32
" found"),
142 cf
->chunks
[cf
->chunks_nr
].id
= chunk_id
;
143 cf
->chunks
[cf
->chunks_nr
].start
= mfile
+ chunk_offset
;
144 cf
->chunks
[cf
->chunks_nr
].size
= next_chunk_offset
- chunk_offset
;
148 chunk_id
= get_be32(table_of_contents
);
150 error(_("final chunk has non-zero id %"PRIx32
""), chunk_id
);
157 static int pair_chunk_fn(const unsigned char *chunk_start
,
161 const unsigned char **p
= data
;
166 int pair_chunk(struct chunkfile
*cf
,
168 const unsigned char **p
)
170 return read_chunk(cf
, chunk_id
, pair_chunk_fn
, p
);
173 int read_chunk(struct chunkfile
*cf
,
180 for (i
= 0; i
< cf
->chunks_nr
; i
++) {
181 if (cf
->chunks
[i
].id
== chunk_id
)
182 return fn(cf
->chunks
[i
].start
, cf
->chunks
[i
].size
, data
);
185 return CHUNK_NOT_FOUND
;
188 uint8_t oid_version(const struct git_hash_algo
*algop
)
190 switch (hash_algo_by_ptr(algop
)) {
193 case GIT_HASH_SHA256
:
196 die(_("invalid hash version"));