Raw
1 #define USE_THE_REPOSITORY_VARIABLE
2
3 #include "test-tool.h"
4 #include "hex.h"
5 #include "read-cache-ll.h"
6 #include "repository.h"
7 #include "setup.h"
8 #include "split-index.h"
9 #include "ewah/ewok.h"
10
11 static void show_bit(size_t pos, void *data UNUSED)
12 {
13 printf(" %d", (int)pos);
14 }
15
16 int cmd__dump_split_index(int ac UNUSED, const char **av)
17 {
18 struct split_index *si;
19
20 setup_git_directory(the_repository);
21
22 do_read_index(the_repository->index, av[1], 1);
23 printf("own %s\n", oid_to_hex(&the_repository->index->oid));
24 si = the_repository->index->split_index;
25 if (!si) {
26 printf("not a split index\n");
27 return 0;
28 }
29 printf("base %s\n", oid_to_hex(&si->base_oid));
30 for (size_t i = 0; i < the_repository->index->cache_nr; i++) {
31 struct cache_entry *ce = the_repository->index->cache[i];
32 printf("%06o %s %d\t%s\n", ce->ce_mode,
33 oid_to_hex(&ce->oid), ce_stage(ce), ce->name);
34 }
35 printf("replacements:");
36 if (si->replace_bitmap)
37 ewah_each_bit(si->replace_bitmap, show_bit, NULL);
38 printf("\ndeletions:");
39 if (si->delete_bitmap)
40 ewah_each_bit(si->delete_bitmap, show_bit, NULL);
41 printf("\n");
42 return 0;
43 }