10 static char *path_name(struct name_path
*path
, const char *name
)
14 int nlen
= strlen(name
);
17 for (p
= path
; p
; p
= p
->up
) {
19 len
+= p
->elem_len
+ 1;
22 m
= n
+ len
- (nlen
+ 1);
24 for (p
= path
; p
; p
= p
->up
) {
27 memcpy(m
, p
->elem
, p
->elem_len
);
34 struct object_list
**add_object(struct object
*obj
,
35 struct object_list
**p
,
36 struct name_path
*path
,
39 struct object_list
*entry
= xmalloc(sizeof(*entry
));
42 entry
->name
= path_name(path
, name
);
47 static void mark_blob_uninteresting(struct blob
*blob
)
49 if (blob
->object
.flags
& UNINTERESTING
)
51 blob
->object
.flags
|= UNINTERESTING
;
54 void mark_tree_uninteresting(struct tree
*tree
)
56 struct object
*obj
= &tree
->object
;
57 struct tree_entry_list
*entry
;
59 if (obj
->flags
& UNINTERESTING
)
61 obj
->flags
|= UNINTERESTING
;
62 if (!has_sha1_file(obj
->sha1
))
64 if (parse_tree(tree
) < 0)
65 die("bad tree %s", sha1_to_hex(obj
->sha1
));
66 entry
= tree
->entries
;
69 struct tree_entry_list
*next
= entry
->next
;
71 mark_tree_uninteresting(entry
->item
.tree
);
73 mark_blob_uninteresting(entry
->item
.blob
);
79 void mark_parents_uninteresting(struct commit
*commit
)
81 struct commit_list
*parents
= commit
->parents
;
84 struct commit
*commit
= parents
->item
;
85 if (!(commit
->object
.flags
& UNINTERESTING
)) {
86 commit
->object
.flags
|= UNINTERESTING
;
89 * Normally we haven't parsed the parent
90 * yet, so we won't have a parent of a parent
91 * here. However, it may turn out that we've
92 * reached this commit some other way (where it
93 * wasn't uninteresting), in which case we need
94 * to mark its parents recursively too..
97 mark_parents_uninteresting(commit
);
101 * A missing commit is ok iff its parent is marked
104 * We just mark such a thing parsed, so that when
105 * it is popped next time around, we won't be trying
106 * to parse it and get an error.
108 if (!has_sha1_file(commit
->object
.sha1
))
109 commit
->object
.parsed
= 1;
110 parents
= parents
->next
;
114 static void add_pending_object(struct rev_info
*revs
, struct object
*obj
, const char *name
)
116 add_object(obj
, &revs
->pending_objects
, NULL
, name
);
119 static struct commit
*get_commit_reference(struct rev_info
*revs
, const char *name
, const unsigned char *sha1
, unsigned int flags
)
121 struct object
*object
;
123 object
= parse_object(sha1
);
125 die("bad object %s", name
);
128 * Tag object? Look what it points to..
130 while (object
->type
== tag_type
) {
131 struct tag
*tag
= (struct tag
*) object
;
132 object
->flags
|= flags
;
133 if (revs
->tag_objects
&& !(object
->flags
& UNINTERESTING
))
134 add_pending_object(revs
, object
, tag
->tag
);
135 object
= parse_object(tag
->tagged
->sha1
);
137 die("bad object %s", sha1_to_hex(tag
->tagged
->sha1
));
141 * Commit object? Just return it, we'll do all the complex
144 if (object
->type
== commit_type
) {
145 struct commit
*commit
= (struct commit
*)object
;
146 object
->flags
|= flags
;
147 if (parse_commit(commit
) < 0)
148 die("unable to parse commit %s", name
);
149 if (flags
& UNINTERESTING
) {
150 mark_parents_uninteresting(commit
);
157 * Tree object? Either mark it uniniteresting, or add it
158 * to the list of objects to look at later..
160 if (object
->type
== tree_type
) {
161 struct tree
*tree
= (struct tree
*)object
;
162 if (!revs
->tree_objects
)
164 if (flags
& UNINTERESTING
) {
165 mark_tree_uninteresting(tree
);
168 add_pending_object(revs
, object
, "");
173 * Blob object? You know the drill by now..
175 if (object
->type
== blob_type
) {
176 struct blob
*blob
= (struct blob
*)object
;
177 if (!revs
->blob_objects
)
179 if (flags
& UNINTERESTING
) {
180 mark_blob_uninteresting(blob
);
183 add_pending_object(revs
, object
, "");
186 die("%s is unknown object", name
);
189 static int everybody_uninteresting(struct commit_list
*orig
)
191 struct commit_list
*list
= orig
;
193 struct commit
*commit
= list
->item
;
195 if (commit
->object
.flags
& UNINTERESTING
)
204 #define TREE_DIFFERENT 2
205 static int tree_difference
= TREE_SAME
;
207 static void file_add_remove(struct diff_options
*options
,
208 int addremove
, unsigned mode
,
209 const unsigned char *sha1
,
210 const char *base
, const char *path
)
212 int diff
= TREE_DIFFERENT
;
215 * Is it an add of a new file? It means that
216 * the old tree didn't have it at all, so we
217 * will turn "TREE_SAME" -> "TREE_NEW", but
218 * leave any "TREE_DIFFERENT" alone (and if
219 * it already was "TREE_NEW", we'll keep it
220 * "TREE_NEW" of course).
222 if (addremove
== '+') {
223 diff
= tree_difference
;
224 if (diff
!= TREE_SAME
)
228 tree_difference
= diff
;
231 static void file_change(struct diff_options
*options
,
232 unsigned old_mode
, unsigned new_mode
,
233 const unsigned char *old_sha1
,
234 const unsigned char *new_sha1
,
235 const char *base
, const char *path
)
237 tree_difference
= TREE_DIFFERENT
;
240 static struct diff_options diff_opt
= {
242 .add_remove
= file_add_remove
,
243 .change
= file_change
,
246 static int compare_tree(struct tree
*t1
, struct tree
*t2
)
251 return TREE_DIFFERENT
;
252 tree_difference
= TREE_SAME
;
253 if (diff_tree_sha1(t1
->object
.sha1
, t2
->object
.sha1
, "", &diff_opt
) < 0)
254 return TREE_DIFFERENT
;
255 return tree_difference
;
258 static int same_tree_as_empty(struct tree
*t1
)
262 struct tree_desc empty
, real
;
267 tree
= read_object_with_reference(t1
->object
.sha1
, "tree", &real
.size
, NULL
);
276 retval
= diff_tree(&empty
, &real
, "", &diff_opt
);
279 return retval
>= 0 && !tree_difference
;
282 static void try_to_simplify_commit(struct rev_info
*revs
, struct commit
*commit
)
284 struct commit_list
**pp
, *parent
;
289 if (!commit
->parents
) {
290 if (!same_tree_as_empty(commit
->tree
))
291 commit
->object
.flags
|= TREECHANGE
;
295 pp
= &commit
->parents
;
296 while ((parent
= *pp
) != NULL
) {
297 struct commit
*p
= parent
->item
;
299 if (p
->object
.flags
& UNINTERESTING
) {
305 switch (compare_tree(p
->tree
, commit
->tree
)) {
308 commit
->parents
= parent
;
312 if (revs
->remove_empty_trees
&& same_tree_as_empty(p
->tree
)) {
321 die("bad tree compare for commit %s", sha1_to_hex(commit
->object
.sha1
));
323 commit
->object
.flags
|= TREECHANGE
;
326 static void add_parents_to_list(struct rev_info
*revs
, struct commit
*commit
, struct commit_list
**list
)
328 struct commit_list
*parent
= commit
->parents
;
331 * If the commit is uninteresting, don't try to
332 * prune parents - we want the maximal uninteresting
335 * Normally we haven't parsed the parent
336 * yet, so we won't have a parent of a parent
337 * here. However, it may turn out that we've
338 * reached this commit some other way (where it
339 * wasn't uninteresting), in which case we need
340 * to mark its parents recursively too..
342 if (commit
->object
.flags
& UNINTERESTING
) {
344 struct commit
*p
= parent
->item
;
345 parent
= parent
->next
;
347 p
->object
.flags
|= UNINTERESTING
;
349 mark_parents_uninteresting(p
);
350 if (p
->object
.flags
& SEEN
)
352 p
->object
.flags
|= SEEN
;
353 insert_by_date(p
, list
);
359 * Ok, the commit wasn't uninteresting. Try to
360 * simplify the commit history and find the parent
361 * that has no differences in the path set if one exists.
364 try_to_simplify_commit(revs
, commit
);
366 parent
= commit
->parents
;
368 struct commit
*p
= parent
->item
;
370 parent
= parent
->next
;
373 if (p
->object
.flags
& SEEN
)
375 p
->object
.flags
|= SEEN
;
376 insert_by_date(p
, list
);
380 static void limit_list(struct rev_info
*revs
)
382 struct commit_list
*list
= revs
->commits
;
383 struct commit_list
*newlist
= NULL
;
384 struct commit_list
**p
= &newlist
;
387 diff_tree_setup_paths(revs
->paths
);
390 struct commit_list
*entry
= list
;
391 struct commit
*commit
= list
->item
;
392 struct object
*obj
= &commit
->object
;
397 if (revs
->max_age
!= -1 && (commit
->date
< revs
->max_age
))
398 obj
->flags
|= UNINTERESTING
;
399 if (revs
->unpacked
&& has_sha1_pack(obj
->sha1
))
400 obj
->flags
|= UNINTERESTING
;
401 add_parents_to_list(revs
, commit
, &list
);
402 if (obj
->flags
& UNINTERESTING
) {
403 mark_parents_uninteresting(commit
);
404 if (everybody_uninteresting(list
))
408 if (revs
->min_age
!= -1 && (commit
->date
> revs
->min_age
))
410 p
= &commit_list_insert(commit
, p
)->next
;
412 revs
->commits
= newlist
;
415 static void add_one_commit(struct commit
*commit
, struct rev_info
*revs
)
417 if (!commit
|| (commit
->object
.flags
& SEEN
))
419 commit
->object
.flags
|= SEEN
;
420 commit_list_insert(commit
, &revs
->commits
);
423 static int all_flags
;
424 static struct rev_info
*all_revs
;
426 static int handle_one_ref(const char *path
, const unsigned char *sha1
)
428 struct commit
*commit
= get_commit_reference(all_revs
, path
, sha1
, all_flags
);
429 add_one_commit(commit
, all_revs
);
433 static void handle_all(struct rev_info
*revs
, unsigned flags
)
437 for_each_ref(handle_one_ref
);
441 * Parse revision information, filling in the "rev_info" structure,
442 * and removing the used arguments from the argument list.
444 * Returns the number of arguments left that weren't recognized
445 * (which are also moved to the head of the argument list)
447 int setup_revisions(int argc
, const char **argv
, struct rev_info
*revs
, const char *def
)
449 int i
, flags
, seen_dashdash
;
450 const char **unrecognized
= argv
+ 1;
453 memset(revs
, 0, sizeof(*revs
));
456 revs
->prefix
= setup_git_directory();
459 revs
->max_count
= -1;
461 /* First, search for "--" */
463 for (i
= 1; i
< argc
; i
++) {
464 const char *arg
= argv
[i
];
465 if (strcmp(arg
, "--"))
469 revs
->paths
= get_pathspec(revs
->prefix
, argv
+ i
+ 1);
475 for (i
= 1; i
< argc
; i
++) {
476 struct commit
*commit
;
477 const char *arg
= argv
[i
];
478 unsigned char sha1
[20];
483 if (!strncmp(arg
, "--max-count=", 12)) {
484 revs
->max_count
= atoi(arg
+ 12);
487 /* accept -<digit>, like traditilnal "head" */
488 if ((*arg
== '-') && isdigit(arg
[1])) {
489 revs
->max_count
= atoi(arg
+ 1);
492 if (!strcmp(arg
, "-n")) {
494 die("-n requires an argument");
495 revs
->max_count
= atoi(argv
[++i
]);
498 if (!strncmp(arg
,"-n",2)) {
499 revs
->max_count
= atoi(arg
+ 2);
502 if (!strncmp(arg
, "--max-age=", 10)) {
503 revs
->max_age
= atoi(arg
+ 10);
507 if (!strncmp(arg
, "--min-age=", 10)) {
508 revs
->min_age
= atoi(arg
+ 10);
512 if (!strncmp(arg
, "--since=", 8)) {
513 revs
->max_age
= approxidate(arg
+ 8);
517 if (!strncmp(arg
, "--after=", 8)) {
518 revs
->max_age
= approxidate(arg
+ 8);
522 if (!strncmp(arg
, "--before=", 9)) {
523 revs
->min_age
= approxidate(arg
+ 9);
527 if (!strncmp(arg
, "--until=", 8)) {
528 revs
->min_age
= approxidate(arg
+ 8);
532 if (!strcmp(arg
, "--all")) {
533 handle_all(revs
, flags
);
536 if (!strcmp(arg
, "--not")) {
537 flags
^= UNINTERESTING
;
540 if (!strcmp(arg
, "--default")) {
542 die("bad --default argument");
546 if (!strcmp(arg
, "--topo-order")) {
547 revs
->topo_order
= 1;
551 if (!strcmp(arg
, "--date-order")) {
553 revs
->topo_order
= 1;
557 if (!strcmp(arg
, "--dense")) {
561 if (!strcmp(arg
, "--sparse")) {
565 if (!strcmp(arg
, "--remove-empty")) {
566 revs
->remove_empty_trees
= 1;
569 if (!strncmp(arg
, "--no-merges", 11)) {
573 if (!strcmp(arg
, "--objects")) {
574 revs
->tag_objects
= 1;
575 revs
->tree_objects
= 1;
576 revs
->blob_objects
= 1;
579 if (!strcmp(arg
, "--objects-edge")) {
580 revs
->tag_objects
= 1;
581 revs
->tree_objects
= 1;
582 revs
->blob_objects
= 1;
586 if (!strcmp(arg
, "--unpacked")) {
591 *unrecognized
++ = arg
;
595 dotdot
= strstr(arg
, "..");
597 unsigned char from_sha1
[20];
598 char *next
= dotdot
+ 2;
602 if (!get_sha1(arg
, from_sha1
) && !get_sha1(next
, sha1
)) {
603 struct commit
*exclude
;
604 struct commit
*include
;
606 exclude
= get_commit_reference(revs
, arg
, from_sha1
, flags
^ UNINTERESTING
);
607 include
= get_commit_reference(revs
, next
, sha1
, flags
);
608 if (!exclude
|| !include
)
609 die("Invalid revision range %s..%s", arg
, next
);
610 add_one_commit(exclude
, revs
);
611 add_one_commit(include
, revs
);
618 local_flags
= UNINTERESTING
;
621 if (get_sha1(arg
, sha1
) < 0) {
625 if (seen_dashdash
|| local_flags
)
626 die("bad revision '%s'", arg
);
628 /* If we didn't have a "--", all filenames must exist */
629 for (j
= i
; j
< argc
; j
++) {
630 if (lstat(argv
[j
], &st
) < 0)
631 die("'%s': %s", arg
, strerror(errno
));
633 revs
->paths
= get_pathspec(revs
->prefix
, argv
+ i
);
636 commit
= get_commit_reference(revs
, arg
, sha1
, flags
^ local_flags
);
637 add_one_commit(commit
, revs
);
639 if (def
&& !revs
->commits
) {
640 unsigned char sha1
[20];
641 struct commit
*commit
;
642 if (get_sha1(def
, sha1
) < 0)
643 die("bad default revision '%s'", def
);
644 commit
= get_commit_reference(revs
, def
, sha1
, 0);
645 add_one_commit(commit
, revs
);
652 void prepare_revision_walk(struct rev_info
*revs
)
654 sort_by_date(&revs
->commits
);
657 if (revs
->topo_order
)
658 sort_in_topological_order(&revs
->commits
, revs
->lifo
);
661 static int rewrite_one(struct commit
**pp
)
664 struct commit
*p
= *pp
;
665 if (p
->object
.flags
& (TREECHANGE
| UNINTERESTING
))
669 *pp
= p
->parents
->item
;
673 static void rewrite_parents(struct commit
*commit
)
675 struct commit_list
**pp
= &commit
->parents
;
677 struct commit_list
*parent
= *pp
;
678 if (rewrite_one(&parent
->item
) < 0) {
686 struct commit
*get_revision(struct rev_info
*revs
)
688 struct commit_list
*list
= revs
->commits
;
693 /* Check the max_count ... */
694 switch (revs
->max_count
) {
704 struct commit
*commit
= revs
->commits
->item
;
706 if (commit
->object
.flags
& (UNINTERESTING
|SHOWN
))
708 if (revs
->min_age
!= -1 && (commit
->date
> revs
->min_age
))
710 if (revs
->max_age
!= -1 && (commit
->date
< revs
->max_age
))
712 if (revs
->no_merges
&& commit
->parents
&& commit
->parents
->next
)
714 if (revs
->paths
&& revs
->dense
) {
715 if (!(commit
->object
.flags
& TREECHANGE
))
717 rewrite_parents(commit
);
721 pop_most_recent_commit(&revs
->commits
, SEEN
);
722 commit
->object
.flags
|= SHOWN
;
725 pop_most_recent_commit(&revs
->commits
, SEEN
);
726 } while (revs
->commits
);