]> git.ipfire.org Git - thirdparty/git.git/blame - oidset.h
bloom: use num_changes not nr for limit detection
[thirdparty/git.git] / oidset.h
CommitLineData
29c2bd5f
JK
1#ifndef OIDSET_H
2#define OIDSET_H
3
8b2f8cbc 4#include "khash.h"
9e6fabde 5
29c2bd5f
JK
6/**
7 * This API is similar to sha1-array, in that it maintains a set of object ids
8 * in a memory-efficient way. The major differences are:
9 *
10 * 1. It uses a hash, so we can do online duplicate removal, rather than
11 * sort-and-uniq at the end. This can reduce memory footprint if you have
12 * a large list of oids with many duplicates.
13 *
14 * 2. The per-unique-oid memory footprint is slightly higher due to hash
15 * table overhead.
16 */
17
18/**
19 * A single oidset; should be zero-initialized (or use OIDSET_INIT).
20 */
21struct oidset {
8fbb558a 22 kh_oid_set_t set;
29c2bd5f
JK
23};
24
8b2f8cbc 25#define OIDSET_INIT { { 0 } }
29c2bd5f 26
c3a9ad31 27
8c84ae65
RS
28/**
29 * Initialize the oidset structure `set`.
30 *
31 * If `initial_size` is bigger than 0 then preallocate to allow inserting
32 * the specified number of elements without further allocations.
33 */
34void oidset_init(struct oidset *set, size_t initial_size);
c3a9ad31 35
29c2bd5f
JK
36/**
37 * Returns true iff `set` contains `oid`.
38 */
39int oidset_contains(const struct oidset *set, const struct object_id *oid);
40
41/**
42 * Insert the oid into the set; a copy is made, so "oid" does not need
43 * to persist after this function is called.
44 *
45 * Returns 1 if the oid was already in the set, 0 otherwise. This can be used
46 * to perform an efficient check-and-add.
47 */
48int oidset_insert(struct oidset *set, const struct object_id *oid);
49
c3a9ad31
JH
50/**
51 * Remove the oid from the set.
52 *
53 * Returns 1 if the oid was present in the set, 0 otherwise.
54 */
55int oidset_remove(struct oidset *set, const struct object_id *oid);
56
29c2bd5f
JK
57/**
58 * Remove all entries from the oidset, freeing any resources associated with
59 * it.
60 */
61void oidset_clear(struct oidset *set);
62
f93895f8
BR
63/**
64 * Add the contents of the file 'path' to an initialized oidset. Each line is
65 * an unabbreviated object name. Comments begin with '#', and trailing comments
66 * are allowed. Leading whitespace and empty or white-space only lines are
67 * ignored.
68 */
69void oidset_parse_file(struct oidset *set, const char *path);
70
c3a9ad31 71struct oidset_iter {
8fbb558a 72 kh_oid_set_t *set;
8b2f8cbc 73 khiter_t iter;
c3a9ad31
JH
74};
75
76static inline void oidset_iter_init(struct oidset *set,
77 struct oidset_iter *iter)
78{
8b2f8cbc
RS
79 iter->set = &set->set;
80 iter->iter = kh_begin(iter->set);
c3a9ad31
JH
81}
82
83static inline struct object_id *oidset_iter_next(struct oidset_iter *iter)
84{
8b2f8cbc
RS
85 for (; iter->iter != kh_end(iter->set); iter->iter++) {
86 if (kh_exist(iter->set, iter->iter))
87 return &kh_key(iter->set, iter->iter++);
88 }
89 return NULL;
c3a9ad31
JH
90}
91
92static inline struct object_id *oidset_iter_first(struct oidset *set,
93 struct oidset_iter *iter)
94{
95 oidset_iter_init(set, iter);
96 return oidset_iter_next(iter);
97}
98
29c2bd5f 99#endif /* OIDSET_H */