2017-02-08 21:53:07 +01:00
|
|
|
#include "cache.h"
|
|
|
|
#include "oidset.h"
|
|
|
|
|
2018-10-04 17:14:37 +02:00
|
|
|
void oidset_init(struct oidset *set, size_t initial_size)
|
|
|
|
{
|
|
|
|
memset(&set->set, 0, sizeof(set->set));
|
|
|
|
if (initial_size)
|
2019-06-20 09:41:28 +02:00
|
|
|
kh_resize_oid_set(&set->set, initial_size);
|
2018-10-04 17:14:37 +02:00
|
|
|
}
|
|
|
|
|
2017-02-08 21:53:07 +01:00
|
|
|
int oidset_contains(const struct oidset *set, const struct object_id *oid)
|
|
|
|
{
|
2019-06-20 09:41:28 +02:00
|
|
|
khiter_t pos = kh_get_oid_set(&set->set, *oid);
|
2018-10-04 17:13:06 +02:00
|
|
|
return pos != kh_end(&set->set);
|
2017-02-08 21:53:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
int oidset_insert(struct oidset *set, const struct object_id *oid)
|
|
|
|
{
|
2018-10-04 17:13:06 +02:00
|
|
|
int added;
|
2019-06-20 09:41:28 +02:00
|
|
|
kh_put_oid_set(&set->set, *oid, &added);
|
2018-10-04 17:13:06 +02:00
|
|
|
return !added;
|
2017-02-08 21:53:07 +01:00
|
|
|
}
|
|
|
|
|
2017-11-21 21:58:49 +01:00
|
|
|
int oidset_remove(struct oidset *set, const struct object_id *oid)
|
|
|
|
{
|
2019-06-20 09:41:28 +02:00
|
|
|
khiter_t pos = kh_get_oid_set(&set->set, *oid);
|
2018-10-04 17:13:06 +02:00
|
|
|
if (pos == kh_end(&set->set))
|
|
|
|
return 0;
|
2019-06-20 09:41:28 +02:00
|
|
|
kh_del_oid_set(&set->set, pos);
|
2018-10-04 17:13:06 +02:00
|
|
|
return 1;
|
2017-11-21 21:58:49 +01:00
|
|
|
}
|
|
|
|
|
2017-02-08 21:53:07 +01:00
|
|
|
void oidset_clear(struct oidset *set)
|
|
|
|
{
|
2019-06-20 09:41:28 +02:00
|
|
|
kh_release_oid_set(&set->set);
|
2018-10-04 17:13:06 +02:00
|
|
|
oidset_init(set, 0);
|
2017-02-08 21:53:07 +01:00
|
|
|
}
|
2019-05-15 23:44:57 +02:00
|
|
|
|
2020-04-14 06:04:22 +02:00
|
|
|
int oidset_size(struct oidset *set)
|
|
|
|
{
|
|
|
|
return kh_size(&set->set);
|
|
|
|
}
|
|
|
|
|
2019-05-15 23:44:57 +02:00
|
|
|
void oidset_parse_file(struct oidset *set, const char *path)
|
2020-09-25 06:55:04 +02: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 23:44:57 +02: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-09-25 06:55:04 +02:00
|
|
|
if (parse_oid_hex(sb.buf, &oid, &p) || *p != '\0' ||
|
|
|
|
(fn && fn(&oid, cbdata)))
|
2019-05-15 23:44:57 +02:00
|
|
|
die("invalid object name: %s", sb.buf);
|
|
|
|
oidset_insert(set, &oid);
|
|
|
|
}
|
|
|
|
if (ferror(fp))
|
|
|
|
die_errno("Could not read '%s'", path);
|
|
|
|
fclose(fp);
|
|
|
|
strbuf_release(&sb);
|
|
|
|
}
|