7 * This API is similar to oid-array, in that it maintains a set of object ids
8 * in a memory-efficient way. The major differences are:
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.
14 * 2. The per-unique-oid memory footprint is slightly higher due to hash
19 * A single oidset; should be zero-initialized (or use OIDSET_INIT).
25 #define OIDSET_INIT { { 0 } }
29 * Initialize the oidset structure `set`.
31 * If `initial_size` is bigger than 0 then preallocate to allow inserting
32 * the specified number of elements without further allocations.
34 void oidset_init(struct oidset
*set
, size_t initial_size
);
37 * Returns true iff `set` contains `oid`.
39 int oidset_contains(const struct oidset
*set
, const struct object_id
*oid
);
42 * Insert the oid into the set; a copy is made, so "oid" does not need
43 * to persist after this function is called.
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.
48 int oidset_insert(struct oidset
*set
, const struct object_id
*oid
);
51 * Remove the oid from the set.
53 * Returns 1 if the oid was present in the set, 0 otherwise.
55 int oidset_remove(struct oidset
*set
, const struct object_id
*oid
);
58 * Returns the number of oids in the set.
60 int oidset_size(struct oidset
*set
);
63 * Remove all entries from the oidset, freeing any resources associated with
66 void oidset_clear(struct oidset
*set
);
69 * Add the contents of the file 'path' to an initialized oidset. Each line is
70 * an unabbreviated object name. Comments begin with '#', and trailing comments
71 * are allowed. Leading whitespace and empty or white-space only lines are
74 void oidset_parse_file(struct oidset
*set
, const char *path
);
81 static inline void oidset_iter_init(struct oidset
*set
,
82 struct oidset_iter
*iter
)
84 iter
->set
= &set
->set
;
85 iter
->iter
= kh_begin(iter
->set
);
88 static inline struct object_id
*oidset_iter_next(struct oidset_iter
*iter
)
90 for (; iter
->iter
!= kh_end(iter
->set
); iter
->iter
++) {
91 if (kh_exist(iter
->set
, iter
->iter
))
92 return &kh_key(iter
->set
, iter
->iter
++);
97 static inline struct object_id
*oidset_iter_first(struct oidset
*set
,
98 struct oidset_iter
*iter
)
100 oidset_iter_init(set
, iter
);
101 return oidset_iter_next(iter
);
104 #endif /* OIDSET_H */