commit-graph: merge commit-graph chains
[git] / builtin / commit-graph.c
1 #include "builtin.h"
2 #include "config.h"
3 #include "dir.h"
4 #include "lockfile.h"
5 #include "parse-options.h"
6 #include "repository.h"
7 #include "commit-graph.h"
8
9 static char const * const builtin_commit_graph_usage[] = {
10         N_("git commit-graph [--object-dir <objdir>]"),
11         N_("git commit-graph read [--object-dir <objdir>]"),
12         N_("git commit-graph verify [--object-dir <objdir>]"),
13         N_("git commit-graph write [--object-dir <objdir>] [--append|--split] [--reachable|--stdin-packs|--stdin-commits]"),
14         NULL
15 };
16
17 static const char * const builtin_commit_graph_verify_usage[] = {
18         N_("git commit-graph verify [--object-dir <objdir>]"),
19         NULL
20 };
21
22 static const char * const builtin_commit_graph_read_usage[] = {
23         N_("git commit-graph read [--object-dir <objdir>]"),
24         NULL
25 };
26
27 static const char * const builtin_commit_graph_write_usage[] = {
28         N_("git commit-graph write [--object-dir <objdir>] [--append|--split] [--reachable|--stdin-packs|--stdin-commits]"),
29         NULL
30 };
31
32 static struct opts_commit_graph {
33         const char *obj_dir;
34         int reachable;
35         int stdin_packs;
36         int stdin_commits;
37         int append;
38         int split;
39 } opts;
40
41 static int graph_verify(int argc, const char **argv)
42 {
43         struct commit_graph *graph = NULL;
44         char *graph_name;
45         int open_ok;
46         int fd;
47         struct stat st;
48
49         static struct option builtin_commit_graph_verify_options[] = {
50                 OPT_STRING(0, "object-dir", &opts.obj_dir,
51                            N_("dir"),
52                            N_("The object directory to store the graph")),
53                 OPT_END(),
54         };
55
56         argc = parse_options(argc, argv, NULL,
57                              builtin_commit_graph_verify_options,
58                              builtin_commit_graph_verify_usage, 0);
59
60         if (!opts.obj_dir)
61                 opts.obj_dir = get_object_directory();
62
63         graph_name = get_commit_graph_filename(opts.obj_dir);
64         open_ok = open_commit_graph(graph_name, &fd, &st);
65         if (!open_ok && errno == ENOENT)
66                 return 0;
67         if (!open_ok)
68                 die_errno(_("Could not open commit-graph '%s'"), graph_name);
69         graph = load_commit_graph_one_fd_st(fd, &st);
70         FREE_AND_NULL(graph_name);
71
72         if (!graph)
73                 return 1;
74
75         UNLEAK(graph);
76         return verify_commit_graph(the_repository, graph);
77 }
78
79 static int graph_read(int argc, const char **argv)
80 {
81         struct commit_graph *graph = NULL;
82         char *graph_name;
83         int open_ok;
84         int fd;
85         struct stat st;
86
87         static struct option builtin_commit_graph_read_options[] = {
88                 OPT_STRING(0, "object-dir", &opts.obj_dir,
89                         N_("dir"),
90                         N_("The object directory to store the graph")),
91                 OPT_END(),
92         };
93
94         argc = parse_options(argc, argv, NULL,
95                              builtin_commit_graph_read_options,
96                              builtin_commit_graph_read_usage, 0);
97
98         if (!opts.obj_dir)
99                 opts.obj_dir = get_object_directory();
100
101         graph_name = get_commit_graph_filename(opts.obj_dir);
102
103         open_ok = open_commit_graph(graph_name, &fd, &st);
104         if (!open_ok)
105                 die_errno(_("Could not open commit-graph '%s'"), graph_name);
106
107         graph = load_commit_graph_one_fd_st(fd, &st);
108         if (!graph)
109                 return 1;
110
111         FREE_AND_NULL(graph_name);
112
113         printf("header: %08x %d %d %d %d\n",
114                 ntohl(*(uint32_t*)graph->data),
115                 *(unsigned char*)(graph->data + 4),
116                 *(unsigned char*)(graph->data + 5),
117                 *(unsigned char*)(graph->data + 6),
118                 *(unsigned char*)(graph->data + 7));
119         printf("num_commits: %u\n", graph->num_commits);
120         printf("chunks:");
121
122         if (graph->chunk_oid_fanout)
123                 printf(" oid_fanout");
124         if (graph->chunk_oid_lookup)
125                 printf(" oid_lookup");
126         if (graph->chunk_commit_data)
127                 printf(" commit_metadata");
128         if (graph->chunk_extra_edges)
129                 printf(" extra_edges");
130         printf("\n");
131
132         UNLEAK(graph);
133
134         return 0;
135 }
136
137 extern int read_replace_refs;
138
139 static int graph_write(int argc, const char **argv)
140 {
141         struct string_list *pack_indexes = NULL;
142         struct string_list *commit_hex = NULL;
143         struct string_list lines;
144         int result = 0;
145         unsigned int flags = COMMIT_GRAPH_PROGRESS;
146
147         static struct option builtin_commit_graph_write_options[] = {
148                 OPT_STRING(0, "object-dir", &opts.obj_dir,
149                         N_("dir"),
150                         N_("The object directory to store the graph")),
151                 OPT_BOOL(0, "reachable", &opts.reachable,
152                         N_("start walk at all refs")),
153                 OPT_BOOL(0, "stdin-packs", &opts.stdin_packs,
154                         N_("scan pack-indexes listed by stdin for commits")),
155                 OPT_BOOL(0, "stdin-commits", &opts.stdin_commits,
156                         N_("start walk at commits listed by stdin")),
157                 OPT_BOOL(0, "append", &opts.append,
158                         N_("include all commits already in the commit-graph file")),
159                 OPT_BOOL(0, "split", &opts.split,
160                         N_("allow writing an incremental commit-graph file")),
161                 OPT_END(),
162         };
163
164         argc = parse_options(argc, argv, NULL,
165                              builtin_commit_graph_write_options,
166                              builtin_commit_graph_write_usage, 0);
167
168         if (opts.reachable + opts.stdin_packs + opts.stdin_commits > 1)
169                 die(_("use at most one of --reachable, --stdin-commits, or --stdin-packs"));
170         if (!opts.obj_dir)
171                 opts.obj_dir = get_object_directory();
172         if (opts.append)
173                 flags |= COMMIT_GRAPH_APPEND;
174         if (opts.split)
175                 flags |= COMMIT_GRAPH_SPLIT;
176
177         read_replace_refs = 0;
178
179         if (opts.reachable)
180                 return write_commit_graph_reachable(opts.obj_dir, flags);
181
182         string_list_init(&lines, 0);
183         if (opts.stdin_packs || opts.stdin_commits) {
184                 struct strbuf buf = STRBUF_INIT;
185
186                 while (strbuf_getline(&buf, stdin) != EOF)
187                         string_list_append(&lines, strbuf_detach(&buf, NULL));
188
189                 if (opts.stdin_packs)
190                         pack_indexes = &lines;
191                 if (opts.stdin_commits)
192                         commit_hex = &lines;
193
194                 UNLEAK(buf);
195         }
196
197         if (write_commit_graph(opts.obj_dir,
198                                pack_indexes,
199                                commit_hex,
200                                flags))
201                 result = 1;
202
203         UNLEAK(lines);
204         return result;
205 }
206
207 int cmd_commit_graph(int argc, const char **argv, const char *prefix)
208 {
209         static struct option builtin_commit_graph_options[] = {
210                 OPT_STRING(0, "object-dir", &opts.obj_dir,
211                         N_("dir"),
212                         N_("The object directory to store the graph")),
213                 OPT_END(),
214         };
215
216         if (argc == 2 && !strcmp(argv[1], "-h"))
217                 usage_with_options(builtin_commit_graph_usage,
218                                    builtin_commit_graph_options);
219
220         git_config(git_default_config, NULL);
221         argc = parse_options(argc, argv, prefix,
222                              builtin_commit_graph_options,
223                              builtin_commit_graph_usage,
224                              PARSE_OPT_STOP_AT_NON_OPTION);
225
226         if (argc > 0) {
227                 if (!strcmp(argv[0], "read"))
228                         return graph_read(argc, argv);
229                 if (!strcmp(argv[0], "verify"))
230                         return graph_verify(argc, argv);
231                 if (!strcmp(argv[0], "write"))
232                         return graph_write(argc, argv);
233         }
234
235         usage_with_options(builtin_commit_graph_usage,
236                            builtin_commit_graph_options);
237 }