1 #include "git-compat-util.h"
3 #include "chunk-format.h"
10 * When writing a chunk-based file format, collect the chunks in
11 * an array of chunk_info structs. The size stores the _expected_
12 * amount of data that will be written by write_fn.
17 chunk_write_fn write_fn
;
25 struct chunk_info
*chunks
;
30 struct chunkfile
*init_chunkfile(struct hashfile
*f
)
32 struct chunkfile
*cf
= xcalloc(1, sizeof(*cf
));
37 void free_chunkfile(struct chunkfile
*cf
)
45 int get_num_chunks(struct chunkfile
*cf
)
50 void add_chunk(struct chunkfile
*cf
,
55 ALLOC_GROW(cf
->chunks
, cf
->chunks_nr
+ 1, cf
->chunks_alloc
);
57 cf
->chunks
[cf
->chunks_nr
].id
= id
;
58 cf
->chunks
[cf
->chunks_nr
].write_fn
= fn
;
59 cf
->chunks
[cf
->chunks_nr
].size
= size
;
63 int write_chunkfile(struct chunkfile
*cf
, void *data
)
66 uint64_t cur_offset
= hashfile_total(cf
->f
);
68 trace2_region_enter("chunkfile", "write", the_repository
);
70 /* Add the table of contents to the current offset */
71 cur_offset
+= (cf
->chunks_nr
+ 1) * CHUNK_TOC_ENTRY_SIZE
;
73 for (i
= 0; i
< cf
->chunks_nr
; i
++) {
74 hashwrite_be32(cf
->f
, cf
->chunks
[i
].id
);
75 hashwrite_be64(cf
->f
, cur_offset
);
77 cur_offset
+= cf
->chunks
[i
].size
;
80 /* Trailing entry marks the end of the chunks */
81 hashwrite_be32(cf
->f
, 0);
82 hashwrite_be64(cf
->f
, cur_offset
);
84 for (i
= 0; i
< cf
->chunks_nr
; i
++) {
85 off_t start_offset
= hashfile_total(cf
->f
);
86 result
= cf
->chunks
[i
].write_fn(cf
->f
, data
);
91 if (hashfile_total(cf
->f
) - start_offset
!= cf
->chunks
[i
].size
)
92 BUG("expected to write %"PRId64
" bytes to chunk %"PRIx32
", but wrote %"PRId64
" instead",
93 cf
->chunks
[i
].size
, cf
->chunks
[i
].id
,
94 hashfile_total(cf
->f
) - start_offset
);
98 trace2_region_leave("chunkfile", "write", the_repository
);
102 int read_table_of_contents(struct chunkfile
*cf
,
103 const unsigned char *mfile
,
110 const unsigned char *table_of_contents
= mfile
+ toc_offset
;
112 ALLOC_GROW(cf
->chunks
, toc_length
, cf
->chunks_alloc
);
114 while (toc_length
--) {
115 uint64_t chunk_offset
, next_chunk_offset
;
117 chunk_id
= get_be32(table_of_contents
);
118 chunk_offset
= get_be64(table_of_contents
+ 4);
121 error(_("terminating chunk id appears earlier than expected"));
125 table_of_contents
+= CHUNK_TOC_ENTRY_SIZE
;
126 next_chunk_offset
= get_be64(table_of_contents
+ 4);
128 if (next_chunk_offset
< chunk_offset
||
129 next_chunk_offset
> mfile_size
- the_hash_algo
->rawsz
) {
130 error(_("improper chunk offset(s) %"PRIx64
" and %"PRIx64
""),
131 chunk_offset
, next_chunk_offset
);
135 for (i
= 0; i
< cf
->chunks_nr
; i
++) {
136 if (cf
->chunks
[i
].id
== chunk_id
) {
137 error(_("duplicate chunk ID %"PRIx32
" found"),
143 cf
->chunks
[cf
->chunks_nr
].id
= chunk_id
;
144 cf
->chunks
[cf
->chunks_nr
].start
= mfile
+ chunk_offset
;
145 cf
->chunks
[cf
->chunks_nr
].size
= next_chunk_offset
- chunk_offset
;
149 chunk_id
= get_be32(table_of_contents
);
151 error(_("final chunk has non-zero id %"PRIx32
""), chunk_id
);
158 static int pair_chunk_fn(const unsigned char *chunk_start
,
162 const unsigned char **p
= data
;
167 int pair_chunk(struct chunkfile
*cf
,
169 const unsigned char **p
)
171 return read_chunk(cf
, chunk_id
, pair_chunk_fn
, p
);
174 int read_chunk(struct chunkfile
*cf
,
181 for (i
= 0; i
< cf
->chunks_nr
; i
++) {
182 if (cf
->chunks
[i
].id
== chunk_id
)
183 return fn(cf
->chunks
[i
].start
, cf
->chunks
[i
].size
, data
);
186 return CHUNK_NOT_FOUND
;
189 uint8_t oid_version(const struct git_hash_algo
*algop
)
191 switch (hash_algo_by_ptr(algop
)) {
194 case GIT_HASH_SHA256
:
197 die(_("invalid hash version"));