]> git.ipfire.org Git - thirdparty/git.git/blob - reftable/writer.h
use xstrncmpz()
[thirdparty/git.git] / reftable / writer.h
1 /*
2 Copyright 2020 Google LLC
3
4 Use of this source code is governed by a BSD-style
5 license that can be found in the LICENSE file or at
6 https://developers.google.com/open-source/licenses/bsd
7 */
8
9 #ifndef WRITER_H
10 #define WRITER_H
11
12 #include "basics.h"
13 #include "block.h"
14 #include "tree.h"
15 #include "reftable-writer.h"
16
17 struct reftable_writer {
18 ssize_t (*write)(void *, const void *, size_t);
19 void *write_arg;
20 int pending_padding;
21 struct strbuf last_key;
22
23 /* offset of next block to write. */
24 uint64_t next;
25 uint64_t min_update_index, max_update_index;
26 struct reftable_write_options opts;
27
28 /* memory buffer for writing */
29 uint8_t *block;
30
31 /* writer for the current section. NULL or points to
32 * block_writer_data */
33 struct block_writer *block_writer;
34
35 struct block_writer block_writer_data;
36
37 /* pending index records for the current section */
38 struct reftable_index_record *index;
39 size_t index_len;
40 size_t index_cap;
41
42 /*
43 * tree for use with tsearch; used to populate the 'o' inverse OID
44 * map */
45 struct tree_node *obj_index_tree;
46
47 struct reftable_stats stats;
48 };
49
50 #endif