]> git.ipfire.org Git - thirdparty/git.git/blame - builtin/blame.c
Git 2.23
[thirdparty/git.git] / builtin / blame.c
CommitLineData
cee7f245 1/*
31653c1a 2 * Blame
cee7f245 3 *
7e6ac6e4
DK
4 * Copyright (c) 2006, 2014 by its authors
5 * See COPYING for licensing conditions
cee7f245
JH
6 */
7
8#include "cache.h"
b2141fc1 9#include "config.h"
cdc2d5f1 10#include "color.h"
cee7f245 11#include "builtin.h"
3f5787f8 12#include "repository.h"
cee7f245 13#include "commit.h"
cee7f245 14#include "diff.h"
cee7f245 15#include "revision.h"
717d1462 16#include "quote.h"
c455c87c 17#include "string-list.h"
f9567384 18#include "mailmap.h"
5817da01 19#include "parse-options.h"
7e6ac6e4 20#include "prio-queue.h"
ffaf9cc0 21#include "utf8.h"
3b8a12e8 22#include "userdiff.h"
25ed3412 23#include "line-range.h"
58dbfa2e 24#include "line-log.h"
dbe44faa 25#include "dir.h"
aba37f49 26#include "progress.h"
cbd53a21 27#include "object-store.h"
dc076ae5 28#include "blame.h"
25d5f529 29#include "string-list.h"
a544fb08 30#include "refs.h"
cee7f245 31
ce41720c 32static char blame_usage[] = N_("git blame [<options>] [<rev-opts>] [<rev>] [--] <file>");
5817da01
PH
33
34static const char *blame_opt_usage[] = {
35 blame_usage,
36 "",
9c9b4f2f 37 N_("<rev-opts> are documented in git-rev-list(1)"),
5817da01
PH
38 NULL
39};
cee7f245
JH
40
41static int longest_file;
42static int longest_author;
43static int max_orig_digits;
44static int max_digits;
5ff62c30 45static int max_score_digits;
4c10a5ca 46static int show_root;
85af7929 47static int reverse;
4c10a5ca 48static int blank_boundary;
717d1462 49static int incremental;
582aa00b 50static int xdl_opts;
84393bfd 51static int abbrev = -1;
3d1aa566 52static int no_whole_file_rename;
aba37f49 53static int show_progress;
cdc2d5f1 54static char repeated_meta_color[COLOR_MAXLEN];
0dc95a4d 55static int coloring_mode;
ae3f36de 56static struct string_list ignore_revs_file_list = STRING_LIST_INIT_NODUP;
8934ac8c
BR
57static int mark_unblamable_lines;
58static int mark_ignored_lines;
31653c1a 59
a5481a6c 60static struct date_mode blame_date_mode = { DATE_ISO8601 };
31653c1a
EL
61static size_t blame_date_width;
62
2721ce21 63static struct string_list mailmap = STRING_LIST_INIT_NODUP;
cee7f245 64
e9b9cc56
JH
65#ifndef DEBUG_BLAME
66#define DEBUG_BLAME 0
54a4c617
JH
67#endif
68
4a0fc95f
JH
69static unsigned blame_move_score;
70static unsigned blame_copy_score;
d24bba80 71
208acbfb 72/* Remember to update object flag allocation in object.h */
cee7f245
JH
73#define METAINFO_SHOWN (1u<<12)
74#define MORE_THAN_ONE_PATH (1u<<13)
d24bba80 75
aba37f49
ECA
76struct progress_info {
77 struct progress *progress;
78 int blamed_lines;
33494784
JH
79};
80
25ed3412 81static const char *nth_line_cb(void *data, long lno)
cee7f245 82{
935202bd 83 return blame_nth_line((struct blame_scoreboard *)data, lno);
cee7f245
JH
84}
85
1732a1fd
JH
86/*
87 * Information on commits, used for output.
88 */
9cba13ca 89struct commit_info {
ea02ffa3
AP
90 struct strbuf author;
91 struct strbuf author_mail;
dddbad72 92 timestamp_t author_time;
ea02ffa3 93 struct strbuf author_tz;
cee7f245
JH
94
95 /* filled only when asked for details */
ea02ffa3
AP
96 struct strbuf committer;
97 struct strbuf committer_mail;
dddbad72 98 timestamp_t committer_time;
ea02ffa3 99 struct strbuf committer_tz;
cee7f245 100
ea02ffa3 101 struct strbuf summary;
cee7f245
JH
102};
103
1732a1fd
JH
104/*
105 * Parse author/committer line in the commit object buffer
106 */
cee7f245 107static void get_ac_line(const char *inbuf, const char *what,
ea02ffa3 108 struct strbuf *name, struct strbuf *mail,
dddbad72 109 timestamp_t *time, struct strbuf *tz)
cee7f245 110{
3c020bd5 111 struct ident_split ident;
ea02ffa3
AP
112 size_t len, maillen, namelen;
113 char *tmp, *endp;
114 const char *namebuf, *mailbuf;
cee7f245
JH
115
116 tmp = strstr(inbuf, what);
117 if (!tmp)
118 goto error_out;
119 tmp += strlen(what);
120 endp = strchr(tmp, '\n');
121 if (!endp)
122 len = strlen(tmp);
123 else
124 len = endp - tmp;
3c020bd5
AP
125
126 if (split_ident_line(&ident, tmp, len)) {
cee7f245
JH
127 error_out:
128 /* Ugh */
ea02ffa3
AP
129 tmp = "(unknown)";
130 strbuf_addstr(name, tmp);
131 strbuf_addstr(mail, tmp);
132 strbuf_addstr(tz, tmp);
cee7f245
JH
133 *time = 0;
134 return;
135 }
cee7f245 136
3c020bd5 137 namelen = ident.name_end - ident.name_begin;
ea02ffa3 138 namebuf = ident.name_begin;
cee7f245 139
ea02ffa3
AP
140 maillen = ident.mail_end - ident.mail_begin;
141 mailbuf = ident.mail_begin;
f9567384 142
de5abe9f
RS
143 if (ident.date_begin && ident.date_end)
144 *time = strtoul(ident.date_begin, NULL, 10);
145 else
146 *time = 0;
f9567384 147
de5abe9f
RS
148 if (ident.tz_begin && ident.tz_end)
149 strbuf_add(tz, ident.tz_begin, ident.tz_end - ident.tz_begin);
150 else
151 strbuf_addstr(tz, "(unknown)");
f9567384 152
f9567384 153 /*
d20d654f 154 * Now, convert both name and e-mail using mailmap
f9567384 155 */
ea02ffa3
AP
156 map_user(&mailmap, &mailbuf, &maillen,
157 &namebuf, &namelen);
158
159 strbuf_addf(mail, "<%.*s>", (int)maillen, mailbuf);
160 strbuf_add(name, namebuf, namelen);
161}
162
163static void commit_info_init(struct commit_info *ci)
164{
165
166 strbuf_init(&ci->author, 0);
167 strbuf_init(&ci->author_mail, 0);
168 strbuf_init(&ci->author_tz, 0);
169 strbuf_init(&ci->committer, 0);
170 strbuf_init(&ci->committer_mail, 0);
171 strbuf_init(&ci->committer_tz, 0);
172 strbuf_init(&ci->summary, 0);
173}
174
175static void commit_info_destroy(struct commit_info *ci)
176{
177
178 strbuf_release(&ci->author);
179 strbuf_release(&ci->author_mail);
180 strbuf_release(&ci->author_tz);
181 strbuf_release(&ci->committer);
182 strbuf_release(&ci->committer_mail);
183 strbuf_release(&ci->committer_tz);
184 strbuf_release(&ci->summary);
cee7f245
JH
185}
186
187static void get_commit_info(struct commit *commit,
188 struct commit_info *ret,
189 int detailed)
190{
191 int len;
e297cf5a 192 const char *subject, *encoding;
b000c59b 193 const char *message;
ea02ffa3
AP
194
195 commit_info_init(ret);
cee7f245 196
e297cf5a 197 encoding = get_log_output_encoding();
5a10d236 198 message = logmsg_reencode(commit, NULL, encoding);
69cd8f63 199 get_ac_line(message, "\nauthor ",
ea02ffa3 200 &ret->author, &ret->author_mail,
cee7f245
JH
201 &ret->author_time, &ret->author_tz);
202
69cd8f63 203 if (!detailed) {
b66103c3 204 unuse_commit_buffer(commit, message);
cee7f245 205 return;
69cd8f63 206 }
cee7f245 207
69cd8f63 208 get_ac_line(message, "\ncommitter ",
ea02ffa3 209 &ret->committer, &ret->committer_mail,
cee7f245
JH
210 &ret->committer_time, &ret->committer_tz);
211
ad98a58b 212 len = find_commit_subject(message, &subject);
ea02ffa3
AP
213 if (len)
214 strbuf_add(&ret->summary, subject, len);
215 else
f2fd0760 216 strbuf_addf(&ret->summary, "(%s)", oid_to_hex(&commit->object.oid));
ea02ffa3 217
b66103c3 218 unuse_commit_buffer(commit, message);
cee7f245
JH
219}
220
1732a1fd 221/*
4e768329
JK
222 * Write out any suspect information which depends on the path. This must be
223 * handled separately from emit_one_suspect_detail(), because a given commit
224 * may have changes in multiple paths. So this needs to appear each time
225 * we mention a new group.
226 *
1732a1fd
JH
227 * To allow LF and other nonportable characters in pathnames,
228 * they are c-style quoted as needed.
229 */
f84afb9c 230static void write_filename_info(struct blame_origin *suspect)
46e5e69d 231{
4e768329 232 if (suspect->previous) {
f84afb9c 233 struct blame_origin *prev = suspect->previous;
4e768329
JK
234 printf("previous %s ", oid_to_hex(&prev->commit->object.oid));
235 write_name_quoted(prev->path, stdout, '\n');
236 }
46e5e69d 237 printf("filename ");
4e768329 238 write_name_quoted(suspect->path, stdout, '\n');
46e5e69d
JH
239}
240
9991030c
JH
241/*
242 * Porcelain/Incremental format wants to show a lot of details per
243 * commit. Instead of repeating this every line, emit it only once,
e86226e3
JK
244 * the first time each commit appears in the output (unless the
245 * user has specifically asked for us to repeat).
9991030c 246 */
f84afb9c 247static int emit_one_suspect_detail(struct blame_origin *suspect, int repeat)
9991030c
JH
248{
249 struct commit_info ci;
250
e86226e3 251 if (!repeat && (suspect->commit->object.flags & METAINFO_SHOWN))
9991030c
JH
252 return 0;
253
254 suspect->commit->object.flags |= METAINFO_SHOWN;
255 get_commit_info(suspect->commit, &ci, 1);
ea02ffa3
AP
256 printf("author %s\n", ci.author.buf);
257 printf("author-mail %s\n", ci.author_mail.buf);
cb71f8bd 258 printf("author-time %"PRItime"\n", ci.author_time);
ea02ffa3
AP
259 printf("author-tz %s\n", ci.author_tz.buf);
260 printf("committer %s\n", ci.committer.buf);
261 printf("committer-mail %s\n", ci.committer_mail.buf);
cb71f8bd 262 printf("committer-time %"PRItime"\n", ci.committer_time);
ea02ffa3
AP
263 printf("committer-tz %s\n", ci.committer_tz.buf);
264 printf("summary %s\n", ci.summary.buf);
9991030c
JH
265 if (suspect->commit->object.flags & UNINTERESTING)
266 printf("boundary\n");
ea02ffa3
AP
267
268 commit_info_destroy(&ci);
269
9991030c
JH
270 return 1;
271}
272
1732a1fd 273/*
7e6ac6e4
DK
274 * The blame_entry is found to be guilty for the range.
275 * Show it in incremental output.
1732a1fd 276 */
8c59921d 277static void found_guilty_entry(struct blame_entry *ent, void *data)
717d1462 278{
8c59921d
JS
279 struct progress_info *pi = (struct progress_info *)data;
280
717d1462 281 if (incremental) {
f84afb9c 282 struct blame_origin *suspect = ent->suspect;
717d1462
LT
283
284 printf("%s %d %d %d\n",
f2fd0760 285 oid_to_hex(&suspect->commit->object.oid),
717d1462 286 ent->s_lno + 1, ent->lno + 1, ent->num_lines);
e86226e3 287 emit_one_suspect_detail(suspect, 0);
4e768329 288 write_filename_info(suspect);
06f59e9f 289 maybe_flush_or_die(stdout, "stdout");
717d1462 290 }
aba37f49
ECA
291 pi->blamed_lines += ent->num_lines;
292 display_progress(pi->progress, pi->blamed_lines);
717d1462
LT
293}
294
dddbad72 295static const char *format_time(timestamp_t time, const char *tz_str,
717d1462
LT
296 int show_raw_time)
297{
bccce0f8 298 static struct strbuf time_buf = STRBUF_INIT;
717d1462 299
bccce0f8 300 strbuf_reset(&time_buf);
717d1462 301 if (show_raw_time) {
cb71f8bd 302 strbuf_addf(&time_buf, "%"PRItime" %s", time, tz_str);
717d1462 303 }
31653c1a 304 else {
ac39b277 305 const char *time_str;
bccce0f8 306 size_t time_width;
ac39b277 307 int tz;
31653c1a 308 tz = atoi(tz_str);
a5481a6c 309 time_str = show_date(time, tz, &blame_date_mode);
bccce0f8
JX
310 strbuf_addstr(&time_buf, time_str);
311 /*
312 * Add space paddings to time_buf to display a fixed width
313 * string, and use time_width for display width calibration.
314 */
315 for (time_width = utf8_strwidth(time_str);
316 time_width < blame_date_width;
317 time_width++)
318 strbuf_addch(&time_buf, ' ');
31653c1a 319 }
bccce0f8 320 return time_buf.buf;
717d1462
LT
321}
322
cee7f245
JH
323#define OUTPUT_ANNOTATE_COMPAT 001
324#define OUTPUT_LONG_OBJECT_NAME 002
325#define OUTPUT_RAW_TIMESTAMP 004
326#define OUTPUT_PORCELAIN 010
327#define OUTPUT_SHOW_NAME 020
328#define OUTPUT_SHOW_NUMBER 040
cdc2d5f1
SB
329#define OUTPUT_SHOW_SCORE 0100
330#define OUTPUT_NO_AUTHOR 0200
1b8cdce9 331#define OUTPUT_SHOW_EMAIL 0400
cdc2d5f1
SB
332#define OUTPUT_LINE_PORCELAIN 01000
333#define OUTPUT_COLOR_LINE 02000
25d5f529 334#define OUTPUT_SHOW_AGE_WITH_COLOR 04000
cee7f245 335
f84afb9c 336static void emit_porcelain_details(struct blame_origin *suspect, int repeat)
e86226e3
JK
337{
338 if (emit_one_suspect_detail(suspect, repeat) ||
339 (suspect->commit->object.flags & MORE_THAN_ONE_PATH))
4e768329 340 write_filename_info(suspect);
e86226e3
JK
341}
342
9807b3d6 343static void emit_porcelain(struct blame_scoreboard *sb, struct blame_entry *ent,
e86226e3 344 int opt)
cee7f245 345{
ed747dd5 346 int repeat = opt & OUTPUT_LINE_PORCELAIN;
cee7f245
JH
347 int cnt;
348 const char *cp;
f84afb9c 349 struct blame_origin *suspect = ent->suspect;
dc01505f 350 char hex[GIT_MAX_HEXSZ + 1];
cee7f245 351
2490574d 352 oid_to_hex_r(hex, &suspect->commit->object.oid);
7e6ac6e4 353 printf("%s %d %d %d\n",
cee7f245 354 hex,
cee7f245
JH
355 ent->s_lno + 1,
356 ent->lno + 1,
357 ent->num_lines);
ed747dd5 358 emit_porcelain_details(suspect, repeat);
cee7f245 359
935202bd 360 cp = blame_nth_line(sb, ent->lno);
cee7f245
JH
361 for (cnt = 0; cnt < ent->num_lines; cnt++) {
362 char ch;
ed747dd5 363 if (cnt) {
cee7f245
JH
364 printf("%s %d %d\n", hex,
365 ent->s_lno + 1 + cnt,
366 ent->lno + 1 + cnt);
ed747dd5
JK
367 if (repeat)
368 emit_porcelain_details(suspect, 1);
369 }
cee7f245
JH
370 putchar('\t');
371 do {
372 ch = *cp++;
373 putchar(ch);
374 } while (ch != '\n' &&
375 cp < sb->final_buf + sb->final_buf_size);
376 }
a5ca8367
JS
377
378 if (sb->final_buf_size && cp[-1] != '\n')
379 putchar('\n');
cee7f245
JH
380}
381
25d5f529
SB
382static struct color_field {
383 timestamp_t hop;
384 char col[COLOR_MAXLEN];
385} *colorfield;
386static int colorfield_nr, colorfield_alloc;
387
388static void parse_color_fields(const char *s)
389{
390 struct string_list l = STRING_LIST_INIT_DUP;
391 struct string_list_item *item;
392 enum { EXPECT_DATE, EXPECT_COLOR } next = EXPECT_COLOR;
393
394 colorfield_nr = 0;
395
396 /* Ideally this would be stripped and split at the same time? */
397 string_list_split(&l, s, ',', -1);
398 ALLOC_GROW(colorfield, colorfield_nr + 1, colorfield_alloc);
399
400 for_each_string_list_item(item, &l) {
401 switch (next) {
402 case EXPECT_DATE:
403 colorfield[colorfield_nr].hop = approxidate(item->string);
404 next = EXPECT_COLOR;
405 colorfield_nr++;
406 ALLOC_GROW(colorfield, colorfield_nr + 1, colorfield_alloc);
407 break;
408 case EXPECT_COLOR:
409 if (color_parse(item->string, colorfield[colorfield_nr].col))
410 die(_("expecting a color: %s"), item->string);
411 next = EXPECT_DATE;
412 break;
413 }
414 }
415
416 if (next == EXPECT_COLOR)
1a07e59c 417 die(_("must end with a color"));
25d5f529
SB
418
419 colorfield[colorfield_nr].hop = TIME_MAX;
297bdf07 420 string_list_clear(&l, 0);
25d5f529
SB
421}
422
423static void setup_default_color_by_age(void)
424{
425 parse_color_fields("blue,12 month ago,white,1 month ago,red");
426}
427
428static void determine_line_heat(struct blame_entry *ent, const char **dest_color)
429{
430 int i = 0;
431 struct commit_info ci;
432 get_commit_info(ent->suspect->commit, &ci, 1);
433
434 while (i < colorfield_nr && ci.author_time > colorfield[i].hop)
435 i++;
436
437 *dest_color = colorfield[i].col;
438}
439
9807b3d6 440static void emit_other(struct blame_scoreboard *sb, struct blame_entry *ent, int opt)
cee7f245
JH
441{
442 int cnt;
443 const char *cp;
f84afb9c 444 struct blame_origin *suspect = ent->suspect;
cee7f245 445 struct commit_info ci;
dc01505f 446 char hex[GIT_MAX_HEXSZ + 1];
cee7f245 447 int show_raw_time = !!(opt & OUTPUT_RAW_TIMESTAMP);
25d5f529 448 const char *default_color = NULL, *color = NULL, *reset = NULL;
cee7f245
JH
449
450 get_commit_info(suspect->commit, &ci, 1);
2490574d 451 oid_to_hex_r(hex, &suspect->commit->object.oid);
cee7f245 452
935202bd 453 cp = blame_nth_line(sb, ent->lno);
25d5f529
SB
454
455 if (opt & OUTPUT_SHOW_AGE_WITH_COLOR) {
456 determine_line_heat(ent, &default_color);
457 color = default_color;
458 reset = GIT_COLOR_RESET;
459 }
460
cee7f245
JH
461 for (cnt = 0; cnt < ent->num_lines; cnt++) {
462 char ch;
110d26fc 463 int length = (opt & OUTPUT_LONG_OBJECT_NAME) ? GIT_SHA1_HEXSZ : abbrev;
b11121d9 464
cdc2d5f1
SB
465 if (opt & OUTPUT_COLOR_LINE) {
466 if (cnt > 0) {
467 color = repeated_meta_color;
468 reset = GIT_COLOR_RESET;
469 } else {
25d5f529
SB
470 color = default_color ? default_color : NULL;
471 reset = default_color ? GIT_COLOR_RESET : NULL;
cdc2d5f1
SB
472 }
473 }
474 if (color)
475 fputs(color, stdout);
476
b11121d9 477 if (suspect->commit->object.flags & UNINTERESTING) {
e68989a7
JH
478 if (blank_boundary)
479 memset(hex, ' ', length);
7ceacdff 480 else if (!(opt & OUTPUT_ANNOTATE_COMPAT)) {
4c10a5ca
JH
481 length--;
482 putchar('^');
483 }
b11121d9 484 }
cee7f245 485
8934ac8c
BR
486 if (mark_unblamable_lines && ent->unblamable) {
487 length--;
488 putchar('*');
489 }
490 if (mark_ignored_lines && ent->ignored) {
491 length--;
492 putchar('?');
493 }
b11121d9 494 printf("%.*s", length, hex);
1b8cdce9
KB
495 if (opt & OUTPUT_ANNOTATE_COMPAT) {
496 const char *name;
497 if (opt & OUTPUT_SHOW_EMAIL)
ea02ffa3 498 name = ci.author_mail.buf;
1b8cdce9 499 else
ea02ffa3 500 name = ci.author.buf;
1b8cdce9 501 printf("\t(%10s\t%10s\t%d)", name,
ea02ffa3 502 format_time(ci.author_time, ci.author_tz.buf,
cee7f245
JH
503 show_raw_time),
504 ent->lno + 1 + cnt);
1b8cdce9 505 } else {
5ff62c30 506 if (opt & OUTPUT_SHOW_SCORE)
54a4c617
JH
507 printf(" %*d %02d",
508 max_score_digits, ent->score,
509 ent->suspect->refcnt);
cee7f245
JH
510 if (opt & OUTPUT_SHOW_NAME)
511 printf(" %-*.*s", longest_file, longest_file,
512 suspect->path);
513 if (opt & OUTPUT_SHOW_NUMBER)
514 printf(" %*d", max_orig_digits,
515 ent->s_lno + 1 + cnt);
093dc5be 516
ffaf9cc0 517 if (!(opt & OUTPUT_NO_AUTHOR)) {
1b8cdce9
KB
518 const char *name;
519 int pad;
520 if (opt & OUTPUT_SHOW_EMAIL)
ea02ffa3 521 name = ci.author_mail.buf;
1b8cdce9 522 else
ea02ffa3 523 name = ci.author.buf;
1b8cdce9 524 pad = longest_author - utf8_strwidth(name);
ffaf9cc0 525 printf(" (%s%*s %10s",
1b8cdce9 526 name, pad, "",
093dc5be 527 format_time(ci.author_time,
ea02ffa3 528 ci.author_tz.buf,
093dc5be 529 show_raw_time));
ffaf9cc0 530 }
093dc5be 531 printf(" %*d) ",
cee7f245
JH
532 max_digits, ent->lno + 1 + cnt);
533 }
cdc2d5f1
SB
534 if (reset)
535 fputs(reset, stdout);
cee7f245
JH
536 do {
537 ch = *cp++;
538 putchar(ch);
539 } while (ch != '\n' &&
540 cp < sb->final_buf + sb->final_buf_size);
541 }
a5ca8367
JS
542
543 if (sb->final_buf_size && cp[-1] != '\n')
544 putchar('\n');
ea02ffa3
AP
545
546 commit_info_destroy(&ci);
cee7f245
JH
547}
548
9807b3d6 549static void output(struct blame_scoreboard *sb, int option)
cee7f245
JH
550{
551 struct blame_entry *ent;
552
553 if (option & OUTPUT_PORCELAIN) {
554 for (ent = sb->ent; ent; ent = ent->next) {
7e6ac6e4 555 int count = 0;
f84afb9c 556 struct blame_origin *suspect;
7e6ac6e4 557 struct commit *commit = ent->suspect->commit;
cee7f245
JH
558 if (commit->object.flags & MORE_THAN_ONE_PATH)
559 continue;
4e0df4e6 560 for (suspect = get_blame_suspects(commit); suspect; suspect = suspect->next) {
7e6ac6e4
DK
561 if (suspect->guilty && count++) {
562 commit->object.flags |= MORE_THAN_ONE_PATH;
563 break;
564 }
cee7f245
JH
565 }
566 }
567 }
568
569 for (ent = sb->ent; ent; ent = ent->next) {
570 if (option & OUTPUT_PORCELAIN)
e86226e3 571 emit_porcelain(sb, ent, option);
5ff62c30 572 else {
cee7f245 573 emit_other(sb, ent, option);
5ff62c30 574 }
cee7f245
JH
575 }
576}
577
1732a1fd
JH
578/*
579 * Add phony grafts for use with -S; this is primarily to
34baebce 580 * support git's cvsserver that wants to give a linear history
1732a1fd
JH
581 * to its clients.
582 */
cee7f245
JH
583static int read_ancestry(const char *graft_file)
584{
e9d983f1 585 FILE *fp = fopen_or_warn(graft_file, "r");
e228c173 586 struct strbuf buf = STRBUF_INIT;
cee7f245
JH
587 if (!fp)
588 return -1;
e228c173 589 while (!strbuf_getwholeline(&buf, fp, '\n')) {
cee7f245 590 /* The format is just "Commit Parent1 Parent2 ...\n" */
9a934032 591 struct commit_graft *graft = read_graft_line(&buf);
8eaf7986 592 if (graft)
3f5787f8 593 register_commit_graft(the_repository, graft, 0);
cee7f245
JH
594 }
595 fclose(fp);
e228c173 596 strbuf_release(&buf);
cee7f245
JH
597 return 0;
598}
599
f84afb9c 600static int update_auto_abbrev(int auto_abbrev, struct blame_origin *suspect)
b31272f7 601{
aab9583f 602 const char *uniq = find_unique_abbrev(&suspect->commit->object.oid,
b31272f7
JH
603 auto_abbrev);
604 int len = strlen(uniq);
605 if (auto_abbrev < len)
606 return len;
607 return auto_abbrev;
608}
609
1732a1fd
JH
610/*
611 * How many columns do we need to show line numbers, authors,
612 * and filenames?
613 */
9807b3d6 614static void find_alignment(struct blame_scoreboard *sb, int *option)
cee7f245
JH
615{
616 int longest_src_lines = 0;
617 int longest_dst_lines = 0;
5ff62c30 618 unsigned largest_score = 0;
cee7f245 619 struct blame_entry *e;
b31272f7 620 int compute_auto_abbrev = (abbrev < 0);
5293284b 621 int auto_abbrev = DEFAULT_ABBREV;
cee7f245
JH
622
623 for (e = sb->ent; e; e = e->next) {
f84afb9c 624 struct blame_origin *suspect = e->suspect;
cee7f245
JH
625 int num;
626
b31272f7
JH
627 if (compute_auto_abbrev)
628 auto_abbrev = update_auto_abbrev(auto_abbrev, suspect);
ab3bb800
JH
629 if (strcmp(suspect->path, sb->path))
630 *option |= OUTPUT_SHOW_NAME;
631 num = strlen(suspect->path);
632 if (longest_file < num)
633 longest_file = num;
cee7f245 634 if (!(suspect->commit->object.flags & METAINFO_SHOWN)) {
e6005927 635 struct commit_info ci;
cee7f245
JH
636 suspect->commit->object.flags |= METAINFO_SHOWN;
637 get_commit_info(suspect->commit, &ci, 1);
1b8cdce9 638 if (*option & OUTPUT_SHOW_EMAIL)
ea02ffa3 639 num = utf8_strwidth(ci.author_mail.buf);
1b8cdce9 640 else
ea02ffa3 641 num = utf8_strwidth(ci.author.buf);
cee7f245
JH
642 if (longest_author < num)
643 longest_author = num;
e6005927 644 commit_info_destroy(&ci);
cee7f245
JH
645 }
646 num = e->s_lno + e->num_lines;
647 if (longest_src_lines < num)
648 longest_src_lines = num;
649 num = e->lno + e->num_lines;
650 if (longest_dst_lines < num)
651 longest_dst_lines = num;
1a31a2d9
JS
652 if (largest_score < blame_entry_score(sb, e))
653 largest_score = blame_entry_score(sb, e);
cee7f245 654 }
ec7ff5ba
ZJS
655 max_orig_digits = decimal_width(longest_src_lines);
656 max_digits = decimal_width(longest_dst_lines);
657 max_score_digits = decimal_width(largest_score);
b31272f7
JH
658
659 if (compute_auto_abbrev)
660 /* one more abbrev length is needed for the boundary commit */
661 abbrev = auto_abbrev + 1;
cee7f245
JH
662}
663
4149c186 664static void sanity_check_on_fail(struct blame_scoreboard *sb, int baa)
54a4c617 665{
4149c186
JS
666 int opt = OUTPUT_SHOW_SCORE | OUTPUT_SHOW_NUMBER | OUTPUT_SHOW_NAME;
667 find_alignment(sb, &opt);
668 output(sb, opt);
669 die("Baa %d!", baa);
54a4c617
JH
670}
671
4a0fc95f
JH
672static unsigned parse_score(const char *arg)
673{
674 char *end;
675 unsigned long score = strtoul(arg, &end, 10);
676 if (*end)
677 return 0;
678 return score;
679}
680
20239bae
JK
681static const char *add_prefix(const char *prefix, const char *path)
682{
097971f5 683 return prefix_path(prefix, prefix ? strlen(prefix) : 0, path);
20239bae
JK
684}
685
ef90d6d4 686static int git_blame_config(const char *var, const char *value, void *cb)
4c10a5ca
JH
687{
688 if (!strcmp(var, "blame.showroot")) {
689 show_root = git_config_bool(var, value);
690 return 0;
691 }
692 if (!strcmp(var, "blame.blankboundary")) {
693 blank_boundary = git_config_bool(var, value);
694 return 0;
695 }
8b504db3
QN
696 if (!strcmp(var, "blame.showemail")) {
697 int *output_option = cb;
698 if (git_config_bool(var, value))
699 *output_option |= OUTPUT_SHOW_EMAIL;
700 else
701 *output_option &= ~OUTPUT_SHOW_EMAIL;
702 return 0;
703 }
31653c1a
EL
704 if (!strcmp(var, "blame.date")) {
705 if (!value)
706 return config_error_nonbool(var);
a5481a6c 707 parse_date_format(value, &blame_date_mode);
31653c1a
EL
708 return 0;
709 }
ae3f36de
BR
710 if (!strcmp(var, "blame.ignorerevsfile")) {
711 const char *str;
712 int ret;
713
714 ret = git_config_pathname(&str, var, value);
715 if (ret)
716 return ret;
717 string_list_insert(&ignore_revs_file_list, str);
718 return 0;
719 }
8934ac8c
BR
720 if (!strcmp(var, "blame.markunblamablelines")) {
721 mark_unblamable_lines = git_config_bool(var, value);
722 return 0;
723 }
724 if (!strcmp(var, "blame.markignoredlines")) {
725 mark_ignored_lines = git_config_bool(var, value);
726 return 0;
727 }
cdc2d5f1
SB
728 if (!strcmp(var, "color.blame.repeatedlines")) {
729 if (color_parse_mem(value, strlen(value), repeated_meta_color))
730 warning(_("invalid color '%s' in color.blame.repeatedLines"),
731 value);
732 return 0;
733 }
25d5f529
SB
734 if (!strcmp(var, "color.blame.highlightrecent")) {
735 parse_color_fields(value);
736 return 0;
737 }
3b8a12e8 738
0dc95a4d
SB
739 if (!strcmp(var, "blame.coloring")) {
740 if (!strcmp(value, "repeatedLines")) {
741 coloring_mode |= OUTPUT_COLOR_LINE;
742 } else if (!strcmp(value, "highlightRecent")) {
743 coloring_mode |= OUTPUT_SHOW_AGE_WITH_COLOR;
744 } else if (!strcmp(value, "none")) {
745 coloring_mode &= ~(OUTPUT_COLOR_LINE |
746 OUTPUT_SHOW_AGE_WITH_COLOR);
747 } else {
748 warning(_("invalid value for blame.coloring"));
749 return 0;
750 }
751 }
3b8a12e8 752
5b162879
MH
753 if (git_diff_heuristic_config(var, value, cb) < 0)
754 return -1;
6680a087 755 if (userdiff_config(var, value) < 0)
3b8a12e8 756 return -1;
3b8a12e8 757
ef90d6d4 758 return git_default_config(var, value, cb);
4c10a5ca
JH
759}
760
5817da01
PH
761static int blame_copy_callback(const struct option *option, const char *arg, int unset)
762{
763 int *opt = option->value;
764
517fe807
JK
765 BUG_ON_OPT_NEG(unset);
766
5817da01
PH
767 /*
768 * -C enables copy from removed files;
769 * -C -C enables copy from existing files, but only
770 * when blaming a new file;
771 * -C -C -C enables copy from existing files for
772 * everybody
773 */
774 if (*opt & PICKAXE_BLAME_COPY_HARDER)
775 *opt |= PICKAXE_BLAME_COPY_HARDEST;
776 if (*opt & PICKAXE_BLAME_COPY)
777 *opt |= PICKAXE_BLAME_COPY_HARDER;
778 *opt |= PICKAXE_BLAME_COPY | PICKAXE_BLAME_MOVE;
779
780 if (arg)
781 blame_copy_score = parse_score(arg);
782 return 0;
783}
784
785static int blame_move_callback(const struct option *option, const char *arg, int unset)
786{
787 int *opt = option->value;
788
517fe807
JK
789 BUG_ON_OPT_NEG(unset);
790
5817da01
PH
791 *opt |= PICKAXE_BLAME_MOVE;
792
793 if (arg)
794 blame_move_score = parse_score(arg);
795 return 0;
796}
797
0c668f55
JH
798static int is_a_rev(const char *name)
799{
800 struct object_id oid;
801
802 if (get_oid(name, &oid))
803 return 0;
0df8e965 804 return OBJ_NONE < oid_object_info(the_repository, &oid, NULL);
0c668f55
JH
805}
806
ae3f36de
BR
807static void build_ignorelist(struct blame_scoreboard *sb,
808 struct string_list *ignore_revs_file_list,
809 struct string_list *ignore_rev_list)
810{
811 struct string_list_item *i;
812 struct object_id oid;
813
814 oidset_init(&sb->ignore_list, 0);
815 for_each_string_list_item(i, ignore_revs_file_list) {
816 if (!strcmp(i->string, ""))
817 oidset_clear(&sb->ignore_list);
818 else
819 oidset_parse_file(&sb->ignore_list, i->string);
820 }
821 for_each_string_list_item(i, ignore_rev_list) {
822 if (get_oid_committish(i->string, &oid))
823 die(_("cannot find revision %s to ignore"), i->string);
824 oidset_insert(&sb->ignore_list, &oid);
825 }
826}
827
acca687f 828int cmd_blame(int argc, const char **argv, const char *prefix)
cee7f245
JH
829{
830 struct rev_info revs;
831 const char *path;
9807b3d6 832 struct blame_scoreboard sb;
f84afb9c 833 struct blame_origin *o;
58dbfa2e
ES
834 struct blame_entry *ent = NULL;
835 long dashdash_pos, lno;
8c59921d 836 struct progress_info pi = { NULL, 0 };
5817da01 837
64093fc0 838 struct string_list range_list = STRING_LIST_INIT_NODUP;
ae3f36de 839 struct string_list ignore_rev_list = STRING_LIST_INIT_NODUP;
64093fc0
JK
840 int output_option = 0, opt = 0;
841 int show_stats = 0;
842 const char *revs_file = NULL;
843 const char *contents_from = NULL;
844 const struct option options[] = {
d5d09d47
SB
845 OPT_BOOL(0, "incremental", &incremental, N_("Show blame entries as we find them, incrementally")),
846 OPT_BOOL('b', NULL, &blank_boundary, N_("Show blank SHA-1 for boundary commits (Default: off)")),
847 OPT_BOOL(0, "root", &show_root, N_("Do not treat root commits as boundaries (Default: off)")),
848 OPT_BOOL(0, "show-stats", &show_stats, N_("Show work cost statistics")),
aba37f49 849 OPT_BOOL(0, "progress", &show_progress, N_("Force progress reporting")),
efd2a8bd
NTND
850 OPT_BIT(0, "score-debug", &output_option, N_("Show output score for blame entries"), OUTPUT_SHOW_SCORE),
851 OPT_BIT('f', "show-name", &output_option, N_("Show original filename (Default: auto)"), OUTPUT_SHOW_NAME),
852 OPT_BIT('n', "show-number", &output_option, N_("Show original linenumber (Default: off)"), OUTPUT_SHOW_NUMBER),
853 OPT_BIT('p', "porcelain", &output_option, N_("Show in a format designed for machine consumption"), OUTPUT_PORCELAIN),
854 OPT_BIT(0, "line-porcelain", &output_option, N_("Show porcelain format with per-line commit information"), OUTPUT_PORCELAIN|OUTPUT_LINE_PORCELAIN),
855 OPT_BIT('c', NULL, &output_option, N_("Use the same output mode as git-annotate (Default: off)"), OUTPUT_ANNOTATE_COMPAT),
856 OPT_BIT('t', NULL, &output_option, N_("Show raw timestamp (Default: off)"), OUTPUT_RAW_TIMESTAMP),
857 OPT_BIT('l', NULL, &output_option, N_("Show long commit SHA1 (Default: off)"), OUTPUT_LONG_OBJECT_NAME),
858 OPT_BIT('s', NULL, &output_option, N_("Suppress author name and timestamp (Default: off)"), OUTPUT_NO_AUTHOR),
859 OPT_BIT('e', "show-email", &output_option, N_("Show author email instead of name (Default: off)"), OUTPUT_SHOW_EMAIL),
860 OPT_BIT('w', NULL, &xdl_opts, N_("Ignore whitespace differences"), XDF_IGNORE_WHITESPACE),
ae3f36de
BR
861 OPT_STRING_LIST(0, "ignore-rev", &ignore_rev_list, N_("rev"), N_("Ignore <rev> when blaming")),
862 OPT_STRING_LIST(0, "ignore-revs-file", &ignore_revs_file_list, N_("file"), N_("Ignore revisions from <file>")),
cdc2d5f1 863 OPT_BIT(0, "color-lines", &output_option, N_("color redundant metadata from previous line differently"), OUTPUT_COLOR_LINE),
25d5f529 864 OPT_BIT(0, "color-by-age", &output_option, N_("color lines by age"), OUTPUT_SHOW_AGE_WITH_COLOR),
5b162879
MH
865
866 /*
867 * The following two options are parsed by parse_revision_opt()
868 * and are only included here to get included in the "-h"
869 * output:
870 */
bf3ff338 871 { OPTION_LOWLEVEL_CALLBACK, 0, "indent-heuristic", NULL, NULL, N_("Use an experimental heuristic to improve diffs"), PARSE_OPT_NOARG, NULL, 0, parse_opt_unknown_cb },
5b162879 872
efd2a8bd
NTND
873 OPT_BIT(0, "minimal", &xdl_opts, N_("Spend extra cycles to find better match"), XDF_NEED_MINIMAL),
874 OPT_STRING('S', NULL, &revs_file, N_("file"), N_("Use revisions from <file> instead of calling git-rev-list")),
875 OPT_STRING(0, "contents", &contents_from, N_("file"), N_("Use <file>'s contents as the final image")),
876 { OPTION_CALLBACK, 'C', NULL, &opt, N_("score"), N_("Find line copies within and across files"), PARSE_OPT_OPTARG, blame_copy_callback },
877 { OPTION_CALLBACK, 'M', NULL, &opt, N_("score"), N_("Find line movements within and across files"), PARSE_OPT_OPTARG, blame_move_callback },
58dbfa2e 878 OPT_STRING_LIST('L', NULL, &range_list, N_("n,m"), N_("Process only line range n,m, counting from 1")),
84393bfd 879 OPT__ABBREV(&abbrev),
5817da01
PH
880 OPT_END()
881 };
882
883 struct parse_opt_ctx_t ctx;
7ceacdff 884 int cmd_is_annotate = !strcmp(argv[0], "annotate");
58dbfa2e
ES
885 struct range_set ranges;
886 unsigned int range_i;
52f4d126 887 long anchor;
e68989a7 888
25d5f529 889 setup_default_color_by_age();
8b504db3 890 git_config(git_blame_config, &output_option);
2abf3503 891 repo_init_revisions(the_repository, &revs, NULL);
31653c1a 892 revs.date_mode = blame_date_mode;
0d1e0e78
BW
893 revs.diffopt.flags.allow_textconv = 1;
894 revs.diffopt.flags.follow_renames = 1;
31653c1a 895
612702e8 896 save_commit_buffer = 0;
3f8d5204 897 dashdash_pos = 0;
aba37f49 898 show_progress = -1;
612702e8 899
9ca1169f
SB
900 parse_options_start(&ctx, argc, argv, prefix, options,
901 PARSE_OPT_KEEP_DASHDASH | PARSE_OPT_KEEP_ARGV0);
5817da01 902 for (;;) {
5817da01
PH
903 switch (parse_options_step(&ctx, options, blame_opt_usage)) {
904 case PARSE_OPT_HELP:
3bb0923f 905 case PARSE_OPT_ERROR:
5817da01 906 exit(129);
a92ec7ef
NTND
907 case PARSE_OPT_COMPLETE:
908 exit(0);
5817da01 909 case PARSE_OPT_DONE:
3f8d5204
PH
910 if (ctx.argv[0])
911 dashdash_pos = ctx.cpidx;
5817da01
PH
912 goto parse_done;
913 }
914
915 if (!strcmp(ctx.argv[0], "--reverse")) {
916 ctx.argv[0] = "--children";
917 reverse = 1;
918 }
6b61ec05 919 parse_revision_opt(&revs, &ctx, options, blame_opt_usage);
5817da01
PH
920 }
921parse_done:
0d1e0e78 922 no_whole_file_rename = !revs.diffopt.flags.follow_renames;
3cde4e02 923 xdl_opts |= revs.diffopt.xdl_opts & XDF_INDENT_HEURISTIC;
0d1e0e78 924 revs.diffopt.flags.follow_renames = 0;
5817da01
PH
925 argc = parse_options_end(&ctx);
926
aba37f49
ECA
927 if (incremental || (output_option & OUTPUT_PORCELAIN)) {
928 if (show_progress > 0)
e3f54bff 929 die(_("--progress can't be used with --incremental or porcelain formats"));
aba37f49
ECA
930 show_progress = 0;
931 } else if (show_progress < 0)
932 show_progress = isatty(2);
933
91229834 934 if (0 < abbrev && abbrev < GIT_SHA1_HEXSZ)
b31272f7
JH
935 /* one more abbrev length is needed for the boundary commit */
936 abbrev++;
ed58d808
JK
937 else if (!abbrev)
938 abbrev = GIT_SHA1_HEXSZ;
84393bfd 939
aa9ea77d 940 if (revs_file && read_ancestry(revs_file))
d824cbba 941 die_errno("reading graft file '%s' failed", revs_file);
aa9ea77d 942
31653c1a 943 if (cmd_is_annotate) {
7ceacdff 944 output_option |= OUTPUT_ANNOTATE_COMPAT;
a5481a6c 945 blame_date_mode.type = DATE_ISO8601;
31653c1a
EL
946 } else {
947 blame_date_mode = revs.date_mode;
948 }
949
950 /* The maximum width used to show the dates */
a5481a6c 951 switch (blame_date_mode.type) {
31653c1a
EL
952 case DATE_RFC2822:
953 blame_date_width = sizeof("Thu, 19 Oct 2006 16:00:04 -0700");
954 break;
466fb674
BB
955 case DATE_ISO8601_STRICT:
956 blame_date_width = sizeof("2006-10-19T16:00:04-07:00");
957 break;
31653c1a
EL
958 case DATE_ISO8601:
959 blame_date_width = sizeof("2006-10-19 16:00:04 -0700");
960 break;
961 case DATE_RAW:
962 blame_date_width = sizeof("1161298804 -0700");
963 break;
642833db
JK
964 case DATE_UNIX:
965 blame_date_width = sizeof("1161298804");
966 break;
31653c1a
EL
967 case DATE_SHORT:
968 blame_date_width = sizeof("2006-10-19");
969 break;
970 case DATE_RELATIVE:
66f5f6dc
ÆAB
971 /*
972 * TRANSLATORS: This string is used to tell us the
973 * maximum display width for a relative timestamp in
974 * "git blame" output. For C locale, "4 years, 11
975 * months ago", which takes 22 places, is the longest
976 * among various forms of relative timestamps, but
977 * your language may need more or fewer display
978 * columns.
979 */
dd75553b
JX
980 blame_date_width = utf8_strwidth(_("4 years, 11 months ago")) + 1; /* add the null */
981 break;
acdd3776
LT
982 case DATE_HUMAN:
983 /* If the year is shown, no time is shown */
984 blame_date_width = sizeof("Thu Oct 19 16:00");
985 break;
31653c1a
EL
986 case DATE_NORMAL:
987 blame_date_width = sizeof("Thu Oct 19 16:00:04 2006 -0700");
988 break;
aa1462cc
JK
989 case DATE_STRFTIME:
990 blame_date_width = strlen(show_date(0, 0, &blame_date_mode)) + 1; /* add the null */
991 break;
31653c1a
EL
992 }
993 blame_date_width -= 1; /* strip the null */
7ceacdff 994
0d1e0e78 995 if (revs.diffopt.flags.find_copies_harder)
b3123f98
JH
996 opt |= (PICKAXE_BLAME_COPY | PICKAXE_BLAME_MOVE |
997 PICKAXE_BLAME_COPY_HARDER);
998
1732a1fd
JH
999 /*
1000 * We have collected options unknown to us in argv[1..unk]
cee7f245 1001 * which are to be passed to revision machinery if we are
3dff5379 1002 * going to do the "bottom" processing.
cee7f245
JH
1003 *
1004 * The remaining are:
1005 *
22e5e58a 1006 * (1) if dashdash_pos != 0, it is either
3f8d5204
PH
1007 * "blame [revisions] -- <path>" or
1008 * "blame -- <path> <rev>"
cee7f245 1009 *
22e5e58a 1010 * (2) otherwise, it is one of the two:
3f8d5204
PH
1011 * "blame [revisions] <path>"
1012 * "blame <path> <rev>"
cee7f245 1013 *
3f8d5204
PH
1014 * Note that we must strip out <path> from the arguments: we do not
1015 * want the path pruning but we may want "bottom" processing.
cee7f245 1016 */
3f8d5204
PH
1017 if (dashdash_pos) {
1018 switch (argc - dashdash_pos - 1) {
1019 case 2: /* (1b) */
1020 if (argc != 4)
5817da01 1021 usage_with_options(blame_opt_usage, options);
3f8d5204
PH
1022 /* reorder for the new way: <rev> -- <path> */
1023 argv[1] = argv[3];
1024 argv[3] = argv[2];
1025 argv[2] = "--";
1026 /* FALLTHROUGH */
1027 case 1: /* (1a) */
1028 path = add_prefix(prefix, argv[--argc]);
1029 argv[argc] = NULL;
1030 break;
1031 default:
1032 usage_with_options(blame_opt_usage, options);
cee7f245 1033 }
3f8d5204
PH
1034 } else {
1035 if (argc < 2)
5817da01 1036 usage_with_options(blame_opt_usage, options);
0c668f55 1037 if (argc == 3 && is_a_rev(argv[argc - 1])) { /* (2b) */
3f8d5204
PH
1038 path = add_prefix(prefix, argv[1]);
1039 argv[1] = argv[2];
0c668f55
JH
1040 } else { /* (2a) */
1041 if (argc == 2 && is_a_rev(argv[1]) && !get_git_work_tree())
1042 die("missing <path> to blame");
1043 path = add_prefix(prefix, argv[argc - 1]);
cee7f245 1044 }
3f8d5204 1045 argv[argc - 1] = "--";
cee7f245
JH
1046 }
1047
8b3dce56 1048 revs.disable_stdin = 1;
3f8d5204 1049 setup_revisions(argc, argv, &revs, NULL);
a544fb08
SG
1050 if (!revs.pending.nr && is_bare_repository()) {
1051 struct commit *head_commit;
1052 struct object_id head_oid;
1053
1054 if (!resolve_ref_unsafe("HEAD", RESOLVE_REF_READING,
1055 &head_oid, NULL) ||
1056 !(head_commit = lookup_commit_reference_gently(revs.repo,
1057 &head_oid, 1)))
1058 die("no such ref: HEAD");
1059
1060 add_pending_object(&revs, &head_commit->object, "HEAD");
1061 }
cee7f245 1062
6e4c9b5b 1063 init_scoreboard(&sb);
85af7929 1064 sb.revs = &revs;
84be875e 1065 sb.contents_from = contents_from;
f81d70e9 1066 sb.reverse = reverse;
ecbbc0a5 1067 sb.repo = the_repository;
ae3f36de
BR
1068 build_ignorelist(&sb, &ignore_revs_file_list, &ignore_rev_list);
1069 string_list_clear(&ignore_revs_file_list, 0);
1070 string_list_clear(&ignore_rev_list, 0);
d0d0ef1f
JS
1071 setup_scoreboard(&sb, path, &o);
1072 lno = sb.num_lines;
cee7f245 1073
58dbfa2e 1074 if (lno && !range_list.nr)
aa59e14b 1075 string_list_append(&range_list, "1");
58dbfa2e 1076
52f4d126 1077 anchor = 1;
58dbfa2e
ES
1078 range_set_init(&ranges, range_list.nr);
1079 for (range_i = 0; range_i < range_list.nr; ++range_i) {
1080 long bottom, top;
1081 if (parse_range_arg(range_list.items[range_i].string,
52f4d126 1082 nth_line_cb, &sb, lno, anchor,
f8adbec9
NTND
1083 &bottom, &top, sb.path,
1084 the_repository->index))
58dbfa2e 1085 usage(blame_usage);
96cfa94e 1086 if ((!lno && (top || bottom)) || lno < bottom)
e3f54bff
VA
1087 die(Q_("file %s has only %lu line",
1088 "file %s has only %lu lines",
1089 lno), path, lno);
58dbfa2e
ES
1090 if (bottom < 1)
1091 bottom = 1;
96cfa94e 1092 if (top < 1 || lno < top)
58dbfa2e
ES
1093 top = lno;
1094 bottom--;
1095 range_set_append_unsafe(&ranges, bottom, top);
52f4d126 1096 anchor = top + 1;
58dbfa2e
ES
1097 }
1098 sort_and_merge_range_set(&ranges);
1099
1100 for (range_i = ranges.nr; range_i > 0; --range_i) {
1101 const struct range *r = &ranges.ranges[range_i - 1];
e94f77f0 1102 ent = blame_entry_prepend(ent, r->start, r->end, o);
58dbfa2e 1103 }
7e6ac6e4
DK
1104
1105 o->suspects = ent;
1106 prio_queue_put(&sb.commits, o->commit);
1107
006a0744 1108 blame_origin_decref(o);
58dbfa2e
ES
1109
1110 range_set_release(&ranges);
1111 string_list_clear(&range_list, 0);
cee7f245 1112
7e6ac6e4 1113 sb.ent = NULL;
cee7f245
JH
1114 sb.path = path;
1115
18ec0d62
JS
1116 if (blame_move_score)
1117 sb.move_score = blame_move_score;
1118 if (blame_copy_score)
1119 sb.copy_score = blame_copy_score;
1120
e9b9cc56 1121 sb.debug = DEBUG_BLAME;
4149c186
JS
1122 sb.on_sanity_fail = &sanity_check_on_fail;
1123
2cf83374 1124 sb.show_root = show_root;
73e1c299 1125 sb.xdl_opts = xdl_opts;
1f44129b 1126 sb.no_whole_file_rename = no_whole_file_rename;
2cf83374 1127
d551a488 1128 read_mailmap(&mailmap, NULL);
f9567384 1129
8c59921d
JS
1130 sb.found_guilty_entry = &found_guilty_entry;
1131 sb.found_guilty_entry_data = &pi;
1132 if (show_progress)
8aade107 1133 pi.progress = start_delayed_progress(_("Blaming lines"), sb.num_lines);
8c59921d 1134
aba37f49
ECA
1135 assign_blame(&sb, opt);
1136
8c59921d
JS
1137 stop_progress(&pi.progress);
1138
b92565dc
MH
1139 if (!incremental)
1140 setup_pager();
835c49f7 1141 else
717d1462
LT
1142 return 0;
1143
78b06e66 1144 blame_sort_final(&sb);
7e6ac6e4 1145
c6971362 1146 blame_coalesce(&sb);
cee7f245 1147
0dc95a4d
SB
1148 if (!(output_option & (OUTPUT_COLOR_LINE | OUTPUT_SHOW_AGE_WITH_COLOR)))
1149 output_option |= coloring_mode;
1150
cdc2d5f1 1151 if (!(output_option & OUTPUT_PORCELAIN)) {
cee7f245 1152 find_alignment(&sb, &output_option);
cdc2d5f1
SB
1153 if (!*repeated_meta_color &&
1154 (output_option & OUTPUT_COLOR_LINE))
022d2ac1
JK
1155 xsnprintf(repeated_meta_color,
1156 sizeof(repeated_meta_color),
1157 "%s", GIT_COLOR_CYAN);
cdc2d5f1
SB
1158 }
1159 if (output_option & OUTPUT_ANNOTATE_COMPAT)
25d5f529 1160 output_option &= ~(OUTPUT_COLOR_LINE | OUTPUT_SHOW_AGE_WITH_COLOR);
cee7f245
JH
1161
1162 output(&sb, output_option);
1163 free((void *)sb.final_buf);
1164 for (ent = sb.ent; ent; ) {
1165 struct blame_entry *e = ent->next;
1166 free(ent);
1167 ent = e;
1168 }
c2e525d9 1169
870b39c1 1170 if (show_stats) {
8449528d
JS
1171 printf("num read blob: %d\n", sb.num_read_blob);
1172 printf("num get patch: %d\n", sb.num_get_patch);
1173 printf("num commits: %d\n", sb.num_commits);
c2e525d9 1174 }
cee7f245
JH
1175 return 0;
1176}