summaryrefslogtreecommitdiff
path: root/oidset.h
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2020-09-25 04:55:04 (GMT)
committerJunio C Hamano <gitster@pobox.com>2020-09-25 05:20:58 (GMT)
commit610e2b924020fe2d6a55e7ca6651f309b85c2d1d (patch)
tree4dda607bf854f2b293862eca090389a55812857e /oidset.h
parentf58931c8d69a9499ae7bc8bae2cefa18df418270 (diff)
downloadgit-610e2b924020fe2d6a55e7ca6651f309b85c2d1d.zip
git-610e2b924020fe2d6a55e7ca6651f309b85c2d1d.tar.gz
git-610e2b924020fe2d6a55e7ca6651f309b85c2d1d.tar.bz2
blame: validate and peel the object names on the ignore list
The command reads list of object names to place on the ignore list either from the command line or from a file, but they are not checked with their object type (those read from the file are not even checked for object existence). Extend the oidset_parse_file() API and allow it to take a callback that can be used to die (e.g. when an inappropriate input is read) or modify the object name read (e.g. when a tag pointing at a commit is read, and the caller wants a commit object name), and use it in the code that handles ignore list. Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'oidset.h')
-rw-r--r--oidset.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/oidset.h b/oidset.h
index 209ae7a..01f6560 100644
--- a/oidset.h
+++ b/oidset.h
@@ -73,6 +73,15 @@ void oidset_clear(struct oidset *set);
*/
void oidset_parse_file(struct oidset *set, const char *path);
+/*
+ * Similar to the above, but with a callback which can (1) return non-zero to
+ * signal displeasure with the object and (2) replace object ID with something
+ * else (meant to be used to "peel").
+ */
+typedef int (*oidset_parse_tweak_fn)(struct object_id *, void *);
+void oidset_parse_file_carefully(struct oidset *set, const char *path,
+ oidset_parse_tweak_fn fn, void *cbdata);
+
struct oidset_iter {
kh_oid_set_t *set;
khiter_t iter;