blob: 9d108f43a907d2aafc3d27b3ecd35fab8586904f [file] [log] [blame]
Derrick Stolee4ce58ee2018-04-02 16:34:18 -04001#include "builtin.h"
2#include "config.h"
Derrick Stoleef237c8b2018-04-02 16:34:20 -04003#include "dir.h"
4#include "lockfile.h"
Derrick Stolee4ce58ee2018-04-02 16:34:18 -04005#include "parse-options.h"
Derrick Stolee283e68c2018-06-27 09:24:32 -04006#include "repository.h"
Derrick Stoleef237c8b2018-04-02 16:34:20 -04007#include "commit-graph.h"
Derrick Stolee4ce58ee2018-04-02 16:34:18 -04008
9static char const * const builtin_commit_graph_usage[] = {
10 N_("git commit-graph [--object-dir <objdir>]"),
Derrick Stolee2a2e32b2018-04-10 08:56:02 -040011 N_("git commit-graph read [--object-dir <objdir>]"),
Derrick Stolee283e68c2018-06-27 09:24:32 -040012 N_("git commit-graph verify [--object-dir <objdir>]"),
Derrick Stolee7547b952018-04-10 08:56:08 -040013 N_("git commit-graph write [--object-dir <objdir>] [--append] [--stdin-packs|--stdin-commits]"),
Derrick Stoleef237c8b2018-04-02 16:34:20 -040014 NULL
15};
16
Derrick Stolee283e68c2018-06-27 09:24:32 -040017static const char * const builtin_commit_graph_verify_usage[] = {
18 N_("git commit-graph verify [--object-dir <objdir>]"),
19 NULL
20};
21
Derrick Stolee2a2e32b2018-04-10 08:56:02 -040022static const char * const builtin_commit_graph_read_usage[] = {
23 N_("git commit-graph read [--object-dir <objdir>]"),
24 NULL
25};
26
Derrick Stoleef237c8b2018-04-02 16:34:20 -040027static const char * const builtin_commit_graph_write_usage[] = {
Derrick Stolee7547b952018-04-10 08:56:08 -040028 N_("git commit-graph write [--object-dir <objdir>] [--append] [--stdin-packs|--stdin-commits]"),
Derrick Stolee4ce58ee2018-04-02 16:34:18 -040029 NULL
30};
31
32static struct opts_commit_graph {
33 const char *obj_dir;
Derrick Stolee049d51a2018-04-10 08:56:06 -040034 int stdin_packs;
Derrick Stolee3d5df012018-04-10 08:56:07 -040035 int stdin_commits;
Derrick Stolee7547b952018-04-10 08:56:08 -040036 int append;
Derrick Stolee4ce58ee2018-04-02 16:34:18 -040037} opts;
38
Derrick Stolee283e68c2018-06-27 09:24:32 -040039
40static int graph_verify(int argc, const char **argv)
41{
42 struct commit_graph *graph = NULL;
43 char *graph_name;
44
45 static struct option builtin_commit_graph_verify_options[] = {
46 OPT_STRING(0, "object-dir", &opts.obj_dir,
47 N_("dir"),
48 N_("The object directory to store the graph")),
49 OPT_END(),
50 };
51
52 argc = parse_options(argc, argv, NULL,
53 builtin_commit_graph_verify_options,
54 builtin_commit_graph_verify_usage, 0);
55
56 if (!opts.obj_dir)
57 opts.obj_dir = get_object_directory();
58
59 graph_name = get_commit_graph_filename(opts.obj_dir);
60 graph = load_commit_graph_one(graph_name);
61 FREE_AND_NULL(graph_name);
62
63 if (!graph)
64 return 0;
65
66 return verify_commit_graph(the_repository, graph);
67}
68
Derrick Stolee2a2e32b2018-04-10 08:56:02 -040069static int graph_read(int argc, const char **argv)
70{
71 struct commit_graph *graph = NULL;
72 char *graph_name;
73
74 static struct option builtin_commit_graph_read_options[] = {
75 OPT_STRING(0, "object-dir", &opts.obj_dir,
76 N_("dir"),
77 N_("The object directory to store the graph")),
78 OPT_END(),
79 };
80
81 argc = parse_options(argc, argv, NULL,
82 builtin_commit_graph_read_options,
83 builtin_commit_graph_read_usage, 0);
84
85 if (!opts.obj_dir)
86 opts.obj_dir = get_object_directory();
87
88 graph_name = get_commit_graph_filename(opts.obj_dir);
89 graph = load_commit_graph_one(graph_name);
90
Derrick Stolee883e5c72018-06-27 09:24:27 -040091 if (!graph) {
92 UNLEAK(graph_name);
Derrick Stolee2a2e32b2018-04-10 08:56:02 -040093 die("graph file %s does not exist", graph_name);
Derrick Stolee883e5c72018-06-27 09:24:27 -040094 }
95
Derrick Stolee2a2e32b2018-04-10 08:56:02 -040096 FREE_AND_NULL(graph_name);
97
98 printf("header: %08x %d %d %d %d\n",
99 ntohl(*(uint32_t*)graph->data),
100 *(unsigned char*)(graph->data + 4),
101 *(unsigned char*)(graph->data + 5),
102 *(unsigned char*)(graph->data + 6),
103 *(unsigned char*)(graph->data + 7));
104 printf("num_commits: %u\n", graph->num_commits);
105 printf("chunks:");
106
107 if (graph->chunk_oid_fanout)
108 printf(" oid_fanout");
109 if (graph->chunk_oid_lookup)
110 printf(" oid_lookup");
111 if (graph->chunk_commit_data)
112 printf(" commit_metadata");
113 if (graph->chunk_large_edges)
114 printf(" large_edges");
115 printf("\n");
116
117 return 0;
118}
119
Derrick Stoleef237c8b2018-04-02 16:34:20 -0400120static int graph_write(int argc, const char **argv)
121{
Derrick Stolee049d51a2018-04-10 08:56:06 -0400122 const char **pack_indexes = NULL;
123 int packs_nr = 0;
Derrick Stolee3d5df012018-04-10 08:56:07 -0400124 const char **commit_hex = NULL;
125 int commits_nr = 0;
Derrick Stolee049d51a2018-04-10 08:56:06 -0400126 const char **lines = NULL;
127 int lines_nr = 0;
128 int lines_alloc = 0;
129
Derrick Stoleef237c8b2018-04-02 16:34:20 -0400130 static struct option builtin_commit_graph_write_options[] = {
131 OPT_STRING(0, "object-dir", &opts.obj_dir,
132 N_("dir"),
133 N_("The object directory to store the graph")),
Derrick Stolee049d51a2018-04-10 08:56:06 -0400134 OPT_BOOL(0, "stdin-packs", &opts.stdin_packs,
135 N_("scan pack-indexes listed by stdin for commits")),
Derrick Stolee3d5df012018-04-10 08:56:07 -0400136 OPT_BOOL(0, "stdin-commits", &opts.stdin_commits,
137 N_("start walk at commits listed by stdin")),
Derrick Stolee7547b952018-04-10 08:56:08 -0400138 OPT_BOOL(0, "append", &opts.append,
139 N_("include all commits already in the commit-graph file")),
Derrick Stoleef237c8b2018-04-02 16:34:20 -0400140 OPT_END(),
141 };
142
143 argc = parse_options(argc, argv, NULL,
144 builtin_commit_graph_write_options,
145 builtin_commit_graph_write_usage, 0);
146
Derrick Stolee3d5df012018-04-10 08:56:07 -0400147 if (opts.stdin_packs && opts.stdin_commits)
148 die(_("cannot use both --stdin-commits and --stdin-packs"));
Derrick Stoleef237c8b2018-04-02 16:34:20 -0400149 if (!opts.obj_dir)
150 opts.obj_dir = get_object_directory();
151
Derrick Stolee3d5df012018-04-10 08:56:07 -0400152 if (opts.stdin_packs || opts.stdin_commits) {
Derrick Stolee049d51a2018-04-10 08:56:06 -0400153 struct strbuf buf = STRBUF_INIT;
154 lines_nr = 0;
155 lines_alloc = 128;
156 ALLOC_ARRAY(lines, lines_alloc);
157
158 while (strbuf_getline(&buf, stdin) != EOF) {
159 ALLOC_GROW(lines, lines_nr + 1, lines_alloc);
160 lines[lines_nr++] = strbuf_detach(&buf, NULL);
161 }
162
Derrick Stolee3d5df012018-04-10 08:56:07 -0400163 if (opts.stdin_packs) {
164 pack_indexes = lines;
165 packs_nr = lines_nr;
166 }
167 if (opts.stdin_commits) {
168 commit_hex = lines;
169 commits_nr = lines_nr;
170 }
Derrick Stolee049d51a2018-04-10 08:56:06 -0400171 }
172
173 write_commit_graph(opts.obj_dir,
174 pack_indexes,
Derrick Stolee3d5df012018-04-10 08:56:07 -0400175 packs_nr,
176 commit_hex,
Derrick Stolee7547b952018-04-10 08:56:08 -0400177 commits_nr,
178 opts.append);
Derrick Stolee049d51a2018-04-10 08:56:06 -0400179
Derrick Stoleef237c8b2018-04-02 16:34:20 -0400180 return 0;
181}
Derrick Stolee4ce58ee2018-04-02 16:34:18 -0400182
183int cmd_commit_graph(int argc, const char **argv, const char *prefix)
184{
185 static struct option builtin_commit_graph_options[] = {
186 OPT_STRING(0, "object-dir", &opts.obj_dir,
187 N_("dir"),
188 N_("The object directory to store the graph")),
189 OPT_END(),
190 };
191
192 if (argc == 2 && !strcmp(argv[1], "-h"))
193 usage_with_options(builtin_commit_graph_usage,
194 builtin_commit_graph_options);
195
196 git_config(git_default_config, NULL);
197 argc = parse_options(argc, argv, prefix,
198 builtin_commit_graph_options,
199 builtin_commit_graph_usage,
200 PARSE_OPT_STOP_AT_NON_OPTION);
201
Derrick Stoleef237c8b2018-04-02 16:34:20 -0400202 if (argc > 0) {
Derrick Stolee2a2e32b2018-04-10 08:56:02 -0400203 if (!strcmp(argv[0], "read"))
204 return graph_read(argc, argv);
Derrick Stolee283e68c2018-06-27 09:24:32 -0400205 if (!strcmp(argv[0], "verify"))
206 return graph_verify(argc, argv);
Derrick Stoleef237c8b2018-04-02 16:34:20 -0400207 if (!strcmp(argv[0], "write"))
208 return graph_write(argc, argv);
209 }
210
Derrick Stolee4ce58ee2018-04-02 16:34:18 -0400211 usage_with_options(builtin_commit_graph_usage,
212 builtin_commit_graph_options);
213}