4 * Copyright (c) 2006, Junio C Hamano
12 #include "tree-walk.h"
17 #include "xdiff-interface.h"
18 #include "cache-tree.h"
19 #include "string-list.h"
21 #include "parse-options.h"
24 static char blame_usage
[] = "git blame [options] [rev-opts] [rev] [--] file";
26 static const char *blame_opt_usage
[] = {
29 "[rev-opts] are documented in git-rev-list(1)",
33 static int longest_file
;
34 static int longest_author
;
35 static int max_orig_digits
;
36 static int max_digits
;
37 static int max_score_digits
;
40 static int blank_boundary
;
41 static int incremental
;
42 static int xdl_opts
= XDF_NEED_MINIMAL
;
44 static enum date_mode blame_date_mode
= DATE_ISO8601
;
45 static size_t blame_date_width
;
47 static struct string_list mailmap
;
54 static int num_read_blob
;
55 static int num_get_patch
;
56 static int num_commits
;
58 #define PICKAXE_BLAME_MOVE 01
59 #define PICKAXE_BLAME_COPY 02
60 #define PICKAXE_BLAME_COPY_HARDER 04
61 #define PICKAXE_BLAME_COPY_HARDEST 010
64 * blame for a blame_entry with score lower than these thresholds
65 * is not passed to the parent using move/copy logic.
67 static unsigned blame_move_score
;
68 static unsigned blame_copy_score
;
69 #define BLAME_DEFAULT_MOVE_SCORE 20
70 #define BLAME_DEFAULT_COPY_SCORE 40
72 /* bits #0..7 in revision.h, #8..11 used for merge_bases() in commit.c */
73 #define METAINFO_SHOWN (1u<<12)
74 #define MORE_THAN_ONE_PATH (1u<<13)
77 * One blob in a commit that is being suspected
81 struct origin
*previous
;
82 struct commit
*commit
;
84 unsigned char blob_sha1
[20];
85 char path
[FLEX_ARRAY
];
89 * Given an origin, prepare mmfile_t structure to be used by the
92 static void fill_origin_blob(struct origin
*o
, mmfile_t
*file
)
95 enum object_type type
;
97 file
->ptr
= read_sha1_file(o
->blob_sha1
, &type
,
98 (unsigned long *)(&(file
->size
)));
100 die("Cannot read blob %s for path %s",
101 sha1_to_hex(o
->blob_sha1
),
110 * Origin is refcounted and usually we keep the blob contents to be
113 static inline struct origin
*origin_incref(struct origin
*o
)
120 static void origin_decref(struct origin
*o
)
122 if (o
&& --o
->refcnt
<= 0) {
124 origin_decref(o
->previous
);
130 static void drop_origin_blob(struct origin
*o
)
139 * Each group of lines is described by a blame_entry; it can be split
140 * as we pass blame to the parents. They form a linked list in the
141 * scoreboard structure, sorted by the target line number.
144 struct blame_entry
*prev
;
145 struct blame_entry
*next
;
147 /* the first line of this group in the final image;
148 * internally all line numbers are 0 based.
152 /* how many lines this group has */
155 /* the commit that introduced this group into the final image */
156 struct origin
*suspect
;
158 /* true if the suspect is truly guilty; false while we have not
159 * checked if the group came from one of its parents.
163 /* true if the entry has been scanned for copies in the current parent
167 /* the line number of the first line of this group in the
168 * suspect's file; internally all line numbers are 0 based.
172 /* how significant this entry is -- cached to avoid
173 * scanning the lines over and over.
179 * The current state of the blame assignment.
182 /* the final commit (i.e. where we started digging from) */
183 struct commit
*final
;
184 struct rev_info
*revs
;
188 * The contents in the final image.
189 * Used by many functions to obtain contents of the nth line,
190 * indexed with scoreboard.lineno[blame_entry.lno].
192 const char *final_buf
;
193 unsigned long final_buf_size
;
195 /* linked list of blames */
196 struct blame_entry
*ent
;
198 /* look-up a line in the final buffer */
203 static inline int same_suspect(struct origin
*a
, struct origin
*b
)
207 if (a
->commit
!= b
->commit
)
209 return !strcmp(a
->path
, b
->path
);
212 static void sanity_check_refcnt(struct scoreboard
*);
215 * If two blame entries that are next to each other came from
216 * contiguous lines in the same origin (i.e. <commit, path> pair),
217 * merge them together.
219 static void coalesce(struct scoreboard
*sb
)
221 struct blame_entry
*ent
, *next
;
223 for (ent
= sb
->ent
; ent
&& (next
= ent
->next
); ent
= next
) {
224 if (same_suspect(ent
->suspect
, next
->suspect
) &&
225 ent
->guilty
== next
->guilty
&&
226 ent
->s_lno
+ ent
->num_lines
== next
->s_lno
) {
227 ent
->num_lines
+= next
->num_lines
;
228 ent
->next
= next
->next
;
230 ent
->next
->prev
= ent
;
231 origin_decref(next
->suspect
);
234 next
= ent
; /* again */
238 if (DEBUG
) /* sanity */
239 sanity_check_refcnt(sb
);
243 * Given a commit and a path in it, create a new origin structure.
244 * The callers that add blame to the scoreboard should use
245 * get_origin() to obtain shared, refcounted copy instead of calling
246 * this function directly.
248 static struct origin
*make_origin(struct commit
*commit
, const char *path
)
251 o
= xcalloc(1, sizeof(*o
) + strlen(path
) + 1);
254 strcpy(o
->path
, path
);
259 * Locate an existing origin or create a new one.
261 static struct origin
*get_origin(struct scoreboard
*sb
,
262 struct commit
*commit
,
265 struct blame_entry
*e
;
267 for (e
= sb
->ent
; e
; e
= e
->next
) {
268 if (e
->suspect
->commit
== commit
&&
269 !strcmp(e
->suspect
->path
, path
))
270 return origin_incref(e
->suspect
);
272 return make_origin(commit
, path
);
276 * Fill the blob_sha1 field of an origin if it hasn't, so that later
277 * call to fill_origin_blob() can use it to locate the data. blob_sha1
278 * for an origin is also used to pass the blame for the entire file to
279 * the parent to detect the case where a child's blob is identical to
280 * that of its parent's.
282 static int fill_blob_sha1(struct origin
*origin
)
286 if (!is_null_sha1(origin
->blob_sha1
))
288 if (get_tree_entry(origin
->commit
->object
.sha1
,
290 origin
->blob_sha1
, &mode
))
292 if (sha1_object_info(origin
->blob_sha1
, NULL
) != OBJ_BLOB
)
296 hashclr(origin
->blob_sha1
);
301 * We have an origin -- check if the same path exists in the
302 * parent and return an origin structure to represent it.
304 static struct origin
*find_origin(struct scoreboard
*sb
,
305 struct commit
*parent
,
306 struct origin
*origin
)
308 struct origin
*porigin
= NULL
;
309 struct diff_options diff_opts
;
310 const char *paths
[2];
314 * Each commit object can cache one origin in that
315 * commit. This is a freestanding copy of origin and
318 struct origin
*cached
= parent
->util
;
319 if (!strcmp(cached
->path
, origin
->path
)) {
321 * The same path between origin and its parent
322 * without renaming -- the most common case.
324 porigin
= get_origin(sb
, parent
, cached
->path
);
327 * If the origin was newly created (i.e. get_origin
328 * would call make_origin if none is found in the
329 * scoreboard), it does not know the blob_sha1,
330 * so copy it. Otherwise porigin was in the
331 * scoreboard and already knows blob_sha1.
333 if (porigin
->refcnt
== 1)
334 hashcpy(porigin
->blob_sha1
, cached
->blob_sha1
);
337 /* otherwise it was not very useful; free it */
342 /* See if the origin->path is different between parent
343 * and origin first. Most of the time they are the
344 * same and diff-tree is fairly efficient about this.
346 diff_setup(&diff_opts
);
347 DIFF_OPT_SET(&diff_opts
, RECURSIVE
);
348 diff_opts
.detect_rename
= 0;
349 diff_opts
.output_format
= DIFF_FORMAT_NO_OUTPUT
;
350 paths
[0] = origin
->path
;
353 diff_tree_setup_paths(paths
, &diff_opts
);
354 if (diff_setup_done(&diff_opts
) < 0)
357 if (is_null_sha1(origin
->commit
->object
.sha1
))
358 do_diff_cache(parent
->tree
->object
.sha1
, &diff_opts
);
360 diff_tree_sha1(parent
->tree
->object
.sha1
,
361 origin
->commit
->tree
->object
.sha1
,
363 diffcore_std(&diff_opts
);
365 /* It is either one entry that says "modified", or "created",
368 if (!diff_queued_diff
.nr
) {
369 /* The path is the same as parent */
370 porigin
= get_origin(sb
, parent
, origin
->path
);
371 hashcpy(porigin
->blob_sha1
, origin
->blob_sha1
);
373 else if (diff_queued_diff
.nr
!= 1)
374 die("internal error in blame::find_origin");
376 struct diff_filepair
*p
= diff_queued_diff
.queue
[0];
379 die("internal error in blame::find_origin (%c)",
382 porigin
= get_origin(sb
, parent
, origin
->path
);
383 hashcpy(porigin
->blob_sha1
, p
->one
->sha1
);
387 /* Did not exist in parent, or type changed */
391 diff_flush(&diff_opts
);
392 diff_tree_release_paths(&diff_opts
);
395 * Create a freestanding copy that is not part of
396 * the refcounted origin found in the scoreboard, and
397 * cache it in the commit.
399 struct origin
*cached
;
401 cached
= make_origin(porigin
->commit
, porigin
->path
);
402 hashcpy(cached
->blob_sha1
, porigin
->blob_sha1
);
403 parent
->util
= cached
;
409 * We have an origin -- find the path that corresponds to it in its
410 * parent and return an origin structure to represent it.
412 static struct origin
*find_rename(struct scoreboard
*sb
,
413 struct commit
*parent
,
414 struct origin
*origin
)
416 struct origin
*porigin
= NULL
;
417 struct diff_options diff_opts
;
419 const char *paths
[2];
421 diff_setup(&diff_opts
);
422 DIFF_OPT_SET(&diff_opts
, RECURSIVE
);
423 diff_opts
.detect_rename
= DIFF_DETECT_RENAME
;
424 diff_opts
.output_format
= DIFF_FORMAT_NO_OUTPUT
;
425 diff_opts
.single_follow
= origin
->path
;
427 diff_tree_setup_paths(paths
, &diff_opts
);
428 if (diff_setup_done(&diff_opts
) < 0)
431 if (is_null_sha1(origin
->commit
->object
.sha1
))
432 do_diff_cache(parent
->tree
->object
.sha1
, &diff_opts
);
434 diff_tree_sha1(parent
->tree
->object
.sha1
,
435 origin
->commit
->tree
->object
.sha1
,
437 diffcore_std(&diff_opts
);
439 for (i
= 0; i
< diff_queued_diff
.nr
; i
++) {
440 struct diff_filepair
*p
= diff_queued_diff
.queue
[i
];
441 if ((p
->status
== 'R' || p
->status
== 'C') &&
442 !strcmp(p
->two
->path
, origin
->path
)) {
443 porigin
= get_origin(sb
, parent
, p
->one
->path
);
444 hashcpy(porigin
->blob_sha1
, p
->one
->sha1
);
448 diff_flush(&diff_opts
);
449 diff_tree_release_paths(&diff_opts
);
454 * Link in a new blame entry to the scoreboard. Entries that cover the
455 * same line range have been removed from the scoreboard previously.
457 static void add_blame_entry(struct scoreboard
*sb
, struct blame_entry
*e
)
459 struct blame_entry
*ent
, *prev
= NULL
;
461 origin_incref(e
->suspect
);
463 for (ent
= sb
->ent
; ent
&& ent
->lno
< e
->lno
; ent
= ent
->next
)
466 /* prev, if not NULL, is the last one that is below e */
469 e
->next
= prev
->next
;
481 * src typically is on-stack; we want to copy the information in it to
482 * a malloced blame_entry that is already on the linked list of the
483 * scoreboard. The origin of dst loses a refcnt while the origin of src
486 static void dup_entry(struct blame_entry
*dst
, struct blame_entry
*src
)
488 struct blame_entry
*p
, *n
;
492 origin_incref(src
->suspect
);
493 origin_decref(dst
->suspect
);
494 memcpy(dst
, src
, sizeof(*src
));
500 static const char *nth_line(struct scoreboard
*sb
, int lno
)
502 return sb
->final_buf
+ sb
->lineno
[lno
];
506 * It is known that lines between tlno to same came from parent, and e
507 * has an overlap with that range. it also is known that parent's
508 * line plno corresponds to e's line tlno.
514 * <------------------>
516 * Split e into potentially three parts; before this chunk, the chunk
517 * to be blamed for the parent, and after that portion.
519 static void split_overlap(struct blame_entry
*split
,
520 struct blame_entry
*e
,
521 int tlno
, int plno
, int same
,
522 struct origin
*parent
)
525 memset(split
, 0, sizeof(struct blame_entry
[3]));
527 if (e
->s_lno
< tlno
) {
528 /* there is a pre-chunk part not blamed on parent */
529 split
[0].suspect
= origin_incref(e
->suspect
);
530 split
[0].lno
= e
->lno
;
531 split
[0].s_lno
= e
->s_lno
;
532 split
[0].num_lines
= tlno
- e
->s_lno
;
533 split
[1].lno
= e
->lno
+ tlno
- e
->s_lno
;
534 split
[1].s_lno
= plno
;
537 split
[1].lno
= e
->lno
;
538 split
[1].s_lno
= plno
+ (e
->s_lno
- tlno
);
541 if (same
< e
->s_lno
+ e
->num_lines
) {
542 /* there is a post-chunk part not blamed on parent */
543 split
[2].suspect
= origin_incref(e
->suspect
);
544 split
[2].lno
= e
->lno
+ (same
- e
->s_lno
);
545 split
[2].s_lno
= e
->s_lno
+ (same
- e
->s_lno
);
546 split
[2].num_lines
= e
->s_lno
+ e
->num_lines
- same
;
547 chunk_end_lno
= split
[2].lno
;
550 chunk_end_lno
= e
->lno
+ e
->num_lines
;
551 split
[1].num_lines
= chunk_end_lno
- split
[1].lno
;
554 * if it turns out there is nothing to blame the parent for,
555 * forget about the splitting. !split[1].suspect signals this.
557 if (split
[1].num_lines
< 1)
559 split
[1].suspect
= origin_incref(parent
);
563 * split_overlap() divided an existing blame e into up to three parts
564 * in split. Adjust the linked list of blames in the scoreboard to
567 static void split_blame(struct scoreboard
*sb
,
568 struct blame_entry
*split
,
569 struct blame_entry
*e
)
571 struct blame_entry
*new_entry
;
573 if (split
[0].suspect
&& split
[2].suspect
) {
574 /* The first part (reuse storage for the existing entry e) */
575 dup_entry(e
, &split
[0]);
577 /* The last part -- me */
578 new_entry
= xmalloc(sizeof(*new_entry
));
579 memcpy(new_entry
, &(split
[2]), sizeof(struct blame_entry
));
580 add_blame_entry(sb
, new_entry
);
582 /* ... and the middle part -- parent */
583 new_entry
= xmalloc(sizeof(*new_entry
));
584 memcpy(new_entry
, &(split
[1]), sizeof(struct blame_entry
));
585 add_blame_entry(sb
, new_entry
);
587 else if (!split
[0].suspect
&& !split
[2].suspect
)
589 * The parent covers the entire area; reuse storage for
590 * e and replace it with the parent.
592 dup_entry(e
, &split
[1]);
593 else if (split
[0].suspect
) {
594 /* me and then parent */
595 dup_entry(e
, &split
[0]);
597 new_entry
= xmalloc(sizeof(*new_entry
));
598 memcpy(new_entry
, &(split
[1]), sizeof(struct blame_entry
));
599 add_blame_entry(sb
, new_entry
);
602 /* parent and then me */
603 dup_entry(e
, &split
[1]);
605 new_entry
= xmalloc(sizeof(*new_entry
));
606 memcpy(new_entry
, &(split
[2]), sizeof(struct blame_entry
));
607 add_blame_entry(sb
, new_entry
);
610 if (DEBUG
) { /* sanity */
611 struct blame_entry
*ent
;
612 int lno
= sb
->ent
->lno
, corrupt
= 0;
614 for (ent
= sb
->ent
; ent
; ent
= ent
->next
) {
619 lno
+= ent
->num_lines
;
623 for (ent
= sb
->ent
; ent
; ent
= ent
->next
) {
624 printf("L %8d l %8d n %8d\n",
625 lno
, ent
->lno
, ent
->num_lines
);
626 lno
= ent
->lno
+ ent
->num_lines
;
634 * After splitting the blame, the origins used by the
635 * on-stack blame_entry should lose one refcnt each.
637 static void decref_split(struct blame_entry
*split
)
641 for (i
= 0; i
< 3; i
++)
642 origin_decref(split
[i
].suspect
);
646 * Helper for blame_chunk(). blame_entry e is known to overlap with
647 * the patch hunk; split it and pass blame to the parent.
649 static void blame_overlap(struct scoreboard
*sb
, struct blame_entry
*e
,
650 int tlno
, int plno
, int same
,
651 struct origin
*parent
)
653 struct blame_entry split
[3];
655 split_overlap(split
, e
, tlno
, plno
, same
, parent
);
656 if (split
[1].suspect
)
657 split_blame(sb
, split
, e
);
662 * Find the line number of the last line the target is suspected for.
664 static int find_last_in_target(struct scoreboard
*sb
, struct origin
*target
)
666 struct blame_entry
*e
;
667 int last_in_target
= -1;
669 for (e
= sb
->ent
; e
; e
= e
->next
) {
670 if (e
->guilty
|| !same_suspect(e
->suspect
, target
))
672 if (last_in_target
< e
->s_lno
+ e
->num_lines
)
673 last_in_target
= e
->s_lno
+ e
->num_lines
;
675 return last_in_target
;
679 * Process one hunk from the patch between the current suspect for
680 * blame_entry e and its parent. Find and split the overlap, and
681 * pass blame to the overlapping part to the parent.
683 static void blame_chunk(struct scoreboard
*sb
,
684 int tlno
, int plno
, int same
,
685 struct origin
*target
, struct origin
*parent
)
687 struct blame_entry
*e
;
689 for (e
= sb
->ent
; e
; e
= e
->next
) {
690 if (e
->guilty
|| !same_suspect(e
->suspect
, target
))
692 if (same
<= e
->s_lno
)
694 if (tlno
< e
->s_lno
+ e
->num_lines
)
695 blame_overlap(sb
, e
, tlno
, plno
, same
, parent
);
699 struct blame_chunk_cb_data
{
700 struct scoreboard
*sb
;
701 struct origin
*target
;
702 struct origin
*parent
;
707 static void blame_chunk_cb(void *data
, long same
, long p_next
, long t_next
)
709 struct blame_chunk_cb_data
*d
= data
;
710 blame_chunk(d
->sb
, d
->tlno
, d
->plno
, same
, d
->target
, d
->parent
);
716 * We are looking at the origin 'target' and aiming to pass blame
717 * for the lines it is suspected to its parent. Run diff to find
718 * which lines came from parent and pass blame for them.
720 static int pass_blame_to_parent(struct scoreboard
*sb
,
721 struct origin
*target
,
722 struct origin
*parent
)
725 mmfile_t file_p
, file_o
;
726 struct blame_chunk_cb_data d
= { sb
, target
, parent
, 0, 0 };
730 last_in_target
= find_last_in_target(sb
, target
);
731 if (last_in_target
< 0)
732 return 1; /* nothing remains for this target */
734 fill_origin_blob(parent
, &file_p
);
735 fill_origin_blob(target
, &file_o
);
738 memset(&xpp
, 0, sizeof(xpp
));
739 xpp
.flags
= xdl_opts
;
740 memset(&xecfg
, 0, sizeof(xecfg
));
742 xdi_diff_hunks(&file_p
, &file_o
, blame_chunk_cb
, &d
, &xpp
, &xecfg
);
743 /* The rest (i.e. anything after tlno) are the same as the parent */
744 blame_chunk(sb
, d
.tlno
, d
.plno
, last_in_target
, target
, parent
);
750 * The lines in blame_entry after splitting blames many times can become
751 * very small and trivial, and at some point it becomes pointless to
752 * blame the parents. E.g. "\t\t}\n\t}\n\n" appears everywhere in any
753 * ordinary C program, and it is not worth to say it was copied from
754 * totally unrelated file in the parent.
756 * Compute how trivial the lines in the blame_entry are.
758 static unsigned ent_score(struct scoreboard
*sb
, struct blame_entry
*e
)
767 cp
= nth_line(sb
, e
->lno
);
768 ep
= nth_line(sb
, e
->lno
+ e
->num_lines
);
770 unsigned ch
= *((unsigned char *)cp
);
780 * best_so_far[] and this[] are both a split of an existing blame_entry
781 * that passes blame to the parent. Maintain best_so_far the best split
782 * so far, by comparing this and best_so_far and copying this into
783 * bst_so_far as needed.
785 static void copy_split_if_better(struct scoreboard
*sb
,
786 struct blame_entry
*best_so_far
,
787 struct blame_entry
*this)
791 if (!this[1].suspect
)
793 if (best_so_far
[1].suspect
) {
794 if (ent_score(sb
, &this[1]) < ent_score(sb
, &best_so_far
[1]))
798 for (i
= 0; i
< 3; i
++)
799 origin_incref(this[i
].suspect
);
800 decref_split(best_so_far
);
801 memcpy(best_so_far
, this, sizeof(struct blame_entry
[3]));
805 * We are looking at a part of the final image represented by
806 * ent (tlno and same are offset by ent->s_lno).
807 * tlno is where we are looking at in the final image.
808 * up to (but not including) same match preimage.
809 * plno is where we are looking at in the preimage.
811 * <-------------- final image ---------------------->
814 * <---------preimage----->
817 * All line numbers are 0-based.
819 static void handle_split(struct scoreboard
*sb
,
820 struct blame_entry
*ent
,
821 int tlno
, int plno
, int same
,
822 struct origin
*parent
,
823 struct blame_entry
*split
)
825 if (ent
->num_lines
<= tlno
)
828 struct blame_entry
this[3];
831 split_overlap(this, ent
, tlno
, plno
, same
, parent
);
832 copy_split_if_better(sb
, split
, this);
837 struct handle_split_cb_data
{
838 struct scoreboard
*sb
;
839 struct blame_entry
*ent
;
840 struct origin
*parent
;
841 struct blame_entry
*split
;
846 static void handle_split_cb(void *data
, long same
, long p_next
, long t_next
)
848 struct handle_split_cb_data
*d
= data
;
849 handle_split(d
->sb
, d
->ent
, d
->tlno
, d
->plno
, same
, d
->parent
, d
->split
);
855 * Find the lines from parent that are the same as ent so that
856 * we can pass blames to it. file_p has the blob contents for
859 static void find_copy_in_blob(struct scoreboard
*sb
,
860 struct blame_entry
*ent
,
861 struct origin
*parent
,
862 struct blame_entry
*split
,
868 struct handle_split_cb_data d
= { sb
, ent
, parent
, split
, 0, 0 };
873 * Prepare mmfile that contains only the lines in ent.
875 cp
= nth_line(sb
, ent
->lno
);
876 file_o
.ptr
= (char*) cp
;
877 cnt
= ent
->num_lines
;
879 while (cnt
&& cp
< sb
->final_buf
+ sb
->final_buf_size
) {
883 file_o
.size
= cp
- file_o
.ptr
;
886 * file_o is a part of final image we are annotating.
887 * file_p partially may match that image.
889 memset(&xpp
, 0, sizeof(xpp
));
890 xpp
.flags
= xdl_opts
;
891 memset(&xecfg
, 0, sizeof(xecfg
));
893 memset(split
, 0, sizeof(struct blame_entry
[3]));
894 xdi_diff_hunks(file_p
, &file_o
, handle_split_cb
, &d
, &xpp
, &xecfg
);
895 /* remainder, if any, all match the preimage */
896 handle_split(sb
, ent
, d
.tlno
, d
.plno
, ent
->num_lines
, parent
, split
);
900 * See if lines currently target is suspected for can be attributed to
903 static int find_move_in_parent(struct scoreboard
*sb
,
904 struct origin
*target
,
905 struct origin
*parent
)
907 int last_in_target
, made_progress
;
908 struct blame_entry
*e
, split
[3];
911 last_in_target
= find_last_in_target(sb
, target
);
912 if (last_in_target
< 0)
913 return 1; /* nothing remains for this target */
915 fill_origin_blob(parent
, &file_p
);
920 while (made_progress
) {
922 for (e
= sb
->ent
; e
; e
= e
->next
) {
923 if (e
->guilty
|| !same_suspect(e
->suspect
, target
) ||
924 ent_score(sb
, e
) < blame_move_score
)
926 find_copy_in_blob(sb
, e
, parent
, split
, &file_p
);
927 if (split
[1].suspect
&&
928 blame_move_score
< ent_score(sb
, &split
[1])) {
929 split_blame(sb
, split
, e
);
939 struct blame_entry
*ent
;
940 struct blame_entry split
[3];
944 * Count the number of entries the target is suspected for,
945 * and prepare a list of entry and the best split.
947 static struct blame_list
*setup_blame_list(struct scoreboard
*sb
,
948 struct origin
*target
,
952 struct blame_entry
*e
;
954 struct blame_list
*blame_list
= NULL
;
956 for (e
= sb
->ent
, num_ents
= 0; e
; e
= e
->next
)
957 if (!e
->scanned
&& !e
->guilty
&&
958 same_suspect(e
->suspect
, target
) &&
959 min_score
< ent_score(sb
, e
))
962 blame_list
= xcalloc(num_ents
, sizeof(struct blame_list
));
963 for (e
= sb
->ent
, i
= 0; e
; e
= e
->next
)
964 if (!e
->scanned
&& !e
->guilty
&&
965 same_suspect(e
->suspect
, target
) &&
966 min_score
< ent_score(sb
, e
))
967 blame_list
[i
++].ent
= e
;
969 *num_ents_p
= num_ents
;
974 * Reset the scanned status on all entries.
976 static void reset_scanned_flag(struct scoreboard
*sb
)
978 struct blame_entry
*e
;
979 for (e
= sb
->ent
; e
; e
= e
->next
)
984 * For lines target is suspected for, see if we can find code movement
985 * across file boundary from the parent commit. porigin is the path
986 * in the parent we already tried.
988 static int find_copy_in_parent(struct scoreboard
*sb
,
989 struct origin
*target
,
990 struct commit
*parent
,
991 struct origin
*porigin
,
994 struct diff_options diff_opts
;
995 const char *paths
[1];
998 struct blame_list
*blame_list
;
1001 blame_list
= setup_blame_list(sb
, target
, blame_copy_score
, &num_ents
);
1003 return 1; /* nothing remains for this target */
1005 diff_setup(&diff_opts
);
1006 DIFF_OPT_SET(&diff_opts
, RECURSIVE
);
1007 diff_opts
.output_format
= DIFF_FORMAT_NO_OUTPUT
;
1010 diff_tree_setup_paths(paths
, &diff_opts
);
1011 if (diff_setup_done(&diff_opts
) < 0)
1014 /* Try "find copies harder" on new path if requested;
1015 * we do not want to use diffcore_rename() actually to
1016 * match things up; find_copies_harder is set only to
1017 * force diff_tree_sha1() to feed all filepairs to diff_queue,
1018 * and this code needs to be after diff_setup_done(), which
1019 * usually makes find-copies-harder imply copy detection.
1021 if ((opt
& PICKAXE_BLAME_COPY_HARDEST
)
1022 || ((opt
& PICKAXE_BLAME_COPY_HARDER
)
1023 && (!porigin
|| strcmp(target
->path
, porigin
->path
))))
1024 DIFF_OPT_SET(&diff_opts
, FIND_COPIES_HARDER
);
1026 if (is_null_sha1(target
->commit
->object
.sha1
))
1027 do_diff_cache(parent
->tree
->object
.sha1
, &diff_opts
);
1029 diff_tree_sha1(parent
->tree
->object
.sha1
,
1030 target
->commit
->tree
->object
.sha1
,
1033 if (!DIFF_OPT_TST(&diff_opts
, FIND_COPIES_HARDER
))
1034 diffcore_std(&diff_opts
);
1038 int made_progress
= 0;
1040 for (i
= 0; i
< diff_queued_diff
.nr
; i
++) {
1041 struct diff_filepair
*p
= diff_queued_diff
.queue
[i
];
1042 struct origin
*norigin
;
1044 struct blame_entry
this[3];
1046 if (!DIFF_FILE_VALID(p
->one
))
1047 continue; /* does not exist in parent */
1048 if (S_ISGITLINK(p
->one
->mode
))
1049 continue; /* ignore git links */
1050 if (porigin
&& !strcmp(p
->one
->path
, porigin
->path
))
1051 /* find_move already dealt with this path */
1054 norigin
= get_origin(sb
, parent
, p
->one
->path
);
1055 hashcpy(norigin
->blob_sha1
, p
->one
->sha1
);
1056 fill_origin_blob(norigin
, &file_p
);
1060 for (j
= 0; j
< num_ents
; j
++) {
1061 find_copy_in_blob(sb
, blame_list
[j
].ent
,
1062 norigin
, this, &file_p
);
1063 copy_split_if_better(sb
, blame_list
[j
].split
,
1067 origin_decref(norigin
);
1070 for (j
= 0; j
< num_ents
; j
++) {
1071 struct blame_entry
*split
= blame_list
[j
].split
;
1072 if (split
[1].suspect
&&
1073 blame_copy_score
< ent_score(sb
, &split
[1])) {
1074 split_blame(sb
, split
, blame_list
[j
].ent
);
1078 blame_list
[j
].ent
->scanned
= 1;
1079 decref_split(split
);
1085 blame_list
= setup_blame_list(sb
, target
, blame_copy_score
, &num_ents
);
1091 reset_scanned_flag(sb
);
1092 diff_flush(&diff_opts
);
1093 diff_tree_release_paths(&diff_opts
);
1098 * The blobs of origin and porigin exactly match, so everything
1099 * origin is suspected for can be blamed on the parent.
1101 static void pass_whole_blame(struct scoreboard
*sb
,
1102 struct origin
*origin
, struct origin
*porigin
)
1104 struct blame_entry
*e
;
1106 if (!porigin
->file
.ptr
&& origin
->file
.ptr
) {
1107 /* Steal its file */
1108 porigin
->file
= origin
->file
;
1109 origin
->file
.ptr
= NULL
;
1111 for (e
= sb
->ent
; e
; e
= e
->next
) {
1112 if (!same_suspect(e
->suspect
, origin
))
1114 origin_incref(porigin
);
1115 origin_decref(e
->suspect
);
1116 e
->suspect
= porigin
;
1121 * We pass blame from the current commit to its parents. We keep saying
1122 * "parent" (and "porigin"), but what we mean is to find scapegoat to
1123 * exonerate ourselves.
1125 static struct commit_list
*first_scapegoat(struct rev_info
*revs
, struct commit
*commit
)
1128 return commit
->parents
;
1129 return lookup_decoration(&revs
->children
, &commit
->object
);
1132 static int num_scapegoats(struct rev_info
*revs
, struct commit
*commit
)
1135 struct commit_list
*l
= first_scapegoat(revs
, commit
);
1136 for (cnt
= 0; l
; l
= l
->next
)
1143 static void pass_blame(struct scoreboard
*sb
, struct origin
*origin
, int opt
)
1145 struct rev_info
*revs
= sb
->revs
;
1146 int i
, pass
, num_sg
;
1147 struct commit
*commit
= origin
->commit
;
1148 struct commit_list
*sg
;
1149 struct origin
*sg_buf
[MAXSG
];
1150 struct origin
*porigin
, **sg_origin
= sg_buf
;
1152 num_sg
= num_scapegoats(revs
, commit
);
1155 else if (num_sg
< ARRAY_SIZE(sg_buf
))
1156 memset(sg_buf
, 0, sizeof(sg_buf
));
1158 sg_origin
= xcalloc(num_sg
, sizeof(*sg_origin
));
1161 * The first pass looks for unrenamed path to optimize for
1162 * common cases, then we look for renames in the second pass.
1164 for (pass
= 0; pass
< 2; pass
++) {
1165 struct origin
*(*find
)(struct scoreboard
*,
1166 struct commit
*, struct origin
*);
1167 find
= pass
? find_rename
: find_origin
;
1169 for (i
= 0, sg
= first_scapegoat(revs
, commit
);
1171 sg
= sg
->next
, i
++) {
1172 struct commit
*p
= sg
->item
;
1177 if (parse_commit(p
))
1179 porigin
= find(sb
, p
, origin
);
1182 if (!hashcmp(porigin
->blob_sha1
, origin
->blob_sha1
)) {
1183 pass_whole_blame(sb
, origin
, porigin
);
1184 origin_decref(porigin
);
1187 for (j
= same
= 0; j
< i
; j
++)
1189 !hashcmp(sg_origin
[j
]->blob_sha1
,
1190 porigin
->blob_sha1
)) {
1195 sg_origin
[i
] = porigin
;
1197 origin_decref(porigin
);
1202 for (i
= 0, sg
= first_scapegoat(revs
, commit
);
1204 sg
= sg
->next
, i
++) {
1205 struct origin
*porigin
= sg_origin
[i
];
1208 if (!origin
->previous
) {
1209 origin_incref(porigin
);
1210 origin
->previous
= porigin
;
1212 if (pass_blame_to_parent(sb
, origin
, porigin
))
1217 * Optionally find moves in parents' files.
1219 if (opt
& PICKAXE_BLAME_MOVE
)
1220 for (i
= 0, sg
= first_scapegoat(revs
, commit
);
1222 sg
= sg
->next
, i
++) {
1223 struct origin
*porigin
= sg_origin
[i
];
1226 if (find_move_in_parent(sb
, origin
, porigin
))
1231 * Optionally find copies from parents' files.
1233 if (opt
& PICKAXE_BLAME_COPY
)
1234 for (i
= 0, sg
= first_scapegoat(revs
, commit
);
1236 sg
= sg
->next
, i
++) {
1237 struct origin
*porigin
= sg_origin
[i
];
1238 if (find_copy_in_parent(sb
, origin
, sg
->item
,
1244 for (i
= 0; i
< num_sg
; i
++) {
1246 drop_origin_blob(sg_origin
[i
]);
1247 origin_decref(sg_origin
[i
]);
1250 drop_origin_blob(origin
);
1251 if (sg_buf
!= sg_origin
)
1256 * Information on commits, used for output.
1261 const char *author_mail
;
1262 unsigned long author_time
;
1263 const char *author_tz
;
1265 /* filled only when asked for details */
1266 const char *committer
;
1267 const char *committer_mail
;
1268 unsigned long committer_time
;
1269 const char *committer_tz
;
1271 const char *summary
;
1275 * Parse author/committer line in the commit object buffer
1277 static void get_ac_line(const char *inbuf
, const char *what
,
1278 int person_len
, char *person
,
1279 int mail_len
, char *mail
,
1280 unsigned long *time
, const char **tz
)
1282 int len
, tzlen
, maillen
;
1283 char *tmp
, *endp
, *timepos
, *mailpos
;
1285 tmp
= strstr(inbuf
, what
);
1288 tmp
+= strlen(what
);
1289 endp
= strchr(tmp
, '\n');
1294 if (person_len
<= len
) {
1302 memcpy(person
, tmp
, len
);
1310 tzlen
= (person
+len
)-(tmp
+1);
1315 *time
= strtoul(tmp
, NULL
, 10);
1323 maillen
= timepos
- tmp
;
1324 memcpy(mail
, mailpos
, maillen
);
1330 * mailmap expansion may make the name longer.
1331 * make room by pushing stuff down.
1333 tmp
= person
+ person_len
- (tzlen
+ 1);
1334 memmove(tmp
, *tz
, tzlen
);
1339 * Now, convert both name and e-mail using mailmap
1341 if(map_user(&mailmap
, mail
+1, mail_len
-1, person
, tmp
-person
-1)) {
1342 /* Add a trailing '>' to email, since map_user returns plain emails
1343 Note: It already has '<', since we replace from mail+1 */
1344 mailpos
= memchr(mail
, '\0', mail_len
);
1345 if (mailpos
&& mailpos
-mail
< mail_len
- 1) {
1347 *(mailpos
+1) = '\0';
1352 static void get_commit_info(struct commit
*commit
,
1353 struct commit_info
*ret
,
1357 char *tmp
, *endp
, *reencoded
, *message
;
1358 static char author_name
[1024];
1359 static char author_mail
[1024];
1360 static char committer_name
[1024];
1361 static char committer_mail
[1024];
1362 static char summary_buf
[1024];
1365 * We've operated without save_commit_buffer, so
1366 * we now need to populate them for output.
1368 if (!commit
->buffer
) {
1369 enum object_type type
;
1372 read_sha1_file(commit
->object
.sha1
, &type
, &size
);
1373 if (!commit
->buffer
)
1374 die("Cannot read commit %s",
1375 sha1_to_hex(commit
->object
.sha1
));
1377 reencoded
= reencode_commit_message(commit
, NULL
);
1378 message
= reencoded
? reencoded
: commit
->buffer
;
1379 ret
->author
= author_name
;
1380 ret
->author_mail
= author_mail
;
1381 get_ac_line(message
, "\nauthor ",
1382 sizeof(author_name
), author_name
,
1383 sizeof(author_mail
), author_mail
,
1384 &ret
->author_time
, &ret
->author_tz
);
1391 ret
->committer
= committer_name
;
1392 ret
->committer_mail
= committer_mail
;
1393 get_ac_line(message
, "\ncommitter ",
1394 sizeof(committer_name
), committer_name
,
1395 sizeof(committer_mail
), committer_mail
,
1396 &ret
->committer_time
, &ret
->committer_tz
);
1398 ret
->summary
= summary_buf
;
1399 tmp
= strstr(message
, "\n\n");
1402 sprintf(summary_buf
, "(%s)", sha1_to_hex(commit
->object
.sha1
));
1407 endp
= strchr(tmp
, '\n');
1409 endp
= tmp
+ strlen(tmp
);
1411 if (len
>= sizeof(summary_buf
) || len
== 0)
1413 memcpy(summary_buf
, tmp
, len
);
1414 summary_buf
[len
] = 0;
1419 * To allow LF and other nonportable characters in pathnames,
1420 * they are c-style quoted as needed.
1422 static void write_filename_info(const char *path
)
1424 printf("filename ");
1425 write_name_quoted(path
, stdout
, '\n');
1429 * Porcelain/Incremental format wants to show a lot of details per
1430 * commit. Instead of repeating this every line, emit it only once,
1431 * the first time each commit appears in the output.
1433 static int emit_one_suspect_detail(struct origin
*suspect
)
1435 struct commit_info ci
;
1437 if (suspect
->commit
->object
.flags
& METAINFO_SHOWN
)
1440 suspect
->commit
->object
.flags
|= METAINFO_SHOWN
;
1441 get_commit_info(suspect
->commit
, &ci
, 1);
1442 printf("author %s\n", ci
.author
);
1443 printf("author-mail %s\n", ci
.author_mail
);
1444 printf("author-time %lu\n", ci
.author_time
);
1445 printf("author-tz %s\n", ci
.author_tz
);
1446 printf("committer %s\n", ci
.committer
);
1447 printf("committer-mail %s\n", ci
.committer_mail
);
1448 printf("committer-time %lu\n", ci
.committer_time
);
1449 printf("committer-tz %s\n", ci
.committer_tz
);
1450 printf("summary %s\n", ci
.summary
);
1451 if (suspect
->commit
->object
.flags
& UNINTERESTING
)
1452 printf("boundary\n");
1453 if (suspect
->previous
) {
1454 struct origin
*prev
= suspect
->previous
;
1455 printf("previous %s ", sha1_to_hex(prev
->commit
->object
.sha1
));
1456 write_name_quoted(prev
->path
, stdout
, '\n');
1462 * The blame_entry is found to be guilty for the range. Mark it
1463 * as such, and show it in incremental output.
1465 static void found_guilty_entry(struct blame_entry
*ent
)
1471 struct origin
*suspect
= ent
->suspect
;
1473 printf("%s %d %d %d\n",
1474 sha1_to_hex(suspect
->commit
->object
.sha1
),
1475 ent
->s_lno
+ 1, ent
->lno
+ 1, ent
->num_lines
);
1476 emit_one_suspect_detail(suspect
);
1477 write_filename_info(suspect
->path
);
1478 maybe_flush_or_die(stdout
, "stdout");
1483 * The main loop -- while the scoreboard has lines whose true origin
1484 * is still unknown, pick one blame_entry, and allow its current
1485 * suspect to pass blames to its parents.
1487 static void assign_blame(struct scoreboard
*sb
, int opt
)
1489 struct rev_info
*revs
= sb
->revs
;
1492 struct blame_entry
*ent
;
1493 struct commit
*commit
;
1494 struct origin
*suspect
= NULL
;
1496 /* find one suspect to break down */
1497 for (ent
= sb
->ent
; !suspect
&& ent
; ent
= ent
->next
)
1499 suspect
= ent
->suspect
;
1501 return; /* all done */
1504 * We will use this suspect later in the loop,
1505 * so hold onto it in the meantime.
1507 origin_incref(suspect
);
1508 commit
= suspect
->commit
;
1509 if (!commit
->object
.parsed
)
1510 parse_commit(commit
);
1512 (!(commit
->object
.flags
& UNINTERESTING
) &&
1513 !(revs
->max_age
!= -1 && commit
->date
< revs
->max_age
)))
1514 pass_blame(sb
, suspect
, opt
);
1516 commit
->object
.flags
|= UNINTERESTING
;
1517 if (commit
->object
.parsed
)
1518 mark_parents_uninteresting(commit
);
1520 /* treat root commit as boundary */
1521 if (!commit
->parents
&& !show_root
)
1522 commit
->object
.flags
|= UNINTERESTING
;
1524 /* Take responsibility for the remaining entries */
1525 for (ent
= sb
->ent
; ent
; ent
= ent
->next
)
1526 if (same_suspect(ent
->suspect
, suspect
))
1527 found_guilty_entry(ent
);
1528 origin_decref(suspect
);
1530 if (DEBUG
) /* sanity */
1531 sanity_check_refcnt(sb
);
1535 static const char *format_time(unsigned long time
, const char *tz_str
,
1538 static char time_buf
[128];
1539 const char *time_str
;
1543 if (show_raw_time
) {
1544 sprintf(time_buf
, "%lu %s", time
, tz_str
);
1548 time_str
= show_date(time
, tz
, blame_date_mode
);
1549 time_len
= strlen(time_str
);
1550 memcpy(time_buf
, time_str
, time_len
);
1551 memset(time_buf
+ time_len
, ' ', blame_date_width
- time_len
);
1556 #define OUTPUT_ANNOTATE_COMPAT 001
1557 #define OUTPUT_LONG_OBJECT_NAME 002
1558 #define OUTPUT_RAW_TIMESTAMP 004
1559 #define OUTPUT_PORCELAIN 010
1560 #define OUTPUT_SHOW_NAME 020
1561 #define OUTPUT_SHOW_NUMBER 040
1562 #define OUTPUT_SHOW_SCORE 0100
1563 #define OUTPUT_NO_AUTHOR 0200
1565 static void emit_porcelain(struct scoreboard
*sb
, struct blame_entry
*ent
)
1569 struct origin
*suspect
= ent
->suspect
;
1572 strcpy(hex
, sha1_to_hex(suspect
->commit
->object
.sha1
));
1573 printf("%s%c%d %d %d\n",
1575 ent
->guilty
? ' ' : '*', // purely for debugging
1579 if (emit_one_suspect_detail(suspect
) ||
1580 (suspect
->commit
->object
.flags
& MORE_THAN_ONE_PATH
))
1581 write_filename_info(suspect
->path
);
1583 cp
= nth_line(sb
, ent
->lno
);
1584 for (cnt
= 0; cnt
< ent
->num_lines
; cnt
++) {
1587 printf("%s %d %d\n", hex
,
1588 ent
->s_lno
+ 1 + cnt
,
1589 ent
->lno
+ 1 + cnt
);
1594 } while (ch
!= '\n' &&
1595 cp
< sb
->final_buf
+ sb
->final_buf_size
);
1599 static void emit_other(struct scoreboard
*sb
, struct blame_entry
*ent
, int opt
)
1603 struct origin
*suspect
= ent
->suspect
;
1604 struct commit_info ci
;
1606 int show_raw_time
= !!(opt
& OUTPUT_RAW_TIMESTAMP
);
1608 get_commit_info(suspect
->commit
, &ci
, 1);
1609 strcpy(hex
, sha1_to_hex(suspect
->commit
->object
.sha1
));
1611 cp
= nth_line(sb
, ent
->lno
);
1612 for (cnt
= 0; cnt
< ent
->num_lines
; cnt
++) {
1614 int length
= (opt
& OUTPUT_LONG_OBJECT_NAME
) ? 40 : 8;
1616 if (suspect
->commit
->object
.flags
& UNINTERESTING
) {
1618 memset(hex
, ' ', length
);
1619 else if (!(opt
& OUTPUT_ANNOTATE_COMPAT
)) {
1625 printf("%.*s", length
, hex
);
1626 if (opt
& OUTPUT_ANNOTATE_COMPAT
)
1627 printf("\t(%10s\t%10s\t%d)", ci
.author
,
1628 format_time(ci
.author_time
, ci
.author_tz
,
1630 ent
->lno
+ 1 + cnt
);
1632 if (opt
& OUTPUT_SHOW_SCORE
)
1634 max_score_digits
, ent
->score
,
1635 ent
->suspect
->refcnt
);
1636 if (opt
& OUTPUT_SHOW_NAME
)
1637 printf(" %-*.*s", longest_file
, longest_file
,
1639 if (opt
& OUTPUT_SHOW_NUMBER
)
1640 printf(" %*d", max_orig_digits
,
1641 ent
->s_lno
+ 1 + cnt
);
1643 if (!(opt
& OUTPUT_NO_AUTHOR
)) {
1644 int pad
= longest_author
- utf8_strwidth(ci
.author
);
1645 printf(" (%s%*s %10s",
1647 format_time(ci
.author_time
,
1652 max_digits
, ent
->lno
+ 1 + cnt
);
1657 } while (ch
!= '\n' &&
1658 cp
< sb
->final_buf
+ sb
->final_buf_size
);
1662 static void output(struct scoreboard
*sb
, int option
)
1664 struct blame_entry
*ent
;
1666 if (option
& OUTPUT_PORCELAIN
) {
1667 for (ent
= sb
->ent
; ent
; ent
= ent
->next
) {
1668 struct blame_entry
*oth
;
1669 struct origin
*suspect
= ent
->suspect
;
1670 struct commit
*commit
= suspect
->commit
;
1671 if (commit
->object
.flags
& MORE_THAN_ONE_PATH
)
1673 for (oth
= ent
->next
; oth
; oth
= oth
->next
) {
1674 if ((oth
->suspect
->commit
!= commit
) ||
1675 !strcmp(oth
->suspect
->path
, suspect
->path
))
1677 commit
->object
.flags
|= MORE_THAN_ONE_PATH
;
1683 for (ent
= sb
->ent
; ent
; ent
= ent
->next
) {
1684 if (option
& OUTPUT_PORCELAIN
)
1685 emit_porcelain(sb
, ent
);
1687 emit_other(sb
, ent
, option
);
1693 * To allow quick access to the contents of nth line in the
1694 * final image, prepare an index in the scoreboard.
1696 static int prepare_lines(struct scoreboard
*sb
)
1698 const char *buf
= sb
->final_buf
;
1699 unsigned long len
= sb
->final_buf_size
;
1700 int num
= 0, incomplete
= 0, bol
= 1;
1702 if (len
&& buf
[len
-1] != '\n')
1703 incomplete
++; /* incomplete line at the end */
1706 sb
->lineno
= xrealloc(sb
->lineno
,
1707 sizeof(int* ) * (num
+ 1));
1708 sb
->lineno
[num
] = buf
- sb
->final_buf
;
1711 if (*buf
++ == '\n') {
1716 sb
->lineno
= xrealloc(sb
->lineno
,
1717 sizeof(int* ) * (num
+ incomplete
+ 1));
1718 sb
->lineno
[num
+ incomplete
] = buf
- sb
->final_buf
;
1719 sb
->num_lines
= num
+ incomplete
;
1720 return sb
->num_lines
;
1724 * Add phony grafts for use with -S; this is primarily to
1725 * support git's cvsserver that wants to give a linear history
1728 static int read_ancestry(const char *graft_file
)
1730 FILE *fp
= fopen(graft_file
, "r");
1734 while (fgets(buf
, sizeof(buf
), fp
)) {
1735 /* The format is just "Commit Parent1 Parent2 ...\n" */
1736 int len
= strlen(buf
);
1737 struct commit_graft
*graft
= read_graft_line(buf
, len
);
1739 register_commit_graft(graft
, 0);
1746 * How many columns do we need to show line numbers in decimal?
1748 static int lineno_width(int lines
)
1752 for (width
= 1, i
= 10; i
<= lines
+ 1; width
++)
1758 * How many columns do we need to show line numbers, authors,
1761 static void find_alignment(struct scoreboard
*sb
, int *option
)
1763 int longest_src_lines
= 0;
1764 int longest_dst_lines
= 0;
1765 unsigned largest_score
= 0;
1766 struct blame_entry
*e
;
1768 for (e
= sb
->ent
; e
; e
= e
->next
) {
1769 struct origin
*suspect
= e
->suspect
;
1770 struct commit_info ci
;
1773 if (strcmp(suspect
->path
, sb
->path
))
1774 *option
|= OUTPUT_SHOW_NAME
;
1775 num
= strlen(suspect
->path
);
1776 if (longest_file
< num
)
1778 if (!(suspect
->commit
->object
.flags
& METAINFO_SHOWN
)) {
1779 suspect
->commit
->object
.flags
|= METAINFO_SHOWN
;
1780 get_commit_info(suspect
->commit
, &ci
, 1);
1781 num
= utf8_strwidth(ci
.author
);
1782 if (longest_author
< num
)
1783 longest_author
= num
;
1785 num
= e
->s_lno
+ e
->num_lines
;
1786 if (longest_src_lines
< num
)
1787 longest_src_lines
= num
;
1788 num
= e
->lno
+ e
->num_lines
;
1789 if (longest_dst_lines
< num
)
1790 longest_dst_lines
= num
;
1791 if (largest_score
< ent_score(sb
, e
))
1792 largest_score
= ent_score(sb
, e
);
1794 max_orig_digits
= lineno_width(longest_src_lines
);
1795 max_digits
= lineno_width(longest_dst_lines
);
1796 max_score_digits
= lineno_width(largest_score
);
1800 * For debugging -- origin is refcounted, and this asserts that
1801 * we do not underflow.
1803 static void sanity_check_refcnt(struct scoreboard
*sb
)
1806 struct blame_entry
*ent
;
1808 for (ent
= sb
->ent
; ent
; ent
= ent
->next
) {
1809 /* Nobody should have zero or negative refcnt */
1810 if (ent
->suspect
->refcnt
<= 0) {
1811 fprintf(stderr
, "%s in %s has negative refcnt %d\n",
1813 sha1_to_hex(ent
->suspect
->commit
->object
.sha1
),
1814 ent
->suspect
->refcnt
);
1820 find_alignment(sb
, &opt
);
1822 die("Baa %d!", baa
);
1827 * Used for the command line parsing; check if the path exists
1828 * in the working tree.
1830 static int has_string_in_work_tree(const char *path
)
1833 return !lstat(path
, &st
);
1836 static unsigned parse_score(const char *arg
)
1839 unsigned long score
= strtoul(arg
, &end
, 10);
1845 static const char *add_prefix(const char *prefix
, const char *path
)
1847 return prefix_path(prefix
, prefix
? strlen(prefix
) : 0, path
);
1851 * Parsing of (comma separated) one item in the -L option
1853 static const char *parse_loc(const char *spec
,
1854 struct scoreboard
*sb
, long lno
,
1855 long begin
, long *ret
)
1862 regmatch_t match
[1];
1864 /* Allow "-L <something>,+20" to mean starting at <something>
1865 * for 20 lines, or "-L <something>,-5" for 5 lines ending at
1868 if (1 < begin
&& (spec
[0] == '+' || spec
[0] == '-')) {
1869 num
= strtol(spec
+ 1, &term
, 10);
1870 if (term
!= spec
+ 1) {
1874 *ret
= begin
+ num
- 2;
1883 num
= strtol(spec
, &term
, 10);
1891 /* it could be a regexp of form /.../ */
1892 for (term
= (char*) spec
+ 1; *term
&& *term
!= '/'; term
++) {
1899 /* try [spec+1 .. term-1] as regexp */
1901 begin
--; /* input is in human terms */
1902 line
= nth_line(sb
, begin
);
1904 if (!(reg_error
= regcomp(®exp
, spec
+ 1, REG_NEWLINE
)) &&
1905 !(reg_error
= regexec(®exp
, line
, 1, match
, 0))) {
1906 const char *cp
= line
+ match
[0].rm_so
;
1909 while (begin
++ < lno
) {
1910 nline
= nth_line(sb
, begin
);
1911 if (line
<= cp
&& cp
< nline
)
1922 regerror(reg_error
, ®exp
, errbuf
, 1024);
1923 die("-L parameter '%s': %s", spec
+ 1, errbuf
);
1928 * Parsing of -L option
1930 static void prepare_blame_range(struct scoreboard
*sb
,
1931 const char *bottomtop
,
1933 long *bottom
, long *top
)
1937 term
= parse_loc(bottomtop
, sb
, lno
, 1, bottom
);
1939 term
= parse_loc(term
+ 1, sb
, lno
, *bottom
+ 1, top
);
1947 static int git_blame_config(const char *var
, const char *value
, void *cb
)
1949 if (!strcmp(var
, "blame.showroot")) {
1950 show_root
= git_config_bool(var
, value
);
1953 if (!strcmp(var
, "blame.blankboundary")) {
1954 blank_boundary
= git_config_bool(var
, value
);
1957 if (!strcmp(var
, "blame.date")) {
1959 return config_error_nonbool(var
);
1960 blame_date_mode
= parse_date_format(value
);
1963 return git_default_config(var
, value
, cb
);
1967 * Prepare a dummy commit that represents the work tree (or staged) item.
1968 * Note that annotating work tree item never works in the reverse.
1970 static struct commit
*fake_working_tree_commit(const char *path
, const char *contents_from
)
1972 struct commit
*commit
;
1973 struct origin
*origin
;
1974 unsigned char head_sha1
[20];
1975 struct strbuf buf
= STRBUF_INIT
;
1979 struct cache_entry
*ce
;
1982 if (get_sha1("HEAD", head_sha1
))
1983 die("No such ref: HEAD");
1986 commit
= xcalloc(1, sizeof(*commit
));
1987 commit
->parents
= xcalloc(1, sizeof(*commit
->parents
));
1988 commit
->parents
->item
= lookup_commit_reference(head_sha1
);
1989 commit
->object
.parsed
= 1;
1991 commit
->object
.type
= OBJ_COMMIT
;
1993 origin
= make_origin(commit
, path
);
1995 if (!contents_from
|| strcmp("-", contents_from
)) {
1997 const char *read_from
;
1999 if (contents_from
) {
2000 if (stat(contents_from
, &st
) < 0)
2001 die("Cannot stat %s", contents_from
);
2002 read_from
= contents_from
;
2005 if (lstat(path
, &st
) < 0)
2006 die("Cannot lstat %s", path
);
2009 mode
= canon_mode(st
.st_mode
);
2010 switch (st
.st_mode
& S_IFMT
) {
2012 if (strbuf_read_file(&buf
, read_from
, st
.st_size
) != st
.st_size
)
2013 die("cannot open or read %s", read_from
);
2016 if (strbuf_readlink(&buf
, read_from
, st
.st_size
) < 0)
2017 die("cannot readlink %s", read_from
);
2020 die("unsupported file type %s", read_from
);
2024 /* Reading from stdin */
2025 contents_from
= "standard input";
2027 if (strbuf_read(&buf
, 0, 0) < 0)
2028 die("read error %s from stdin", strerror(errno
));
2030 convert_to_git(path
, buf
.buf
, buf
.len
, &buf
, 0);
2031 origin
->file
.ptr
= buf
.buf
;
2032 origin
->file
.size
= buf
.len
;
2033 pretend_sha1_file(buf
.buf
, buf
.len
, OBJ_BLOB
, origin
->blob_sha1
);
2034 commit
->util
= origin
;
2037 * Read the current index, replace the path entry with
2038 * origin->blob_sha1 without mucking with its mode or type
2039 * bits; we are not going to write this index out -- we just
2040 * want to run "diff-index --cached".
2047 int pos
= cache_name_pos(path
, len
);
2049 mode
= active_cache
[pos
]->ce_mode
;
2051 /* Let's not bother reading from HEAD tree */
2052 mode
= S_IFREG
| 0644;
2054 size
= cache_entry_size(len
);
2055 ce
= xcalloc(1, size
);
2056 hashcpy(ce
->sha1
, origin
->blob_sha1
);
2057 memcpy(ce
->name
, path
, len
);
2058 ce
->ce_flags
= create_ce_flags(len
, 0);
2059 ce
->ce_mode
= create_ce_mode(mode
);
2060 add_cache_entry(ce
, ADD_CACHE_OK_TO_ADD
|ADD_CACHE_OK_TO_REPLACE
);
2063 * We are not going to write this out, so this does not matter
2064 * right now, but someday we might optimize diff-index --cached
2065 * with cache-tree information.
2067 cache_tree_invalidate_path(active_cache_tree
, path
);
2069 commit
->buffer
= xmalloc(400);
2070 ident
= fmt_ident("Not Committed Yet", "not.committed.yet", NULL
, 0);
2071 snprintf(commit
->buffer
, 400,
2072 "tree 0000000000000000000000000000000000000000\n"
2076 "Version of %s from %s\n",
2077 sha1_to_hex(head_sha1
),
2078 ident
, ident
, path
, contents_from
? contents_from
: path
);
2082 static const char *prepare_final(struct scoreboard
*sb
)
2085 const char *final_commit_name
= NULL
;
2086 struct rev_info
*revs
= sb
->revs
;
2089 * There must be one and only one positive commit in the
2090 * revs->pending array.
2092 for (i
= 0; i
< revs
->pending
.nr
; i
++) {
2093 struct object
*obj
= revs
->pending
.objects
[i
].item
;
2094 if (obj
->flags
& UNINTERESTING
)
2096 while (obj
->type
== OBJ_TAG
)
2097 obj
= deref_tag(obj
, NULL
, 0);
2098 if (obj
->type
!= OBJ_COMMIT
)
2099 die("Non commit %s?", revs
->pending
.objects
[i
].name
);
2101 die("More than one commit to dig from %s and %s?",
2102 revs
->pending
.objects
[i
].name
,
2104 sb
->final
= (struct commit
*) obj
;
2105 final_commit_name
= revs
->pending
.objects
[i
].name
;
2107 return final_commit_name
;
2110 static const char *prepare_initial(struct scoreboard
*sb
)
2113 const char *final_commit_name
= NULL
;
2114 struct rev_info
*revs
= sb
->revs
;
2117 * There must be one and only one negative commit, and it must be
2120 for (i
= 0; i
< revs
->pending
.nr
; i
++) {
2121 struct object
*obj
= revs
->pending
.objects
[i
].item
;
2122 if (!(obj
->flags
& UNINTERESTING
))
2124 while (obj
->type
== OBJ_TAG
)
2125 obj
= deref_tag(obj
, NULL
, 0);
2126 if (obj
->type
!= OBJ_COMMIT
)
2127 die("Non commit %s?", revs
->pending
.objects
[i
].name
);
2129 die("More than one commit to dig down to %s and %s?",
2130 revs
->pending
.objects
[i
].name
,
2132 sb
->final
= (struct commit
*) obj
;
2133 final_commit_name
= revs
->pending
.objects
[i
].name
;
2135 if (!final_commit_name
)
2136 die("No commit to dig down to?");
2137 return final_commit_name
;
2140 static int blame_copy_callback(const struct option
*option
, const char *arg
, int unset
)
2142 int *opt
= option
->value
;
2145 * -C enables copy from removed files;
2146 * -C -C enables copy from existing files, but only
2147 * when blaming a new file;
2148 * -C -C -C enables copy from existing files for
2151 if (*opt
& PICKAXE_BLAME_COPY_HARDER
)
2152 *opt
|= PICKAXE_BLAME_COPY_HARDEST
;
2153 if (*opt
& PICKAXE_BLAME_COPY
)
2154 *opt
|= PICKAXE_BLAME_COPY_HARDER
;
2155 *opt
|= PICKAXE_BLAME_COPY
| PICKAXE_BLAME_MOVE
;
2158 blame_copy_score
= parse_score(arg
);
2162 static int blame_move_callback(const struct option
*option
, const char *arg
, int unset
)
2164 int *opt
= option
->value
;
2166 *opt
|= PICKAXE_BLAME_MOVE
;
2169 blame_move_score
= parse_score(arg
);
2173 static int blame_bottomtop_callback(const struct option
*option
, const char *arg
, int unset
)
2175 const char **bottomtop
= option
->value
;
2179 die("More than one '-L n,m' option given");
2184 int cmd_blame(int argc
, const char **argv
, const char *prefix
)
2186 struct rev_info revs
;
2188 struct scoreboard sb
;
2190 struct blame_entry
*ent
;
2191 long dashdash_pos
, bottom
, top
, lno
;
2192 const char *final_commit_name
= NULL
;
2193 enum object_type type
;
2195 static const char *bottomtop
= NULL
;
2196 static int output_option
= 0, opt
= 0;
2197 static int show_stats
= 0;
2198 static const char *revs_file
= NULL
;
2199 static const char *contents_from
= NULL
;
2200 static const struct option options
[] = {
2201 OPT_BOOLEAN(0, "incremental", &incremental
, "Show blame entries as we find them, incrementally"),
2202 OPT_BOOLEAN('b', NULL
, &blank_boundary
, "Show blank SHA-1 for boundary commits (Default: off)"),
2203 OPT_BOOLEAN(0, "root", &show_root
, "Do not treat root commits as boundaries (Default: off)"),
2204 OPT_BOOLEAN(0, "show-stats", &show_stats
, "Show work cost statistics"),
2205 OPT_BIT(0, "score-debug", &output_option
, "Show output score for blame entries", OUTPUT_SHOW_SCORE
),
2206 OPT_BIT('f', "show-name", &output_option
, "Show original filename (Default: auto)", OUTPUT_SHOW_NAME
),
2207 OPT_BIT('n', "show-number", &output_option
, "Show original linenumber (Default: off)", OUTPUT_SHOW_NUMBER
),
2208 OPT_BIT('p', "porcelain", &output_option
, "Show in a format designed for machine consumption", OUTPUT_PORCELAIN
),
2209 OPT_BIT('c', NULL
, &output_option
, "Use the same output mode as git-annotate (Default: off)", OUTPUT_ANNOTATE_COMPAT
),
2210 OPT_BIT('t', NULL
, &output_option
, "Show raw timestamp (Default: off)", OUTPUT_RAW_TIMESTAMP
),
2211 OPT_BIT('l', NULL
, &output_option
, "Show long commit SHA1 (Default: off)", OUTPUT_LONG_OBJECT_NAME
),
2212 OPT_BIT('s', NULL
, &output_option
, "Suppress author name and timestamp (Default: off)", OUTPUT_NO_AUTHOR
),
2213 OPT_BIT('w', NULL
, &xdl_opts
, "Ignore whitespace differences", XDF_IGNORE_WHITESPACE
),
2214 OPT_STRING('S', NULL
, &revs_file
, "file", "Use revisions from <file> instead of calling git-rev-list"),
2215 OPT_STRING(0, "contents", &contents_from
, "file", "Use <file>'s contents as the final image"),
2216 { OPTION_CALLBACK
, 'C', NULL
, &opt
, "score", "Find line copies within and across files", PARSE_OPT_OPTARG
, blame_copy_callback
},
2217 { OPTION_CALLBACK
, 'M', NULL
, &opt
, "score", "Find line movements within and across files", PARSE_OPT_OPTARG
, blame_move_callback
},
2218 OPT_CALLBACK('L', NULL
, &bottomtop
, "n,m", "Process only line range n,m, counting from 1", blame_bottomtop_callback
),
2222 struct parse_opt_ctx_t ctx
;
2223 int cmd_is_annotate
= !strcmp(argv
[0], "annotate");
2225 git_config(git_blame_config
, NULL
);
2226 init_revisions(&revs
, NULL
);
2227 revs
.date_mode
= blame_date_mode
;
2229 save_commit_buffer
= 0;
2232 parse_options_start(&ctx
, argc
, argv
, PARSE_OPT_KEEP_DASHDASH
|
2233 PARSE_OPT_KEEP_ARGV0
);
2235 switch (parse_options_step(&ctx
, options
, blame_opt_usage
)) {
2236 case PARSE_OPT_HELP
:
2238 case PARSE_OPT_DONE
:
2240 dashdash_pos
= ctx
.cpidx
;
2244 if (!strcmp(ctx
.argv
[0], "--reverse")) {
2245 ctx
.argv
[0] = "--children";
2248 parse_revision_opt(&revs
, &ctx
, options
, blame_opt_usage
);
2251 argc
= parse_options_end(&ctx
);
2253 if (revs_file
&& read_ancestry(revs_file
))
2254 die("reading graft file %s failed: %s",
2255 revs_file
, strerror(errno
));
2257 if (cmd_is_annotate
) {
2258 output_option
|= OUTPUT_ANNOTATE_COMPAT
;
2259 blame_date_mode
= DATE_ISO8601
;
2261 blame_date_mode
= revs
.date_mode
;
2264 /* The maximum width used to show the dates */
2265 switch (blame_date_mode
) {
2267 blame_date_width
= sizeof("Thu, 19 Oct 2006 16:00:04 -0700");
2270 blame_date_width
= sizeof("2006-10-19 16:00:04 -0700");
2273 blame_date_width
= sizeof("1161298804 -0700");
2276 blame_date_width
= sizeof("2006-10-19");
2279 /* "normal" is used as the fallback for "relative" */
2282 blame_date_width
= sizeof("Thu Oct 19 16:00:04 2006 -0700");
2285 blame_date_width
-= 1; /* strip the null */
2287 if (DIFF_OPT_TST(&revs
.diffopt
, FIND_COPIES_HARDER
))
2288 opt
|= (PICKAXE_BLAME_COPY
| PICKAXE_BLAME_MOVE
|
2289 PICKAXE_BLAME_COPY_HARDER
);
2291 if (!blame_move_score
)
2292 blame_move_score
= BLAME_DEFAULT_MOVE_SCORE
;
2293 if (!blame_copy_score
)
2294 blame_copy_score
= BLAME_DEFAULT_COPY_SCORE
;
2297 * We have collected options unknown to us in argv[1..unk]
2298 * which are to be passed to revision machinery if we are
2299 * going to do the "bottom" processing.
2301 * The remaining are:
2303 * (1) if dashdash_pos != 0, its either
2304 * "blame [revisions] -- <path>" or
2305 * "blame -- <path> <rev>"
2307 * (2) otherwise, its one of the two:
2308 * "blame [revisions] <path>"
2309 * "blame <path> <rev>"
2311 * Note that we must strip out <path> from the arguments: we do not
2312 * want the path pruning but we may want "bottom" processing.
2315 switch (argc
- dashdash_pos
- 1) {
2318 usage_with_options(blame_opt_usage
, options
);
2319 /* reorder for the new way: <rev> -- <path> */
2325 path
= add_prefix(prefix
, argv
[--argc
]);
2329 usage_with_options(blame_opt_usage
, options
);
2333 usage_with_options(blame_opt_usage
, options
);
2334 path
= add_prefix(prefix
, argv
[argc
- 1]);
2335 if (argc
== 3 && !has_string_in_work_tree(path
)) { /* (2b) */
2336 path
= add_prefix(prefix
, argv
[1]);
2339 argv
[argc
- 1] = "--";
2342 if (!has_string_in_work_tree(path
))
2343 die("cannot stat path %s: %s", path
, strerror(errno
));
2346 setup_revisions(argc
, argv
, &revs
, NULL
);
2347 memset(&sb
, 0, sizeof(sb
));
2351 final_commit_name
= prepare_final(&sb
);
2352 else if (contents_from
)
2353 die("--contents and --children do not blend well.");
2355 final_commit_name
= prepare_initial(&sb
);
2359 * "--not A B -- path" without anything positive;
2360 * do not default to HEAD, but use the working tree
2364 sb
.final
= fake_working_tree_commit(path
, contents_from
);
2365 add_pending_object(&revs
, &(sb
.final
->object
), ":");
2367 else if (contents_from
)
2368 die("Cannot use --contents with final commit object name");
2371 * If we have bottom, this will mark the ancestors of the
2372 * bottom commits we would reach while traversing as
2375 if (prepare_revision_walk(&revs
))
2376 die("revision walk setup failed");
2378 if (is_null_sha1(sb
.final
->object
.sha1
)) {
2381 buf
= xmalloc(o
->file
.size
+ 1);
2382 memcpy(buf
, o
->file
.ptr
, o
->file
.size
+ 1);
2384 sb
.final_buf_size
= o
->file
.size
;
2387 o
= get_origin(&sb
, sb
.final
, path
);
2388 if (fill_blob_sha1(o
))
2389 die("no such path %s in %s", path
, final_commit_name
);
2391 sb
.final_buf
= read_sha1_file(o
->blob_sha1
, &type
,
2392 &sb
.final_buf_size
);
2394 die("Cannot read blob %s for path %s",
2395 sha1_to_hex(o
->blob_sha1
),
2399 lno
= prepare_lines(&sb
);
2403 prepare_blame_range(&sb
, bottomtop
, lno
, &bottom
, &top
);
2404 if (bottom
&& top
&& top
< bottom
) {
2406 tmp
= top
; top
= bottom
; bottom
= tmp
;
2414 die("file %s has only %lu lines", path
, lno
);
2416 ent
= xcalloc(1, sizeof(*ent
));
2418 ent
->num_lines
= top
- bottom
;
2420 ent
->s_lno
= bottom
;
2425 read_mailmap(&mailmap
, NULL
);
2430 assign_blame(&sb
, opt
);
2437 if (!(output_option
& OUTPUT_PORCELAIN
))
2438 find_alignment(&sb
, &output_option
);
2440 output(&sb
, output_option
);
2441 free((void *)sb
.final_buf
);
2442 for (ent
= sb
.ent
; ent
; ) {
2443 struct blame_entry
*e
= ent
->next
;
2449 printf("num read blob: %d\n", num_read_blob
);
2450 printf("num get patch: %d\n", num_get_patch
);
2451 printf("num commits: %d\n", num_commits
);