blob: b36a2bae86470236a51ffe6bec7792222de478fe [file] [log] [blame]
Jeff King29c2bd52017-02-08 15:53:07 -05001#include "cache.h"
2#include "oidset.h"
3
René Scharfe8c84ae62018-10-04 17:14:37 +02004void oidset_init(struct oidset *set, size_t initial_size)
5{
6 memset(&set->set, 0, sizeof(set->set));
7 if (initial_size)
Jeff King8fbb5582019-06-20 03:41:28 -04008 kh_resize_oid_set(&set->set, initial_size);
René Scharfe8c84ae62018-10-04 17:14:37 +02009}
10
Jeff King29c2bd52017-02-08 15:53:07 -050011int oidset_contains(const struct oidset *set, const struct object_id *oid)
12{
Jeff King8fbb5582019-06-20 03:41:28 -040013 khiter_t pos = kh_get_oid_set(&set->set, *oid);
René Scharfe8b2f8cb2018-10-04 17:13:06 +020014 return pos != kh_end(&set->set);
Jeff King29c2bd52017-02-08 15:53:07 -050015}
16
17int oidset_insert(struct oidset *set, const struct object_id *oid)
18{
René Scharfe8b2f8cb2018-10-04 17:13:06 +020019 int added;
Jeff King8fbb5582019-06-20 03:41:28 -040020 kh_put_oid_set(&set->set, *oid, &added);
René Scharfe8b2f8cb2018-10-04 17:13:06 +020021 return !added;
Jeff King29c2bd52017-02-08 15:53:07 -050022}
23
Jeff Hostetlerc3a9ad32017-11-21 20:58:49 +000024int oidset_remove(struct oidset *set, const struct object_id *oid)
25{
Jeff King8fbb5582019-06-20 03:41:28 -040026 khiter_t pos = kh_get_oid_set(&set->set, *oid);
René Scharfe8b2f8cb2018-10-04 17:13:06 +020027 if (pos == kh_end(&set->set))
28 return 0;
Jeff King8fbb5582019-06-20 03:41:28 -040029 kh_del_oid_set(&set->set, pos);
René Scharfe8b2f8cb2018-10-04 17:13:06 +020030 return 1;
Jeff Hostetlerc3a9ad32017-11-21 20:58:49 +000031}
32
Jeff King29c2bd52017-02-08 15:53:07 -050033void oidset_clear(struct oidset *set)
34{
Jeff King8fbb5582019-06-20 03:41:28 -040035 kh_release_oid_set(&set->set);
René Scharfe8b2f8cb2018-10-04 17:13:06 +020036 oidset_init(set, 0);
Jeff King29c2bd52017-02-08 15:53:07 -050037}
Barret Rhodenf93895f2019-05-15 17:44:57 -040038
39void oidset_parse_file(struct oidset *set, const char *path)
40{
Junio C Hamano610e2b92020-09-24 21:55:04 -070041 oidset_parse_file_carefully(set, path, NULL, NULL);
42}
43
44void oidset_parse_file_carefully(struct oidset *set, const char *path,
45 oidset_parse_tweak_fn fn, void *cbdata)
46{
Barret Rhodenf93895f2019-05-15 17:44:57 -040047 FILE *fp;
48 struct strbuf sb = STRBUF_INIT;
49 struct object_id oid;
50
51 fp = fopen(path, "r");
52 if (!fp)
53 die("could not open object name list: %s", path);
54 while (!strbuf_getline(&sb, fp)) {
55 const char *p;
56 const char *name;
57
58 /*
59 * Allow trailing comments, leading whitespace
60 * (including before commits), and empty or whitespace
61 * only lines.
62 */
63 name = strchr(sb.buf, '#');
64 if (name)
65 strbuf_setlen(&sb, name - sb.buf);
66 strbuf_trim(&sb);
67 if (!sb.len)
68 continue;
69
René Scharfec714d052020-11-10 12:38:27 +010070 if (parse_oid_hex(sb.buf, &oid, &p) || *p != '\0')
Barret Rhodenf93895f2019-05-15 17:44:57 -040071 die("invalid object name: %s", sb.buf);
René Scharfec714d052020-11-10 12:38:27 +010072 if (fn && fn(&oid, cbdata))
73 continue;
Barret Rhodenf93895f2019-05-15 17:44:57 -040074 oidset_insert(set, &oid);
75 }
76 if (ferror(fp))
77 die_errno("Could not read '%s'", path);
78 fclose(fp);
79 strbuf_release(&sb);
80}