5 #include "parse-options.h"
6 #include "repository.h"
7 #include "commit-graph.h"
8 #include "object-store.h"
10 static char const * const builtin_commit_graph_usage[] = {
11 N_("git commit-graph read [--object-dir <objdir>]"),
12 N_("git commit-graph verify [--object-dir <objdir>] [--shallow] [--[no-]progress]"),
13 N_("git commit-graph write [--object-dir <objdir>] [--append|--split] [--reachable|--stdin-packs|--stdin-commits] [--[no-]progress] <split options>"),
17 static const char * const builtin_commit_graph_verify_usage[] = {
18 N_("git commit-graph verify [--object-dir <objdir>] [--shallow] [--[no-]progress]"),
22 static const char * const builtin_commit_graph_read_usage[] = {
23 N_("git commit-graph read [--object-dir <objdir>]"),
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] [--[no-]progress] <split options>"),
32 static struct opts_commit_graph {
43 static int graph_verify(int argc, const char **argv)
45 struct commit_graph *graph = NULL;
52 static struct option builtin_commit_graph_verify_options[] = {
53 OPT_STRING(0, "object-dir", &opts.obj_dir,
55 N_("The object directory to store the graph")),
56 OPT_BOOL(0, "shallow", &opts.shallow,
57 N_("if the commit-graph is split, only verify the tip file")),
58 OPT_BOOL(0, "progress", &opts.progress, N_("force progress reporting")),
62 trace2_cmd_mode("verify");
64 opts.progress = isatty(2);
65 argc = parse_options(argc, argv, NULL,
66 builtin_commit_graph_verify_options,
67 builtin_commit_graph_verify_usage, 0);
70 opts.obj_dir = get_object_directory();
72 flags |= COMMIT_GRAPH_VERIFY_SHALLOW;
74 flags |= COMMIT_GRAPH_WRITE_PROGRESS;
76 graph_name = get_commit_graph_filename(opts.obj_dir);
77 open_ok = open_commit_graph(graph_name, &fd, &st);
78 if (!open_ok && errno != ENOENT)
79 die_errno(_("Could not open commit-graph '%s'"), graph_name);
81 FREE_AND_NULL(graph_name);
84 graph = load_commit_graph_one_fd_st(fd, &st);
86 graph = read_commit_graph_one(the_repository, opts.obj_dir);
88 /* Return failure if open_ok predicted success */
93 return verify_commit_graph(the_repository, graph, flags);
96 static int graph_read(int argc, const char **argv)
98 struct commit_graph *graph = NULL;
104 static struct option builtin_commit_graph_read_options[] = {
105 OPT_STRING(0, "object-dir", &opts.obj_dir,
107 N_("The object directory to store the graph")),
111 trace2_cmd_mode("read");
113 argc = parse_options(argc, argv, NULL,
114 builtin_commit_graph_read_options,
115 builtin_commit_graph_read_usage, 0);
118 opts.obj_dir = get_object_directory();
120 graph_name = get_commit_graph_filename(opts.obj_dir);
122 open_ok = open_commit_graph(graph_name, &fd, &st);
124 die_errno(_("Could not open commit-graph '%s'"), graph_name);
126 graph = load_commit_graph_one_fd_st(fd, &st);
130 FREE_AND_NULL(graph_name);
132 printf("header: %08x %d %d %d %d\n",
133 ntohl(*(uint32_t*)graph->data),
134 *(unsigned char*)(graph->data + 4),
135 *(unsigned char*)(graph->data + 5),
136 *(unsigned char*)(graph->data + 6),
137 *(unsigned char*)(graph->data + 7));
138 printf("num_commits: %u\n", graph->num_commits);
141 if (graph->chunk_oid_fanout)
142 printf(" oid_fanout");
143 if (graph->chunk_oid_lookup)
144 printf(" oid_lookup");
145 if (graph->chunk_commit_data)
146 printf(" commit_metadata");
147 if (graph->chunk_extra_edges)
148 printf(" extra_edges");
156 extern int read_replace_refs;
157 static struct split_commit_graph_opts split_opts;
159 static int graph_write(int argc, const char **argv)
161 struct string_list *pack_indexes = NULL;
162 struct string_list *commit_hex = NULL;
163 struct string_list lines;
165 enum commit_graph_write_flags flags = 0;
167 static struct option builtin_commit_graph_write_options[] = {
168 OPT_STRING(0, "object-dir", &opts.obj_dir,
170 N_("The object directory to store the graph")),
171 OPT_BOOL(0, "reachable", &opts.reachable,
172 N_("start walk at all refs")),
173 OPT_BOOL(0, "stdin-packs", &opts.stdin_packs,
174 N_("scan pack-indexes listed by stdin for commits")),
175 OPT_BOOL(0, "stdin-commits", &opts.stdin_commits,
176 N_("start walk at commits listed by stdin")),
177 OPT_BOOL(0, "append", &opts.append,
178 N_("include all commits already in the commit-graph file")),
179 OPT_BOOL(0, "progress", &opts.progress, N_("force progress reporting")),
180 OPT_BOOL(0, "split", &opts.split,
181 N_("allow writing an incremental commit-graph file")),
182 OPT_INTEGER(0, "max-commits", &split_opts.max_commits,
183 N_("maximum number of commits in a non-base split commit-graph")),
184 OPT_INTEGER(0, "size-multiple", &split_opts.size_multiple,
185 N_("maximum ratio between two levels of a split commit-graph")),
186 OPT_EXPIRY_DATE(0, "expire-time", &split_opts.expire_time,
187 N_("maximum number of commits in a non-base split commit-graph")),
191 opts.progress = isatty(2);
192 split_opts.size_multiple = 2;
193 split_opts.max_commits = 0;
194 split_opts.expire_time = 0;
196 trace2_cmd_mode("write");
198 argc = parse_options(argc, argv, NULL,
199 builtin_commit_graph_write_options,
200 builtin_commit_graph_write_usage, 0);
202 if (opts.reachable + opts.stdin_packs + opts.stdin_commits > 1)
203 die(_("use at most one of --reachable, --stdin-commits, or --stdin-packs"));
205 opts.obj_dir = get_object_directory();
207 flags |= COMMIT_GRAPH_WRITE_APPEND;
209 flags |= COMMIT_GRAPH_WRITE_SPLIT;
211 flags |= COMMIT_GRAPH_WRITE_PROGRESS;
213 read_replace_refs = 0;
215 if (opts.reachable) {
216 if (write_commit_graph_reachable(opts.obj_dir, flags, &split_opts))
221 string_list_init(&lines, 0);
222 if (opts.stdin_packs || opts.stdin_commits) {
223 struct strbuf buf = STRBUF_INIT;
225 while (strbuf_getline(&buf, stdin) != EOF)
226 string_list_append(&lines, strbuf_detach(&buf, NULL));
228 if (opts.stdin_packs)
229 pack_indexes = &lines;
230 if (opts.stdin_commits) {
232 flags |= COMMIT_GRAPH_WRITE_CHECK_OIDS;
238 if (write_commit_graph(opts.obj_dir,
249 int cmd_commit_graph(int argc, const char **argv, const char *prefix)
251 static struct option builtin_commit_graph_options[] = {
252 OPT_STRING(0, "object-dir", &opts.obj_dir,
254 N_("The object directory to store the graph")),
258 if (argc == 2 && !strcmp(argv[1], "-h"))
259 usage_with_options(builtin_commit_graph_usage,
260 builtin_commit_graph_options);
262 git_config(git_default_config, NULL);
263 argc = parse_options(argc, argv, prefix,
264 builtin_commit_graph_options,
265 builtin_commit_graph_usage,
266 PARSE_OPT_STOP_AT_NON_OPTION);
268 save_commit_buffer = 0;
271 if (!strcmp(argv[0], "read"))
272 return graph_read(argc, argv);
273 if (!strcmp(argv[0], "verify"))
274 return graph_verify(argc, argv);
275 if (!strcmp(argv[0], "write"))
276 return graph_write(argc, argv);
279 usage_with_options(builtin_commit_graph_usage,
280 builtin_commit_graph_options);