]> git.ipfire.org Git - thirdparty/git.git/blame - rev-list.c
Make git-fetch-pack actually do all the unpacking etc.
[thirdparty/git.git] / rev-list.c
CommitLineData
64745109 1#include "cache.h"
36f8d174 2#include "tag.h"
64745109 3#include "commit.h"
9de48752
LT
4#include "tree.h"
5#include "blob.h"
a3437b8c 6#include "epoch.h"
64745109 7
8906300f
LT
8#define SEEN (1u << 0)
9#define INTERESTING (1u << 1)
8b3a1e05 10#define COUNTED (1u << 2)
51b1e171 11#define SHOWN (LAST_EPOCH_FLAG << 2)
8906300f 12
a6f68d47
LT
13static const char rev_list_usage[] =
14 "usage: git-rev-list [OPTION] commit-id <commit-id>\n"
15 " --max-count=nr\n"
16 " --max-age=epoch\n"
17 " --min-age=epoch\n"
12d2a187
LT
18 " --bisect\n"
19 " --objects\n"
20 " --unpacked\n"
9d97aa64 21 " --header\n"
a3437b8c
JS
22 " --pretty\n"
23 " --merge-order [ --show-breaks ]";
a6f68d47 24
12d2a187 25static int unpacked = 0;
8b3a1e05 26static int bisect_list = 0;
3c90f03d 27static int tag_objects = 0;
9de48752
LT
28static int tree_objects = 0;
29static int blob_objects = 0;
81f2bb1f
LT
30static int verbose_header = 0;
31static int show_parents = 0;
81f2bb1f
LT
32static int hdr_termination = 0;
33static const char *prefix = "";
34static unsigned long max_age = -1;
35static unsigned long min_age = -1;
36static int max_count = -1;
000182ea 37static enum cmit_fmt commit_format = CMIT_FMT_RAW;
a3437b8c
JS
38static int merge_order = 0;
39static int show_breaks = 0;
5e749e25 40static int stop_traversal = 0;
81f2bb1f
LT
41
42static void show_commit(struct commit *commit)
43{
51b1e171 44 commit->object.flags |= SHOWN;
a3437b8c
JS
45 if (show_breaks) {
46 prefix = "| ";
47 if (commit->object.flags & DISCONTINUITY) {
48 prefix = "^ ";
49 } else if (commit->object.flags & BOUNDARY) {
50 prefix = "= ";
51 }
52 }
81f2bb1f
LT
53 printf("%s%s", prefix, sha1_to_hex(commit->object.sha1));
54 if (show_parents) {
55 struct commit_list *parents = commit->parents;
56 while (parents) {
57 printf(" %s", sha1_to_hex(parents->item->object.sha1));
58 parents = parents->next;
59 }
60 }
61 putchar('\n');
62 if (verbose_header) {
000182ea
LT
63 static char pretty_header[16384];
64 pretty_print_commit(commit_format, commit->buffer, ~0, pretty_header, sizeof(pretty_header));
65 printf("%s%c", pretty_header, hdr_termination);
a3437b8c
JS
66 }
67}
68
69static int filter_commit(struct commit * commit)
70{
5e749e25
JS
71 if (merge_order && stop_traversal && commit->object.flags & BOUNDARY)
72 return STOP;
51b1e171 73 if (commit->object.flags & (UNINTERESTING|SHOWN))
a3437b8c
JS
74 return CONTINUE;
75 if (min_age != -1 && (commit->date > min_age))
76 return CONTINUE;
5e749e25
JS
77 if (max_age != -1 && (commit->date < max_age)) {
78 if (!merge_order)
79 return STOP;
80 else {
81 stop_traversal = 1;
82 return CONTINUE;
83 }
84 }
a3437b8c
JS
85 if (max_count != -1 && !max_count--)
86 return STOP;
a3437b8c
JS
87 return DO;
88}
89
90static int process_commit(struct commit * commit)
91{
92 int action=filter_commit(commit);
93
94 if (action == STOP) {
95 return STOP;
96 }
97
98 if (action == CONTINUE) {
99 return CONTINUE;
81f2bb1f 100 }
a3437b8c
JS
101
102 show_commit(commit);
103
104 return CONTINUE;
81f2bb1f
LT
105}
106
9ce43d1c 107static struct object_list **add_object(struct object *obj, struct object_list **p, const char *name)
9de48752
LT
108{
109 struct object_list *entry = xmalloc(sizeof(*entry));
110 entry->item = obj;
36f8d174 111 entry->next = *p;
9ce43d1c 112 entry->name = name;
9de48752
LT
113 *p = entry;
114 return &entry->next;
115}
116
9ce43d1c 117static struct object_list **process_blob(struct blob *blob, struct object_list **p, const char *name)
9de48752
LT
118{
119 struct object *obj = &blob->object;
120
121 if (!blob_objects)
122 return p;
123 if (obj->flags & (UNINTERESTING | SEEN))
124 return p;
125 obj->flags |= SEEN;
9ce43d1c 126 return add_object(obj, p, name);
9de48752
LT
127}
128
9ce43d1c 129static struct object_list **process_tree(struct tree *tree, struct object_list **p, const char *name)
9de48752
LT
130{
131 struct object *obj = &tree->object;
132 struct tree_entry_list *entry;
133
134 if (!tree_objects)
135 return p;
136 if (obj->flags & (UNINTERESTING | SEEN))
137 return p;
138 if (parse_tree(tree) < 0)
139 die("bad tree object %s", sha1_to_hex(obj->sha1));
140 obj->flags |= SEEN;
9ce43d1c 141 p = add_object(obj, p, name);
9de48752
LT
142 for (entry = tree->entries ; entry ; entry = entry->next) {
143 if (entry->directory)
9ce43d1c 144 p = process_tree(entry->item.tree, p, entry->name);
9de48752 145 else
9ce43d1c 146 p = process_blob(entry->item.blob, p, entry->name);
9de48752
LT
147 }
148 return p;
149}
150
36f8d174
LT
151static struct object_list *pending_objects = NULL;
152
81f2bb1f
LT
153static void show_commit_list(struct commit_list *list)
154{
36f8d174 155 struct object_list *objects = NULL, **p = &objects, *pending;
81f2bb1f
LT
156 while (list) {
157 struct commit *commit = pop_most_recent_commit(&list, SEEN);
158
9ce43d1c 159 p = process_tree(commit->tree, p, "");
a3437b8c 160 if (process_commit(commit) == STOP)
81f2bb1f 161 break;
81f2bb1f 162 }
36f8d174
LT
163 for (pending = pending_objects; pending; pending = pending->next) {
164 struct object *obj = pending->item;
165 const char *name = pending->name;
166 if (obj->flags & (UNINTERESTING | SEEN))
167 continue;
168 if (obj->type == tag_type) {
169 obj->flags |= SEEN;
170 p = add_object(obj, p, name);
171 continue;
172 }
173 if (obj->type == tree_type) {
174 p = process_tree((struct tree *)obj, p, name);
175 continue;
176 }
177 if (obj->type == blob_type) {
178 p = process_blob((struct blob *)obj, p, name);
179 continue;
180 }
181 die("unknown pending object %s (%s)", sha1_to_hex(obj->sha1), name);
182 }
9de48752 183 while (objects) {
9ce43d1c 184 printf("%s %s\n", sha1_to_hex(objects->item->sha1), objects->name);
9de48752
LT
185 objects = objects->next;
186 }
187}
188
189static void mark_blob_uninteresting(struct blob *blob)
190{
191 if (!blob_objects)
192 return;
193 if (blob->object.flags & UNINTERESTING)
194 return;
195 blob->object.flags |= UNINTERESTING;
196}
197
198static void mark_tree_uninteresting(struct tree *tree)
199{
200 struct object *obj = &tree->object;
201 struct tree_entry_list *entry;
202
203 if (!tree_objects)
204 return;
205 if (obj->flags & UNINTERESTING)
206 return;
207 obj->flags |= UNINTERESTING;
208 if (parse_tree(tree) < 0)
209 die("bad tree %s", sha1_to_hex(obj->sha1));
210 entry = tree->entries;
211 while (entry) {
212 if (entry->directory)
213 mark_tree_uninteresting(entry->item.tree);
214 else
215 mark_blob_uninteresting(entry->item.blob);
216 entry = entry->next;
217 }
81f2bb1f
LT
218}
219
8906300f
LT
220static void mark_parents_uninteresting(struct commit *commit)
221{
222 struct commit_list *parents = commit->parents;
223
9de48752
LT
224 if (tree_objects)
225 mark_tree_uninteresting(commit->tree);
8906300f
LT
226 while (parents) {
227 struct commit *commit = parents->item;
228 commit->object.flags |= UNINTERESTING;
229 parents = parents->next;
230 }
231}
232
233static int everybody_uninteresting(struct commit_list *list)
234{
235 while (list) {
236 struct commit *commit = list->item;
237 list = list->next;
238 if (commit->object.flags & UNINTERESTING)
239 continue;
240 return 0;
241 }
242 return 1;
243}
244
8b3a1e05
LT
245/*
246 * This is a truly stupid algorithm, but it's only
247 * used for bisection, and we just don't care enough.
248 *
249 * We care just barely enough to avoid recursing for
250 * non-merge entries.
251 */
252static int count_distance(struct commit_list *entry)
253{
254 int nr = 0;
255
256 while (entry) {
257 struct commit *commit = entry->item;
258 struct commit_list *p;
259
260 if (commit->object.flags & (UNINTERESTING | COUNTED))
261 break;
262 nr++;
263 commit->object.flags |= COUNTED;
264 p = commit->parents;
265 entry = p;
266 if (p) {
267 p = p->next;
268 while (p) {
269 nr += count_distance(p);
270 p = p->next;
271 }
272 }
273 }
274 return nr;
275}
276
3d958064 277static void clear_distance(struct commit_list *list)
8b3a1e05
LT
278{
279 while (list) {
280 struct commit *commit = list->item;
281 commit->object.flags &= ~COUNTED;
282 list = list->next;
283 }
284}
285
286static struct commit_list *find_bisection(struct commit_list *list)
287{
288 int nr, closest;
289 struct commit_list *p, *best;
290
291 nr = 0;
292 p = list;
293 while (p) {
294 nr++;
295 p = p->next;
296 }
297 closest = 0;
298 best = list;
299
300 p = list;
301 while (p) {
302 int distance = count_distance(p);
303 clear_distance(list);
304 if (nr - distance < distance)
305 distance = nr - distance;
306 if (distance > closest) {
307 best = p;
308 closest = distance;
309 }
310 p = p->next;
311 }
312 if (best)
313 best->next = NULL;
314 return best;
315}
316
6da4016a 317static struct commit_list *limit_list(struct commit_list *list)
3b42a63c
LT
318{
319 struct commit_list *newlist = NULL;
320 struct commit_list **p = &newlist;
36f8d174 321 while (list) {
3b42a63c
LT
322 struct commit *commit = pop_most_recent_commit(&list, SEEN);
323 struct object *obj = &commit->object;
324
12d2a187
LT
325 if (unpacked && has_sha1_pack(obj->sha1))
326 obj->flags |= UNINTERESTING;
337cb3fb 327 if (obj->flags & UNINTERESTING) {
3b42a63c
LT
328 mark_parents_uninteresting(commit);
329 if (everybody_uninteresting(list))
330 break;
331 continue;
332 }
333 p = &commit_list_insert(commit, p)->next;
36f8d174 334 }
8b3a1e05
LT
335 if (bisect_list)
336 newlist = find_bisection(newlist);
3b42a63c
LT
337 return newlist;
338}
339
36f8d174
LT
340static void add_pending_object(struct object *obj, const char *name)
341{
342 add_object(obj, &pending_objects, name);
343}
344
3c90f03d
LT
345static struct commit *get_commit_reference(const char *name, unsigned int flags)
346{
347 unsigned char sha1[20];
36f8d174 348 struct object *object;
3c90f03d
LT
349
350 if (get_sha1(name, sha1))
351 usage(rev_list_usage);
36f8d174
LT
352 object = parse_object(sha1);
353 if (!object)
354 die("bad object %s", name);
355
356 /*
357 * Tag object? Look what it points to..
358 */
359 if (object->type == tag_type) {
360 struct tag *tag = (struct tag *) object;
361 object->flags |= flags;
362 if (tag_objects && !(object->flags & UNINTERESTING))
363 add_pending_object(object, tag->tag);
364 object = tag->tagged;
365 }
366
367 /*
368 * Commit object? Just return it, we'll do all the complex
369 * reachability crud.
370 */
371 if (object->type == commit_type) {
372 struct commit *commit = (struct commit *)object;
373 object->flags |= flags;
374 if (parse_commit(commit) < 0)
375 die("unable to parse commit %s", name);
376 return commit;
377 }
378
379 /*
380 * Tree object? Either mark it uniniteresting, or add it
381 * to the list of objects to look at later..
382 */
383 if (object->type == tree_type) {
384 struct tree *tree = (struct tree *)object;
385 if (!tree_objects)
960bba0d 386 return NULL;
36f8d174
LT
387 if (flags & UNINTERESTING) {
388 mark_tree_uninteresting(tree);
389 return NULL;
390 }
391 add_pending_object(object, "");
392 return NULL;
393 }
394
395 /*
396 * Blob object? You know the drill by now..
397 */
398 if (object->type == blob_type) {
399 struct blob *blob = (struct blob *)object;
400 if (!blob_objects)
960bba0d 401 return NULL;
36f8d174
LT
402 if (flags & UNINTERESTING) {
403 mark_blob_uninteresting(blob);
404 return NULL;
405 }
406 add_pending_object(object, "");
407 return NULL;
408 }
409 die("%s is unknown object", name);
3c90f03d
LT
410}
411
64745109
LT
412int main(int argc, char **argv)
413{
64745109 414 struct commit_list *list = NULL;
337cb3fb 415 int i, limited = 0;
64745109 416
fcfda02b 417 for (i = 1 ; i < argc; i++) {
337cb3fb 418 int flags;
fcfda02b 419 char *arg = argv[i];
337cb3fb 420 struct commit *commit;
fcfda02b
KS
421
422 if (!strncmp(arg, "--max-count=", 12)) {
423 max_count = atoi(arg + 12);
a6f68d47
LT
424 continue;
425 }
426 if (!strncmp(arg, "--max-age=", 10)) {
fcfda02b 427 max_age = atoi(arg + 10);
a6f68d47
LT
428 continue;
429 }
430 if (!strncmp(arg, "--min-age=", 10)) {
fcfda02b 431 min_age = atoi(arg + 10);
a6f68d47 432 continue;
fcfda02b 433 }
a6f68d47
LT
434 if (!strcmp(arg, "--header")) {
435 verbose_header = 1;
436 continue;
437 }
000182ea
LT
438 if (!strncmp(arg, "--pretty", 8)) {
439 commit_format = get_commit_format(arg+8);
9d97aa64 440 verbose_header = 1;
9d97aa64
LT
441 hdr_termination = '\n';
442 prefix = "commit ";
443 continue;
444 }
97658004
LT
445 if (!strcmp(arg, "--parents")) {
446 show_parents = 1;
447 continue;
448 }
8b3a1e05
LT
449 if (!strcmp(arg, "--bisect")) {
450 bisect_list = 1;
451 continue;
452 }
9de48752 453 if (!strcmp(arg, "--objects")) {
3c90f03d 454 tag_objects = 1;
9de48752
LT
455 tree_objects = 1;
456 blob_objects = 1;
457 continue;
458 }
12d2a187
LT
459 if (!strcmp(arg, "--unpacked")) {
460 unpacked = 1;
461 limited = 1;
462 continue;
463 }
a3437b8c
JS
464 if (!strncmp(arg, "--merge-order", 13)) {
465 merge_order = 1;
466 continue;
467 }
468 if (!strncmp(arg, "--show-breaks", 13)) {
469 show_breaks = 1;
470 continue;
471 }
a6f68d47 472
337cb3fb
LT
473 flags = 0;
474 if (*arg == '^') {
475 flags = UNINTERESTING;
476 arg++;
477 limited = 1;
478 }
3c90f03d 479 if (show_breaks && !merge_order)
a6f68d47 480 usage(rev_list_usage);
3c90f03d
LT
481 commit = get_commit_reference(arg, flags);
482 if (!commit)
483 continue;
337cb3fb 484 commit_list_insert(commit, &list);
fcfda02b
KS
485 }
486
a3437b8c 487 if (!merge_order) {
17ebe977 488 if (limited)
a3437b8c
JS
489 list = limit_list(list);
490 show_commit_list(list);
a3437b8c 491 } else {
a3437b8c
JS
492 if (sort_list_in_merge_order(list, &process_commit)) {
493 die("merge order sort failed\n");
494 }
a3437b8c 495 }
8906300f 496
64745109
LT
497 return 0;
498}