9566a5ea4eabcdf83af46032283fa6ede426bca0
1/*
2 * Blame
3 *
4 * Copyright (c) 2006, Junio C Hamano
5 */
6
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"
25#include "line-log.h"
26
27static char blame_usage[] = N_("git blame [options] [rev-opts] [rev] [--] file");
28
29static const char *blame_opt_usage[] = {
30 blame_usage,
31 "",
32 N_("[rev-opts] are documented in git-rev-list(1)"),
33 NULL
34};
35
36static int longest_file;
37static int longest_author;
38static int max_orig_digits;
39static int max_digits;
40static int max_score_digits;
41static int show_root;
42static int reverse;
43static int blank_boundary;
44static int incremental;
45static int xdl_opts;
46static int abbrev = -1;
47static int no_whole_file_rename;
48
49static enum date_mode blame_date_mode = DATE_ISO8601;
50static size_t blame_date_width;
51
52static struct string_list mailmap;
53
54#ifndef DEBUG
55#define DEBUG 0
56#endif
57
58/* stats */
59static int num_read_blob;
60static int num_get_patch;
61static int num_commits;
62
63#define PICKAXE_BLAME_MOVE 01
64#define PICKAXE_BLAME_COPY 02
65#define PICKAXE_BLAME_COPY_HARDER 04
66#define PICKAXE_BLAME_COPY_HARDEST 010
67
68/*
69 * blame for a blame_entry with score lower than these thresholds
70 * is not passed to the parent using move/copy logic.
71 */
72static unsigned blame_move_score;
73static unsigned blame_copy_score;
74#define BLAME_DEFAULT_MOVE_SCORE 20
75#define BLAME_DEFAULT_COPY_SCORE 40
76
77/* bits #0..7 in revision.h, #8..11 used for merge_bases() in commit.c */
78#define METAINFO_SHOWN (1u<<12)
79#define MORE_THAN_ONE_PATH (1u<<13)
80
81/*
82 * One blob in a commit that is being suspected
83 */
84struct origin {
85 int refcnt;
86 struct origin *previous;
87 struct commit *commit;
88 mmfile_t file;
89 unsigned char blob_sha1[20];
90 unsigned mode;
91 char path[FLEX_ARRAY];
92};
93
94static int diff_hunks(mmfile_t *file_a, mmfile_t *file_b, long ctxlen,
95 xdl_emit_hunk_consume_func_t hunk_func, void *cb_data)
96{
97 xpparam_t xpp = {0};
98 xdemitconf_t xecfg = {0};
99 xdemitcb_t ecb = {NULL};
100
101 xpp.flags = xdl_opts;
102 xecfg.ctxlen = ctxlen;
103 xecfg.hunk_func = hunk_func;
104 ecb.priv = cb_data;
105 return xdi_diff(file_a, file_b, &xpp, &xecfg, &ecb);
106}
107
108/*
109 * Prepare diff_filespec and convert it using diff textconv API
110 * if the textconv driver exists.
111 * Return 1 if the conversion succeeds, 0 otherwise.
112 */
113int textconv_object(const char *path,
114 unsigned mode,
115 const unsigned char *sha1,
116 int sha1_valid,
117 char **buf,
118 unsigned long *buf_size)
119{
120 struct diff_filespec *df;
121 struct userdiff_driver *textconv;
122
123 df = alloc_filespec(path);
124 fill_filespec(df, sha1, sha1_valid, mode);
125 textconv = get_textconv(df);
126 if (!textconv) {
127 free_filespec(df);
128 return 0;
129 }
130
131 *buf_size = fill_textconv(textconv, df, buf);
132 free_filespec(df);
133 return 1;
134}
135
136/*
137 * Given an origin, prepare mmfile_t structure to be used by the
138 * diff machinery
139 */
140static void fill_origin_blob(struct diff_options *opt,
141 struct origin *o, mmfile_t *file)
142{
143 if (!o->file.ptr) {
144 enum object_type type;
145 unsigned long file_size;
146
147 num_read_blob++;
148 if (DIFF_OPT_TST(opt, ALLOW_TEXTCONV) &&
149 textconv_object(o->path, o->mode, o->blob_sha1, 1, &file->ptr, &file_size))
150 ;
151 else
152 file->ptr = read_sha1_file(o->blob_sha1, &type, &file_size);
153 file->size = file_size;
154
155 if (!file->ptr)
156 die("Cannot read blob %s for path %s",
157 sha1_to_hex(o->blob_sha1),
158 o->path);
159 o->file = *file;
160 }
161 else
162 *file = o->file;
163}
164
165/*
166 * Origin is refcounted and usually we keep the blob contents to be
167 * reused.
168 */
169static inline struct origin *origin_incref(struct origin *o)
170{
171 if (o)
172 o->refcnt++;
173 return o;
174}
175
176static void origin_decref(struct origin *o)
177{
178 if (o && --o->refcnt <= 0) {
179 if (o->previous)
180 origin_decref(o->previous);
181 free(o->file.ptr);
182 free(o);
183 }
184}
185
186static void drop_origin_blob(struct origin *o)
187{
188 if (o->file.ptr) {
189 free(o->file.ptr);
190 o->file.ptr = NULL;
191 }
192}
193
194/*
195 * Each group of lines is described by a blame_entry; it can be split
196 * as we pass blame to the parents. They form a linked list in the
197 * scoreboard structure, sorted by the target line number.
198 */
199struct blame_entry {
200 struct blame_entry *next;
201
202 /* the first line of this group in the final image;
203 * internally all line numbers are 0 based.
204 */
205 int lno;
206
207 /* how many lines this group has */
208 int num_lines;
209
210 /* the commit that introduced this group into the final image */
211 struct origin *suspect;
212
213 /* true if the suspect is truly guilty; false while we have not
214 * checked if the group came from one of its parents.
215 */
216 char guilty;
217
218 /* true if the entry has been scanned for copies in the current parent
219 */
220 char scanned;
221
222 /* the line number of the first line of this group in the
223 * suspect's file; internally all line numbers are 0 based.
224 */
225 int s_lno;
226
227 /* how significant this entry is -- cached to avoid
228 * scanning the lines over and over.
229 */
230 unsigned score;
231};
232
233/*
234 * The current state of the blame assignment.
235 */
236struct 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;
241
242 /*
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].
246 */
247 const char *final_buf;
248 unsigned long final_buf_size;
249
250 /* linked list of blames */
251 struct blame_entry *ent;
252
253 /* look-up a line in the final buffer */
254 int num_lines;
255 int *lineno;
256};
257
258static void sanity_check_refcnt(struct scoreboard *);
259
260/*
261 * If two blame entries that are next to each other came from
262 * contiguous lines in the same origin (i.e. <commit, path> pair),
263 * merge them together.
264 */
265static void coalesce(struct scoreboard *sb)
266{
267 struct blame_entry *ent, *next;
268
269 for (ent = sb->ent; ent && (next = ent->next); ent = next) {
270 if (ent->suspect == next->suspect &&
271 ent->guilty == next->guilty &&
272 ent->s_lno + ent->num_lines == next->s_lno) {
273 ent->num_lines += next->num_lines;
274 ent->next = next->next;
275 origin_decref(next->suspect);
276 free(next);
277 ent->score = 0;
278 next = ent; /* again */
279 }
280 }
281
282 if (DEBUG) /* sanity */
283 sanity_check_refcnt(sb);
284}
285
286/*
287 * Given a commit and a path in it, create a new origin structure.
288 * The callers that add blame to the scoreboard should use
289 * get_origin() to obtain shared, refcounted copy instead of calling
290 * this function directly.
291 */
292static struct origin *make_origin(struct commit *commit, const char *path)
293{
294 struct origin *o;
295 o = xcalloc(1, sizeof(*o) + strlen(path) + 1);
296 o->commit = commit;
297 o->refcnt = 1;
298 strcpy(o->path, path);
299 return o;
300}
301
302/*
303 * Locate an existing origin or create a new one.
304 */
305static struct origin *get_origin(struct scoreboard *sb,
306 struct commit *commit,
307 const char *path)
308{
309 struct blame_entry *e;
310
311 for (e = sb->ent; e; e = e->next) {
312 if (e->suspect->commit == commit &&
313 !strcmp(e->suspect->path, path))
314 return origin_incref(e->suspect);
315 }
316 return make_origin(commit, path);
317}
318
319/*
320 * Fill the blob_sha1 field of an origin if it hasn't, so that later
321 * call to fill_origin_blob() can use it to locate the data. blob_sha1
322 * for an origin is also used to pass the blame for the entire file to
323 * the parent to detect the case where a child's blob is identical to
324 * that of its parent's.
325 *
326 * This also fills origin->mode for corresponding tree path.
327 */
328static int fill_blob_sha1_and_mode(struct origin *origin)
329{
330 if (!is_null_sha1(origin->blob_sha1))
331 return 0;
332 if (get_tree_entry(origin->commit->object.sha1,
333 origin->path,
334 origin->blob_sha1, &origin->mode))
335 goto error_out;
336 if (sha1_object_info(origin->blob_sha1, NULL) != OBJ_BLOB)
337 goto error_out;
338 return 0;
339 error_out:
340 hashclr(origin->blob_sha1);
341 origin->mode = S_IFINVALID;
342 return -1;
343}
344
345/*
346 * We have an origin -- check if the same path exists in the
347 * parent and return an origin structure to represent it.
348 */
349static struct origin *find_origin(struct scoreboard *sb,
350 struct commit *parent,
351 struct origin *origin)
352{
353 struct origin *porigin = NULL;
354 struct diff_options diff_opts;
355 const char *paths[2];
356
357 if (parent->util) {
358 /*
359 * Each commit object can cache one origin in that
360 * commit. This is a freestanding copy of origin and
361 * not refcounted.
362 */
363 struct origin *cached = parent->util;
364 if (!strcmp(cached->path, origin->path)) {
365 /*
366 * The same path between origin and its parent
367 * without renaming -- the most common case.
368 */
369 porigin = get_origin(sb, parent, cached->path);
370
371 /*
372 * If the origin was newly created (i.e. get_origin
373 * would call make_origin if none is found in the
374 * scoreboard), it does not know the blob_sha1/mode,
375 * so copy it. Otherwise porigin was in the
376 * scoreboard and already knows blob_sha1/mode.
377 */
378 if (porigin->refcnt == 1) {
379 hashcpy(porigin->blob_sha1, cached->blob_sha1);
380 porigin->mode = cached->mode;
381 }
382 return porigin;
383 }
384 /* otherwise it was not very useful; free it */
385 free(parent->util);
386 parent->util = NULL;
387 }
388
389 /* See if the origin->path is different between parent
390 * and origin first. Most of the time they are the
391 * same and diff-tree is fairly efficient about this.
392 */
393 diff_setup(&diff_opts);
394 DIFF_OPT_SET(&diff_opts, RECURSIVE);
395 diff_opts.detect_rename = 0;
396 diff_opts.output_format = DIFF_FORMAT_NO_OUTPUT;
397 paths[0] = origin->path;
398 paths[1] = NULL;
399
400 parse_pathspec(&diff_opts.pathspec,
401 PATHSPEC_ALL_MAGIC & ~PATHSPEC_LITERAL,
402 PATHSPEC_LITERAL_PATH, "", paths);
403 diff_setup_done(&diff_opts);
404
405 if (is_null_sha1(origin->commit->object.sha1))
406 do_diff_cache(parent->tree->object.sha1, &diff_opts);
407 else
408 diff_tree_sha1(parent->tree->object.sha1,
409 origin->commit->tree->object.sha1,
410 "", &diff_opts);
411 diffcore_std(&diff_opts);
412
413 if (!diff_queued_diff.nr) {
414 /* The path is the same as parent */
415 porigin = get_origin(sb, parent, origin->path);
416 hashcpy(porigin->blob_sha1, origin->blob_sha1);
417 porigin->mode = origin->mode;
418 } else {
419 /*
420 * Since origin->path is a pathspec, if the parent
421 * commit had it as a directory, we will see a whole
422 * bunch of deletion of files in the directory that we
423 * do not care about.
424 */
425 int i;
426 struct diff_filepair *p = NULL;
427 for (i = 0; i < diff_queued_diff.nr; i++) {
428 const char *name;
429 p = diff_queued_diff.queue[i];
430 name = p->one->path ? p->one->path : p->two->path;
431 if (!strcmp(name, origin->path))
432 break;
433 }
434 if (!p)
435 die("internal error in blame::find_origin");
436 switch (p->status) {
437 default:
438 die("internal error in blame::find_origin (%c)",
439 p->status);
440 case 'M':
441 porigin = get_origin(sb, parent, origin->path);
442 hashcpy(porigin->blob_sha1, p->one->sha1);
443 porigin->mode = p->one->mode;
444 break;
445 case 'A':
446 case 'T':
447 /* Did not exist in parent, or type changed */
448 break;
449 }
450 }
451 diff_flush(&diff_opts);
452 free_pathspec(&diff_opts.pathspec);
453 if (porigin) {
454 /*
455 * Create a freestanding copy that is not part of
456 * the refcounted origin found in the scoreboard, and
457 * cache it in the commit.
458 */
459 struct origin *cached;
460
461 cached = make_origin(porigin->commit, porigin->path);
462 hashcpy(cached->blob_sha1, porigin->blob_sha1);
463 cached->mode = porigin->mode;
464 parent->util = cached;
465 }
466 return porigin;
467}
468
469/*
470 * We have an origin -- find the path that corresponds to it in its
471 * parent and return an origin structure to represent it.
472 */
473static struct origin *find_rename(struct scoreboard *sb,
474 struct commit *parent,
475 struct origin *origin)
476{
477 struct origin *porigin = NULL;
478 struct diff_options diff_opts;
479 int i;
480
481 diff_setup(&diff_opts);
482 DIFF_OPT_SET(&diff_opts, RECURSIVE);
483 diff_opts.detect_rename = DIFF_DETECT_RENAME;
484 diff_opts.output_format = DIFF_FORMAT_NO_OUTPUT;
485 diff_opts.single_follow = origin->path;
486 diff_setup_done(&diff_opts);
487
488 if (is_null_sha1(origin->commit->object.sha1))
489 do_diff_cache(parent->tree->object.sha1, &diff_opts);
490 else
491 diff_tree_sha1(parent->tree->object.sha1,
492 origin->commit->tree->object.sha1,
493 "", &diff_opts);
494 diffcore_std(&diff_opts);
495
496 for (i = 0; i < diff_queued_diff.nr; i++) {
497 struct diff_filepair *p = diff_queued_diff.queue[i];
498 if ((p->status == 'R' || p->status == 'C') &&
499 !strcmp(p->two->path, origin->path)) {
500 porigin = get_origin(sb, parent, p->one->path);
501 hashcpy(porigin->blob_sha1, p->one->sha1);
502 porigin->mode = p->one->mode;
503 break;
504 }
505 }
506 diff_flush(&diff_opts);
507 free_pathspec(&diff_opts.pathspec);
508 return porigin;
509}
510
511/*
512 * Link in a new blame entry to the scoreboard. Entries that cover the
513 * same line range have been removed from the scoreboard previously.
514 */
515static void add_blame_entry(struct scoreboard *sb, struct blame_entry *e)
516{
517 struct blame_entry *ent, *prev = NULL;
518
519 origin_incref(e->suspect);
520
521 for (ent = sb->ent; ent && ent->lno < e->lno; ent = ent->next)
522 prev = ent;
523
524 /* prev, if not NULL, is the last one that is below e */
525
526 if (prev) {
527 e->next = prev->next;
528 prev->next = e;
529 }
530 else {
531 e->next = sb->ent;
532 sb->ent = e;
533 }
534}
535
536/*
537 * src typically is on-stack; we want to copy the information in it to
538 * a malloced blame_entry that is already on the linked list of the
539 * scoreboard. The origin of dst loses a refcnt while the origin of src
540 * gains one.
541 */
542static void dup_entry(struct blame_entry *dst, struct blame_entry *src)
543{
544 struct blame_entry *n;
545
546 n = dst->next;
547 origin_incref(src->suspect);
548 origin_decref(dst->suspect);
549 memcpy(dst, src, sizeof(*src));
550 dst->next = n;
551 dst->score = 0;
552}
553
554static const char *nth_line(struct scoreboard *sb, long lno)
555{
556 return sb->final_buf + sb->lineno[lno];
557}
558
559static const char *nth_line_cb(void *data, long lno)
560{
561 return nth_line((struct scoreboard *)data, lno);
562}
563
564/*
565 * It is known that lines between tlno to same came from parent, and e
566 * has an overlap with that range. it also is known that parent's
567 * line plno corresponds to e's line tlno.
568 *
569 * <---- e ----->
570 * <------>
571 * <------------>
572 * <------------>
573 * <------------------>
574 *
575 * Split e into potentially three parts; before this chunk, the chunk
576 * to be blamed for the parent, and after that portion.
577 */
578static void split_overlap(struct blame_entry *split,
579 struct blame_entry *e,
580 int tlno, int plno, int same,
581 struct origin *parent)
582{
583 int chunk_end_lno;
584 memset(split, 0, sizeof(struct blame_entry [3]));
585
586 if (e->s_lno < tlno) {
587 /* there is a pre-chunk part not blamed on parent */
588 split[0].suspect = origin_incref(e->suspect);
589 split[0].lno = e->lno;
590 split[0].s_lno = e->s_lno;
591 split[0].num_lines = tlno - e->s_lno;
592 split[1].lno = e->lno + tlno - e->s_lno;
593 split[1].s_lno = plno;
594 }
595 else {
596 split[1].lno = e->lno;
597 split[1].s_lno = plno + (e->s_lno - tlno);
598 }
599
600 if (same < e->s_lno + e->num_lines) {
601 /* there is a post-chunk part not blamed on parent */
602 split[2].suspect = origin_incref(e->suspect);
603 split[2].lno = e->lno + (same - e->s_lno);
604 split[2].s_lno = e->s_lno + (same - e->s_lno);
605 split[2].num_lines = e->s_lno + e->num_lines - same;
606 chunk_end_lno = split[2].lno;
607 }
608 else
609 chunk_end_lno = e->lno + e->num_lines;
610 split[1].num_lines = chunk_end_lno - split[1].lno;
611
612 /*
613 * if it turns out there is nothing to blame the parent for,
614 * forget about the splitting. !split[1].suspect signals this.
615 */
616 if (split[1].num_lines < 1)
617 return;
618 split[1].suspect = origin_incref(parent);
619}
620
621/*
622 * split_overlap() divided an existing blame e into up to three parts
623 * in split. Adjust the linked list of blames in the scoreboard to
624 * reflect the split.
625 */
626static void split_blame(struct scoreboard *sb,
627 struct blame_entry *split,
628 struct blame_entry *e)
629{
630 struct blame_entry *new_entry;
631
632 if (split[0].suspect && split[2].suspect) {
633 /* The first part (reuse storage for the existing entry e) */
634 dup_entry(e, &split[0]);
635
636 /* The last part -- me */
637 new_entry = xmalloc(sizeof(*new_entry));
638 memcpy(new_entry, &(split[2]), sizeof(struct blame_entry));
639 add_blame_entry(sb, new_entry);
640
641 /* ... and the middle part -- parent */
642 new_entry = xmalloc(sizeof(*new_entry));
643 memcpy(new_entry, &(split[1]), sizeof(struct blame_entry));
644 add_blame_entry(sb, new_entry);
645 }
646 else if (!split[0].suspect && !split[2].suspect)
647 /*
648 * The parent covers the entire area; reuse storage for
649 * e and replace it with the parent.
650 */
651 dup_entry(e, &split[1]);
652 else if (split[0].suspect) {
653 /* me and then parent */
654 dup_entry(e, &split[0]);
655
656 new_entry = xmalloc(sizeof(*new_entry));
657 memcpy(new_entry, &(split[1]), sizeof(struct blame_entry));
658 add_blame_entry(sb, new_entry);
659 }
660 else {
661 /* parent and then me */
662 dup_entry(e, &split[1]);
663
664 new_entry = xmalloc(sizeof(*new_entry));
665 memcpy(new_entry, &(split[2]), sizeof(struct blame_entry));
666 add_blame_entry(sb, new_entry);
667 }
668
669 if (DEBUG) { /* sanity */
670 struct blame_entry *ent;
671 int lno = sb->ent->lno, corrupt = 0;
672
673 for (ent = sb->ent; ent; ent = ent->next) {
674 if (lno != ent->lno)
675 corrupt = 1;
676 if (ent->s_lno < 0)
677 corrupt = 1;
678 lno += ent->num_lines;
679 }
680 if (corrupt) {
681 lno = sb->ent->lno;
682 for (ent = sb->ent; ent; ent = ent->next) {
683 printf("L %8d l %8d n %8d\n",
684 lno, ent->lno, ent->num_lines);
685 lno = ent->lno + ent->num_lines;
686 }
687 die("oops");
688 }
689 }
690}
691
692/*
693 * After splitting the blame, the origins used by the
694 * on-stack blame_entry should lose one refcnt each.
695 */
696static void decref_split(struct blame_entry *split)
697{
698 int i;
699
700 for (i = 0; i < 3; i++)
701 origin_decref(split[i].suspect);
702}
703
704/*
705 * Helper for blame_chunk(). blame_entry e is known to overlap with
706 * the patch hunk; split it and pass blame to the parent.
707 */
708static void blame_overlap(struct scoreboard *sb, struct blame_entry *e,
709 int tlno, int plno, int same,
710 struct origin *parent)
711{
712 struct blame_entry split[3];
713
714 split_overlap(split, e, tlno, plno, same, parent);
715 if (split[1].suspect)
716 split_blame(sb, split, e);
717 decref_split(split);
718}
719
720/*
721 * Find the line number of the last line the target is suspected for.
722 */
723static int find_last_in_target(struct scoreboard *sb, struct origin *target)
724{
725 struct blame_entry *e;
726 int last_in_target = -1;
727
728 for (e = sb->ent; e; e = e->next) {
729 if (e->guilty || e->suspect != target)
730 continue;
731 if (last_in_target < e->s_lno + e->num_lines)
732 last_in_target = e->s_lno + e->num_lines;
733 }
734 return last_in_target;
735}
736
737/*
738 * Process one hunk from the patch between the current suspect for
739 * blame_entry e and its parent. Find and split the overlap, and
740 * pass blame to the overlapping part to the parent.
741 */
742static void blame_chunk(struct scoreboard *sb,
743 int tlno, int plno, int same,
744 struct origin *target, struct origin *parent)
745{
746 struct blame_entry *e;
747
748 for (e = sb->ent; e; e = e->next) {
749 if (e->guilty || e->suspect != target)
750 continue;
751 if (same <= e->s_lno)
752 continue;
753 if (tlno < e->s_lno + e->num_lines)
754 blame_overlap(sb, e, tlno, plno, same, parent);
755 }
756}
757
758struct blame_chunk_cb_data {
759 struct scoreboard *sb;
760 struct origin *target;
761 struct origin *parent;
762 long plno;
763 long tlno;
764};
765
766static int blame_chunk_cb(long start_a, long count_a,
767 long start_b, long count_b, void *data)
768{
769 struct blame_chunk_cb_data *d = data;
770 blame_chunk(d->sb, d->tlno, d->plno, start_b, d->target, d->parent);
771 d->plno = start_a + count_a;
772 d->tlno = start_b + count_b;
773 return 0;
774}
775
776/*
777 * We are looking at the origin 'target' and aiming to pass blame
778 * for the lines it is suspected to its parent. Run diff to find
779 * which lines came from parent and pass blame for them.
780 */
781static int pass_blame_to_parent(struct scoreboard *sb,
782 struct origin *target,
783 struct origin *parent)
784{
785 int last_in_target;
786 mmfile_t file_p, file_o;
787 struct blame_chunk_cb_data d;
788
789 memset(&d, 0, sizeof(d));
790 d.sb = sb; d.target = target; d.parent = parent;
791 last_in_target = find_last_in_target(sb, target);
792 if (last_in_target < 0)
793 return 1; /* nothing remains for this target */
794
795 fill_origin_blob(&sb->revs->diffopt, parent, &file_p);
796 fill_origin_blob(&sb->revs->diffopt, target, &file_o);
797 num_get_patch++;
798
799 diff_hunks(&file_p, &file_o, 0, blame_chunk_cb, &d);
800 /* The rest (i.e. anything after tlno) are the same as the parent */
801 blame_chunk(sb, d.tlno, d.plno, last_in_target, target, parent);
802
803 return 0;
804}
805
806/*
807 * The lines in blame_entry after splitting blames many times can become
808 * very small and trivial, and at some point it becomes pointless to
809 * blame the parents. E.g. "\t\t}\n\t}\n\n" appears everywhere in any
810 * ordinary C program, and it is not worth to say it was copied from
811 * totally unrelated file in the parent.
812 *
813 * Compute how trivial the lines in the blame_entry are.
814 */
815static unsigned ent_score(struct scoreboard *sb, struct blame_entry *e)
816{
817 unsigned score;
818 const char *cp, *ep;
819
820 if (e->score)
821 return e->score;
822
823 score = 1;
824 cp = nth_line(sb, e->lno);
825 ep = nth_line(sb, e->lno + e->num_lines);
826 while (cp < ep) {
827 unsigned ch = *((unsigned char *)cp);
828 if (isalnum(ch))
829 score++;
830 cp++;
831 }
832 e->score = score;
833 return score;
834}
835
836/*
837 * best_so_far[] and this[] are both a split of an existing blame_entry
838 * that passes blame to the parent. Maintain best_so_far the best split
839 * so far, by comparing this and best_so_far and copying this into
840 * bst_so_far as needed.
841 */
842static void copy_split_if_better(struct scoreboard *sb,
843 struct blame_entry *best_so_far,
844 struct blame_entry *this)
845{
846 int i;
847
848 if (!this[1].suspect)
849 return;
850 if (best_so_far[1].suspect) {
851 if (ent_score(sb, &this[1]) < ent_score(sb, &best_so_far[1]))
852 return;
853 }
854
855 for (i = 0; i < 3; i++)
856 origin_incref(this[i].suspect);
857 decref_split(best_so_far);
858 memcpy(best_so_far, this, sizeof(struct blame_entry [3]));
859}
860
861/*
862 * We are looking at a part of the final image represented by
863 * ent (tlno and same are offset by ent->s_lno).
864 * tlno is where we are looking at in the final image.
865 * up to (but not including) same match preimage.
866 * plno is where we are looking at in the preimage.
867 *
868 * <-------------- final image ---------------------->
869 * <------ent------>
870 * ^tlno ^same
871 * <---------preimage----->
872 * ^plno
873 *
874 * All line numbers are 0-based.
875 */
876static void handle_split(struct scoreboard *sb,
877 struct blame_entry *ent,
878 int tlno, int plno, int same,
879 struct origin *parent,
880 struct blame_entry *split)
881{
882 if (ent->num_lines <= tlno)
883 return;
884 if (tlno < same) {
885 struct blame_entry this[3];
886 tlno += ent->s_lno;
887 same += ent->s_lno;
888 split_overlap(this, ent, tlno, plno, same, parent);
889 copy_split_if_better(sb, split, this);
890 decref_split(this);
891 }
892}
893
894struct handle_split_cb_data {
895 struct scoreboard *sb;
896 struct blame_entry *ent;
897 struct origin *parent;
898 struct blame_entry *split;
899 long plno;
900 long tlno;
901};
902
903static int handle_split_cb(long start_a, long count_a,
904 long start_b, long count_b, void *data)
905{
906 struct handle_split_cb_data *d = data;
907 handle_split(d->sb, d->ent, d->tlno, d->plno, start_b, d->parent,
908 d->split);
909 d->plno = start_a + count_a;
910 d->tlno = start_b + count_b;
911 return 0;
912}
913
914/*
915 * Find the lines from parent that are the same as ent so that
916 * we can pass blames to it. file_p has the blob contents for
917 * the parent.
918 */
919static void find_copy_in_blob(struct scoreboard *sb,
920 struct blame_entry *ent,
921 struct origin *parent,
922 struct blame_entry *split,
923 mmfile_t *file_p)
924{
925 const char *cp;
926 int cnt;
927 mmfile_t file_o;
928 struct handle_split_cb_data d;
929
930 memset(&d, 0, sizeof(d));
931 d.sb = sb; d.ent = ent; d.parent = parent; d.split = split;
932 /*
933 * Prepare mmfile that contains only the lines in ent.
934 */
935 cp = nth_line(sb, ent->lno);
936 file_o.ptr = (char *) cp;
937 cnt = ent->num_lines;
938
939 while (cnt && cp < sb->final_buf + sb->final_buf_size) {
940 if (*cp++ == '\n')
941 cnt--;
942 }
943 file_o.size = cp - file_o.ptr;
944
945 /*
946 * file_o is a part of final image we are annotating.
947 * file_p partially may match that image.
948 */
949 memset(split, 0, sizeof(struct blame_entry [3]));
950 diff_hunks(file_p, &file_o, 1, handle_split_cb, &d);
951 /* remainder, if any, all match the preimage */
952 handle_split(sb, ent, d.tlno, d.plno, ent->num_lines, parent, split);
953}
954
955/*
956 * See if lines currently target is suspected for can be attributed to
957 * parent.
958 */
959static int find_move_in_parent(struct scoreboard *sb,
960 struct origin *target,
961 struct origin *parent)
962{
963 int last_in_target, made_progress;
964 struct blame_entry *e, split[3];
965 mmfile_t file_p;
966
967 last_in_target = find_last_in_target(sb, target);
968 if (last_in_target < 0)
969 return 1; /* nothing remains for this target */
970
971 fill_origin_blob(&sb->revs->diffopt, parent, &file_p);
972 if (!file_p.ptr)
973 return 0;
974
975 made_progress = 1;
976 while (made_progress) {
977 made_progress = 0;
978 for (e = sb->ent; e; e = e->next) {
979 if (e->guilty || e->suspect != target ||
980 ent_score(sb, e) < blame_move_score)
981 continue;
982 find_copy_in_blob(sb, e, parent, split, &file_p);
983 if (split[1].suspect &&
984 blame_move_score < ent_score(sb, &split[1])) {
985 split_blame(sb, split, e);
986 made_progress = 1;
987 }
988 decref_split(split);
989 }
990 }
991 return 0;
992}
993
994struct blame_list {
995 struct blame_entry *ent;
996 struct blame_entry split[3];
997};
998
999/*
1000 * Count the number of entries the target is suspected for,
1001 * and prepare a list of entry and the best split.
1002 */
1003static struct blame_list *setup_blame_list(struct scoreboard *sb,
1004 struct origin *target,
1005 int min_score,
1006 int *num_ents_p)
1007{
1008 struct blame_entry *e;
1009 int num_ents, i;
1010 struct blame_list *blame_list = NULL;
1011
1012 for (e = sb->ent, num_ents = 0; e; e = e->next)
1013 if (!e->scanned && !e->guilty &&
1014 e->suspect == target &&
1015 min_score < ent_score(sb, e))
1016 num_ents++;
1017 if (num_ents) {
1018 blame_list = xcalloc(num_ents, sizeof(struct blame_list));
1019 for (e = sb->ent, i = 0; e; e = e->next)
1020 if (!e->scanned && !e->guilty &&
1021 e->suspect == target &&
1022 min_score < ent_score(sb, e))
1023 blame_list[i++].ent = e;
1024 }
1025 *num_ents_p = num_ents;
1026 return blame_list;
1027}
1028
1029/*
1030 * Reset the scanned status on all entries.
1031 */
1032static void reset_scanned_flag(struct scoreboard *sb)
1033{
1034 struct blame_entry *e;
1035 for (e = sb->ent; e; e = e->next)
1036 e->scanned = 0;
1037}
1038
1039/*
1040 * For lines target is suspected for, see if we can find code movement
1041 * across file boundary from the parent commit. porigin is the path
1042 * in the parent we already tried.
1043 */
1044static int find_copy_in_parent(struct scoreboard *sb,
1045 struct origin *target,
1046 struct commit *parent,
1047 struct origin *porigin,
1048 int opt)
1049{
1050 struct diff_options diff_opts;
1051 int i, j;
1052 int retval;
1053 struct blame_list *blame_list;
1054 int num_ents;
1055
1056 blame_list = setup_blame_list(sb, target, blame_copy_score, &num_ents);
1057 if (!blame_list)
1058 return 1; /* nothing remains for this target */
1059
1060 diff_setup(&diff_opts);
1061 DIFF_OPT_SET(&diff_opts, RECURSIVE);
1062 diff_opts.output_format = DIFF_FORMAT_NO_OUTPUT;
1063
1064 diff_setup_done(&diff_opts);
1065
1066 /* Try "find copies harder" on new path if requested;
1067 * we do not want to use diffcore_rename() actually to
1068 * match things up; find_copies_harder is set only to
1069 * force diff_tree_sha1() to feed all filepairs to diff_queue,
1070 * and this code needs to be after diff_setup_done(), which
1071 * usually makes find-copies-harder imply copy detection.
1072 */
1073 if ((opt & PICKAXE_BLAME_COPY_HARDEST)
1074 || ((opt & PICKAXE_BLAME_COPY_HARDER)
1075 && (!porigin || strcmp(target->path, porigin->path))))
1076 DIFF_OPT_SET(&diff_opts, FIND_COPIES_HARDER);
1077
1078 if (is_null_sha1(target->commit->object.sha1))
1079 do_diff_cache(parent->tree->object.sha1, &diff_opts);
1080 else
1081 diff_tree_sha1(parent->tree->object.sha1,
1082 target->commit->tree->object.sha1,
1083 "", &diff_opts);
1084
1085 if (!DIFF_OPT_TST(&diff_opts, FIND_COPIES_HARDER))
1086 diffcore_std(&diff_opts);
1087
1088 retval = 0;
1089 while (1) {
1090 int made_progress = 0;
1091
1092 for (i = 0; i < diff_queued_diff.nr; i++) {
1093 struct diff_filepair *p = diff_queued_diff.queue[i];
1094 struct origin *norigin;
1095 mmfile_t file_p;
1096 struct blame_entry this[3];
1097
1098 if (!DIFF_FILE_VALID(p->one))
1099 continue; /* does not exist in parent */
1100 if (S_ISGITLINK(p->one->mode))
1101 continue; /* ignore git links */
1102 if (porigin && !strcmp(p->one->path, porigin->path))
1103 /* find_move already dealt with this path */
1104 continue;
1105
1106 norigin = get_origin(sb, parent, p->one->path);
1107 hashcpy(norigin->blob_sha1, p->one->sha1);
1108 norigin->mode = p->one->mode;
1109 fill_origin_blob(&sb->revs->diffopt, norigin, &file_p);
1110 if (!file_p.ptr)
1111 continue;
1112
1113 for (j = 0; j < num_ents; j++) {
1114 find_copy_in_blob(sb, blame_list[j].ent,
1115 norigin, this, &file_p);
1116 copy_split_if_better(sb, blame_list[j].split,
1117 this);
1118 decref_split(this);
1119 }
1120 origin_decref(norigin);
1121 }
1122
1123 for (j = 0; j < num_ents; j++) {
1124 struct blame_entry *split = blame_list[j].split;
1125 if (split[1].suspect &&
1126 blame_copy_score < ent_score(sb, &split[1])) {
1127 split_blame(sb, split, blame_list[j].ent);
1128 made_progress = 1;
1129 }
1130 else
1131 blame_list[j].ent->scanned = 1;
1132 decref_split(split);
1133 }
1134 free(blame_list);
1135
1136 if (!made_progress)
1137 break;
1138 blame_list = setup_blame_list(sb, target, blame_copy_score, &num_ents);
1139 if (!blame_list) {
1140 retval = 1;
1141 break;
1142 }
1143 }
1144 reset_scanned_flag(sb);
1145 diff_flush(&diff_opts);
1146 free_pathspec(&diff_opts.pathspec);
1147 return retval;
1148}
1149
1150/*
1151 * The blobs of origin and porigin exactly match, so everything
1152 * origin is suspected for can be blamed on the parent.
1153 */
1154static void pass_whole_blame(struct scoreboard *sb,
1155 struct origin *origin, struct origin *porigin)
1156{
1157 struct blame_entry *e;
1158
1159 if (!porigin->file.ptr && origin->file.ptr) {
1160 /* Steal its file */
1161 porigin->file = origin->file;
1162 origin->file.ptr = NULL;
1163 }
1164 for (e = sb->ent; e; e = e->next) {
1165 if (e->suspect != origin)
1166 continue;
1167 origin_incref(porigin);
1168 origin_decref(e->suspect);
1169 e->suspect = porigin;
1170 }
1171}
1172
1173/*
1174 * We pass blame from the current commit to its parents. We keep saying
1175 * "parent" (and "porigin"), but what we mean is to find scapegoat to
1176 * exonerate ourselves.
1177 */
1178static struct commit_list *first_scapegoat(struct rev_info *revs, struct commit *commit)
1179{
1180 if (!reverse)
1181 return commit->parents;
1182 return lookup_decoration(&revs->children, &commit->object);
1183}
1184
1185static int num_scapegoats(struct rev_info *revs, struct commit *commit)
1186{
1187 int cnt;
1188 struct commit_list *l = first_scapegoat(revs, commit);
1189 for (cnt = 0; l; l = l->next)
1190 cnt++;
1191 return cnt;
1192}
1193
1194#define MAXSG 16
1195
1196static void pass_blame(struct scoreboard *sb, struct origin *origin, int opt)
1197{
1198 struct rev_info *revs = sb->revs;
1199 int i, pass, num_sg;
1200 struct commit *commit = origin->commit;
1201 struct commit_list *sg;
1202 struct origin *sg_buf[MAXSG];
1203 struct origin *porigin, **sg_origin = sg_buf;
1204
1205 num_sg = num_scapegoats(revs, commit);
1206 if (!num_sg)
1207 goto finish;
1208 else if (num_sg < ARRAY_SIZE(sg_buf))
1209 memset(sg_buf, 0, sizeof(sg_buf));
1210 else
1211 sg_origin = xcalloc(num_sg, sizeof(*sg_origin));
1212
1213 /*
1214 * The first pass looks for unrenamed path to optimize for
1215 * common cases, then we look for renames in the second pass.
1216 */
1217 for (pass = 0; pass < 2 - no_whole_file_rename; pass++) {
1218 struct origin *(*find)(struct scoreboard *,
1219 struct commit *, struct origin *);
1220 find = pass ? find_rename : find_origin;
1221
1222 for (i = 0, sg = first_scapegoat(revs, commit);
1223 i < num_sg && sg;
1224 sg = sg->next, i++) {
1225 struct commit *p = sg->item;
1226 int j, same;
1227
1228 if (sg_origin[i])
1229 continue;
1230 if (parse_commit(p))
1231 continue;
1232 porigin = find(sb, p, origin);
1233 if (!porigin)
1234 continue;
1235 if (!hashcmp(porigin->blob_sha1, origin->blob_sha1)) {
1236 pass_whole_blame(sb, origin, porigin);
1237 origin_decref(porigin);
1238 goto finish;
1239 }
1240 for (j = same = 0; j < i; j++)
1241 if (sg_origin[j] &&
1242 !hashcmp(sg_origin[j]->blob_sha1,
1243 porigin->blob_sha1)) {
1244 same = 1;
1245 break;
1246 }
1247 if (!same)
1248 sg_origin[i] = porigin;
1249 else
1250 origin_decref(porigin);
1251 }
1252 }
1253
1254 num_commits++;
1255 for (i = 0, sg = first_scapegoat(revs, commit);
1256 i < num_sg && sg;
1257 sg = sg->next, i++) {
1258 struct origin *porigin = sg_origin[i];
1259 if (!porigin)
1260 continue;
1261 if (!origin->previous) {
1262 origin_incref(porigin);
1263 origin->previous = porigin;
1264 }
1265 if (pass_blame_to_parent(sb, origin, porigin))
1266 goto finish;
1267 }
1268
1269 /*
1270 * Optionally find moves in parents' files.
1271 */
1272 if (opt & PICKAXE_BLAME_MOVE)
1273 for (i = 0, sg = first_scapegoat(revs, commit);
1274 i < num_sg && sg;
1275 sg = sg->next, i++) {
1276 struct origin *porigin = sg_origin[i];
1277 if (!porigin)
1278 continue;
1279 if (find_move_in_parent(sb, origin, porigin))
1280 goto finish;
1281 }
1282
1283 /*
1284 * Optionally find copies from parents' files.
1285 */
1286 if (opt & PICKAXE_BLAME_COPY)
1287 for (i = 0, sg = first_scapegoat(revs, commit);
1288 i < num_sg && sg;
1289 sg = sg->next, i++) {
1290 struct origin *porigin = sg_origin[i];
1291 if (find_copy_in_parent(sb, origin, sg->item,
1292 porigin, opt))
1293 goto finish;
1294 }
1295
1296 finish:
1297 for (i = 0; i < num_sg; i++) {
1298 if (sg_origin[i]) {
1299 drop_origin_blob(sg_origin[i]);
1300 origin_decref(sg_origin[i]);
1301 }
1302 }
1303 drop_origin_blob(origin);
1304 if (sg_buf != sg_origin)
1305 free(sg_origin);
1306}
1307
1308/*
1309 * Information on commits, used for output.
1310 */
1311struct commit_info {
1312 struct strbuf author;
1313 struct strbuf author_mail;
1314 unsigned long author_time;
1315 struct strbuf author_tz;
1316
1317 /* filled only when asked for details */
1318 struct strbuf committer;
1319 struct strbuf committer_mail;
1320 unsigned long committer_time;
1321 struct strbuf committer_tz;
1322
1323 struct strbuf summary;
1324};
1325
1326/*
1327 * Parse author/committer line in the commit object buffer
1328 */
1329static void get_ac_line(const char *inbuf, const char *what,
1330 struct strbuf *name, struct strbuf *mail,
1331 unsigned long *time, struct strbuf *tz)
1332{
1333 struct ident_split ident;
1334 size_t len, maillen, namelen;
1335 char *tmp, *endp;
1336 const char *namebuf, *mailbuf;
1337
1338 tmp = strstr(inbuf, what);
1339 if (!tmp)
1340 goto error_out;
1341 tmp += strlen(what);
1342 endp = strchr(tmp, '\n');
1343 if (!endp)
1344 len = strlen(tmp);
1345 else
1346 len = endp - tmp;
1347
1348 if (split_ident_line(&ident, tmp, len)) {
1349 error_out:
1350 /* Ugh */
1351 tmp = "(unknown)";
1352 strbuf_addstr(name, tmp);
1353 strbuf_addstr(mail, tmp);
1354 strbuf_addstr(tz, tmp);
1355 *time = 0;
1356 return;
1357 }
1358
1359 namelen = ident.name_end - ident.name_begin;
1360 namebuf = ident.name_begin;
1361
1362 maillen = ident.mail_end - ident.mail_begin;
1363 mailbuf = ident.mail_begin;
1364
1365 if (ident.date_begin && ident.date_end)
1366 *time = strtoul(ident.date_begin, NULL, 10);
1367 else
1368 *time = 0;
1369
1370 if (ident.tz_begin && ident.tz_end)
1371 strbuf_add(tz, ident.tz_begin, ident.tz_end - ident.tz_begin);
1372 else
1373 strbuf_addstr(tz, "(unknown)");
1374
1375 /*
1376 * Now, convert both name and e-mail using mailmap
1377 */
1378 map_user(&mailmap, &mailbuf, &maillen,
1379 &namebuf, &namelen);
1380
1381 strbuf_addf(mail, "<%.*s>", (int)maillen, mailbuf);
1382 strbuf_add(name, namebuf, namelen);
1383}
1384
1385static void commit_info_init(struct commit_info *ci)
1386{
1387
1388 strbuf_init(&ci->author, 0);
1389 strbuf_init(&ci->author_mail, 0);
1390 strbuf_init(&ci->author_tz, 0);
1391 strbuf_init(&ci->committer, 0);
1392 strbuf_init(&ci->committer_mail, 0);
1393 strbuf_init(&ci->committer_tz, 0);
1394 strbuf_init(&ci->summary, 0);
1395}
1396
1397static void commit_info_destroy(struct commit_info *ci)
1398{
1399
1400 strbuf_release(&ci->author);
1401 strbuf_release(&ci->author_mail);
1402 strbuf_release(&ci->author_tz);
1403 strbuf_release(&ci->committer);
1404 strbuf_release(&ci->committer_mail);
1405 strbuf_release(&ci->committer_tz);
1406 strbuf_release(&ci->summary);
1407}
1408
1409static void get_commit_info(struct commit *commit,
1410 struct commit_info *ret,
1411 int detailed)
1412{
1413 int len;
1414 const char *subject, *encoding;
1415 char *message;
1416
1417 commit_info_init(ret);
1418
1419 encoding = get_log_output_encoding();
1420 message = logmsg_reencode(commit, NULL, encoding);
1421 get_ac_line(message, "\nauthor ",
1422 &ret->author, &ret->author_mail,
1423 &ret->author_time, &ret->author_tz);
1424
1425 if (!detailed) {
1426 logmsg_free(message, commit);
1427 return;
1428 }
1429
1430 get_ac_line(message, "\ncommitter ",
1431 &ret->committer, &ret->committer_mail,
1432 &ret->committer_time, &ret->committer_tz);
1433
1434 len = find_commit_subject(message, &subject);
1435 if (len)
1436 strbuf_add(&ret->summary, subject, len);
1437 else
1438 strbuf_addf(&ret->summary, "(%s)", sha1_to_hex(commit->object.sha1));
1439
1440 logmsg_free(message, commit);
1441}
1442
1443/*
1444 * To allow LF and other nonportable characters in pathnames,
1445 * they are c-style quoted as needed.
1446 */
1447static void write_filename_info(const char *path)
1448{
1449 printf("filename ");
1450 write_name_quoted(path, stdout, '\n');
1451}
1452
1453/*
1454 * Porcelain/Incremental format wants to show a lot of details per
1455 * commit. Instead of repeating this every line, emit it only once,
1456 * the first time each commit appears in the output (unless the
1457 * user has specifically asked for us to repeat).
1458 */
1459static int emit_one_suspect_detail(struct origin *suspect, int repeat)
1460{
1461 struct commit_info ci;
1462
1463 if (!repeat && (suspect->commit->object.flags & METAINFO_SHOWN))
1464 return 0;
1465
1466 suspect->commit->object.flags |= METAINFO_SHOWN;
1467 get_commit_info(suspect->commit, &ci, 1);
1468 printf("author %s\n", ci.author.buf);
1469 printf("author-mail %s\n", ci.author_mail.buf);
1470 printf("author-time %lu\n", ci.author_time);
1471 printf("author-tz %s\n", ci.author_tz.buf);
1472 printf("committer %s\n", ci.committer.buf);
1473 printf("committer-mail %s\n", ci.committer_mail.buf);
1474 printf("committer-time %lu\n", ci.committer_time);
1475 printf("committer-tz %s\n", ci.committer_tz.buf);
1476 printf("summary %s\n", ci.summary.buf);
1477 if (suspect->commit->object.flags & UNINTERESTING)
1478 printf("boundary\n");
1479 if (suspect->previous) {
1480 struct origin *prev = suspect->previous;
1481 printf("previous %s ", sha1_to_hex(prev->commit->object.sha1));
1482 write_name_quoted(prev->path, stdout, '\n');
1483 }
1484
1485 commit_info_destroy(&ci);
1486
1487 return 1;
1488}
1489
1490/*
1491 * The blame_entry is found to be guilty for the range. Mark it
1492 * as such, and show it in incremental output.
1493 */
1494static void found_guilty_entry(struct blame_entry *ent)
1495{
1496 if (ent->guilty)
1497 return;
1498 ent->guilty = 1;
1499 if (incremental) {
1500 struct origin *suspect = ent->suspect;
1501
1502 printf("%s %d %d %d\n",
1503 sha1_to_hex(suspect->commit->object.sha1),
1504 ent->s_lno + 1, ent->lno + 1, ent->num_lines);
1505 emit_one_suspect_detail(suspect, 0);
1506 write_filename_info(suspect->path);
1507 maybe_flush_or_die(stdout, "stdout");
1508 }
1509}
1510
1511/*
1512 * The main loop -- while the scoreboard has lines whose true origin
1513 * is still unknown, pick one blame_entry, and allow its current
1514 * suspect to pass blames to its parents.
1515 */
1516static void assign_blame(struct scoreboard *sb, int opt)
1517{
1518 struct rev_info *revs = sb->revs;
1519
1520 while (1) {
1521 struct blame_entry *ent;
1522 struct commit *commit;
1523 struct origin *suspect = NULL;
1524
1525 /* find one suspect to break down */
1526 for (ent = sb->ent; !suspect && ent; ent = ent->next)
1527 if (!ent->guilty)
1528 suspect = ent->suspect;
1529 if (!suspect)
1530 return; /* all done */
1531
1532 /*
1533 * We will use this suspect later in the loop,
1534 * so hold onto it in the meantime.
1535 */
1536 origin_incref(suspect);
1537 commit = suspect->commit;
1538 parse_commit(commit);
1539 if (reverse ||
1540 (!(commit->object.flags & UNINTERESTING) &&
1541 !(revs->max_age != -1 && commit->date < revs->max_age)))
1542 pass_blame(sb, suspect, opt);
1543 else {
1544 commit->object.flags |= UNINTERESTING;
1545 if (commit->object.parsed)
1546 mark_parents_uninteresting(commit);
1547 }
1548 /* treat root commit as boundary */
1549 if (!commit->parents && !show_root)
1550 commit->object.flags |= UNINTERESTING;
1551
1552 /* Take responsibility for the remaining entries */
1553 for (ent = sb->ent; ent; ent = ent->next)
1554 if (ent->suspect == suspect)
1555 found_guilty_entry(ent);
1556 origin_decref(suspect);
1557
1558 if (DEBUG) /* sanity */
1559 sanity_check_refcnt(sb);
1560 }
1561}
1562
1563static const char *format_time(unsigned long time, const char *tz_str,
1564 int show_raw_time)
1565{
1566 static char time_buf[128];
1567 const char *time_str;
1568 int time_len;
1569 int tz;
1570
1571 if (show_raw_time) {
1572 snprintf(time_buf, sizeof(time_buf), "%lu %s", time, tz_str);
1573 }
1574 else {
1575 tz = atoi(tz_str);
1576 time_str = show_date(time, tz, blame_date_mode);
1577 time_len = strlen(time_str);
1578 memcpy(time_buf, time_str, time_len);
1579 memset(time_buf + time_len, ' ', blame_date_width - time_len);
1580 }
1581 return time_buf;
1582}
1583
1584#define OUTPUT_ANNOTATE_COMPAT 001
1585#define OUTPUT_LONG_OBJECT_NAME 002
1586#define OUTPUT_RAW_TIMESTAMP 004
1587#define OUTPUT_PORCELAIN 010
1588#define OUTPUT_SHOW_NAME 020
1589#define OUTPUT_SHOW_NUMBER 040
1590#define OUTPUT_SHOW_SCORE 0100
1591#define OUTPUT_NO_AUTHOR 0200
1592#define OUTPUT_SHOW_EMAIL 0400
1593#define OUTPUT_LINE_PORCELAIN 01000
1594
1595static void emit_porcelain_details(struct origin *suspect, int repeat)
1596{
1597 if (emit_one_suspect_detail(suspect, repeat) ||
1598 (suspect->commit->object.flags & MORE_THAN_ONE_PATH))
1599 write_filename_info(suspect->path);
1600}
1601
1602static void emit_porcelain(struct scoreboard *sb, struct blame_entry *ent,
1603 int opt)
1604{
1605 int repeat = opt & OUTPUT_LINE_PORCELAIN;
1606 int cnt;
1607 const char *cp;
1608 struct origin *suspect = ent->suspect;
1609 char hex[41];
1610
1611 strcpy(hex, sha1_to_hex(suspect->commit->object.sha1));
1612 printf("%s%c%d %d %d\n",
1613 hex,
1614 ent->guilty ? ' ' : '*', /* purely for debugging */
1615 ent->s_lno + 1,
1616 ent->lno + 1,
1617 ent->num_lines);
1618 emit_porcelain_details(suspect, repeat);
1619
1620 cp = nth_line(sb, ent->lno);
1621 for (cnt = 0; cnt < ent->num_lines; cnt++) {
1622 char ch;
1623 if (cnt) {
1624 printf("%s %d %d\n", hex,
1625 ent->s_lno + 1 + cnt,
1626 ent->lno + 1 + cnt);
1627 if (repeat)
1628 emit_porcelain_details(suspect, 1);
1629 }
1630 putchar('\t');
1631 do {
1632 ch = *cp++;
1633 putchar(ch);
1634 } while (ch != '\n' &&
1635 cp < sb->final_buf + sb->final_buf_size);
1636 }
1637
1638 if (sb->final_buf_size && cp[-1] != '\n')
1639 putchar('\n');
1640}
1641
1642static void emit_other(struct scoreboard *sb, struct blame_entry *ent, int opt)
1643{
1644 int cnt;
1645 const char *cp;
1646 struct origin *suspect = ent->suspect;
1647 struct commit_info ci;
1648 char hex[41];
1649 int show_raw_time = !!(opt & OUTPUT_RAW_TIMESTAMP);
1650
1651 get_commit_info(suspect->commit, &ci, 1);
1652 strcpy(hex, sha1_to_hex(suspect->commit->object.sha1));
1653
1654 cp = nth_line(sb, ent->lno);
1655 for (cnt = 0; cnt < ent->num_lines; cnt++) {
1656 char ch;
1657 int length = (opt & OUTPUT_LONG_OBJECT_NAME) ? 40 : abbrev;
1658
1659 if (suspect->commit->object.flags & UNINTERESTING) {
1660 if (blank_boundary)
1661 memset(hex, ' ', length);
1662 else if (!(opt & OUTPUT_ANNOTATE_COMPAT)) {
1663 length--;
1664 putchar('^');
1665 }
1666 }
1667
1668 printf("%.*s", length, hex);
1669 if (opt & OUTPUT_ANNOTATE_COMPAT) {
1670 const char *name;
1671 if (opt & OUTPUT_SHOW_EMAIL)
1672 name = ci.author_mail.buf;
1673 else
1674 name = ci.author.buf;
1675 printf("\t(%10s\t%10s\t%d)", name,
1676 format_time(ci.author_time, ci.author_tz.buf,
1677 show_raw_time),
1678 ent->lno + 1 + cnt);
1679 } else {
1680 if (opt & OUTPUT_SHOW_SCORE)
1681 printf(" %*d %02d",
1682 max_score_digits, ent->score,
1683 ent->suspect->refcnt);
1684 if (opt & OUTPUT_SHOW_NAME)
1685 printf(" %-*.*s", longest_file, longest_file,
1686 suspect->path);
1687 if (opt & OUTPUT_SHOW_NUMBER)
1688 printf(" %*d", max_orig_digits,
1689 ent->s_lno + 1 + cnt);
1690
1691 if (!(opt & OUTPUT_NO_AUTHOR)) {
1692 const char *name;
1693 int pad;
1694 if (opt & OUTPUT_SHOW_EMAIL)
1695 name = ci.author_mail.buf;
1696 else
1697 name = ci.author.buf;
1698 pad = longest_author - utf8_strwidth(name);
1699 printf(" (%s%*s %10s",
1700 name, pad, "",
1701 format_time(ci.author_time,
1702 ci.author_tz.buf,
1703 show_raw_time));
1704 }
1705 printf(" %*d) ",
1706 max_digits, ent->lno + 1 + cnt);
1707 }
1708 do {
1709 ch = *cp++;
1710 putchar(ch);
1711 } while (ch != '\n' &&
1712 cp < sb->final_buf + sb->final_buf_size);
1713 }
1714
1715 if (sb->final_buf_size && cp[-1] != '\n')
1716 putchar('\n');
1717
1718 commit_info_destroy(&ci);
1719}
1720
1721static void output(struct scoreboard *sb, int option)
1722{
1723 struct blame_entry *ent;
1724
1725 if (option & OUTPUT_PORCELAIN) {
1726 for (ent = sb->ent; ent; ent = ent->next) {
1727 struct blame_entry *oth;
1728 struct origin *suspect = ent->suspect;
1729 struct commit *commit = suspect->commit;
1730 if (commit->object.flags & MORE_THAN_ONE_PATH)
1731 continue;
1732 for (oth = ent->next; oth; oth = oth->next) {
1733 if ((oth->suspect->commit != commit) ||
1734 !strcmp(oth->suspect->path, suspect->path))
1735 continue;
1736 commit->object.flags |= MORE_THAN_ONE_PATH;
1737 break;
1738 }
1739 }
1740 }
1741
1742 for (ent = sb->ent; ent; ent = ent->next) {
1743 if (option & OUTPUT_PORCELAIN)
1744 emit_porcelain(sb, ent, option);
1745 else {
1746 emit_other(sb, ent, option);
1747 }
1748 }
1749}
1750
1751/*
1752 * To allow quick access to the contents of nth line in the
1753 * final image, prepare an index in the scoreboard.
1754 */
1755static int prepare_lines(struct scoreboard *sb)
1756{
1757 const char *buf = sb->final_buf;
1758 unsigned long len = sb->final_buf_size;
1759 int num = 0, incomplete = 0, bol = 1;
1760
1761 if (len && buf[len-1] != '\n')
1762 incomplete++; /* incomplete line at the end */
1763 while (len--) {
1764 if (bol) {
1765 sb->lineno = xrealloc(sb->lineno,
1766 sizeof(int) * (num + 1));
1767 sb->lineno[num] = buf - sb->final_buf;
1768 bol = 0;
1769 }
1770 if (*buf++ == '\n') {
1771 num++;
1772 bol = 1;
1773 }
1774 }
1775 sb->lineno = xrealloc(sb->lineno,
1776 sizeof(int) * (num + incomplete + 1));
1777 sb->lineno[num + incomplete] = buf - sb->final_buf;
1778 sb->num_lines = num + incomplete;
1779 return sb->num_lines;
1780}
1781
1782/*
1783 * Add phony grafts for use with -S; this is primarily to
1784 * support git's cvsserver that wants to give a linear history
1785 * to its clients.
1786 */
1787static int read_ancestry(const char *graft_file)
1788{
1789 FILE *fp = fopen(graft_file, "r");
1790 struct strbuf buf = STRBUF_INIT;
1791 if (!fp)
1792 return -1;
1793 while (!strbuf_getwholeline(&buf, fp, '\n')) {
1794 /* The format is just "Commit Parent1 Parent2 ...\n" */
1795 struct commit_graft *graft = read_graft_line(buf.buf, buf.len);
1796 if (graft)
1797 register_commit_graft(graft, 0);
1798 }
1799 fclose(fp);
1800 strbuf_release(&buf);
1801 return 0;
1802}
1803
1804static int update_auto_abbrev(int auto_abbrev, struct origin *suspect)
1805{
1806 const char *uniq = find_unique_abbrev(suspect->commit->object.sha1,
1807 auto_abbrev);
1808 int len = strlen(uniq);
1809 if (auto_abbrev < len)
1810 return len;
1811 return auto_abbrev;
1812}
1813
1814/*
1815 * How many columns do we need to show line numbers, authors,
1816 * and filenames?
1817 */
1818static void find_alignment(struct scoreboard *sb, int *option)
1819{
1820 int longest_src_lines = 0;
1821 int longest_dst_lines = 0;
1822 unsigned largest_score = 0;
1823 struct blame_entry *e;
1824 int compute_auto_abbrev = (abbrev < 0);
1825 int auto_abbrev = default_abbrev;
1826
1827 for (e = sb->ent; e; e = e->next) {
1828 struct origin *suspect = e->suspect;
1829 struct commit_info ci;
1830 int num;
1831
1832 if (compute_auto_abbrev)
1833 auto_abbrev = update_auto_abbrev(auto_abbrev, suspect);
1834 if (strcmp(suspect->path, sb->path))
1835 *option |= OUTPUT_SHOW_NAME;
1836 num = strlen(suspect->path);
1837 if (longest_file < num)
1838 longest_file = num;
1839 if (!(suspect->commit->object.flags & METAINFO_SHOWN)) {
1840 suspect->commit->object.flags |= METAINFO_SHOWN;
1841 get_commit_info(suspect->commit, &ci, 1);
1842 if (*option & OUTPUT_SHOW_EMAIL)
1843 num = utf8_strwidth(ci.author_mail.buf);
1844 else
1845 num = utf8_strwidth(ci.author.buf);
1846 if (longest_author < num)
1847 longest_author = num;
1848 }
1849 num = e->s_lno + e->num_lines;
1850 if (longest_src_lines < num)
1851 longest_src_lines = num;
1852 num = e->lno + e->num_lines;
1853 if (longest_dst_lines < num)
1854 longest_dst_lines = num;
1855 if (largest_score < ent_score(sb, e))
1856 largest_score = ent_score(sb, e);
1857
1858 commit_info_destroy(&ci);
1859 }
1860 max_orig_digits = decimal_width(longest_src_lines);
1861 max_digits = decimal_width(longest_dst_lines);
1862 max_score_digits = decimal_width(largest_score);
1863
1864 if (compute_auto_abbrev)
1865 /* one more abbrev length is needed for the boundary commit */
1866 abbrev = auto_abbrev + 1;
1867}
1868
1869/*
1870 * For debugging -- origin is refcounted, and this asserts that
1871 * we do not underflow.
1872 */
1873static void sanity_check_refcnt(struct scoreboard *sb)
1874{
1875 int baa = 0;
1876 struct blame_entry *ent;
1877
1878 for (ent = sb->ent; ent; ent = ent->next) {
1879 /* Nobody should have zero or negative refcnt */
1880 if (ent->suspect->refcnt <= 0) {
1881 fprintf(stderr, "%s in %s has negative refcnt %d\n",
1882 ent->suspect->path,
1883 sha1_to_hex(ent->suspect->commit->object.sha1),
1884 ent->suspect->refcnt);
1885 baa = 1;
1886 }
1887 }
1888 if (baa) {
1889 int opt = 0160;
1890 find_alignment(sb, &opt);
1891 output(sb, opt);
1892 die("Baa %d!", baa);
1893 }
1894}
1895
1896/*
1897 * Used for the command line parsing; check if the path exists
1898 * in the working tree.
1899 */
1900static int has_string_in_work_tree(const char *path)
1901{
1902 struct stat st;
1903 return !lstat(path, &st);
1904}
1905
1906static unsigned parse_score(const char *arg)
1907{
1908 char *end;
1909 unsigned long score = strtoul(arg, &end, 10);
1910 if (*end)
1911 return 0;
1912 return score;
1913}
1914
1915static const char *add_prefix(const char *prefix, const char *path)
1916{
1917 return prefix_path(prefix, prefix ? strlen(prefix) : 0, path);
1918}
1919
1920static int git_blame_config(const char *var, const char *value, void *cb)
1921{
1922 if (!strcmp(var, "blame.showroot")) {
1923 show_root = git_config_bool(var, value);
1924 return 0;
1925 }
1926 if (!strcmp(var, "blame.blankboundary")) {
1927 blank_boundary = git_config_bool(var, value);
1928 return 0;
1929 }
1930 if (!strcmp(var, "blame.date")) {
1931 if (!value)
1932 return config_error_nonbool(var);
1933 blame_date_mode = parse_date_format(value);
1934 return 0;
1935 }
1936
1937 if (userdiff_config(var, value) < 0)
1938 return -1;
1939
1940 return git_default_config(var, value, cb);
1941}
1942
1943static void verify_working_tree_path(struct commit *work_tree, const char *path)
1944{
1945 struct commit_list *parents;
1946
1947 for (parents = work_tree->parents; parents; parents = parents->next) {
1948 const unsigned char *commit_sha1 = parents->item->object.sha1;
1949 unsigned char blob_sha1[20];
1950 unsigned mode;
1951
1952 if (!get_tree_entry(commit_sha1, path, blob_sha1, &mode) &&
1953 sha1_object_info(blob_sha1, NULL) == OBJ_BLOB)
1954 return;
1955 }
1956 die("no such path '%s' in HEAD", path);
1957}
1958
1959static struct commit_list **append_parent(struct commit_list **tail, const unsigned char *sha1)
1960{
1961 struct commit *parent;
1962
1963 parent = lookup_commit_reference(sha1);
1964 if (!parent)
1965 die("no such commit %s", sha1_to_hex(sha1));
1966 return &commit_list_insert(parent, tail)->next;
1967}
1968
1969static void append_merge_parents(struct commit_list **tail)
1970{
1971 int merge_head;
1972 const char *merge_head_file = git_path("MERGE_HEAD");
1973 struct strbuf line = STRBUF_INIT;
1974
1975 merge_head = open(merge_head_file, O_RDONLY);
1976 if (merge_head < 0) {
1977 if (errno == ENOENT)
1978 return;
1979 die("cannot open '%s' for reading", merge_head_file);
1980 }
1981
1982 while (!strbuf_getwholeline_fd(&line, merge_head, '\n')) {
1983 unsigned char sha1[20];
1984 if (line.len < 40 || get_sha1_hex(line.buf, sha1))
1985 die("unknown line in '%s': %s", merge_head_file, line.buf);
1986 tail = append_parent(tail, sha1);
1987 }
1988 close(merge_head);
1989 strbuf_release(&line);
1990}
1991
1992/*
1993 * Prepare a dummy commit that represents the work tree (or staged) item.
1994 * Note that annotating work tree item never works in the reverse.
1995 */
1996static struct commit *fake_working_tree_commit(struct diff_options *opt,
1997 const char *path,
1998 const char *contents_from)
1999{
2000 struct commit *commit;
2001 struct origin *origin;
2002 struct commit_list **parent_tail, *parent;
2003 unsigned char head_sha1[20];
2004 struct strbuf buf = STRBUF_INIT;
2005 const char *ident;
2006 time_t now;
2007 int size, len;
2008 struct cache_entry *ce;
2009 unsigned mode;
2010 struct strbuf msg = STRBUF_INIT;
2011
2012 time(&now);
2013 commit = xcalloc(1, sizeof(*commit));
2014 commit->object.parsed = 1;
2015 commit->date = now;
2016 commit->object.type = OBJ_COMMIT;
2017 parent_tail = &commit->parents;
2018
2019 if (!resolve_ref_unsafe("HEAD", head_sha1, 1, NULL))
2020 die("no such ref: HEAD");
2021
2022 parent_tail = append_parent(parent_tail, head_sha1);
2023 append_merge_parents(parent_tail);
2024 verify_working_tree_path(commit, path);
2025
2026 origin = make_origin(commit, path);
2027
2028 ident = fmt_ident("Not Committed Yet", "not.committed.yet", NULL, 0);
2029 strbuf_addstr(&msg, "tree 0000000000000000000000000000000000000000\n");
2030 for (parent = commit->parents; parent; parent = parent->next)
2031 strbuf_addf(&msg, "parent %s\n",
2032 sha1_to_hex(parent->item->object.sha1));
2033 strbuf_addf(&msg,
2034 "author %s\n"
2035 "committer %s\n\n"
2036 "Version of %s from %s\n",
2037 ident, ident, path,
2038 (!contents_from ? path :
2039 (!strcmp(contents_from, "-") ? "standard input" : contents_from)));
2040 commit->buffer = strbuf_detach(&msg, NULL);
2041
2042 if (!contents_from || strcmp("-", contents_from)) {
2043 struct stat st;
2044 const char *read_from;
2045 char *buf_ptr;
2046 unsigned long buf_len;
2047
2048 if (contents_from) {
2049 if (stat(contents_from, &st) < 0)
2050 die_errno("Cannot stat '%s'", contents_from);
2051 read_from = contents_from;
2052 }
2053 else {
2054 if (lstat(path, &st) < 0)
2055 die_errno("Cannot lstat '%s'", path);
2056 read_from = path;
2057 }
2058 mode = canon_mode(st.st_mode);
2059
2060 switch (st.st_mode & S_IFMT) {
2061 case S_IFREG:
2062 if (DIFF_OPT_TST(opt, ALLOW_TEXTCONV) &&
2063 textconv_object(read_from, mode, null_sha1, 0, &buf_ptr, &buf_len))
2064 strbuf_attach(&buf, buf_ptr, buf_len, buf_len + 1);
2065 else if (strbuf_read_file(&buf, read_from, st.st_size) != st.st_size)
2066 die_errno("cannot open or read '%s'", read_from);
2067 break;
2068 case S_IFLNK:
2069 if (strbuf_readlink(&buf, read_from, st.st_size) < 0)
2070 die_errno("cannot readlink '%s'", read_from);
2071 break;
2072 default:
2073 die("unsupported file type %s", read_from);
2074 }
2075 }
2076 else {
2077 /* Reading from stdin */
2078 mode = 0;
2079 if (strbuf_read(&buf, 0, 0) < 0)
2080 die_errno("failed to read from stdin");
2081 }
2082 convert_to_git(path, buf.buf, buf.len, &buf, 0);
2083 origin->file.ptr = buf.buf;
2084 origin->file.size = buf.len;
2085 pretend_sha1_file(buf.buf, buf.len, OBJ_BLOB, origin->blob_sha1);
2086 commit->util = origin;
2087
2088 /*
2089 * Read the current index, replace the path entry with
2090 * origin->blob_sha1 without mucking with its mode or type
2091 * bits; we are not going to write this index out -- we just
2092 * want to run "diff-index --cached".
2093 */
2094 discard_cache();
2095 read_cache();
2096
2097 len = strlen(path);
2098 if (!mode) {
2099 int pos = cache_name_pos(path, len);
2100 if (0 <= pos)
2101 mode = active_cache[pos]->ce_mode;
2102 else
2103 /* Let's not bother reading from HEAD tree */
2104 mode = S_IFREG | 0644;
2105 }
2106 size = cache_entry_size(len);
2107 ce = xcalloc(1, size);
2108 hashcpy(ce->sha1, origin->blob_sha1);
2109 memcpy(ce->name, path, len);
2110 ce->ce_flags = create_ce_flags(0);
2111 ce->ce_namelen = len;
2112 ce->ce_mode = create_ce_mode(mode);
2113 add_cache_entry(ce, ADD_CACHE_OK_TO_ADD|ADD_CACHE_OK_TO_REPLACE);
2114
2115 /*
2116 * We are not going to write this out, so this does not matter
2117 * right now, but someday we might optimize diff-index --cached
2118 * with cache-tree information.
2119 */
2120 cache_tree_invalidate_path(active_cache_tree, path);
2121
2122 return commit;
2123}
2124
2125static const char *prepare_final(struct scoreboard *sb)
2126{
2127 int i;
2128 const char *final_commit_name = NULL;
2129 struct rev_info *revs = sb->revs;
2130
2131 /*
2132 * There must be one and only one positive commit in the
2133 * revs->pending array.
2134 */
2135 for (i = 0; i < revs->pending.nr; i++) {
2136 struct object *obj = revs->pending.objects[i].item;
2137 if (obj->flags & UNINTERESTING)
2138 continue;
2139 while (obj->type == OBJ_TAG)
2140 obj = deref_tag(obj, NULL, 0);
2141 if (obj->type != OBJ_COMMIT)
2142 die("Non commit %s?", revs->pending.objects[i].name);
2143 if (sb->final)
2144 die("More than one commit to dig from %s and %s?",
2145 revs->pending.objects[i].name,
2146 final_commit_name);
2147 sb->final = (struct commit *) obj;
2148 final_commit_name = revs->pending.objects[i].name;
2149 }
2150 return final_commit_name;
2151}
2152
2153static const char *prepare_initial(struct scoreboard *sb)
2154{
2155 int i;
2156 const char *final_commit_name = NULL;
2157 struct rev_info *revs = sb->revs;
2158
2159 /*
2160 * There must be one and only one negative commit, and it must be
2161 * the boundary.
2162 */
2163 for (i = 0; i < revs->pending.nr; i++) {
2164 struct object *obj = revs->pending.objects[i].item;
2165 if (!(obj->flags & UNINTERESTING))
2166 continue;
2167 while (obj->type == OBJ_TAG)
2168 obj = deref_tag(obj, NULL, 0);
2169 if (obj->type != OBJ_COMMIT)
2170 die("Non commit %s?", revs->pending.objects[i].name);
2171 if (sb->final)
2172 die("More than one commit to dig down to %s and %s?",
2173 revs->pending.objects[i].name,
2174 final_commit_name);
2175 sb->final = (struct commit *) obj;
2176 final_commit_name = revs->pending.objects[i].name;
2177 }
2178 if (!final_commit_name)
2179 die("No commit to dig down to?");
2180 return final_commit_name;
2181}
2182
2183static int blame_copy_callback(const struct option *option, const char *arg, int unset)
2184{
2185 int *opt = option->value;
2186
2187 /*
2188 * -C enables copy from removed files;
2189 * -C -C enables copy from existing files, but only
2190 * when blaming a new file;
2191 * -C -C -C enables copy from existing files for
2192 * everybody
2193 */
2194 if (*opt & PICKAXE_BLAME_COPY_HARDER)
2195 *opt |= PICKAXE_BLAME_COPY_HARDEST;
2196 if (*opt & PICKAXE_BLAME_COPY)
2197 *opt |= PICKAXE_BLAME_COPY_HARDER;
2198 *opt |= PICKAXE_BLAME_COPY | PICKAXE_BLAME_MOVE;
2199
2200 if (arg)
2201 blame_copy_score = parse_score(arg);
2202 return 0;
2203}
2204
2205static int blame_move_callback(const struct option *option, const char *arg, int unset)
2206{
2207 int *opt = option->value;
2208
2209 *opt |= PICKAXE_BLAME_MOVE;
2210
2211 if (arg)
2212 blame_move_score = parse_score(arg);
2213 return 0;
2214}
2215
2216int cmd_blame(int argc, const char **argv, const char *prefix)
2217{
2218 struct rev_info revs;
2219 const char *path;
2220 struct scoreboard sb;
2221 struct origin *o;
2222 struct blame_entry *ent = NULL;
2223 long dashdash_pos, lno;
2224 const char *final_commit_name = NULL;
2225 enum object_type type;
2226
2227 static struct string_list range_list;
2228 static int output_option = 0, opt = 0;
2229 static int show_stats = 0;
2230 static const char *revs_file = NULL;
2231 static const char *contents_from = NULL;
2232 static const struct option options[] = {
2233 OPT_BOOL(0, "incremental", &incremental, N_("Show blame entries as we find them, incrementally")),
2234 OPT_BOOL('b', NULL, &blank_boundary, N_("Show blank SHA-1 for boundary commits (Default: off)")),
2235 OPT_BOOL(0, "root", &show_root, N_("Do not treat root commits as boundaries (Default: off)")),
2236 OPT_BOOL(0, "show-stats", &show_stats, N_("Show work cost statistics")),
2237 OPT_BIT(0, "score-debug", &output_option, N_("Show output score for blame entries"), OUTPUT_SHOW_SCORE),
2238 OPT_BIT('f', "show-name", &output_option, N_("Show original filename (Default: auto)"), OUTPUT_SHOW_NAME),
2239 OPT_BIT('n', "show-number", &output_option, N_("Show original linenumber (Default: off)"), OUTPUT_SHOW_NUMBER),
2240 OPT_BIT('p', "porcelain", &output_option, N_("Show in a format designed for machine consumption"), OUTPUT_PORCELAIN),
2241 OPT_BIT(0, "line-porcelain", &output_option, N_("Show porcelain format with per-line commit information"), OUTPUT_PORCELAIN|OUTPUT_LINE_PORCELAIN),
2242 OPT_BIT('c', NULL, &output_option, N_("Use the same output mode as git-annotate (Default: off)"), OUTPUT_ANNOTATE_COMPAT),
2243 OPT_BIT('t', NULL, &output_option, N_("Show raw timestamp (Default: off)"), OUTPUT_RAW_TIMESTAMP),
2244 OPT_BIT('l', NULL, &output_option, N_("Show long commit SHA1 (Default: off)"), OUTPUT_LONG_OBJECT_NAME),
2245 OPT_BIT('s', NULL, &output_option, N_("Suppress author name and timestamp (Default: off)"), OUTPUT_NO_AUTHOR),
2246 OPT_BIT('e', "show-email", &output_option, N_("Show author email instead of name (Default: off)"), OUTPUT_SHOW_EMAIL),
2247 OPT_BIT('w', NULL, &xdl_opts, N_("Ignore whitespace differences"), XDF_IGNORE_WHITESPACE),
2248 OPT_BIT(0, "minimal", &xdl_opts, N_("Spend extra cycles to find better match"), XDF_NEED_MINIMAL),
2249 OPT_STRING('S', NULL, &revs_file, N_("file"), N_("Use revisions from <file> instead of calling git-rev-list")),
2250 OPT_STRING(0, "contents", &contents_from, N_("file"), N_("Use <file>'s contents as the final image")),
2251 { OPTION_CALLBACK, 'C', NULL, &opt, N_("score"), N_("Find line copies within and across files"), PARSE_OPT_OPTARG, blame_copy_callback },
2252 { OPTION_CALLBACK, 'M', NULL, &opt, N_("score"), N_("Find line movements within and across files"), PARSE_OPT_OPTARG, blame_move_callback },
2253 OPT_STRING_LIST('L', NULL, &range_list, N_("n,m"), N_("Process only line range n,m, counting from 1")),
2254 OPT__ABBREV(&abbrev),
2255 OPT_END()
2256 };
2257
2258 struct parse_opt_ctx_t ctx;
2259 int cmd_is_annotate = !strcmp(argv[0], "annotate");
2260 struct range_set ranges;
2261 unsigned int range_i;
2262 long anchor;
2263
2264 git_config(git_blame_config, NULL);
2265 init_revisions(&revs, NULL);
2266 revs.date_mode = blame_date_mode;
2267 DIFF_OPT_SET(&revs.diffopt, ALLOW_TEXTCONV);
2268 DIFF_OPT_SET(&revs.diffopt, FOLLOW_RENAMES);
2269
2270 save_commit_buffer = 0;
2271 dashdash_pos = 0;
2272
2273 parse_options_start(&ctx, argc, argv, prefix, options,
2274 PARSE_OPT_KEEP_DASHDASH | PARSE_OPT_KEEP_ARGV0);
2275 for (;;) {
2276 switch (parse_options_step(&ctx, options, blame_opt_usage)) {
2277 case PARSE_OPT_HELP:
2278 exit(129);
2279 case PARSE_OPT_DONE:
2280 if (ctx.argv[0])
2281 dashdash_pos = ctx.cpidx;
2282 goto parse_done;
2283 }
2284
2285 if (!strcmp(ctx.argv[0], "--reverse")) {
2286 ctx.argv[0] = "--children";
2287 reverse = 1;
2288 }
2289 parse_revision_opt(&revs, &ctx, options, blame_opt_usage);
2290 }
2291parse_done:
2292 no_whole_file_rename = !DIFF_OPT_TST(&revs.diffopt, FOLLOW_RENAMES);
2293 DIFF_OPT_CLR(&revs.diffopt, FOLLOW_RENAMES);
2294 argc = parse_options_end(&ctx);
2295
2296 if (0 < abbrev)
2297 /* one more abbrev length is needed for the boundary commit */
2298 abbrev++;
2299
2300 if (revs_file && read_ancestry(revs_file))
2301 die_errno("reading graft file '%s' failed", revs_file);
2302
2303 if (cmd_is_annotate) {
2304 output_option |= OUTPUT_ANNOTATE_COMPAT;
2305 blame_date_mode = DATE_ISO8601;
2306 } else {
2307 blame_date_mode = revs.date_mode;
2308 }
2309
2310 /* The maximum width used to show the dates */
2311 switch (blame_date_mode) {
2312 case DATE_RFC2822:
2313 blame_date_width = sizeof("Thu, 19 Oct 2006 16:00:04 -0700");
2314 break;
2315 case DATE_ISO8601:
2316 blame_date_width = sizeof("2006-10-19 16:00:04 -0700");
2317 break;
2318 case DATE_RAW:
2319 blame_date_width = sizeof("1161298804 -0700");
2320 break;
2321 case DATE_SHORT:
2322 blame_date_width = sizeof("2006-10-19");
2323 break;
2324 case DATE_RELATIVE:
2325 /* "normal" is used as the fallback for "relative" */
2326 case DATE_LOCAL:
2327 case DATE_NORMAL:
2328 blame_date_width = sizeof("Thu Oct 19 16:00:04 2006 -0700");
2329 break;
2330 }
2331 blame_date_width -= 1; /* strip the null */
2332
2333 if (DIFF_OPT_TST(&revs.diffopt, FIND_COPIES_HARDER))
2334 opt |= (PICKAXE_BLAME_COPY | PICKAXE_BLAME_MOVE |
2335 PICKAXE_BLAME_COPY_HARDER);
2336
2337 if (!blame_move_score)
2338 blame_move_score = BLAME_DEFAULT_MOVE_SCORE;
2339 if (!blame_copy_score)
2340 blame_copy_score = BLAME_DEFAULT_COPY_SCORE;
2341
2342 /*
2343 * We have collected options unknown to us in argv[1..unk]
2344 * which are to be passed to revision machinery if we are
2345 * going to do the "bottom" processing.
2346 *
2347 * The remaining are:
2348 *
2349 * (1) if dashdash_pos != 0, it is either
2350 * "blame [revisions] -- <path>" or
2351 * "blame -- <path> <rev>"
2352 *
2353 * (2) otherwise, it is one of the two:
2354 * "blame [revisions] <path>"
2355 * "blame <path> <rev>"
2356 *
2357 * Note that we must strip out <path> from the arguments: we do not
2358 * want the path pruning but we may want "bottom" processing.
2359 */
2360 if (dashdash_pos) {
2361 switch (argc - dashdash_pos - 1) {
2362 case 2: /* (1b) */
2363 if (argc != 4)
2364 usage_with_options(blame_opt_usage, options);
2365 /* reorder for the new way: <rev> -- <path> */
2366 argv[1] = argv[3];
2367 argv[3] = argv[2];
2368 argv[2] = "--";
2369 /* FALLTHROUGH */
2370 case 1: /* (1a) */
2371 path = add_prefix(prefix, argv[--argc]);
2372 argv[argc] = NULL;
2373 break;
2374 default:
2375 usage_with_options(blame_opt_usage, options);
2376 }
2377 } else {
2378 if (argc < 2)
2379 usage_with_options(blame_opt_usage, options);
2380 path = add_prefix(prefix, argv[argc - 1]);
2381 if (argc == 3 && !has_string_in_work_tree(path)) { /* (2b) */
2382 path = add_prefix(prefix, argv[1]);
2383 argv[1] = argv[2];
2384 }
2385 argv[argc - 1] = "--";
2386
2387 setup_work_tree();
2388 if (!has_string_in_work_tree(path))
2389 die_errno("cannot stat path '%s'", path);
2390 }
2391
2392 revs.disable_stdin = 1;
2393 setup_revisions(argc, argv, &revs, NULL);
2394 memset(&sb, 0, sizeof(sb));
2395
2396 sb.revs = &revs;
2397 if (!reverse)
2398 final_commit_name = prepare_final(&sb);
2399 else if (contents_from)
2400 die("--contents and --children do not blend well.");
2401 else
2402 final_commit_name = prepare_initial(&sb);
2403
2404 if (!sb.final) {
2405 /*
2406 * "--not A B -- path" without anything positive;
2407 * do not default to HEAD, but use the working tree
2408 * or "--contents".
2409 */
2410 setup_work_tree();
2411 sb.final = fake_working_tree_commit(&sb.revs->diffopt,
2412 path, contents_from);
2413 add_pending_object(&revs, &(sb.final->object), ":");
2414 }
2415 else if (contents_from)
2416 die("Cannot use --contents with final commit object name");
2417
2418 /*
2419 * If we have bottom, this will mark the ancestors of the
2420 * bottom commits we would reach while traversing as
2421 * uninteresting.
2422 */
2423 if (prepare_revision_walk(&revs))
2424 die("revision walk setup failed");
2425
2426 if (is_null_sha1(sb.final->object.sha1)) {
2427 char *buf;
2428 o = sb.final->util;
2429 buf = xmalloc(o->file.size + 1);
2430 memcpy(buf, o->file.ptr, o->file.size + 1);
2431 sb.final_buf = buf;
2432 sb.final_buf_size = o->file.size;
2433 }
2434 else {
2435 o = get_origin(&sb, sb.final, path);
2436 if (fill_blob_sha1_and_mode(o))
2437 die("no such path %s in %s", path, final_commit_name);
2438
2439 if (DIFF_OPT_TST(&sb.revs->diffopt, ALLOW_TEXTCONV) &&
2440 textconv_object(path, o->mode, o->blob_sha1, 1, (char **) &sb.final_buf,
2441 &sb.final_buf_size))
2442 ;
2443 else
2444 sb.final_buf = read_sha1_file(o->blob_sha1, &type,
2445 &sb.final_buf_size);
2446
2447 if (!sb.final_buf)
2448 die("Cannot read blob %s for path %s",
2449 sha1_to_hex(o->blob_sha1),
2450 path);
2451 }
2452 num_read_blob++;
2453 lno = prepare_lines(&sb);
2454
2455 if (lno && !range_list.nr)
2456 string_list_append(&range_list, xstrdup("1"));
2457
2458 anchor = 1;
2459 range_set_init(&ranges, range_list.nr);
2460 for (range_i = 0; range_i < range_list.nr; ++range_i) {
2461 long bottom, top;
2462 if (parse_range_arg(range_list.items[range_i].string,
2463 nth_line_cb, &sb, lno, anchor,
2464 &bottom, &top, sb.path))
2465 usage(blame_usage);
2466 if (lno < top || ((lno || bottom) && lno < bottom))
2467 die("file %s has only %lu lines", path, lno);
2468 if (bottom < 1)
2469 bottom = 1;
2470 if (top < 1)
2471 top = lno;
2472 bottom--;
2473 range_set_append_unsafe(&ranges, bottom, top);
2474 anchor = top + 1;
2475 }
2476 sort_and_merge_range_set(&ranges);
2477
2478 for (range_i = ranges.nr; range_i > 0; --range_i) {
2479 const struct range *r = &ranges.ranges[range_i - 1];
2480 long bottom = r->start;
2481 long top = r->end;
2482 struct blame_entry *next = ent;
2483 ent = xcalloc(1, sizeof(*ent));
2484 ent->lno = bottom;
2485 ent->num_lines = top - bottom;
2486 ent->suspect = o;
2487 ent->s_lno = bottom;
2488 ent->next = next;
2489 origin_incref(o);
2490 }
2491 origin_decref(o);
2492
2493 range_set_release(&ranges);
2494 string_list_clear(&range_list, 0);
2495
2496 sb.ent = ent;
2497 sb.path = path;
2498
2499 read_mailmap(&mailmap, NULL);
2500
2501 if (!incremental)
2502 setup_pager();
2503
2504 assign_blame(&sb, opt);
2505
2506 if (incremental)
2507 return 0;
2508
2509 coalesce(&sb);
2510
2511 if (!(output_option & OUTPUT_PORCELAIN))
2512 find_alignment(&sb, &output_option);
2513
2514 output(&sb, output_option);
2515 free((void *)sb.final_buf);
2516 for (ent = sb.ent; ent; ) {
2517 struct blame_entry *e = ent->next;
2518 free(ent);
2519 ent = e;
2520 }
2521
2522 if (show_stats) {
2523 printf("num read blob: %d\n", num_read_blob);
2524 printf("num get patch: %d\n", num_get_patch);
2525 printf("num commits: %d\n", num_commits);
2526 }
2527 return 0;
2528}