2023-02-24 00:09:26 +00:00
|
|
|
#include "git-compat-util.h"
|
2017-02-08 20:53:07 +00:00
|
|
|
#include "oidset.h"
|
2023-02-24 00:09:26 +00:00
|
|
|
#include "hex.h"
|
|
|
|
#include "strbuf.h"
|
2017-02-08 20:53:07 +00:00
|
|
|
|
2018-10-04 15:14:37 +00:00
|
|
|
void oidset_init(struct oidset *set, size_t initial_size)
|
|
|
|
{
|
|
|
|
memset(&set->set, 0, sizeof(set->set));
|
|
|
|
if (initial_size)
|
2019-06-20 07:41:28 +00:00
|
|
|
kh_resize_oid_set(&set->set, initial_size);
|
2018-10-04 15:14:37 +00:00
|
|
|
}
|
|
|
|
|
2017-02-08 20:53:07 +00:00
|
|
|
int oidset_contains(const struct oidset *set, const struct object_id *oid)
|
|
|
|
{
|
2019-06-20 07:41:28 +00:00
|
|
|
khiter_t pos = kh_get_oid_set(&set->set, *oid);
|
2018-10-04 15:13:06 +00:00
|
|
|
return pos != kh_end(&set->set);
|
2017-02-08 20:53:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int oidset_insert(struct oidset *set, const struct object_id *oid)
|
|
|
|
{
|
2018-10-04 15:13:06 +00:00
|
|
|
int added;
|
2019-06-20 07:41:28 +00:00
|
|
|
kh_put_oid_set(&set->set, *oid, &added);
|
2018-10-04 15:13:06 +00:00
|
|
|
return !added;
|
2017-02-08 20:53:07 +00:00
|
|
|
}
|
|
|
|
|
2024-02-14 14:25:11 +00:00
|
|
|
void oidset_insert_from_set(struct oidset *dest, struct oidset *src)
|
|
|
|
{
|
|
|
|
struct oidset_iter iter;
|
|
|
|
struct object_id *src_oid;
|
|
|
|
|
|
|
|
oidset_iter_init(src, &iter);
|
|
|
|
while ((src_oid = oidset_iter_next(&iter)))
|
|
|
|
oidset_insert(dest, src_oid);
|
|
|
|
}
|
|
|
|
|
2017-11-21 20:58:49 +00:00
|
|
|
int oidset_remove(struct oidset *set, const struct object_id *oid)
|
|
|
|
{
|
2019-06-20 07:41:28 +00:00
|
|
|
khiter_t pos = kh_get_oid_set(&set->set, *oid);
|
2018-10-04 15:13:06 +00:00
|
|
|
if (pos == kh_end(&set->set))
|
|
|
|
return 0;
|
2019-06-20 07:41:28 +00:00
|
|
|
kh_del_oid_set(&set->set, pos);
|
2018-10-04 15:13:06 +00:00
|
|
|
return 1;
|
2017-11-21 20:58:49 +00:00
|
|
|
}
|
|
|
|
|
2017-02-08 20:53:07 +00:00
|
|
|
void oidset_clear(struct oidset *set)
|
|
|
|
{
|
2019-06-20 07:41:28 +00:00
|
|
|
kh_release_oid_set(&set->set);
|
2018-10-04 15:13:06 +00:00
|
|
|
oidset_init(set, 0);
|
2017-02-08 20:53:07 +00:00
|
|
|
}
|
2019-05-15 21:44:57 +00:00
|
|
|
|
|
|
|
void oidset_parse_file(struct oidset *set, const char *path)
|
2020-09-25 04:55:04 +00:00
|
|
|
{
|
|
|
|
oidset_parse_file_carefully(set, path, NULL, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
void oidset_parse_file_carefully(struct oidset *set, const char *path,
|
|
|
|
oidset_parse_tweak_fn fn, void *cbdata)
|
2019-05-15 21:44:57 +00:00
|
|
|
{
|
|
|
|
FILE *fp;
|
|
|
|
struct strbuf sb = STRBUF_INIT;
|
|
|
|
struct object_id oid;
|
|
|
|
|
|
|
|
fp = fopen(path, "r");
|
|
|
|
if (!fp)
|
|
|
|
die("could not open object name list: %s", path);
|
|
|
|
while (!strbuf_getline(&sb, fp)) {
|
|
|
|
const char *p;
|
|
|
|
const char *name;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Allow trailing comments, leading whitespace
|
|
|
|
* (including before commits), and empty or whitespace
|
|
|
|
* only lines.
|
|
|
|
*/
|
|
|
|
name = strchr(sb.buf, '#');
|
|
|
|
if (name)
|
|
|
|
strbuf_setlen(&sb, name - sb.buf);
|
|
|
|
strbuf_trim(&sb);
|
|
|
|
if (!sb.len)
|
|
|
|
continue;
|
|
|
|
|
2020-11-10 11:38:27 +00:00
|
|
|
if (parse_oid_hex(sb.buf, &oid, &p) || *p != '\0')
|
2019-05-15 21:44:57 +00:00
|
|
|
die("invalid object name: %s", sb.buf);
|
2020-11-10 11:38:27 +00:00
|
|
|
if (fn && fn(&oid, cbdata))
|
|
|
|
continue;
|
2019-05-15 21:44:57 +00:00
|
|
|
oidset_insert(set, &oid);
|
|
|
|
}
|
|
|
|
if (ferror(fp))
|
|
|
|
die_errno("Could not read '%s'", path);
|
|
|
|
fclose(fp);
|
|
|
|
strbuf_release(&sb);
|
|
|
|
}
|