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 verify [--object-dir <objdir>] [--shallow] [--[no-]progress]"),
12 N_("git commit-graph write [--object-dir <objdir>] [--append] "
13 "[--split[=<strategy>]] [--reachable|--stdin-packs|--stdin-commits] "
14 "[--[no-]progress] [--[no-]check-oids] <split options>"),
18 static const char * const builtin_commit_graph_verify_usage[] = {
19 N_("git commit-graph verify [--object-dir <objdir>] [--shallow] [--[no-]progress]"),
23 static const char * const builtin_commit_graph_write_usage[] = {
24 N_("git commit-graph write [--object-dir <objdir>] [--append] "
25 "[--split[=<strategy>]] [--reachable|--stdin-packs|--stdin-commits] "
26 "[--[no-]progress] [--[no-]check-oids] <split options>"),
30 static struct opts_commit_graph {
42 static struct object_directory *find_odb(struct repository *r,
45 struct object_directory *odb;
46 char *obj_dir_real = real_pathdup(obj_dir, 1);
49 for (odb = r->objects->odb; odb; odb = odb->next) {
50 if (!strcmp(obj_dir_real, real_path(odb->path)))
57 die(_("could not find object directory matching %s"), obj_dir);
61 static int graph_verify(int argc, const char **argv)
63 struct commit_graph *graph = NULL;
64 struct object_directory *odb = NULL;
71 static struct option builtin_commit_graph_verify_options[] = {
72 OPT_STRING(0, "object-dir", &opts.obj_dir,
74 N_("The object directory to store the graph")),
75 OPT_BOOL(0, "shallow", &opts.shallow,
76 N_("if the commit-graph is split, only verify the tip file")),
77 OPT_BOOL(0, "progress", &opts.progress, N_("force progress reporting")),
81 trace2_cmd_mode("verify");
83 opts.progress = isatty(2);
84 argc = parse_options(argc, argv, NULL,
85 builtin_commit_graph_verify_options,
86 builtin_commit_graph_verify_usage, 0);
89 opts.obj_dir = get_object_directory();
91 flags |= COMMIT_GRAPH_VERIFY_SHALLOW;
93 flags |= COMMIT_GRAPH_WRITE_PROGRESS;
95 odb = find_odb(the_repository, opts.obj_dir);
96 graph_name = get_commit_graph_filename(odb);
97 open_ok = open_commit_graph(graph_name, &fd, &st);
98 if (!open_ok && errno != ENOENT)
99 die_errno(_("Could not open commit-graph '%s'"), graph_name);
101 FREE_AND_NULL(graph_name);
104 graph = load_commit_graph_one_fd_st(fd, &st, odb);
106 graph = read_commit_graph_one(the_repository, odb);
108 /* Return failure if open_ok predicted success */
113 return verify_commit_graph(the_repository, graph, flags);
116 extern int read_replace_refs;
117 static struct split_commit_graph_opts split_opts;
119 static int write_option_parse_split(const struct option *opt, const char *arg,
122 enum commit_graph_split_flags *flags = opt->value;
128 if (!strcmp(arg, "no-merge"))
129 *flags = COMMIT_GRAPH_SPLIT_MERGE_PROHIBITED;
130 else if (!strcmp(arg, "replace"))
131 *flags = COMMIT_GRAPH_SPLIT_REPLACE;
133 die(_("unrecognized --split argument, %s"), arg);
138 static int graph_write(int argc, const char **argv)
140 struct string_list *pack_indexes = NULL;
141 struct oidset commits = OIDSET_INIT;
142 struct object_directory *odb = NULL;
143 struct string_list lines;
145 enum commit_graph_write_flags flags = 0;
147 static struct option builtin_commit_graph_write_options[] = {
148 OPT_STRING(0, "object-dir", &opts.obj_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, "progress", &opts.progress, N_("force progress reporting")),
160 OPT_CALLBACK_F(0, "split", &split_opts.flags, NULL,
161 N_("allow writing an incremental commit-graph file"),
162 PARSE_OPT_OPTARG | PARSE_OPT_NONEG,
163 write_option_parse_split),
164 OPT_BOOL(0, "check-oids", &opts.check_oids,
165 N_("require OIDs to be commits")),
166 OPT_INTEGER(0, "max-commits", &split_opts.max_commits,
167 N_("maximum number of commits in a non-base split commit-graph")),
168 OPT_INTEGER(0, "size-multiple", &split_opts.size_multiple,
169 N_("maximum ratio between two levels of a split commit-graph")),
170 OPT_EXPIRY_DATE(0, "expire-time", &split_opts.expire_time,
171 N_("maximum number of commits in a non-base split commit-graph")),
175 opts.progress = isatty(2);
177 split_opts.size_multiple = 2;
178 split_opts.max_commits = 0;
179 split_opts.expire_time = 0;
181 trace2_cmd_mode("write");
183 argc = parse_options(argc, argv, NULL,
184 builtin_commit_graph_write_options,
185 builtin_commit_graph_write_usage, 0);
187 if (opts.reachable + opts.stdin_packs + opts.stdin_commits > 1)
188 die(_("use at most one of --reachable, --stdin-commits, or --stdin-packs"));
190 opts.obj_dir = get_object_directory();
192 flags |= COMMIT_GRAPH_WRITE_APPEND;
194 flags |= COMMIT_GRAPH_WRITE_SPLIT;
196 flags |= COMMIT_GRAPH_WRITE_PROGRESS;
198 read_replace_refs = 0;
199 odb = find_odb(the_repository, opts.obj_dir);
201 if (opts.reachable) {
202 if (write_commit_graph_reachable(odb, flags, &split_opts))
207 string_list_init(&lines, 0);
208 if (opts.stdin_packs || opts.stdin_commits) {
209 struct strbuf buf = STRBUF_INIT;
211 while (strbuf_getline(&buf, stdin) != EOF)
212 string_list_append(&lines, strbuf_detach(&buf, NULL));
214 if (opts.stdin_packs)
215 pack_indexes = &lines;
216 if (opts.stdin_commits) {
217 struct string_list_item *item;
218 oidset_init(&commits, lines.nr);
219 for_each_string_list_item(item, &lines) {
220 struct object_id oid;
223 if (parse_oid_hex(item->string, &oid, &end)) {
224 error(_("unexpected non-hex object ID: "
225 "%s"), item->string);
229 oidset_insert(&commits, &oid);
232 flags |= COMMIT_GRAPH_WRITE_CHECK_OIDS;
238 if (write_commit_graph(odb,
240 opts.stdin_commits ? &commits : NULL,
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], "verify"))
272 return graph_verify(argc, argv);
273 if (!strcmp(argv[0], "write"))
274 return graph_write(argc, argv);
277 usage_with_options(builtin_commit_graph_usage,
278 builtin_commit_graph_options);