]> git.ipfire.org Git - thirdparty/git.git/blob - t/helper/test-oidtree.c
The fifth batch
[thirdparty/git.git] / t / helper / test-oidtree.c
1 #include "test-tool.h"
2 #include "hex.h"
3 #include "oidtree.h"
4 #include "setup.h"
5 #include "strbuf.h"
6
7 static enum cb_next print_oid(const struct object_id *oid, void *data UNUSED)
8 {
9 puts(oid_to_hex(oid));
10 return CB_CONTINUE;
11 }
12
13 int cmd__oidtree(int argc UNUSED, const char **argv UNUSED)
14 {
15 struct oidtree ot;
16 struct strbuf line = STRBUF_INIT;
17 int nongit_ok;
18 int algo = GIT_HASH_UNKNOWN;
19
20 oidtree_init(&ot);
21 setup_git_directory_gently(&nongit_ok);
22
23 while (strbuf_getline(&line, stdin) != EOF) {
24 const char *arg;
25 struct object_id oid;
26
27 if (skip_prefix(line.buf, "insert ", &arg)) {
28 if (get_oid_hex_any(arg, &oid) == GIT_HASH_UNKNOWN)
29 die("insert not a hexadecimal oid: %s", arg);
30 algo = oid.algo;
31 oidtree_insert(&ot, &oid);
32 } else if (skip_prefix(line.buf, "contains ", &arg)) {
33 if (get_oid_hex(arg, &oid))
34 die("contains not a hexadecimal oid: %s", arg);
35 printf("%d\n", oidtree_contains(&ot, &oid));
36 } else if (skip_prefix(line.buf, "each ", &arg)) {
37 char buf[GIT_MAX_HEXSZ + 1] = { '0' };
38 memset(&oid, 0, sizeof(oid));
39 memcpy(buf, arg, strlen(arg));
40 buf[hash_algos[algo].hexsz] = '\0';
41 get_oid_hex_any(buf, &oid);
42 oid.algo = algo;
43 oidtree_each(&ot, &oid, strlen(arg), print_oid, NULL);
44 } else if (!strcmp(line.buf, "clear")) {
45 oidtree_clear(&ot);
46 } else {
47 die("unknown command: %s", line.buf);
48 }
49 }
50
51 strbuf_release(&line);
52
53 return 0;
54 }