]> git.ipfire.org Git - thirdparty/git.git/blame - rev-list.c
Rip out merge-order and make "git log <paths>..." work again.
[thirdparty/git.git] / rev-list.c
CommitLineData
64745109 1#include "cache.h"
e091eb93 2#include "refs.h"
36f8d174 3#include "tag.h"
64745109 4#include "commit.h"
9de48752
LT
5#include "tree.h"
6#include "blob.h"
cf484544 7#include "diff.h"
ae563542
LT
8#include "revision.h"
9
765ac8ec 10/* bits #0-3 in revision.h */
64745109 11
765ac8ec 12#define COUNTED (1u << 4)
88494423 13#define TMP_MARK (1u << 5) /* for isolated cases; clean after use */
8906300f 14
a6f68d47 15static const char rev_list_usage[] =
69e0c256
JH
16"git-rev-list [OPTION] <commit-id>... [ -- paths... ]\n"
17" limiting output:\n"
18" --max-count=nr\n"
19" --max-age=epoch\n"
20" --min-age=epoch\n"
21" --sparse\n"
22" --no-merges\n"
93b74bca 23" --remove-empty\n"
69e0c256
JH
24" --all\n"
25" ordering output:\n"
69e0c256 26" --topo-order\n"
4c8725f1 27" --date-order\n"
69e0c256
JH
28" formatting output:\n"
29" --parents\n"
c6496575 30" --objects | --objects-edge\n"
69e0c256
JH
31" --unpacked\n"
32" --header | --pretty\n"
9da5c2f0 33" --abbrev=nr | --no-abbrev\n"
69e0c256
JH
34" special purpose:\n"
35" --bisect"
36;
a6f68d47 37
ae563542
LT
38struct rev_info revs;
39
8b3a1e05 40static int bisect_list = 0;
81f2bb1f 41static int verbose_header = 0;
9da5c2f0 42static int abbrev = DEFAULT_ABBREV;
81f2bb1f 43static int show_parents = 0;
81f2bb1f 44static int hdr_termination = 0;
d998a089 45static const char *commit_prefix = "";
000182ea 46static enum cmit_fmt commit_format = CMIT_FMT_RAW;
e646de0d 47
81f2bb1f
LT
48static void show_commit(struct commit *commit)
49{
d998a089 50 printf("%s%s", commit_prefix, sha1_to_hex(commit->object.sha1));
81f2bb1f
LT
51 if (show_parents) {
52 struct commit_list *parents = commit->parents;
53 while (parents) {
88494423 54 struct object *o = &(parents->item->object);
81f2bb1f 55 parents = parents->next;
88494423
JH
56 if (o->flags & TMP_MARK)
57 continue;
58 printf(" %s", sha1_to_hex(o->sha1));
59 o->flags |= TMP_MARK;
81f2bb1f 60 }
88494423
JH
61 /* TMP_MARK is a general purpose flag that can
62 * be used locally, but the user should clean
63 * things up after it is done with them.
64 */
65 for (parents = commit->parents;
66 parents;
67 parents = parents->next)
68 parents->item->object.flags &= ~TMP_MARK;
81f2bb1f 69 }
d87449c5
JH
70 if (commit_format == CMIT_FMT_ONELINE)
71 putchar(' ');
72 else
73 putchar('\n');
74
81f2bb1f 75 if (verbose_header) {
000182ea 76 static char pretty_header[16384];
9da5c2f0 77 pretty_print_commit(commit_format, commit, ~0, pretty_header, sizeof(pretty_header), abbrev);
000182ea 78 printf("%s%c", pretty_header, hdr_termination);
7620d39f
LT
79 }
80 fflush(stdout);
a3437b8c
JS
81}
82
e646de0d
JH
83static struct object_list **process_blob(struct blob *blob,
84 struct object_list **p,
85 struct name_path *path,
86 const char *name)
9de48752
LT
87{
88 struct object *obj = &blob->object;
89
ae563542 90 if (!revs.blob_objects)
9de48752
LT
91 return p;
92 if (obj->flags & (UNINTERESTING | SEEN))
93 return p;
94 obj->flags |= SEEN;
e646de0d 95 return add_object(obj, p, path, name);
9de48752
LT
96}
97
e646de0d
JH
98static struct object_list **process_tree(struct tree *tree,
99 struct object_list **p,
100 struct name_path *path,
101 const char *name)
9de48752
LT
102{
103 struct object *obj = &tree->object;
104 struct tree_entry_list *entry;
e646de0d 105 struct name_path me;
9de48752 106
ae563542 107 if (!revs.tree_objects)
9de48752
LT
108 return p;
109 if (obj->flags & (UNINTERESTING | SEEN))
110 return p;
111 if (parse_tree(tree) < 0)
112 die("bad tree object %s", sha1_to_hex(obj->sha1));
113 obj->flags |= SEEN;
e646de0d
JH
114 p = add_object(obj, p, path, name);
115 me.up = path;
116 me.elem = name;
117 me.elem_len = strlen(name);
b0d8923e
LT
118 entry = tree->entries;
119 tree->entries = NULL;
120 while (entry) {
121 struct tree_entry_list *next = entry->next;
9de48752 122 if (entry->directory)
e646de0d 123 p = process_tree(entry->item.tree, p, &me, entry->name);
9de48752 124 else
e646de0d 125 p = process_blob(entry->item.blob, p, &me, entry->name);
b0d8923e
LT
126 free(entry);
127 entry = next;
9de48752
LT
128 }
129 return p;
130}
131
a4a88b2b 132static void show_commit_list(struct rev_info *revs)
81f2bb1f 133{
a4a88b2b 134 struct commit *commit;
36f8d174 135 struct object_list *objects = NULL, **p = &objects, *pending;
81f2bb1f 136
a4a88b2b 137 while ((commit = get_revision(revs)) != NULL) {
e646de0d 138 p = process_tree(commit->tree, p, NULL, "");
765ac8ec 139 show_commit(commit);
81f2bb1f 140 }
a4a88b2b 141 for (pending = revs->pending_objects; pending; pending = pending->next) {
36f8d174
LT
142 struct object *obj = pending->item;
143 const char *name = pending->name;
144 if (obj->flags & (UNINTERESTING | SEEN))
145 continue;
146 if (obj->type == tag_type) {
147 obj->flags |= SEEN;
e646de0d 148 p = add_object(obj, p, NULL, name);
36f8d174
LT
149 continue;
150 }
151 if (obj->type == tree_type) {
e646de0d 152 p = process_tree((struct tree *)obj, p, NULL, name);
36f8d174
LT
153 continue;
154 }
155 if (obj->type == blob_type) {
e646de0d 156 p = process_blob((struct blob *)obj, p, NULL, name);
36f8d174
LT
157 continue;
158 }
159 die("unknown pending object %s (%s)", sha1_to_hex(obj->sha1), name);
160 }
9de48752 161 while (objects) {
50319850
JH
162 /* An object with name "foo\n0000000..." can be used to
163 * confuse downstream git-pack-objects very badly.
c807f771
JH
164 */
165 const char *ep = strchr(objects->name, '\n');
166 if (ep) {
167 printf("%s %.*s\n", sha1_to_hex(objects->item->sha1),
168 (int) (ep - objects->name),
169 objects->name);
170 }
171 else
172 printf("%s %s\n", sha1_to_hex(objects->item->sha1), objects->name);
9de48752
LT
173 objects = objects->next;
174 }
175}
176
8b3a1e05
LT
177/*
178 * This is a truly stupid algorithm, but it's only
179 * used for bisection, and we just don't care enough.
180 *
181 * We care just barely enough to avoid recursing for
182 * non-merge entries.
183 */
184static int count_distance(struct commit_list *entry)
185{
186 int nr = 0;
187
188 while (entry) {
189 struct commit *commit = entry->item;
190 struct commit_list *p;
191
192 if (commit->object.flags & (UNINTERESTING | COUNTED))
193 break;
ae563542 194 if (!revs.paths || (commit->object.flags & TREECHANGE))
b3cfd939 195 nr++;
8b3a1e05
LT
196 commit->object.flags |= COUNTED;
197 p = commit->parents;
198 entry = p;
199 if (p) {
200 p = p->next;
201 while (p) {
202 nr += count_distance(p);
203 p = p->next;
204 }
205 }
206 }
b3cfd939 207
8b3a1e05
LT
208 return nr;
209}
210
3d958064 211static void clear_distance(struct commit_list *list)
8b3a1e05
LT
212{
213 while (list) {
214 struct commit *commit = list->item;
215 commit->object.flags &= ~COUNTED;
216 list = list->next;
217 }
218}
219
220static struct commit_list *find_bisection(struct commit_list *list)
221{
222 int nr, closest;
223 struct commit_list *p, *best;
224
225 nr = 0;
226 p = list;
227 while (p) {
ae563542 228 if (!revs.paths || (p->item->object.flags & TREECHANGE))
b3cfd939 229 nr++;
8b3a1e05
LT
230 p = p->next;
231 }
232 closest = 0;
233 best = list;
234
b3cfd939
LT
235 for (p = list; p; p = p->next) {
236 int distance;
237
ae563542 238 if (revs.paths && !(p->item->object.flags & TREECHANGE))
b3cfd939
LT
239 continue;
240
241 distance = count_distance(p);
8b3a1e05
LT
242 clear_distance(list);
243 if (nr - distance < distance)
244 distance = nr - distance;
245 if (distance > closest) {
246 best = p;
247 closest = distance;
248 }
8b3a1e05
LT
249 }
250 if (best)
251 best->next = NULL;
252 return best;
253}
254
c6496575
JH
255static void mark_edge_parents_uninteresting(struct commit *commit)
256{
257 struct commit_list *parents;
258
259 for (parents = commit->parents; parents; parents = parents->next) {
260 struct commit *parent = parents->item;
261 if (!(parent->object.flags & UNINTERESTING))
262 continue;
263 mark_tree_uninteresting(parent->tree);
ae563542 264 if (revs.edge_hint && !(parent->object.flags & SHOWN)) {
eb38cc68 265 parent->object.flags |= SHOWN;
c6496575 266 printf("-%s\n", sha1_to_hex(parent->object.sha1));
eb38cc68 267 }
c6496575
JH
268 }
269}
270
5bdbaaa4
LT
271static void mark_edges_uninteresting(struct commit_list *list)
272{
273 for ( ; list; list = list->next) {
c6496575 274 struct commit *commit = list->item;
5bdbaaa4 275
c6496575
JH
276 if (commit->object.flags & UNINTERESTING) {
277 mark_tree_uninteresting(commit->tree);
278 continue;
5bdbaaa4 279 }
c6496575 280 mark_edge_parents_uninteresting(commit);
5bdbaaa4
LT
281 }
282}
283
cf484544 284int main(int argc, const char **argv)
64745109 285{
ae563542 286 struct commit_list *list;
d9a83684 287 int i;
64745109 288
a4a88b2b 289 argc = setup_revisions(argc, argv, &revs, NULL);
ae563542 290
fcfda02b 291 for (i = 1 ; i < argc; i++) {
cf484544 292 const char *arg = argv[i];
fcfda02b 293
8233340c
EW
294 /* accept -<digit>, like traditilnal "head" */
295 if ((*arg == '-') && isdigit(arg[1])) {
ae563542 296 revs.max_count = atoi(arg + 1);
8233340c
EW
297 continue;
298 }
3af06987
EW
299 if (!strcmp(arg, "-n")) {
300 if (++i >= argc)
301 die("-n requires an argument");
ae563542 302 revs.max_count = atoi(argv[i]);
3af06987
EW
303 continue;
304 }
305 if (!strncmp(arg,"-n",2)) {
ae563542 306 revs.max_count = atoi(arg + 2);
a6f68d47 307 continue;
fcfda02b 308 }
a6f68d47
LT
309 if (!strcmp(arg, "--header")) {
310 verbose_header = 1;
311 continue;
312 }
9da5c2f0
JH
313 if (!strcmp(arg, "--no-abbrev")) {
314 abbrev = 0;
315 continue;
316 }
317 if (!strncmp(arg, "--abbrev=", 9)) {
318 abbrev = strtoul(arg + 9, NULL, 10);
319 if (abbrev && abbrev < MINIMUM_ABBREV)
320 abbrev = MINIMUM_ABBREV;
321 else if (40 < abbrev)
322 abbrev = 40;
323 continue;
324 }
000182ea
LT
325 if (!strncmp(arg, "--pretty", 8)) {
326 commit_format = get_commit_format(arg+8);
9d97aa64 327 verbose_header = 1;
9d97aa64 328 hdr_termination = '\n';
d87449c5 329 if (commit_format == CMIT_FMT_ONELINE)
d998a089 330 commit_prefix = "";
d87449c5 331 else
d998a089 332 commit_prefix = "commit ";
9d97aa64
LT
333 continue;
334 }
97658004
LT
335 if (!strcmp(arg, "--parents")) {
336 show_parents = 1;
337 continue;
338 }
8b3a1e05
LT
339 if (!strcmp(arg, "--bisect")) {
340 bisect_list = 1;
341 continue;
342 }
ae563542 343 usage(rev_list_usage);
a6f68d47 344
fcfda02b
KS
345 }
346
ae563542 347 list = revs.commits;
ae563542 348
ef1cc2cc 349 if (!list &&
ae563542 350 (!(revs.tag_objects||revs.tree_objects||revs.blob_objects) && !revs.pending_objects))
7b34c2fa
LT
351 usage(rev_list_usage);
352
a4a88b2b
LT
353 prepare_revision_walk(&revs);
354 if (revs.tree_objects)
355 mark_edges_uninteresting(revs.commits);
356
357 if (bisect_list)
358 revs.commits = find_bisection(revs.commits);
7b34c2fa 359
60ab26de 360 save_commit_buffer = verbose_header;
8805ccac 361 track_object_refs = 0;
60ab26de 362
765ac8ec 363 show_commit_list(&revs);
8906300f 364
64745109
LT
365 return 0;
366}