remove init_pathspec() in favor of parse_pathspec()
[git.git] / builtin / blame.c
blob56e3d6b7b4718b05f655da97155afeec074d30a1
1 /*
2 * Blame
4 * Copyright (c) 2006, Junio C Hamano
5 */
7 #include "cache.h"
8 #include "builtin.h"
9 #include "blob.h"
10 #include "commit.h"
11 #include "tag.h"
12 #include "tree-walk.h"
13 #include "diff.h"
14 #include "diffcore.h"
15 #include "revision.h"
16 #include "quote.h"
17 #include "xdiff-interface.h"
18 #include "cache-tree.h"
19 #include "string-list.h"
20 #include "mailmap.h"
21 #include "parse-options.h"
22 #include "utf8.h"
23 #include "userdiff.h"
24 #include "line-range.h"
26 static char blame_usage[] = N_("git blame [options] [rev-opts] [rev] [--] file");
28 static const char *blame_opt_usage[] = {
29 blame_usage,
30 "",
31 N_("[rev-opts] are documented in git-rev-list(1)"),
32 NULL
35 static int longest_file;
36 static int longest_author;
37 static int max_orig_digits;
38 static int max_digits;
39 static int max_score_digits;
40 static int show_root;
41 static int reverse;
42 static int blank_boundary;
43 static int incremental;
44 static int xdl_opts;
45 static int abbrev = -1;
46 static int no_whole_file_rename;
48 static enum date_mode blame_date_mode = DATE_ISO8601;
49 static size_t blame_date_width;
51 static struct string_list mailmap;
53 #ifndef DEBUG
54 #define DEBUG 0
55 #endif
57 /* stats */
58 static int num_read_blob;
59 static int num_get_patch;
60 static int num_commits;
62 #define PICKAXE_BLAME_MOVE 01
63 #define PICKAXE_BLAME_COPY 02
64 #define PICKAXE_BLAME_COPY_HARDER 04
65 #define PICKAXE_BLAME_COPY_HARDEST 010
68 * blame for a blame_entry with score lower than these thresholds
69 * is not passed to the parent using move/copy logic.
71 static unsigned blame_move_score;
72 static unsigned blame_copy_score;
73 #define BLAME_DEFAULT_MOVE_SCORE 20
74 #define BLAME_DEFAULT_COPY_SCORE 40
76 /* bits #0..7 in revision.h, #8..11 used for merge_bases() in commit.c */
77 #define METAINFO_SHOWN (1u<<12)
78 #define MORE_THAN_ONE_PATH (1u<<13)
81 * One blob in a commit that is being suspected
83 struct origin {
84 int refcnt;
85 struct origin *previous;
86 struct commit *commit;
87 mmfile_t file;
88 unsigned char blob_sha1[20];
89 unsigned mode;
90 char path[FLEX_ARRAY];
93 static int diff_hunks(mmfile_t *file_a, mmfile_t *file_b, long ctxlen,
94 xdl_emit_hunk_consume_func_t hunk_func, void *cb_data)
96 xpparam_t xpp = {0};
97 xdemitconf_t xecfg = {0};
98 xdemitcb_t ecb = {NULL};
100 xpp.flags = xdl_opts;
101 xecfg.ctxlen = ctxlen;
102 xecfg.hunk_func = hunk_func;
103 ecb.priv = cb_data;
104 return xdi_diff(file_a, file_b, &xpp, &xecfg, &ecb);
108 * Prepare diff_filespec and convert it using diff textconv API
109 * if the textconv driver exists.
110 * Return 1 if the conversion succeeds, 0 otherwise.
112 int textconv_object(const char *path,
113 unsigned mode,
114 const unsigned char *sha1,
115 int sha1_valid,
116 char **buf,
117 unsigned long *buf_size)
119 struct diff_filespec *df;
120 struct userdiff_driver *textconv;
122 df = alloc_filespec(path);
123 fill_filespec(df, sha1, sha1_valid, mode);
124 textconv = get_textconv(df);
125 if (!textconv) {
126 free_filespec(df);
127 return 0;
130 *buf_size = fill_textconv(textconv, df, buf);
131 free_filespec(df);
132 return 1;
136 * Given an origin, prepare mmfile_t structure to be used by the
137 * diff machinery
139 static void fill_origin_blob(struct diff_options *opt,
140 struct origin *o, mmfile_t *file)
142 if (!o->file.ptr) {
143 enum object_type type;
144 unsigned long file_size;
146 num_read_blob++;
147 if (DIFF_OPT_TST(opt, ALLOW_TEXTCONV) &&
148 textconv_object(o->path, o->mode, o->blob_sha1, 1, &file->ptr, &file_size))
150 else
151 file->ptr = read_sha1_file(o->blob_sha1, &type, &file_size);
152 file->size = file_size;
154 if (!file->ptr)
155 die("Cannot read blob %s for path %s",
156 sha1_to_hex(o->blob_sha1),
157 o->path);
158 o->file = *file;
160 else
161 *file = o->file;
165 * Origin is refcounted and usually we keep the blob contents to be
166 * reused.
168 static inline struct origin *origin_incref(struct origin *o)
170 if (o)
171 o->refcnt++;
172 return o;
175 static void origin_decref(struct origin *o)
177 if (o && --o->refcnt <= 0) {
178 if (o->previous)
179 origin_decref(o->previous);
180 free(o->file.ptr);
181 free(o);
185 static void drop_origin_blob(struct origin *o)
187 if (o->file.ptr) {
188 free(o->file.ptr);
189 o->file.ptr = NULL;
194 * Each group of lines is described by a blame_entry; it can be split
195 * as we pass blame to the parents. They form a linked list in the
196 * scoreboard structure, sorted by the target line number.
198 struct blame_entry {
199 struct blame_entry *prev;
200 struct blame_entry *next;
202 /* the first line of this group in the final image;
203 * internally all line numbers are 0 based.
205 int lno;
207 /* how many lines this group has */
208 int num_lines;
210 /* the commit that introduced this group into the final image */
211 struct origin *suspect;
213 /* true if the suspect is truly guilty; false while we have not
214 * checked if the group came from one of its parents.
216 char guilty;
218 /* true if the entry has been scanned for copies in the current parent
220 char scanned;
222 /* the line number of the first line of this group in the
223 * suspect's file; internally all line numbers are 0 based.
225 int s_lno;
227 /* how significant this entry is -- cached to avoid
228 * scanning the lines over and over.
230 unsigned score;
234 * The current state of the blame assignment.
236 struct scoreboard {
237 /* the final commit (i.e. where we started digging from) */
238 struct commit *final;
239 struct rev_info *revs;
240 const char *path;
243 * The contents in the final image.
244 * Used by many functions to obtain contents of the nth line,
245 * indexed with scoreboard.lineno[blame_entry.lno].
247 const char *final_buf;
248 unsigned long final_buf_size;
250 /* linked list of blames */
251 struct blame_entry *ent;
253 /* look-up a line in the final buffer */
254 int num_lines;
255 int *lineno;
258 static inline int same_suspect(struct origin *a, struct origin *b)
260 if (a == b)
261 return 1;
262 if (a->commit != b->commit)
263 return 0;
264 return !strcmp(a->path, b->path);
267 static void sanity_check_refcnt(struct scoreboard *);
270 * If two blame entries that are next to each other came from
271 * contiguous lines in the same origin (i.e. <commit, path> pair),
272 * merge them together.
274 static void coalesce(struct scoreboard *sb)
276 struct blame_entry *ent, *next;
278 for (ent = sb->ent; ent && (next = ent->next); ent = next) {
279 if (same_suspect(ent->suspect, next->suspect) &&
280 ent->guilty == next->guilty &&
281 ent->s_lno + ent->num_lines == next->s_lno) {
282 ent->num_lines += next->num_lines;
283 ent->next = next->next;
284 if (ent->next)
285 ent->next->prev = ent;
286 origin_decref(next->suspect);
287 free(next);
288 ent->score = 0;
289 next = ent; /* again */
293 if (DEBUG) /* sanity */
294 sanity_check_refcnt(sb);
298 * Given a commit and a path in it, create a new origin structure.
299 * The callers that add blame to the scoreboard should use
300 * get_origin() to obtain shared, refcounted copy instead of calling
301 * this function directly.
303 static struct origin *make_origin(struct commit *commit, const char *path)
305 struct origin *o;
306 o = xcalloc(1, sizeof(*o) + strlen(path) + 1);
307 o->commit = commit;
308 o->refcnt = 1;
309 strcpy(o->path, path);
310 return o;
314 * Locate an existing origin or create a new one.
316 static struct origin *get_origin(struct scoreboard *sb,
317 struct commit *commit,
318 const char *path)
320 struct blame_entry *e;
322 for (e = sb->ent; e; e = e->next) {
323 if (e->suspect->commit == commit &&
324 !strcmp(e->suspect->path, path))
325 return origin_incref(e->suspect);
327 return make_origin(commit, path);
331 * Fill the blob_sha1 field of an origin if it hasn't, so that later
332 * call to fill_origin_blob() can use it to locate the data. blob_sha1
333 * for an origin is also used to pass the blame for the entire file to
334 * the parent to detect the case where a child's blob is identical to
335 * that of its parent's.
337 * This also fills origin->mode for corresponding tree path.
339 static int fill_blob_sha1_and_mode(struct origin *origin)
341 if (!is_null_sha1(origin->blob_sha1))
342 return 0;
343 if (get_tree_entry(origin->commit->object.sha1,
344 origin->path,
345 origin->blob_sha1, &origin->mode))
346 goto error_out;
347 if (sha1_object_info(origin->blob_sha1, NULL) != OBJ_BLOB)
348 goto error_out;
349 return 0;
350 error_out:
351 hashclr(origin->blob_sha1);
352 origin->mode = S_IFINVALID;
353 return -1;
357 * We have an origin -- check if the same path exists in the
358 * parent and return an origin structure to represent it.
360 static struct origin *find_origin(struct scoreboard *sb,
361 struct commit *parent,
362 struct origin *origin)
364 struct origin *porigin = NULL;
365 struct diff_options diff_opts;
366 const char *paths[2];
368 if (parent->util) {
370 * Each commit object can cache one origin in that
371 * commit. This is a freestanding copy of origin and
372 * not refcounted.
374 struct origin *cached = parent->util;
375 if (!strcmp(cached->path, origin->path)) {
377 * The same path between origin and its parent
378 * without renaming -- the most common case.
380 porigin = get_origin(sb, parent, cached->path);
383 * If the origin was newly created (i.e. get_origin
384 * would call make_origin if none is found in the
385 * scoreboard), it does not know the blob_sha1/mode,
386 * so copy it. Otherwise porigin was in the
387 * scoreboard and already knows blob_sha1/mode.
389 if (porigin->refcnt == 1) {
390 hashcpy(porigin->blob_sha1, cached->blob_sha1);
391 porigin->mode = cached->mode;
393 return porigin;
395 /* otherwise it was not very useful; free it */
396 free(parent->util);
397 parent->util = NULL;
400 /* See if the origin->path is different between parent
401 * and origin first. Most of the time they are the
402 * same and diff-tree is fairly efficient about this.
404 diff_setup(&diff_opts);
405 DIFF_OPT_SET(&diff_opts, RECURSIVE);
406 diff_opts.detect_rename = 0;
407 diff_opts.output_format = DIFF_FORMAT_NO_OUTPUT;
408 paths[0] = origin->path;
409 paths[1] = NULL;
411 parse_pathspec(&diff_opts.pathspec, PATHSPEC_ALL_MAGIC, 0, "", paths);
412 diff_setup_done(&diff_opts);
414 if (is_null_sha1(origin->commit->object.sha1))
415 do_diff_cache(parent->tree->object.sha1, &diff_opts);
416 else
417 diff_tree_sha1(parent->tree->object.sha1,
418 origin->commit->tree->object.sha1,
419 "", &diff_opts);
420 diffcore_std(&diff_opts);
422 if (!diff_queued_diff.nr) {
423 /* The path is the same as parent */
424 porigin = get_origin(sb, parent, origin->path);
425 hashcpy(porigin->blob_sha1, origin->blob_sha1);
426 porigin->mode = origin->mode;
427 } else {
429 * Since origin->path is a pathspec, if the parent
430 * commit had it as a directory, we will see a whole
431 * bunch of deletion of files in the directory that we
432 * do not care about.
434 int i;
435 struct diff_filepair *p = NULL;
436 for (i = 0; i < diff_queued_diff.nr; i++) {
437 const char *name;
438 p = diff_queued_diff.queue[i];
439 name = p->one->path ? p->one->path : p->two->path;
440 if (!strcmp(name, origin->path))
441 break;
443 if (!p)
444 die("internal error in blame::find_origin");
445 switch (p->status) {
446 default:
447 die("internal error in blame::find_origin (%c)",
448 p->status);
449 case 'M':
450 porigin = get_origin(sb, parent, origin->path);
451 hashcpy(porigin->blob_sha1, p->one->sha1);
452 porigin->mode = p->one->mode;
453 break;
454 case 'A':
455 case 'T':
456 /* Did not exist in parent, or type changed */
457 break;
460 diff_flush(&diff_opts);
461 free_pathspec(&diff_opts.pathspec);
462 if (porigin) {
464 * Create a freestanding copy that is not part of
465 * the refcounted origin found in the scoreboard, and
466 * cache it in the commit.
468 struct origin *cached;
470 cached = make_origin(porigin->commit, porigin->path);
471 hashcpy(cached->blob_sha1, porigin->blob_sha1);
472 cached->mode = porigin->mode;
473 parent->util = cached;
475 return porigin;
479 * We have an origin -- find the path that corresponds to it in its
480 * parent and return an origin structure to represent it.
482 static struct origin *find_rename(struct scoreboard *sb,
483 struct commit *parent,
484 struct origin *origin)
486 struct origin *porigin = NULL;
487 struct diff_options diff_opts;
488 int i;
490 diff_setup(&diff_opts);
491 DIFF_OPT_SET(&diff_opts, RECURSIVE);
492 diff_opts.detect_rename = DIFF_DETECT_RENAME;
493 diff_opts.output_format = DIFF_FORMAT_NO_OUTPUT;
494 diff_opts.single_follow = origin->path;
495 diff_setup_done(&diff_opts);
497 if (is_null_sha1(origin->commit->object.sha1))
498 do_diff_cache(parent->tree->object.sha1, &diff_opts);
499 else
500 diff_tree_sha1(parent->tree->object.sha1,
501 origin->commit->tree->object.sha1,
502 "", &diff_opts);
503 diffcore_std(&diff_opts);
505 for (i = 0; i < diff_queued_diff.nr; i++) {
506 struct diff_filepair *p = diff_queued_diff.queue[i];
507 if ((p->status == 'R' || p->status == 'C') &&
508 !strcmp(p->two->path, origin->path)) {
509 porigin = get_origin(sb, parent, p->one->path);
510 hashcpy(porigin->blob_sha1, p->one->sha1);
511 porigin->mode = p->one->mode;
512 break;
515 diff_flush(&diff_opts);
516 free_pathspec(&diff_opts.pathspec);
517 return porigin;
521 * Link in a new blame entry to the scoreboard. Entries that cover the
522 * same line range have been removed from the scoreboard previously.
524 static void add_blame_entry(struct scoreboard *sb, struct blame_entry *e)
526 struct blame_entry *ent, *prev = NULL;
528 origin_incref(e->suspect);
530 for (ent = sb->ent; ent && ent->lno < e->lno; ent = ent->next)
531 prev = ent;
533 /* prev, if not NULL, is the last one that is below e */
534 e->prev = prev;
535 if (prev) {
536 e->next = prev->next;
537 prev->next = e;
539 else {
540 e->next = sb->ent;
541 sb->ent = e;
543 if (e->next)
544 e->next->prev = e;
548 * src typically is on-stack; we want to copy the information in it to
549 * a malloced blame_entry that is already on the linked list of the
550 * scoreboard. The origin of dst loses a refcnt while the origin of src
551 * gains one.
553 static void dup_entry(struct blame_entry *dst, struct blame_entry *src)
555 struct blame_entry *p, *n;
557 p = dst->prev;
558 n = dst->next;
559 origin_incref(src->suspect);
560 origin_decref(dst->suspect);
561 memcpy(dst, src, sizeof(*src));
562 dst->prev = p;
563 dst->next = n;
564 dst->score = 0;
567 static const char *nth_line(struct scoreboard *sb, long lno)
569 return sb->final_buf + sb->lineno[lno];
572 static const char *nth_line_cb(void *data, long lno)
574 return nth_line((struct scoreboard *)data, lno);
578 * It is known that lines between tlno to same came from parent, and e
579 * has an overlap with that range. it also is known that parent's
580 * line plno corresponds to e's line tlno.
582 * <---- e ----->
583 * <------>
584 * <------------>
585 * <------------>
586 * <------------------>
588 * Split e into potentially three parts; before this chunk, the chunk
589 * to be blamed for the parent, and after that portion.
591 static void split_overlap(struct blame_entry *split,
592 struct blame_entry *e,
593 int tlno, int plno, int same,
594 struct origin *parent)
596 int chunk_end_lno;
597 memset(split, 0, sizeof(struct blame_entry [3]));
599 if (e->s_lno < tlno) {
600 /* there is a pre-chunk part not blamed on parent */
601 split[0].suspect = origin_incref(e->suspect);
602 split[0].lno = e->lno;
603 split[0].s_lno = e->s_lno;
604 split[0].num_lines = tlno - e->s_lno;
605 split[1].lno = e->lno + tlno - e->s_lno;
606 split[1].s_lno = plno;
608 else {
609 split[1].lno = e->lno;
610 split[1].s_lno = plno + (e->s_lno - tlno);
613 if (same < e->s_lno + e->num_lines) {
614 /* there is a post-chunk part not blamed on parent */
615 split[2].suspect = origin_incref(e->suspect);
616 split[2].lno = e->lno + (same - e->s_lno);
617 split[2].s_lno = e->s_lno + (same - e->s_lno);
618 split[2].num_lines = e->s_lno + e->num_lines - same;
619 chunk_end_lno = split[2].lno;
621 else
622 chunk_end_lno = e->lno + e->num_lines;
623 split[1].num_lines = chunk_end_lno - split[1].lno;
626 * if it turns out there is nothing to blame the parent for,
627 * forget about the splitting. !split[1].suspect signals this.
629 if (split[1].num_lines < 1)
630 return;
631 split[1].suspect = origin_incref(parent);
635 * split_overlap() divided an existing blame e into up to three parts
636 * in split. Adjust the linked list of blames in the scoreboard to
637 * reflect the split.
639 static void split_blame(struct scoreboard *sb,
640 struct blame_entry *split,
641 struct blame_entry *e)
643 struct blame_entry *new_entry;
645 if (split[0].suspect && split[2].suspect) {
646 /* The first part (reuse storage for the existing entry e) */
647 dup_entry(e, &split[0]);
649 /* The last part -- me */
650 new_entry = xmalloc(sizeof(*new_entry));
651 memcpy(new_entry, &(split[2]), sizeof(struct blame_entry));
652 add_blame_entry(sb, new_entry);
654 /* ... and the middle part -- parent */
655 new_entry = xmalloc(sizeof(*new_entry));
656 memcpy(new_entry, &(split[1]), sizeof(struct blame_entry));
657 add_blame_entry(sb, new_entry);
659 else if (!split[0].suspect && !split[2].suspect)
661 * The parent covers the entire area; reuse storage for
662 * e and replace it with the parent.
664 dup_entry(e, &split[1]);
665 else if (split[0].suspect) {
666 /* me and then parent */
667 dup_entry(e, &split[0]);
669 new_entry = xmalloc(sizeof(*new_entry));
670 memcpy(new_entry, &(split[1]), sizeof(struct blame_entry));
671 add_blame_entry(sb, new_entry);
673 else {
674 /* parent and then me */
675 dup_entry(e, &split[1]);
677 new_entry = xmalloc(sizeof(*new_entry));
678 memcpy(new_entry, &(split[2]), sizeof(struct blame_entry));
679 add_blame_entry(sb, new_entry);
682 if (DEBUG) { /* sanity */
683 struct blame_entry *ent;
684 int lno = sb->ent->lno, corrupt = 0;
686 for (ent = sb->ent; ent; ent = ent->next) {
687 if (lno != ent->lno)
688 corrupt = 1;
689 if (ent->s_lno < 0)
690 corrupt = 1;
691 lno += ent->num_lines;
693 if (corrupt) {
694 lno = sb->ent->lno;
695 for (ent = sb->ent; ent; ent = ent->next) {
696 printf("L %8d l %8d n %8d\n",
697 lno, ent->lno, ent->num_lines);
698 lno = ent->lno + ent->num_lines;
700 die("oops");
706 * After splitting the blame, the origins used by the
707 * on-stack blame_entry should lose one refcnt each.
709 static void decref_split(struct blame_entry *split)
711 int i;
713 for (i = 0; i < 3; i++)
714 origin_decref(split[i].suspect);
718 * Helper for blame_chunk(). blame_entry e is known to overlap with
719 * the patch hunk; split it and pass blame to the parent.
721 static void blame_overlap(struct scoreboard *sb, struct blame_entry *e,
722 int tlno, int plno, int same,
723 struct origin *parent)
725 struct blame_entry split[3];
727 split_overlap(split, e, tlno, plno, same, parent);
728 if (split[1].suspect)
729 split_blame(sb, split, e);
730 decref_split(split);
734 * Find the line number of the last line the target is suspected for.
736 static int find_last_in_target(struct scoreboard *sb, struct origin *target)
738 struct blame_entry *e;
739 int last_in_target = -1;
741 for (e = sb->ent; e; e = e->next) {
742 if (e->guilty || !same_suspect(e->suspect, target))
743 continue;
744 if (last_in_target < e->s_lno + e->num_lines)
745 last_in_target = e->s_lno + e->num_lines;
747 return last_in_target;
751 * Process one hunk from the patch between the current suspect for
752 * blame_entry e and its parent. Find and split the overlap, and
753 * pass blame to the overlapping part to the parent.
755 static void blame_chunk(struct scoreboard *sb,
756 int tlno, int plno, int same,
757 struct origin *target, struct origin *parent)
759 struct blame_entry *e;
761 for (e = sb->ent; e; e = e->next) {
762 if (e->guilty || !same_suspect(e->suspect, target))
763 continue;
764 if (same <= e->s_lno)
765 continue;
766 if (tlno < e->s_lno + e->num_lines)
767 blame_overlap(sb, e, tlno, plno, same, parent);
771 struct blame_chunk_cb_data {
772 struct scoreboard *sb;
773 struct origin *target;
774 struct origin *parent;
775 long plno;
776 long tlno;
779 static int blame_chunk_cb(long start_a, long count_a,
780 long start_b, long count_b, void *data)
782 struct blame_chunk_cb_data *d = data;
783 blame_chunk(d->sb, d->tlno, d->plno, start_b, d->target, d->parent);
784 d->plno = start_a + count_a;
785 d->tlno = start_b + count_b;
786 return 0;
790 * We are looking at the origin 'target' and aiming to pass blame
791 * for the lines it is suspected to its parent. Run diff to find
792 * which lines came from parent and pass blame for them.
794 static int pass_blame_to_parent(struct scoreboard *sb,
795 struct origin *target,
796 struct origin *parent)
798 int last_in_target;
799 mmfile_t file_p, file_o;
800 struct blame_chunk_cb_data d;
802 memset(&d, 0, sizeof(d));
803 d.sb = sb; d.target = target; d.parent = parent;
804 last_in_target = find_last_in_target(sb, target);
805 if (last_in_target < 0)
806 return 1; /* nothing remains for this target */
808 fill_origin_blob(&sb->revs->diffopt, parent, &file_p);
809 fill_origin_blob(&sb->revs->diffopt, target, &file_o);
810 num_get_patch++;
812 diff_hunks(&file_p, &file_o, 0, blame_chunk_cb, &d);
813 /* The rest (i.e. anything after tlno) are the same as the parent */
814 blame_chunk(sb, d.tlno, d.plno, last_in_target, target, parent);
816 return 0;
820 * The lines in blame_entry after splitting blames many times can become
821 * very small and trivial, and at some point it becomes pointless to
822 * blame the parents. E.g. "\t\t}\n\t}\n\n" appears everywhere in any
823 * ordinary C program, and it is not worth to say it was copied from
824 * totally unrelated file in the parent.
826 * Compute how trivial the lines in the blame_entry are.
828 static unsigned ent_score(struct scoreboard *sb, struct blame_entry *e)
830 unsigned score;
831 const char *cp, *ep;
833 if (e->score)
834 return e->score;
836 score = 1;
837 cp = nth_line(sb, e->lno);
838 ep = nth_line(sb, e->lno + e->num_lines);
839 while (cp < ep) {
840 unsigned ch = *((unsigned char *)cp);
841 if (isalnum(ch))
842 score++;
843 cp++;
845 e->score = score;
846 return score;
850 * best_so_far[] and this[] are both a split of an existing blame_entry
851 * that passes blame to the parent. Maintain best_so_far the best split
852 * so far, by comparing this and best_so_far and copying this into
853 * bst_so_far as needed.
855 static void copy_split_if_better(struct scoreboard *sb,
856 struct blame_entry *best_so_far,
857 struct blame_entry *this)
859 int i;
861 if (!this[1].suspect)
862 return;
863 if (best_so_far[1].suspect) {
864 if (ent_score(sb, &this[1]) < ent_score(sb, &best_so_far[1]))
865 return;
868 for (i = 0; i < 3; i++)
869 origin_incref(this[i].suspect);
870 decref_split(best_so_far);
871 memcpy(best_so_far, this, sizeof(struct blame_entry [3]));
875 * We are looking at a part of the final image represented by
876 * ent (tlno and same are offset by ent->s_lno).
877 * tlno is where we are looking at in the final image.
878 * up to (but not including) same match preimage.
879 * plno is where we are looking at in the preimage.
881 * <-------------- final image ---------------------->
882 * <------ent------>
883 * ^tlno ^same
884 * <---------preimage----->
885 * ^plno
887 * All line numbers are 0-based.
889 static void handle_split(struct scoreboard *sb,
890 struct blame_entry *ent,
891 int tlno, int plno, int same,
892 struct origin *parent,
893 struct blame_entry *split)
895 if (ent->num_lines <= tlno)
896 return;
897 if (tlno < same) {
898 struct blame_entry this[3];
899 tlno += ent->s_lno;
900 same += ent->s_lno;
901 split_overlap(this, ent, tlno, plno, same, parent);
902 copy_split_if_better(sb, split, this);
903 decref_split(this);
907 struct handle_split_cb_data {
908 struct scoreboard *sb;
909 struct blame_entry *ent;
910 struct origin *parent;
911 struct blame_entry *split;
912 long plno;
913 long tlno;
916 static int handle_split_cb(long start_a, long count_a,
917 long start_b, long count_b, void *data)
919 struct handle_split_cb_data *d = data;
920 handle_split(d->sb, d->ent, d->tlno, d->plno, start_b, d->parent,
921 d->split);
922 d->plno = start_a + count_a;
923 d->tlno = start_b + count_b;
924 return 0;
928 * Find the lines from parent that are the same as ent so that
929 * we can pass blames to it. file_p has the blob contents for
930 * the parent.
932 static void find_copy_in_blob(struct scoreboard *sb,
933 struct blame_entry *ent,
934 struct origin *parent,
935 struct blame_entry *split,
936 mmfile_t *file_p)
938 const char *cp;
939 int cnt;
940 mmfile_t file_o;
941 struct handle_split_cb_data d;
943 memset(&d, 0, sizeof(d));
944 d.sb = sb; d.ent = ent; d.parent = parent; d.split = split;
946 * Prepare mmfile that contains only the lines in ent.
948 cp = nth_line(sb, ent->lno);
949 file_o.ptr = (char *) cp;
950 cnt = ent->num_lines;
952 while (cnt && cp < sb->final_buf + sb->final_buf_size) {
953 if (*cp++ == '\n')
954 cnt--;
956 file_o.size = cp - file_o.ptr;
959 * file_o is a part of final image we are annotating.
960 * file_p partially may match that image.
962 memset(split, 0, sizeof(struct blame_entry [3]));
963 diff_hunks(file_p, &file_o, 1, handle_split_cb, &d);
964 /* remainder, if any, all match the preimage */
965 handle_split(sb, ent, d.tlno, d.plno, ent->num_lines, parent, split);
969 * See if lines currently target is suspected for can be attributed to
970 * parent.
972 static int find_move_in_parent(struct scoreboard *sb,
973 struct origin *target,
974 struct origin *parent)
976 int last_in_target, made_progress;
977 struct blame_entry *e, split[3];
978 mmfile_t file_p;
980 last_in_target = find_last_in_target(sb, target);
981 if (last_in_target < 0)
982 return 1; /* nothing remains for this target */
984 fill_origin_blob(&sb->revs->diffopt, parent, &file_p);
985 if (!file_p.ptr)
986 return 0;
988 made_progress = 1;
989 while (made_progress) {
990 made_progress = 0;
991 for (e = sb->ent; e; e = e->next) {
992 if (e->guilty || !same_suspect(e->suspect, target) ||
993 ent_score(sb, e) < blame_move_score)
994 continue;
995 find_copy_in_blob(sb, e, parent, split, &file_p);
996 if (split[1].suspect &&
997 blame_move_score < ent_score(sb, &split[1])) {
998 split_blame(sb, split, e);
999 made_progress = 1;
1001 decref_split(split);
1004 return 0;
1007 struct blame_list {
1008 struct blame_entry *ent;
1009 struct blame_entry split[3];
1013 * Count the number of entries the target is suspected for,
1014 * and prepare a list of entry and the best split.
1016 static struct blame_list *setup_blame_list(struct scoreboard *sb,
1017 struct origin *target,
1018 int min_score,
1019 int *num_ents_p)
1021 struct blame_entry *e;
1022 int num_ents, i;
1023 struct blame_list *blame_list = NULL;
1025 for (e = sb->ent, num_ents = 0; e; e = e->next)
1026 if (!e->scanned && !e->guilty &&
1027 same_suspect(e->suspect, target) &&
1028 min_score < ent_score(sb, e))
1029 num_ents++;
1030 if (num_ents) {
1031 blame_list = xcalloc(num_ents, sizeof(struct blame_list));
1032 for (e = sb->ent, i = 0; e; e = e->next)
1033 if (!e->scanned && !e->guilty &&
1034 same_suspect(e->suspect, target) &&
1035 min_score < ent_score(sb, e))
1036 blame_list[i++].ent = e;
1038 *num_ents_p = num_ents;
1039 return blame_list;
1043 * Reset the scanned status on all entries.
1045 static void reset_scanned_flag(struct scoreboard *sb)
1047 struct blame_entry *e;
1048 for (e = sb->ent; e; e = e->next)
1049 e->scanned = 0;
1053 * For lines target is suspected for, see if we can find code movement
1054 * across file boundary from the parent commit. porigin is the path
1055 * in the parent we already tried.
1057 static int find_copy_in_parent(struct scoreboard *sb,
1058 struct origin *target,
1059 struct commit *parent,
1060 struct origin *porigin,
1061 int opt)
1063 struct diff_options diff_opts;
1064 int i, j;
1065 int retval;
1066 struct blame_list *blame_list;
1067 int num_ents;
1069 blame_list = setup_blame_list(sb, target, blame_copy_score, &num_ents);
1070 if (!blame_list)
1071 return 1; /* nothing remains for this target */
1073 diff_setup(&diff_opts);
1074 DIFF_OPT_SET(&diff_opts, RECURSIVE);
1075 diff_opts.output_format = DIFF_FORMAT_NO_OUTPUT;
1077 diff_setup_done(&diff_opts);
1079 /* Try "find copies harder" on new path if requested;
1080 * we do not want to use diffcore_rename() actually to
1081 * match things up; find_copies_harder is set only to
1082 * force diff_tree_sha1() to feed all filepairs to diff_queue,
1083 * and this code needs to be after diff_setup_done(), which
1084 * usually makes find-copies-harder imply copy detection.
1086 if ((opt & PICKAXE_BLAME_COPY_HARDEST)
1087 || ((opt & PICKAXE_BLAME_COPY_HARDER)
1088 && (!porigin || strcmp(target->path, porigin->path))))
1089 DIFF_OPT_SET(&diff_opts, FIND_COPIES_HARDER);
1091 if (is_null_sha1(target->commit->object.sha1))
1092 do_diff_cache(parent->tree->object.sha1, &diff_opts);
1093 else
1094 diff_tree_sha1(parent->tree->object.sha1,
1095 target->commit->tree->object.sha1,
1096 "", &diff_opts);
1098 if (!DIFF_OPT_TST(&diff_opts, FIND_COPIES_HARDER))
1099 diffcore_std(&diff_opts);
1101 retval = 0;
1102 while (1) {
1103 int made_progress = 0;
1105 for (i = 0; i < diff_queued_diff.nr; i++) {
1106 struct diff_filepair *p = diff_queued_diff.queue[i];
1107 struct origin *norigin;
1108 mmfile_t file_p;
1109 struct blame_entry this[3];
1111 if (!DIFF_FILE_VALID(p->one))
1112 continue; /* does not exist in parent */
1113 if (S_ISGITLINK(p->one->mode))
1114 continue; /* ignore git links */
1115 if (porigin && !strcmp(p->one->path, porigin->path))
1116 /* find_move already dealt with this path */
1117 continue;
1119 norigin = get_origin(sb, parent, p->one->path);
1120 hashcpy(norigin->blob_sha1, p->one->sha1);
1121 norigin->mode = p->one->mode;
1122 fill_origin_blob(&sb->revs->diffopt, norigin, &file_p);
1123 if (!file_p.ptr)
1124 continue;
1126 for (j = 0; j < num_ents; j++) {
1127 find_copy_in_blob(sb, blame_list[j].ent,
1128 norigin, this, &file_p);
1129 copy_split_if_better(sb, blame_list[j].split,
1130 this);
1131 decref_split(this);
1133 origin_decref(norigin);
1136 for (j = 0; j < num_ents; j++) {
1137 struct blame_entry *split = blame_list[j].split;
1138 if (split[1].suspect &&
1139 blame_copy_score < ent_score(sb, &split[1])) {
1140 split_blame(sb, split, blame_list[j].ent);
1141 made_progress = 1;
1143 else
1144 blame_list[j].ent->scanned = 1;
1145 decref_split(split);
1147 free(blame_list);
1149 if (!made_progress)
1150 break;
1151 blame_list = setup_blame_list(sb, target, blame_copy_score, &num_ents);
1152 if (!blame_list) {
1153 retval = 1;
1154 break;
1157 reset_scanned_flag(sb);
1158 diff_flush(&diff_opts);
1159 free_pathspec(&diff_opts.pathspec);
1160 return retval;
1164 * The blobs of origin and porigin exactly match, so everything
1165 * origin is suspected for can be blamed on the parent.
1167 static void pass_whole_blame(struct scoreboard *sb,
1168 struct origin *origin, struct origin *porigin)
1170 struct blame_entry *e;
1172 if (!porigin->file.ptr && origin->file.ptr) {
1173 /* Steal its file */
1174 porigin->file = origin->file;
1175 origin->file.ptr = NULL;
1177 for (e = sb->ent; e; e = e->next) {
1178 if (!same_suspect(e->suspect, origin))
1179 continue;
1180 origin_incref(porigin);
1181 origin_decref(e->suspect);
1182 e->suspect = porigin;
1187 * We pass blame from the current commit to its parents. We keep saying
1188 * "parent" (and "porigin"), but what we mean is to find scapegoat to
1189 * exonerate ourselves.
1191 static struct commit_list *first_scapegoat(struct rev_info *revs, struct commit *commit)
1193 if (!reverse)
1194 return commit->parents;
1195 return lookup_decoration(&revs->children, &commit->object);
1198 static int num_scapegoats(struct rev_info *revs, struct commit *commit)
1200 int cnt;
1201 struct commit_list *l = first_scapegoat(revs, commit);
1202 for (cnt = 0; l; l = l->next)
1203 cnt++;
1204 return cnt;
1207 #define MAXSG 16
1209 static void pass_blame(struct scoreboard *sb, struct origin *origin, int opt)
1211 struct rev_info *revs = sb->revs;
1212 int i, pass, num_sg;
1213 struct commit *commit = origin->commit;
1214 struct commit_list *sg;
1215 struct origin *sg_buf[MAXSG];
1216 struct origin *porigin, **sg_origin = sg_buf;
1218 num_sg = num_scapegoats(revs, commit);
1219 if (!num_sg)
1220 goto finish;
1221 else if (num_sg < ARRAY_SIZE(sg_buf))
1222 memset(sg_buf, 0, sizeof(sg_buf));
1223 else
1224 sg_origin = xcalloc(num_sg, sizeof(*sg_origin));
1227 * The first pass looks for unrenamed path to optimize for
1228 * common cases, then we look for renames in the second pass.
1230 for (pass = 0; pass < 2 - no_whole_file_rename; pass++) {
1231 struct origin *(*find)(struct scoreboard *,
1232 struct commit *, struct origin *);
1233 find = pass ? find_rename : find_origin;
1235 for (i = 0, sg = first_scapegoat(revs, commit);
1236 i < num_sg && sg;
1237 sg = sg->next, i++) {
1238 struct commit *p = sg->item;
1239 int j, same;
1241 if (sg_origin[i])
1242 continue;
1243 if (parse_commit(p))
1244 continue;
1245 porigin = find(sb, p, origin);
1246 if (!porigin)
1247 continue;
1248 if (!hashcmp(porigin->blob_sha1, origin->blob_sha1)) {
1249 pass_whole_blame(sb, origin, porigin);
1250 origin_decref(porigin);
1251 goto finish;
1253 for (j = same = 0; j < i; j++)
1254 if (sg_origin[j] &&
1255 !hashcmp(sg_origin[j]->blob_sha1,
1256 porigin->blob_sha1)) {
1257 same = 1;
1258 break;
1260 if (!same)
1261 sg_origin[i] = porigin;
1262 else
1263 origin_decref(porigin);
1267 num_commits++;
1268 for (i = 0, sg = first_scapegoat(revs, commit);
1269 i < num_sg && sg;
1270 sg = sg->next, i++) {
1271 struct origin *porigin = sg_origin[i];
1272 if (!porigin)
1273 continue;
1274 if (!origin->previous) {
1275 origin_incref(porigin);
1276 origin->previous = porigin;
1278 if (pass_blame_to_parent(sb, origin, porigin))
1279 goto finish;
1283 * Optionally find moves in parents' files.
1285 if (opt & PICKAXE_BLAME_MOVE)
1286 for (i = 0, sg = first_scapegoat(revs, commit);
1287 i < num_sg && sg;
1288 sg = sg->next, i++) {
1289 struct origin *porigin = sg_origin[i];
1290 if (!porigin)
1291 continue;
1292 if (find_move_in_parent(sb, origin, porigin))
1293 goto finish;
1297 * Optionally find copies from parents' files.
1299 if (opt & PICKAXE_BLAME_COPY)
1300 for (i = 0, sg = first_scapegoat(revs, commit);
1301 i < num_sg && sg;
1302 sg = sg->next, i++) {
1303 struct origin *porigin = sg_origin[i];
1304 if (find_copy_in_parent(sb, origin, sg->item,
1305 porigin, opt))
1306 goto finish;
1309 finish:
1310 for (i = 0; i < num_sg; i++) {
1311 if (sg_origin[i]) {
1312 drop_origin_blob(sg_origin[i]);
1313 origin_decref(sg_origin[i]);
1316 drop_origin_blob(origin);
1317 if (sg_buf != sg_origin)
1318 free(sg_origin);
1322 * Information on commits, used for output.
1324 struct commit_info {
1325 struct strbuf author;
1326 struct strbuf author_mail;
1327 unsigned long author_time;
1328 struct strbuf author_tz;
1330 /* filled only when asked for details */
1331 struct strbuf committer;
1332 struct strbuf committer_mail;
1333 unsigned long committer_time;
1334 struct strbuf committer_tz;
1336 struct strbuf summary;
1340 * Parse author/committer line in the commit object buffer
1342 static void get_ac_line(const char *inbuf, const char *what,
1343 struct strbuf *name, struct strbuf *mail,
1344 unsigned long *time, struct strbuf *tz)
1346 struct ident_split ident;
1347 size_t len, maillen, namelen;
1348 char *tmp, *endp;
1349 const char *namebuf, *mailbuf;
1351 tmp = strstr(inbuf, what);
1352 if (!tmp)
1353 goto error_out;
1354 tmp += strlen(what);
1355 endp = strchr(tmp, '\n');
1356 if (!endp)
1357 len = strlen(tmp);
1358 else
1359 len = endp - tmp;
1361 if (split_ident_line(&ident, tmp, len)) {
1362 error_out:
1363 /* Ugh */
1364 tmp = "(unknown)";
1365 strbuf_addstr(name, tmp);
1366 strbuf_addstr(mail, tmp);
1367 strbuf_addstr(tz, tmp);
1368 *time = 0;
1369 return;
1372 namelen = ident.name_end - ident.name_begin;
1373 namebuf = ident.name_begin;
1375 maillen = ident.mail_end - ident.mail_begin;
1376 mailbuf = ident.mail_begin;
1378 if (ident.date_begin && ident.date_end)
1379 *time = strtoul(ident.date_begin, NULL, 10);
1380 else
1381 *time = 0;
1383 if (ident.tz_begin && ident.tz_end)
1384 strbuf_add(tz, ident.tz_begin, ident.tz_end - ident.tz_begin);
1385 else
1386 strbuf_addstr(tz, "(unknown)");
1389 * Now, convert both name and e-mail using mailmap
1391 map_user(&mailmap, &mailbuf, &maillen,
1392 &namebuf, &namelen);
1394 strbuf_addf(mail, "<%.*s>", (int)maillen, mailbuf);
1395 strbuf_add(name, namebuf, namelen);
1398 static void commit_info_init(struct commit_info *ci)
1401 strbuf_init(&ci->author, 0);
1402 strbuf_init(&ci->author_mail, 0);
1403 strbuf_init(&ci->author_tz, 0);
1404 strbuf_init(&ci->committer, 0);
1405 strbuf_init(&ci->committer_mail, 0);
1406 strbuf_init(&ci->committer_tz, 0);
1407 strbuf_init(&ci->summary, 0);
1410 static void commit_info_destroy(struct commit_info *ci)
1413 strbuf_release(&ci->author);
1414 strbuf_release(&ci->author_mail);
1415 strbuf_release(&ci->author_tz);
1416 strbuf_release(&ci->committer);
1417 strbuf_release(&ci->committer_mail);
1418 strbuf_release(&ci->committer_tz);
1419 strbuf_release(&ci->summary);
1422 static void get_commit_info(struct commit *commit,
1423 struct commit_info *ret,
1424 int detailed)
1426 int len;
1427 const char *subject, *encoding;
1428 char *message;
1430 commit_info_init(ret);
1432 encoding = get_log_output_encoding();
1433 message = logmsg_reencode(commit, NULL, encoding);
1434 get_ac_line(message, "\nauthor ",
1435 &ret->author, &ret->author_mail,
1436 &ret->author_time, &ret->author_tz);
1438 if (!detailed) {
1439 logmsg_free(message, commit);
1440 return;
1443 get_ac_line(message, "\ncommitter ",
1444 &ret->committer, &ret->committer_mail,
1445 &ret->committer_time, &ret->committer_tz);
1447 len = find_commit_subject(message, &subject);
1448 if (len)
1449 strbuf_add(&ret->summary, subject, len);
1450 else
1451 strbuf_addf(&ret->summary, "(%s)", sha1_to_hex(commit->object.sha1));
1453 logmsg_free(message, commit);
1457 * To allow LF and other nonportable characters in pathnames,
1458 * they are c-style quoted as needed.
1460 static void write_filename_info(const char *path)
1462 printf("filename ");
1463 write_name_quoted(path, stdout, '\n');
1467 * Porcelain/Incremental format wants to show a lot of details per
1468 * commit. Instead of repeating this every line, emit it only once,
1469 * the first time each commit appears in the output (unless the
1470 * user has specifically asked for us to repeat).
1472 static int emit_one_suspect_detail(struct origin *suspect, int repeat)
1474 struct commit_info ci;
1476 if (!repeat && (suspect->commit->object.flags & METAINFO_SHOWN))
1477 return 0;
1479 suspect->commit->object.flags |= METAINFO_SHOWN;
1480 get_commit_info(suspect->commit, &ci, 1);
1481 printf("author %s\n", ci.author.buf);
1482 printf("author-mail %s\n", ci.author_mail.buf);
1483 printf("author-time %lu\n", ci.author_time);
1484 printf("author-tz %s\n", ci.author_tz.buf);
1485 printf("committer %s\n", ci.committer.buf);
1486 printf("committer-mail %s\n", ci.committer_mail.buf);
1487 printf("committer-time %lu\n", ci.committer_time);
1488 printf("committer-tz %s\n", ci.committer_tz.buf);
1489 printf("summary %s\n", ci.summary.buf);
1490 if (suspect->commit->object.flags & UNINTERESTING)
1491 printf("boundary\n");
1492 if (suspect->previous) {
1493 struct origin *prev = suspect->previous;
1494 printf("previous %s ", sha1_to_hex(prev->commit->object.sha1));
1495 write_name_quoted(prev->path, stdout, '\n');
1498 commit_info_destroy(&ci);
1500 return 1;
1504 * The blame_entry is found to be guilty for the range. Mark it
1505 * as such, and show it in incremental output.
1507 static void found_guilty_entry(struct blame_entry *ent)
1509 if (ent->guilty)
1510 return;
1511 ent->guilty = 1;
1512 if (incremental) {
1513 struct origin *suspect = ent->suspect;
1515 printf("%s %d %d %d\n",
1516 sha1_to_hex(suspect->commit->object.sha1),
1517 ent->s_lno + 1, ent->lno + 1, ent->num_lines);
1518 emit_one_suspect_detail(suspect, 0);
1519 write_filename_info(suspect->path);
1520 maybe_flush_or_die(stdout, "stdout");
1525 * The main loop -- while the scoreboard has lines whose true origin
1526 * is still unknown, pick one blame_entry, and allow its current
1527 * suspect to pass blames to its parents.
1529 static void assign_blame(struct scoreboard *sb, int opt)
1531 struct rev_info *revs = sb->revs;
1533 while (1) {
1534 struct blame_entry *ent;
1535 struct commit *commit;
1536 struct origin *suspect = NULL;
1538 /* find one suspect to break down */
1539 for (ent = sb->ent; !suspect && ent; ent = ent->next)
1540 if (!ent->guilty)
1541 suspect = ent->suspect;
1542 if (!suspect)
1543 return; /* all done */
1546 * We will use this suspect later in the loop,
1547 * so hold onto it in the meantime.
1549 origin_incref(suspect);
1550 commit = suspect->commit;
1551 if (!commit->object.parsed)
1552 parse_commit(commit);
1553 if (reverse ||
1554 (!(commit->object.flags & UNINTERESTING) &&
1555 !(revs->max_age != -1 && commit->date < revs->max_age)))
1556 pass_blame(sb, suspect, opt);
1557 else {
1558 commit->object.flags |= UNINTERESTING;
1559 if (commit->object.parsed)
1560 mark_parents_uninteresting(commit);
1562 /* treat root commit as boundary */
1563 if (!commit->parents && !show_root)
1564 commit->object.flags |= UNINTERESTING;
1566 /* Take responsibility for the remaining entries */
1567 for (ent = sb->ent; ent; ent = ent->next)
1568 if (same_suspect(ent->suspect, suspect))
1569 found_guilty_entry(ent);
1570 origin_decref(suspect);
1572 if (DEBUG) /* sanity */
1573 sanity_check_refcnt(sb);
1577 static const char *format_time(unsigned long time, const char *tz_str,
1578 int show_raw_time)
1580 static char time_buf[128];
1581 const char *time_str;
1582 int time_len;
1583 int tz;
1585 if (show_raw_time) {
1586 snprintf(time_buf, sizeof(time_buf), "%lu %s", time, tz_str);
1588 else {
1589 tz = atoi(tz_str);
1590 time_str = show_date(time, tz, blame_date_mode);
1591 time_len = strlen(time_str);
1592 memcpy(time_buf, time_str, time_len);
1593 memset(time_buf + time_len, ' ', blame_date_width - time_len);
1595 return time_buf;
1598 #define OUTPUT_ANNOTATE_COMPAT 001
1599 #define OUTPUT_LONG_OBJECT_NAME 002
1600 #define OUTPUT_RAW_TIMESTAMP 004
1601 #define OUTPUT_PORCELAIN 010
1602 #define OUTPUT_SHOW_NAME 020
1603 #define OUTPUT_SHOW_NUMBER 040
1604 #define OUTPUT_SHOW_SCORE 0100
1605 #define OUTPUT_NO_AUTHOR 0200
1606 #define OUTPUT_SHOW_EMAIL 0400
1607 #define OUTPUT_LINE_PORCELAIN 01000
1609 static void emit_porcelain_details(struct origin *suspect, int repeat)
1611 if (emit_one_suspect_detail(suspect, repeat) ||
1612 (suspect->commit->object.flags & MORE_THAN_ONE_PATH))
1613 write_filename_info(suspect->path);
1616 static void emit_porcelain(struct scoreboard *sb, struct blame_entry *ent,
1617 int opt)
1619 int repeat = opt & OUTPUT_LINE_PORCELAIN;
1620 int cnt;
1621 const char *cp;
1622 struct origin *suspect = ent->suspect;
1623 char hex[41];
1625 strcpy(hex, sha1_to_hex(suspect->commit->object.sha1));
1626 printf("%s%c%d %d %d\n",
1627 hex,
1628 ent->guilty ? ' ' : '*', /* purely for debugging */
1629 ent->s_lno + 1,
1630 ent->lno + 1,
1631 ent->num_lines);
1632 emit_porcelain_details(suspect, repeat);
1634 cp = nth_line(sb, ent->lno);
1635 for (cnt = 0; cnt < ent->num_lines; cnt++) {
1636 char ch;
1637 if (cnt) {
1638 printf("%s %d %d\n", hex,
1639 ent->s_lno + 1 + cnt,
1640 ent->lno + 1 + cnt);
1641 if (repeat)
1642 emit_porcelain_details(suspect, 1);
1644 putchar('\t');
1645 do {
1646 ch = *cp++;
1647 putchar(ch);
1648 } while (ch != '\n' &&
1649 cp < sb->final_buf + sb->final_buf_size);
1652 if (sb->final_buf_size && cp[-1] != '\n')
1653 putchar('\n');
1656 static void emit_other(struct scoreboard *sb, struct blame_entry *ent, int opt)
1658 int cnt;
1659 const char *cp;
1660 struct origin *suspect = ent->suspect;
1661 struct commit_info ci;
1662 char hex[41];
1663 int show_raw_time = !!(opt & OUTPUT_RAW_TIMESTAMP);
1665 get_commit_info(suspect->commit, &ci, 1);
1666 strcpy(hex, sha1_to_hex(suspect->commit->object.sha1));
1668 cp = nth_line(sb, ent->lno);
1669 for (cnt = 0; cnt < ent->num_lines; cnt++) {
1670 char ch;
1671 int length = (opt & OUTPUT_LONG_OBJECT_NAME) ? 40 : abbrev;
1673 if (suspect->commit->object.flags & UNINTERESTING) {
1674 if (blank_boundary)
1675 memset(hex, ' ', length);
1676 else if (!(opt & OUTPUT_ANNOTATE_COMPAT)) {
1677 length--;
1678 putchar('^');
1682 printf("%.*s", length, hex);
1683 if (opt & OUTPUT_ANNOTATE_COMPAT) {
1684 const char *name;
1685 if (opt & OUTPUT_SHOW_EMAIL)
1686 name = ci.author_mail.buf;
1687 else
1688 name = ci.author.buf;
1689 printf("\t(%10s\t%10s\t%d)", name,
1690 format_time(ci.author_time, ci.author_tz.buf,
1691 show_raw_time),
1692 ent->lno + 1 + cnt);
1693 } else {
1694 if (opt & OUTPUT_SHOW_SCORE)
1695 printf(" %*d %02d",
1696 max_score_digits, ent->score,
1697 ent->suspect->refcnt);
1698 if (opt & OUTPUT_SHOW_NAME)
1699 printf(" %-*.*s", longest_file, longest_file,
1700 suspect->path);
1701 if (opt & OUTPUT_SHOW_NUMBER)
1702 printf(" %*d", max_orig_digits,
1703 ent->s_lno + 1 + cnt);
1705 if (!(opt & OUTPUT_NO_AUTHOR)) {
1706 const char *name;
1707 int pad;
1708 if (opt & OUTPUT_SHOW_EMAIL)
1709 name = ci.author_mail.buf;
1710 else
1711 name = ci.author.buf;
1712 pad = longest_author - utf8_strwidth(name);
1713 printf(" (%s%*s %10s",
1714 name, pad, "",
1715 format_time(ci.author_time,
1716 ci.author_tz.buf,
1717 show_raw_time));
1719 printf(" %*d) ",
1720 max_digits, ent->lno + 1 + cnt);
1722 do {
1723 ch = *cp++;
1724 putchar(ch);
1725 } while (ch != '\n' &&
1726 cp < sb->final_buf + sb->final_buf_size);
1729 if (sb->final_buf_size && cp[-1] != '\n')
1730 putchar('\n');
1732 commit_info_destroy(&ci);
1735 static void output(struct scoreboard *sb, int option)
1737 struct blame_entry *ent;
1739 if (option & OUTPUT_PORCELAIN) {
1740 for (ent = sb->ent; ent; ent = ent->next) {
1741 struct blame_entry *oth;
1742 struct origin *suspect = ent->suspect;
1743 struct commit *commit = suspect->commit;
1744 if (commit->object.flags & MORE_THAN_ONE_PATH)
1745 continue;
1746 for (oth = ent->next; oth; oth = oth->next) {
1747 if ((oth->suspect->commit != commit) ||
1748 !strcmp(oth->suspect->path, suspect->path))
1749 continue;
1750 commit->object.flags |= MORE_THAN_ONE_PATH;
1751 break;
1756 for (ent = sb->ent; ent; ent = ent->next) {
1757 if (option & OUTPUT_PORCELAIN)
1758 emit_porcelain(sb, ent, option);
1759 else {
1760 emit_other(sb, ent, option);
1766 * To allow quick access to the contents of nth line in the
1767 * final image, prepare an index in the scoreboard.
1769 static int prepare_lines(struct scoreboard *sb)
1771 const char *buf = sb->final_buf;
1772 unsigned long len = sb->final_buf_size;
1773 int num = 0, incomplete = 0, bol = 1;
1775 if (len && buf[len-1] != '\n')
1776 incomplete++; /* incomplete line at the end */
1777 while (len--) {
1778 if (bol) {
1779 sb->lineno = xrealloc(sb->lineno,
1780 sizeof(int *) * (num + 1));
1781 sb->lineno[num] = buf - sb->final_buf;
1782 bol = 0;
1784 if (*buf++ == '\n') {
1785 num++;
1786 bol = 1;
1789 sb->lineno = xrealloc(sb->lineno,
1790 sizeof(int *) * (num + incomplete + 1));
1791 sb->lineno[num + incomplete] = buf - sb->final_buf;
1792 sb->num_lines = num + incomplete;
1793 return sb->num_lines;
1797 * Add phony grafts for use with -S; this is primarily to
1798 * support git's cvsserver that wants to give a linear history
1799 * to its clients.
1801 static int read_ancestry(const char *graft_file)
1803 FILE *fp = fopen(graft_file, "r");
1804 char buf[1024];
1805 if (!fp)
1806 return -1;
1807 while (fgets(buf, sizeof(buf), fp)) {
1808 /* The format is just "Commit Parent1 Parent2 ...\n" */
1809 int len = strlen(buf);
1810 struct commit_graft *graft = read_graft_line(buf, len);
1811 if (graft)
1812 register_commit_graft(graft, 0);
1814 fclose(fp);
1815 return 0;
1818 static int update_auto_abbrev(int auto_abbrev, struct origin *suspect)
1820 const char *uniq = find_unique_abbrev(suspect->commit->object.sha1,
1821 auto_abbrev);
1822 int len = strlen(uniq);
1823 if (auto_abbrev < len)
1824 return len;
1825 return auto_abbrev;
1829 * How many columns do we need to show line numbers, authors,
1830 * and filenames?
1832 static void find_alignment(struct scoreboard *sb, int *option)
1834 int longest_src_lines = 0;
1835 int longest_dst_lines = 0;
1836 unsigned largest_score = 0;
1837 struct blame_entry *e;
1838 int compute_auto_abbrev = (abbrev < 0);
1839 int auto_abbrev = default_abbrev;
1841 for (e = sb->ent; e; e = e->next) {
1842 struct origin *suspect = e->suspect;
1843 struct commit_info ci;
1844 int num;
1846 if (compute_auto_abbrev)
1847 auto_abbrev = update_auto_abbrev(auto_abbrev, suspect);
1848 if (strcmp(suspect->path, sb->path))
1849 *option |= OUTPUT_SHOW_NAME;
1850 num = strlen(suspect->path);
1851 if (longest_file < num)
1852 longest_file = num;
1853 if (!(suspect->commit->object.flags & METAINFO_SHOWN)) {
1854 suspect->commit->object.flags |= METAINFO_SHOWN;
1855 get_commit_info(suspect->commit, &ci, 1);
1856 if (*option & OUTPUT_SHOW_EMAIL)
1857 num = utf8_strwidth(ci.author_mail.buf);
1858 else
1859 num = utf8_strwidth(ci.author.buf);
1860 if (longest_author < num)
1861 longest_author = num;
1863 num = e->s_lno + e->num_lines;
1864 if (longest_src_lines < num)
1865 longest_src_lines = num;
1866 num = e->lno + e->num_lines;
1867 if (longest_dst_lines < num)
1868 longest_dst_lines = num;
1869 if (largest_score < ent_score(sb, e))
1870 largest_score = ent_score(sb, e);
1872 commit_info_destroy(&ci);
1874 max_orig_digits = decimal_width(longest_src_lines);
1875 max_digits = decimal_width(longest_dst_lines);
1876 max_score_digits = decimal_width(largest_score);
1878 if (compute_auto_abbrev)
1879 /* one more abbrev length is needed for the boundary commit */
1880 abbrev = auto_abbrev + 1;
1884 * For debugging -- origin is refcounted, and this asserts that
1885 * we do not underflow.
1887 static void sanity_check_refcnt(struct scoreboard *sb)
1889 int baa = 0;
1890 struct blame_entry *ent;
1892 for (ent = sb->ent; ent; ent = ent->next) {
1893 /* Nobody should have zero or negative refcnt */
1894 if (ent->suspect->refcnt <= 0) {
1895 fprintf(stderr, "%s in %s has negative refcnt %d\n",
1896 ent->suspect->path,
1897 sha1_to_hex(ent->suspect->commit->object.sha1),
1898 ent->suspect->refcnt);
1899 baa = 1;
1902 if (baa) {
1903 int opt = 0160;
1904 find_alignment(sb, &opt);
1905 output(sb, opt);
1906 die("Baa %d!", baa);
1911 * Used for the command line parsing; check if the path exists
1912 * in the working tree.
1914 static int has_string_in_work_tree(const char *path)
1916 struct stat st;
1917 return !lstat(path, &st);
1920 static unsigned parse_score(const char *arg)
1922 char *end;
1923 unsigned long score = strtoul(arg, &end, 10);
1924 if (*end)
1925 return 0;
1926 return score;
1929 static const char *add_prefix(const char *prefix, const char *path)
1931 return prefix_path(prefix, prefix ? strlen(prefix) : 0, path);
1935 * Parsing of -L option
1937 static void prepare_blame_range(struct scoreboard *sb,
1938 const char *bottomtop,
1939 long lno,
1940 long *bottom, long *top)
1942 if (parse_range_arg(bottomtop, nth_line_cb, sb, lno, bottom, top, sb->path))
1943 usage(blame_usage);
1946 static int git_blame_config(const char *var, const char *value, void *cb)
1948 if (!strcmp(var, "blame.showroot")) {
1949 show_root = git_config_bool(var, value);
1950 return 0;
1952 if (!strcmp(var, "blame.blankboundary")) {
1953 blank_boundary = git_config_bool(var, value);
1954 return 0;
1956 if (!strcmp(var, "blame.date")) {
1957 if (!value)
1958 return config_error_nonbool(var);
1959 blame_date_mode = parse_date_format(value);
1960 return 0;
1963 if (userdiff_config(var, value) < 0)
1964 return -1;
1966 return git_default_config(var, value, cb);
1969 static void verify_working_tree_path(struct commit *work_tree, const char *path)
1971 struct commit_list *parents;
1973 for (parents = work_tree->parents; parents; parents = parents->next) {
1974 const unsigned char *commit_sha1 = parents->item->object.sha1;
1975 unsigned char blob_sha1[20];
1976 unsigned mode;
1978 if (!get_tree_entry(commit_sha1, path, blob_sha1, &mode) &&
1979 sha1_object_info(blob_sha1, NULL) == OBJ_BLOB)
1980 return;
1982 die("no such path '%s' in HEAD", path);
1985 static struct commit_list **append_parent(struct commit_list **tail, const unsigned char *sha1)
1987 struct commit *parent;
1989 parent = lookup_commit_reference(sha1);
1990 if (!parent)
1991 die("no such commit %s", sha1_to_hex(sha1));
1992 return &commit_list_insert(parent, tail)->next;
1995 static void append_merge_parents(struct commit_list **tail)
1997 int merge_head;
1998 const char *merge_head_file = git_path("MERGE_HEAD");
1999 struct strbuf line = STRBUF_INIT;
2001 merge_head = open(merge_head_file, O_RDONLY);
2002 if (merge_head < 0) {
2003 if (errno == ENOENT)
2004 return;
2005 die("cannot open '%s' for reading", merge_head_file);
2008 while (!strbuf_getwholeline_fd(&line, merge_head, '\n')) {
2009 unsigned char sha1[20];
2010 if (line.len < 40 || get_sha1_hex(line.buf, sha1))
2011 die("unknown line in '%s': %s", merge_head_file, line.buf);
2012 tail = append_parent(tail, sha1);
2014 close(merge_head);
2015 strbuf_release(&line);
2019 * Prepare a dummy commit that represents the work tree (or staged) item.
2020 * Note that annotating work tree item never works in the reverse.
2022 static struct commit *fake_working_tree_commit(struct diff_options *opt,
2023 const char *path,
2024 const char *contents_from)
2026 struct commit *commit;
2027 struct origin *origin;
2028 struct commit_list **parent_tail, *parent;
2029 unsigned char head_sha1[20];
2030 struct strbuf buf = STRBUF_INIT;
2031 const char *ident;
2032 time_t now;
2033 int size, len;
2034 struct cache_entry *ce;
2035 unsigned mode;
2036 struct strbuf msg = STRBUF_INIT;
2038 time(&now);
2039 commit = xcalloc(1, sizeof(*commit));
2040 commit->object.parsed = 1;
2041 commit->date = now;
2042 commit->object.type = OBJ_COMMIT;
2043 parent_tail = &commit->parents;
2045 if (!resolve_ref_unsafe("HEAD", head_sha1, 1, NULL))
2046 die("no such ref: HEAD");
2048 parent_tail = append_parent(parent_tail, head_sha1);
2049 append_merge_parents(parent_tail);
2050 verify_working_tree_path(commit, path);
2052 origin = make_origin(commit, path);
2054 ident = fmt_ident("Not Committed Yet", "not.committed.yet", NULL, 0);
2055 strbuf_addstr(&msg, "tree 0000000000000000000000000000000000000000\n");
2056 for (parent = commit->parents; parent; parent = parent->next)
2057 strbuf_addf(&msg, "parent %s\n",
2058 sha1_to_hex(parent->item->object.sha1));
2059 strbuf_addf(&msg,
2060 "author %s\n"
2061 "committer %s\n\n"
2062 "Version of %s from %s\n",
2063 ident, ident, path,
2064 (!contents_from ? path :
2065 (!strcmp(contents_from, "-") ? "standard input" : contents_from)));
2066 commit->buffer = strbuf_detach(&msg, NULL);
2068 if (!contents_from || strcmp("-", contents_from)) {
2069 struct stat st;
2070 const char *read_from;
2071 char *buf_ptr;
2072 unsigned long buf_len;
2074 if (contents_from) {
2075 if (stat(contents_from, &st) < 0)
2076 die_errno("Cannot stat '%s'", contents_from);
2077 read_from = contents_from;
2079 else {
2080 if (lstat(path, &st) < 0)
2081 die_errno("Cannot lstat '%s'", path);
2082 read_from = path;
2084 mode = canon_mode(st.st_mode);
2086 switch (st.st_mode & S_IFMT) {
2087 case S_IFREG:
2088 if (DIFF_OPT_TST(opt, ALLOW_TEXTCONV) &&
2089 textconv_object(read_from, mode, null_sha1, 0, &buf_ptr, &buf_len))
2090 strbuf_attach(&buf, buf_ptr, buf_len, buf_len + 1);
2091 else if (strbuf_read_file(&buf, read_from, st.st_size) != st.st_size)
2092 die_errno("cannot open or read '%s'", read_from);
2093 break;
2094 case S_IFLNK:
2095 if (strbuf_readlink(&buf, read_from, st.st_size) < 0)
2096 die_errno("cannot readlink '%s'", read_from);
2097 break;
2098 default:
2099 die("unsupported file type %s", read_from);
2102 else {
2103 /* Reading from stdin */
2104 mode = 0;
2105 if (strbuf_read(&buf, 0, 0) < 0)
2106 die_errno("failed to read from stdin");
2108 convert_to_git(path, buf.buf, buf.len, &buf, 0);
2109 origin->file.ptr = buf.buf;
2110 origin->file.size = buf.len;
2111 pretend_sha1_file(buf.buf, buf.len, OBJ_BLOB, origin->blob_sha1);
2112 commit->util = origin;
2115 * Read the current index, replace the path entry with
2116 * origin->blob_sha1 without mucking with its mode or type
2117 * bits; we are not going to write this index out -- we just
2118 * want to run "diff-index --cached".
2120 discard_cache();
2121 read_cache();
2123 len = strlen(path);
2124 if (!mode) {
2125 int pos = cache_name_pos(path, len);
2126 if (0 <= pos)
2127 mode = active_cache[pos]->ce_mode;
2128 else
2129 /* Let's not bother reading from HEAD tree */
2130 mode = S_IFREG | 0644;
2132 size = cache_entry_size(len);
2133 ce = xcalloc(1, size);
2134 hashcpy(ce->sha1, origin->blob_sha1);
2135 memcpy(ce->name, path, len);
2136 ce->ce_flags = create_ce_flags(0);
2137 ce->ce_namelen = len;
2138 ce->ce_mode = create_ce_mode(mode);
2139 add_cache_entry(ce, ADD_CACHE_OK_TO_ADD|ADD_CACHE_OK_TO_REPLACE);
2142 * We are not going to write this out, so this does not matter
2143 * right now, but someday we might optimize diff-index --cached
2144 * with cache-tree information.
2146 cache_tree_invalidate_path(active_cache_tree, path);
2148 return commit;
2151 static const char *prepare_final(struct scoreboard *sb)
2153 int i;
2154 const char *final_commit_name = NULL;
2155 struct rev_info *revs = sb->revs;
2158 * There must be one and only one positive commit in the
2159 * revs->pending array.
2161 for (i = 0; i < revs->pending.nr; i++) {
2162 struct object *obj = revs->pending.objects[i].item;
2163 if (obj->flags & UNINTERESTING)
2164 continue;
2165 while (obj->type == OBJ_TAG)
2166 obj = deref_tag(obj, NULL, 0);
2167 if (obj->type != OBJ_COMMIT)
2168 die("Non commit %s?", revs->pending.objects[i].name);
2169 if (sb->final)
2170 die("More than one commit to dig from %s and %s?",
2171 revs->pending.objects[i].name,
2172 final_commit_name);
2173 sb->final = (struct commit *) obj;
2174 final_commit_name = revs->pending.objects[i].name;
2176 return final_commit_name;
2179 static const char *prepare_initial(struct scoreboard *sb)
2181 int i;
2182 const char *final_commit_name = NULL;
2183 struct rev_info *revs = sb->revs;
2186 * There must be one and only one negative commit, and it must be
2187 * the boundary.
2189 for (i = 0; i < revs->pending.nr; i++) {
2190 struct object *obj = revs->pending.objects[i].item;
2191 if (!(obj->flags & UNINTERESTING))
2192 continue;
2193 while (obj->type == OBJ_TAG)
2194 obj = deref_tag(obj, NULL, 0);
2195 if (obj->type != OBJ_COMMIT)
2196 die("Non commit %s?", revs->pending.objects[i].name);
2197 if (sb->final)
2198 die("More than one commit to dig down to %s and %s?",
2199 revs->pending.objects[i].name,
2200 final_commit_name);
2201 sb->final = (struct commit *) obj;
2202 final_commit_name = revs->pending.objects[i].name;
2204 if (!final_commit_name)
2205 die("No commit to dig down to?");
2206 return final_commit_name;
2209 static int blame_copy_callback(const struct option *option, const char *arg, int unset)
2211 int *opt = option->value;
2214 * -C enables copy from removed files;
2215 * -C -C enables copy from existing files, but only
2216 * when blaming a new file;
2217 * -C -C -C enables copy from existing files for
2218 * everybody
2220 if (*opt & PICKAXE_BLAME_COPY_HARDER)
2221 *opt |= PICKAXE_BLAME_COPY_HARDEST;
2222 if (*opt & PICKAXE_BLAME_COPY)
2223 *opt |= PICKAXE_BLAME_COPY_HARDER;
2224 *opt |= PICKAXE_BLAME_COPY | PICKAXE_BLAME_MOVE;
2226 if (arg)
2227 blame_copy_score = parse_score(arg);
2228 return 0;
2231 static int blame_move_callback(const struct option *option, const char *arg, int unset)
2233 int *opt = option->value;
2235 *opt |= PICKAXE_BLAME_MOVE;
2237 if (arg)
2238 blame_move_score = parse_score(arg);
2239 return 0;
2242 static int blame_bottomtop_callback(const struct option *option, const char *arg, int unset)
2244 const char **bottomtop = option->value;
2245 if (!arg)
2246 return -1;
2247 if (*bottomtop)
2248 die("More than one '-L n,m' option given");
2249 *bottomtop = arg;
2250 return 0;
2253 int cmd_blame(int argc, const char **argv, const char *prefix)
2255 struct rev_info revs;
2256 const char *path;
2257 struct scoreboard sb;
2258 struct origin *o;
2259 struct blame_entry *ent;
2260 long dashdash_pos, bottom, top, lno;
2261 const char *final_commit_name = NULL;
2262 enum object_type type;
2264 static const char *bottomtop = NULL;
2265 static int output_option = 0, opt = 0;
2266 static int show_stats = 0;
2267 static const char *revs_file = NULL;
2268 static const char *contents_from = NULL;
2269 static const struct option options[] = {
2270 OPT_BOOLEAN(0, "incremental", &incremental, N_("Show blame entries as we find them, incrementally")),
2271 OPT_BOOLEAN('b', NULL, &blank_boundary, N_("Show blank SHA-1 for boundary commits (Default: off)")),
2272 OPT_BOOLEAN(0, "root", &show_root, N_("Do not treat root commits as boundaries (Default: off)")),
2273 OPT_BOOLEAN(0, "show-stats", &show_stats, N_("Show work cost statistics")),
2274 OPT_BIT(0, "score-debug", &output_option, N_("Show output score for blame entries"), OUTPUT_SHOW_SCORE),
2275 OPT_BIT('f', "show-name", &output_option, N_("Show original filename (Default: auto)"), OUTPUT_SHOW_NAME),
2276 OPT_BIT('n', "show-number", &output_option, N_("Show original linenumber (Default: off)"), OUTPUT_SHOW_NUMBER),
2277 OPT_BIT('p', "porcelain", &output_option, N_("Show in a format designed for machine consumption"), OUTPUT_PORCELAIN),
2278 OPT_BIT(0, "line-porcelain", &output_option, N_("Show porcelain format with per-line commit information"), OUTPUT_PORCELAIN|OUTPUT_LINE_PORCELAIN),
2279 OPT_BIT('c', NULL, &output_option, N_("Use the same output mode as git-annotate (Default: off)"), OUTPUT_ANNOTATE_COMPAT),
2280 OPT_BIT('t', NULL, &output_option, N_("Show raw timestamp (Default: off)"), OUTPUT_RAW_TIMESTAMP),
2281 OPT_BIT('l', NULL, &output_option, N_("Show long commit SHA1 (Default: off)"), OUTPUT_LONG_OBJECT_NAME),
2282 OPT_BIT('s', NULL, &output_option, N_("Suppress author name and timestamp (Default: off)"), OUTPUT_NO_AUTHOR),
2283 OPT_BIT('e', "show-email", &output_option, N_("Show author email instead of name (Default: off)"), OUTPUT_SHOW_EMAIL),
2284 OPT_BIT('w', NULL, &xdl_opts, N_("Ignore whitespace differences"), XDF_IGNORE_WHITESPACE),
2285 OPT_BIT(0, "minimal", &xdl_opts, N_("Spend extra cycles to find better match"), XDF_NEED_MINIMAL),
2286 OPT_STRING('S', NULL, &revs_file, N_("file"), N_("Use revisions from <file> instead of calling git-rev-list")),
2287 OPT_STRING(0, "contents", &contents_from, N_("file"), N_("Use <file>'s contents as the final image")),
2288 { OPTION_CALLBACK, 'C', NULL, &opt, N_("score"), N_("Find line copies within and across files"), PARSE_OPT_OPTARG, blame_copy_callback },
2289 { OPTION_CALLBACK, 'M', NULL, &opt, N_("score"), N_("Find line movements within and across files"), PARSE_OPT_OPTARG, blame_move_callback },
2290 OPT_CALLBACK('L', NULL, &bottomtop, N_("n,m"), N_("Process only line range n,m, counting from 1"), blame_bottomtop_callback),
2291 OPT__ABBREV(&abbrev),
2292 OPT_END()
2295 struct parse_opt_ctx_t ctx;
2296 int cmd_is_annotate = !strcmp(argv[0], "annotate");
2298 git_config(git_blame_config, NULL);
2299 init_revisions(&revs, NULL);
2300 revs.date_mode = blame_date_mode;
2301 DIFF_OPT_SET(&revs.diffopt, ALLOW_TEXTCONV);
2302 DIFF_OPT_SET(&revs.diffopt, FOLLOW_RENAMES);
2304 save_commit_buffer = 0;
2305 dashdash_pos = 0;
2307 parse_options_start(&ctx, argc, argv, prefix, options,
2308 PARSE_OPT_KEEP_DASHDASH | PARSE_OPT_KEEP_ARGV0);
2309 for (;;) {
2310 switch (parse_options_step(&ctx, options, blame_opt_usage)) {
2311 case PARSE_OPT_HELP:
2312 exit(129);
2313 case PARSE_OPT_DONE:
2314 if (ctx.argv[0])
2315 dashdash_pos = ctx.cpidx;
2316 goto parse_done;
2319 if (!strcmp(ctx.argv[0], "--reverse")) {
2320 ctx.argv[0] = "--children";
2321 reverse = 1;
2323 parse_revision_opt(&revs, &ctx, options, blame_opt_usage);
2325 parse_done:
2326 no_whole_file_rename = !DIFF_OPT_TST(&revs.diffopt, FOLLOW_RENAMES);
2327 DIFF_OPT_CLR(&revs.diffopt, FOLLOW_RENAMES);
2328 argc = parse_options_end(&ctx);
2330 if (0 < abbrev)
2331 /* one more abbrev length is needed for the boundary commit */
2332 abbrev++;
2334 if (revs_file && read_ancestry(revs_file))
2335 die_errno("reading graft file '%s' failed", revs_file);
2337 if (cmd_is_annotate) {
2338 output_option |= OUTPUT_ANNOTATE_COMPAT;
2339 blame_date_mode = DATE_ISO8601;
2340 } else {
2341 blame_date_mode = revs.date_mode;
2344 /* The maximum width used to show the dates */
2345 switch (blame_date_mode) {
2346 case DATE_RFC2822:
2347 blame_date_width = sizeof("Thu, 19 Oct 2006 16:00:04 -0700");
2348 break;
2349 case DATE_ISO8601:
2350 blame_date_width = sizeof("2006-10-19 16:00:04 -0700");
2351 break;
2352 case DATE_RAW:
2353 blame_date_width = sizeof("1161298804 -0700");
2354 break;
2355 case DATE_SHORT:
2356 blame_date_width = sizeof("2006-10-19");
2357 break;
2358 case DATE_RELATIVE:
2359 /* "normal" is used as the fallback for "relative" */
2360 case DATE_LOCAL:
2361 case DATE_NORMAL:
2362 blame_date_width = sizeof("Thu Oct 19 16:00:04 2006 -0700");
2363 break;
2365 blame_date_width -= 1; /* strip the null */
2367 if (DIFF_OPT_TST(&revs.diffopt, FIND_COPIES_HARDER))
2368 opt |= (PICKAXE_BLAME_COPY | PICKAXE_BLAME_MOVE |
2369 PICKAXE_BLAME_COPY_HARDER);
2371 if (!blame_move_score)
2372 blame_move_score = BLAME_DEFAULT_MOVE_SCORE;
2373 if (!blame_copy_score)
2374 blame_copy_score = BLAME_DEFAULT_COPY_SCORE;
2377 * We have collected options unknown to us in argv[1..unk]
2378 * which are to be passed to revision machinery if we are
2379 * going to do the "bottom" processing.
2381 * The remaining are:
2383 * (1) if dashdash_pos != 0, it is either
2384 * "blame [revisions] -- <path>" or
2385 * "blame -- <path> <rev>"
2387 * (2) otherwise, it is one of the two:
2388 * "blame [revisions] <path>"
2389 * "blame <path> <rev>"
2391 * Note that we must strip out <path> from the arguments: we do not
2392 * want the path pruning but we may want "bottom" processing.
2394 if (dashdash_pos) {
2395 switch (argc - dashdash_pos - 1) {
2396 case 2: /* (1b) */
2397 if (argc != 4)
2398 usage_with_options(blame_opt_usage, options);
2399 /* reorder for the new way: <rev> -- <path> */
2400 argv[1] = argv[3];
2401 argv[3] = argv[2];
2402 argv[2] = "--";
2403 /* FALLTHROUGH */
2404 case 1: /* (1a) */
2405 path = add_prefix(prefix, argv[--argc]);
2406 argv[argc] = NULL;
2407 break;
2408 default:
2409 usage_with_options(blame_opt_usage, options);
2411 } else {
2412 if (argc < 2)
2413 usage_with_options(blame_opt_usage, options);
2414 path = add_prefix(prefix, argv[argc - 1]);
2415 if (argc == 3 && !has_string_in_work_tree(path)) { /* (2b) */
2416 path = add_prefix(prefix, argv[1]);
2417 argv[1] = argv[2];
2419 argv[argc - 1] = "--";
2421 setup_work_tree();
2422 if (!has_string_in_work_tree(path))
2423 die_errno("cannot stat path '%s'", path);
2426 revs.disable_stdin = 1;
2427 setup_revisions(argc, argv, &revs, NULL);
2428 memset(&sb, 0, sizeof(sb));
2430 sb.revs = &revs;
2431 if (!reverse)
2432 final_commit_name = prepare_final(&sb);
2433 else if (contents_from)
2434 die("--contents and --children do not blend well.");
2435 else
2436 final_commit_name = prepare_initial(&sb);
2438 if (!sb.final) {
2440 * "--not A B -- path" without anything positive;
2441 * do not default to HEAD, but use the working tree
2442 * or "--contents".
2444 setup_work_tree();
2445 sb.final = fake_working_tree_commit(&sb.revs->diffopt,
2446 path, contents_from);
2447 add_pending_object(&revs, &(sb.final->object), ":");
2449 else if (contents_from)
2450 die("Cannot use --contents with final commit object name");
2453 * If we have bottom, this will mark the ancestors of the
2454 * bottom commits we would reach while traversing as
2455 * uninteresting.
2457 if (prepare_revision_walk(&revs))
2458 die("revision walk setup failed");
2460 if (is_null_sha1(sb.final->object.sha1)) {
2461 char *buf;
2462 o = sb.final->util;
2463 buf = xmalloc(o->file.size + 1);
2464 memcpy(buf, o->file.ptr, o->file.size + 1);
2465 sb.final_buf = buf;
2466 sb.final_buf_size = o->file.size;
2468 else {
2469 o = get_origin(&sb, sb.final, path);
2470 if (fill_blob_sha1_and_mode(o))
2471 die("no such path %s in %s", path, final_commit_name);
2473 if (DIFF_OPT_TST(&sb.revs->diffopt, ALLOW_TEXTCONV) &&
2474 textconv_object(path, o->mode, o->blob_sha1, 1, (char **) &sb.final_buf,
2475 &sb.final_buf_size))
2477 else
2478 sb.final_buf = read_sha1_file(o->blob_sha1, &type,
2479 &sb.final_buf_size);
2481 if (!sb.final_buf)
2482 die("Cannot read blob %s for path %s",
2483 sha1_to_hex(o->blob_sha1),
2484 path);
2486 num_read_blob++;
2487 lno = prepare_lines(&sb);
2489 bottom = top = 0;
2490 if (bottomtop)
2491 prepare_blame_range(&sb, bottomtop, lno, &bottom, &top);
2492 if (bottom < 1)
2493 bottom = 1;
2494 if (top < 1)
2495 top = lno;
2496 bottom--;
2497 if (lno < top || lno < bottom)
2498 die("file %s has only %lu lines", path, lno);
2500 ent = xcalloc(1, sizeof(*ent));
2501 ent->lno = bottom;
2502 ent->num_lines = top - bottom;
2503 ent->suspect = o;
2504 ent->s_lno = bottom;
2506 sb.ent = ent;
2507 sb.path = path;
2509 read_mailmap(&mailmap, NULL);
2511 if (!incremental)
2512 setup_pager();
2514 assign_blame(&sb, opt);
2516 if (incremental)
2517 return 0;
2519 coalesce(&sb);
2521 if (!(output_option & OUTPUT_PORCELAIN))
2522 find_alignment(&sb, &output_option);
2524 output(&sb, output_option);
2525 free((void *)sb.final_buf);
2526 for (ent = sb.ent; ent; ) {
2527 struct blame_entry *e = ent->next;
2528 free(ent);
2529 ent = e;
2532 if (show_stats) {
2533 printf("num read blob: %d\n", num_read_blob);
2534 printf("num get patch: %d\n", num_get_patch);
2535 printf("num commits: %d\n", num_commits);
2537 return 0;