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