4 * Copyright (c) 2006, 2014 by its authors
5 * See COPYING for licensing conditions
12 #include "repository.h"
17 #include "string-list.h"
19 #include "parse-options.h"
20 #include "prio-queue.h"
23 #include "line-range.h"
27 #include "object-store.h"
29 #include "string-list.h"
31 static char blame_usage
[] = N_("git blame [<options>] [<rev-opts>] [<rev>] [--] <file>");
33 static const char *blame_opt_usage
[] = {
36 N_("<rev-opts> are documented in git-rev-list(1)"),
40 static int longest_file
;
41 static int longest_author
;
42 static int max_orig_digits
;
43 static int max_digits
;
44 static int max_score_digits
;
47 static int blank_boundary
;
48 static int incremental
;
50 static int abbrev
= -1;
51 static int no_whole_file_rename
;
52 static int show_progress
;
53 static char repeated_meta_color
[COLOR_MAXLEN
];
54 static int coloring_mode
;
56 static struct date_mode blame_date_mode
= { DATE_ISO8601
};
57 static size_t blame_date_width
;
59 static struct string_list mailmap
= STRING_LIST_INIT_NODUP
;
65 static unsigned blame_move_score
;
66 static unsigned blame_copy_score
;
68 /* Remember to update object flag allocation in object.h */
69 #define METAINFO_SHOWN (1u<<12)
70 #define MORE_THAN_ONE_PATH (1u<<13)
72 struct progress_info
{
73 struct progress
*progress
;
77 static const char *nth_line_cb(void *data
, long lno
)
79 return blame_nth_line((struct blame_scoreboard
*)data
, lno
);
83 * Information on commits, used for output.
87 struct strbuf author_mail
;
88 timestamp_t author_time
;
89 struct strbuf author_tz
;
91 /* filled only when asked for details */
92 struct strbuf committer
;
93 struct strbuf committer_mail
;
94 timestamp_t committer_time
;
95 struct strbuf committer_tz
;
97 struct strbuf summary
;
101 * Parse author/committer line in the commit object buffer
103 static void get_ac_line(const char *inbuf
, const char *what
,
104 struct strbuf
*name
, struct strbuf
*mail
,
105 timestamp_t
*time
, struct strbuf
*tz
)
107 struct ident_split ident
;
108 size_t len
, maillen
, namelen
;
110 const char *namebuf
, *mailbuf
;
112 tmp
= strstr(inbuf
, what
);
116 endp
= strchr(tmp
, '\n');
122 if (split_ident_line(&ident
, tmp
, len
)) {
126 strbuf_addstr(name
, tmp
);
127 strbuf_addstr(mail
, tmp
);
128 strbuf_addstr(tz
, tmp
);
133 namelen
= ident
.name_end
- ident
.name_begin
;
134 namebuf
= ident
.name_begin
;
136 maillen
= ident
.mail_end
- ident
.mail_begin
;
137 mailbuf
= ident
.mail_begin
;
139 if (ident
.date_begin
&& ident
.date_end
)
140 *time
= strtoul(ident
.date_begin
, NULL
, 10);
144 if (ident
.tz_begin
&& ident
.tz_end
)
145 strbuf_add(tz
, ident
.tz_begin
, ident
.tz_end
- ident
.tz_begin
);
147 strbuf_addstr(tz
, "(unknown)");
150 * Now, convert both name and e-mail using mailmap
152 map_user(&mailmap
, &mailbuf
, &maillen
,
155 strbuf_addf(mail
, "<%.*s>", (int)maillen
, mailbuf
);
156 strbuf_add(name
, namebuf
, namelen
);
159 static void commit_info_init(struct commit_info
*ci
)
162 strbuf_init(&ci
->author
, 0);
163 strbuf_init(&ci
->author_mail
, 0);
164 strbuf_init(&ci
->author_tz
, 0);
165 strbuf_init(&ci
->committer
, 0);
166 strbuf_init(&ci
->committer_mail
, 0);
167 strbuf_init(&ci
->committer_tz
, 0);
168 strbuf_init(&ci
->summary
, 0);
171 static void commit_info_destroy(struct commit_info
*ci
)
174 strbuf_release(&ci
->author
);
175 strbuf_release(&ci
->author_mail
);
176 strbuf_release(&ci
->author_tz
);
177 strbuf_release(&ci
->committer
);
178 strbuf_release(&ci
->committer_mail
);
179 strbuf_release(&ci
->committer_tz
);
180 strbuf_release(&ci
->summary
);
183 static void get_commit_info(struct commit
*commit
,
184 struct commit_info
*ret
,
188 const char *subject
, *encoding
;
191 commit_info_init(ret
);
193 encoding
= get_log_output_encoding();
194 message
= logmsg_reencode(commit
, NULL
, encoding
);
195 get_ac_line(message
, "\nauthor ",
196 &ret
->author
, &ret
->author_mail
,
197 &ret
->author_time
, &ret
->author_tz
);
200 unuse_commit_buffer(commit
, message
);
204 get_ac_line(message
, "\ncommitter ",
205 &ret
->committer
, &ret
->committer_mail
,
206 &ret
->committer_time
, &ret
->committer_tz
);
208 len
= find_commit_subject(message
, &subject
);
210 strbuf_add(&ret
->summary
, subject
, len
);
212 strbuf_addf(&ret
->summary
, "(%s)", oid_to_hex(&commit
->object
.oid
));
214 unuse_commit_buffer(commit
, message
);
218 * Write out any suspect information which depends on the path. This must be
219 * handled separately from emit_one_suspect_detail(), because a given commit
220 * may have changes in multiple paths. So this needs to appear each time
221 * we mention a new group.
223 * To allow LF and other nonportable characters in pathnames,
224 * they are c-style quoted as needed.
226 static void write_filename_info(struct blame_origin
*suspect
)
228 if (suspect
->previous
) {
229 struct blame_origin
*prev
= suspect
->previous
;
230 printf("previous %s ", oid_to_hex(&prev
->commit
->object
.oid
));
231 write_name_quoted(prev
->path
, stdout
, '\n');
234 write_name_quoted(suspect
->path
, stdout
, '\n');
238 * Porcelain/Incremental format wants to show a lot of details per
239 * commit. Instead of repeating this every line, emit it only once,
240 * the first time each commit appears in the output (unless the
241 * user has specifically asked for us to repeat).
243 static int emit_one_suspect_detail(struct blame_origin
*suspect
, int repeat
)
245 struct commit_info ci
;
247 if (!repeat
&& (suspect
->commit
->object
.flags
& METAINFO_SHOWN
))
250 suspect
->commit
->object
.flags
|= METAINFO_SHOWN
;
251 get_commit_info(suspect
->commit
, &ci
, 1);
252 printf("author %s\n", ci
.author
.buf
);
253 printf("author-mail %s\n", ci
.author_mail
.buf
);
254 printf("author-time %"PRItime
"\n", ci
.author_time
);
255 printf("author-tz %s\n", ci
.author_tz
.buf
);
256 printf("committer %s\n", ci
.committer
.buf
);
257 printf("committer-mail %s\n", ci
.committer_mail
.buf
);
258 printf("committer-time %"PRItime
"\n", ci
.committer_time
);
259 printf("committer-tz %s\n", ci
.committer_tz
.buf
);
260 printf("summary %s\n", ci
.summary
.buf
);
261 if (suspect
->commit
->object
.flags
& UNINTERESTING
)
262 printf("boundary\n");
264 commit_info_destroy(&ci
);
270 * The blame_entry is found to be guilty for the range.
271 * Show it in incremental output.
273 static void found_guilty_entry(struct blame_entry
*ent
, void *data
)
275 struct progress_info
*pi
= (struct progress_info
*)data
;
278 struct blame_origin
*suspect
= ent
->suspect
;
280 printf("%s %d %d %d\n",
281 oid_to_hex(&suspect
->commit
->object
.oid
),
282 ent
->s_lno
+ 1, ent
->lno
+ 1, ent
->num_lines
);
283 emit_one_suspect_detail(suspect
, 0);
284 write_filename_info(suspect
);
285 maybe_flush_or_die(stdout
, "stdout");
287 pi
->blamed_lines
+= ent
->num_lines
;
288 display_progress(pi
->progress
, pi
->blamed_lines
);
291 static const char *format_time(timestamp_t time
, const char *tz_str
,
294 static struct strbuf time_buf
= STRBUF_INIT
;
296 strbuf_reset(&time_buf
);
298 strbuf_addf(&time_buf
, "%"PRItime
" %s", time
, tz_str
);
301 const char *time_str
;
305 time_str
= show_date(time
, tz
, &blame_date_mode
);
306 strbuf_addstr(&time_buf
, time_str
);
308 * Add space paddings to time_buf to display a fixed width
309 * string, and use time_width for display width calibration.
311 for (time_width
= utf8_strwidth(time_str
);
312 time_width
< blame_date_width
;
314 strbuf_addch(&time_buf
, ' ');
319 #define OUTPUT_ANNOTATE_COMPAT 001
320 #define OUTPUT_LONG_OBJECT_NAME 002
321 #define OUTPUT_RAW_TIMESTAMP 004
322 #define OUTPUT_PORCELAIN 010
323 #define OUTPUT_SHOW_NAME 020
324 #define OUTPUT_SHOW_NUMBER 040
325 #define OUTPUT_SHOW_SCORE 0100
326 #define OUTPUT_NO_AUTHOR 0200
327 #define OUTPUT_SHOW_EMAIL 0400
328 #define OUTPUT_LINE_PORCELAIN 01000
329 #define OUTPUT_COLOR_LINE 02000
330 #define OUTPUT_SHOW_AGE_WITH_COLOR 04000
332 static void emit_porcelain_details(struct blame_origin
*suspect
, int repeat
)
334 if (emit_one_suspect_detail(suspect
, repeat
) ||
335 (suspect
->commit
->object
.flags
& MORE_THAN_ONE_PATH
))
336 write_filename_info(suspect
);
339 static void emit_porcelain(struct blame_scoreboard
*sb
, struct blame_entry
*ent
,
342 int repeat
= opt
& OUTPUT_LINE_PORCELAIN
;
345 struct blame_origin
*suspect
= ent
->suspect
;
346 char hex
[GIT_MAX_HEXSZ
+ 1];
348 oid_to_hex_r(hex
, &suspect
->commit
->object
.oid
);
349 printf("%s %d %d %d\n",
354 emit_porcelain_details(suspect
, repeat
);
356 cp
= blame_nth_line(sb
, ent
->lno
);
357 for (cnt
= 0; cnt
< ent
->num_lines
; cnt
++) {
360 printf("%s %d %d\n", hex
,
361 ent
->s_lno
+ 1 + cnt
,
364 emit_porcelain_details(suspect
, 1);
370 } while (ch
!= '\n' &&
371 cp
< sb
->final_buf
+ sb
->final_buf_size
);
374 if (sb
->final_buf_size
&& cp
[-1] != '\n')
378 static struct color_field
{
380 char col
[COLOR_MAXLEN
];
382 static int colorfield_nr
, colorfield_alloc
;
384 static void parse_color_fields(const char *s
)
386 struct string_list l
= STRING_LIST_INIT_DUP
;
387 struct string_list_item
*item
;
388 enum { EXPECT_DATE
, EXPECT_COLOR
} next
= EXPECT_COLOR
;
392 /* Ideally this would be stripped and split at the same time? */
393 string_list_split(&l
, s
, ',', -1);
394 ALLOC_GROW(colorfield
, colorfield_nr
+ 1, colorfield_alloc
);
396 for_each_string_list_item(item
, &l
) {
399 colorfield
[colorfield_nr
].hop
= approxidate(item
->string
);
402 ALLOC_GROW(colorfield
, colorfield_nr
+ 1, colorfield_alloc
);
405 if (color_parse(item
->string
, colorfield
[colorfield_nr
].col
))
406 die(_("expecting a color: %s"), item
->string
);
412 if (next
== EXPECT_COLOR
)
413 die(_("must end with a color"));
415 colorfield
[colorfield_nr
].hop
= TIME_MAX
;
416 string_list_clear(&l
, 0);
419 static void setup_default_color_by_age(void)
421 parse_color_fields("blue,12 month ago,white,1 month ago,red");
424 static void determine_line_heat(struct blame_entry
*ent
, const char **dest_color
)
427 struct commit_info ci
;
428 get_commit_info(ent
->suspect
->commit
, &ci
, 1);
430 while (i
< colorfield_nr
&& ci
.author_time
> colorfield
[i
].hop
)
433 *dest_color
= colorfield
[i
].col
;
436 static void emit_other(struct blame_scoreboard
*sb
, struct blame_entry
*ent
, int opt
)
440 struct blame_origin
*suspect
= ent
->suspect
;
441 struct commit_info ci
;
442 char hex
[GIT_MAX_HEXSZ
+ 1];
443 int show_raw_time
= !!(opt
& OUTPUT_RAW_TIMESTAMP
);
444 const char *default_color
= NULL
, *color
= NULL
, *reset
= NULL
;
446 get_commit_info(suspect
->commit
, &ci
, 1);
447 oid_to_hex_r(hex
, &suspect
->commit
->object
.oid
);
449 cp
= blame_nth_line(sb
, ent
->lno
);
451 if (opt
& OUTPUT_SHOW_AGE_WITH_COLOR
) {
452 determine_line_heat(ent
, &default_color
);
453 color
= default_color
;
454 reset
= GIT_COLOR_RESET
;
457 for (cnt
= 0; cnt
< ent
->num_lines
; cnt
++) {
459 int length
= (opt
& OUTPUT_LONG_OBJECT_NAME
) ? GIT_SHA1_HEXSZ
: abbrev
;
461 if (opt
& OUTPUT_COLOR_LINE
) {
463 color
= repeated_meta_color
;
464 reset
= GIT_COLOR_RESET
;
466 color
= default_color
? default_color
: NULL
;
467 reset
= default_color
? GIT_COLOR_RESET
: NULL
;
471 fputs(color
, stdout
);
473 if (suspect
->commit
->object
.flags
& UNINTERESTING
) {
475 memset(hex
, ' ', length
);
476 else if (!(opt
& OUTPUT_ANNOTATE_COMPAT
)) {
482 printf("%.*s", length
, hex
);
483 if (opt
& OUTPUT_ANNOTATE_COMPAT
) {
485 if (opt
& OUTPUT_SHOW_EMAIL
)
486 name
= ci
.author_mail
.buf
;
488 name
= ci
.author
.buf
;
489 printf("\t(%10s\t%10s\t%d)", name
,
490 format_time(ci
.author_time
, ci
.author_tz
.buf
,
494 if (opt
& OUTPUT_SHOW_SCORE
)
496 max_score_digits
, ent
->score
,
497 ent
->suspect
->refcnt
);
498 if (opt
& OUTPUT_SHOW_NAME
)
499 printf(" %-*.*s", longest_file
, longest_file
,
501 if (opt
& OUTPUT_SHOW_NUMBER
)
502 printf(" %*d", max_orig_digits
,
503 ent
->s_lno
+ 1 + cnt
);
505 if (!(opt
& OUTPUT_NO_AUTHOR
)) {
508 if (opt
& OUTPUT_SHOW_EMAIL
)
509 name
= ci
.author_mail
.buf
;
511 name
= ci
.author
.buf
;
512 pad
= longest_author
- utf8_strwidth(name
);
513 printf(" (%s%*s %10s",
515 format_time(ci
.author_time
,
520 max_digits
, ent
->lno
+ 1 + cnt
);
523 fputs(reset
, stdout
);
527 } while (ch
!= '\n' &&
528 cp
< sb
->final_buf
+ sb
->final_buf_size
);
531 if (sb
->final_buf_size
&& cp
[-1] != '\n')
534 commit_info_destroy(&ci
);
537 static void output(struct blame_scoreboard
*sb
, int option
)
539 struct blame_entry
*ent
;
541 if (option
& OUTPUT_PORCELAIN
) {
542 for (ent
= sb
->ent
; ent
; ent
= ent
->next
) {
544 struct blame_origin
*suspect
;
545 struct commit
*commit
= ent
->suspect
->commit
;
546 if (commit
->object
.flags
& MORE_THAN_ONE_PATH
)
548 for (suspect
= get_blame_suspects(commit
); suspect
; suspect
= suspect
->next
) {
549 if (suspect
->guilty
&& count
++) {
550 commit
->object
.flags
|= MORE_THAN_ONE_PATH
;
557 for (ent
= sb
->ent
; ent
; ent
= ent
->next
) {
558 if (option
& OUTPUT_PORCELAIN
)
559 emit_porcelain(sb
, ent
, option
);
561 emit_other(sb
, ent
, option
);
567 * Add phony grafts for use with -S; this is primarily to
568 * support git's cvsserver that wants to give a linear history
571 static int read_ancestry(const char *graft_file
)
573 FILE *fp
= fopen_or_warn(graft_file
, "r");
574 struct strbuf buf
= STRBUF_INIT
;
577 while (!strbuf_getwholeline(&buf
, fp
, '\n')) {
578 /* The format is just "Commit Parent1 Parent2 ...\n" */
579 struct commit_graft
*graft
= read_graft_line(&buf
);
581 register_commit_graft(the_repository
, graft
, 0);
584 strbuf_release(&buf
);
588 static int update_auto_abbrev(int auto_abbrev
, struct blame_origin
*suspect
)
590 const char *uniq
= find_unique_abbrev(&suspect
->commit
->object
.oid
,
592 int len
= strlen(uniq
);
593 if (auto_abbrev
< len
)
599 * How many columns do we need to show line numbers, authors,
602 static void find_alignment(struct blame_scoreboard
*sb
, int *option
)
604 int longest_src_lines
= 0;
605 int longest_dst_lines
= 0;
606 unsigned largest_score
= 0;
607 struct blame_entry
*e
;
608 int compute_auto_abbrev
= (abbrev
< 0);
609 int auto_abbrev
= DEFAULT_ABBREV
;
611 for (e
= sb
->ent
; e
; e
= e
->next
) {
612 struct blame_origin
*suspect
= e
->suspect
;
615 if (compute_auto_abbrev
)
616 auto_abbrev
= update_auto_abbrev(auto_abbrev
, suspect
);
617 if (strcmp(suspect
->path
, sb
->path
))
618 *option
|= OUTPUT_SHOW_NAME
;
619 num
= strlen(suspect
->path
);
620 if (longest_file
< num
)
622 if (!(suspect
->commit
->object
.flags
& METAINFO_SHOWN
)) {
623 struct commit_info ci
;
624 suspect
->commit
->object
.flags
|= METAINFO_SHOWN
;
625 get_commit_info(suspect
->commit
, &ci
, 1);
626 if (*option
& OUTPUT_SHOW_EMAIL
)
627 num
= utf8_strwidth(ci
.author_mail
.buf
);
629 num
= utf8_strwidth(ci
.author
.buf
);
630 if (longest_author
< num
)
631 longest_author
= num
;
632 commit_info_destroy(&ci
);
634 num
= e
->s_lno
+ e
->num_lines
;
635 if (longest_src_lines
< num
)
636 longest_src_lines
= num
;
637 num
= e
->lno
+ e
->num_lines
;
638 if (longest_dst_lines
< num
)
639 longest_dst_lines
= num
;
640 if (largest_score
< blame_entry_score(sb
, e
))
641 largest_score
= blame_entry_score(sb
, e
);
643 max_orig_digits
= decimal_width(longest_src_lines
);
644 max_digits
= decimal_width(longest_dst_lines
);
645 max_score_digits
= decimal_width(largest_score
);
647 if (compute_auto_abbrev
)
648 /* one more abbrev length is needed for the boundary commit */
649 abbrev
= auto_abbrev
+ 1;
652 static void sanity_check_on_fail(struct blame_scoreboard
*sb
, int baa
)
654 int opt
= OUTPUT_SHOW_SCORE
| OUTPUT_SHOW_NUMBER
| OUTPUT_SHOW_NAME
;
655 find_alignment(sb
, &opt
);
660 static unsigned parse_score(const char *arg
)
663 unsigned long score
= strtoul(arg
, &end
, 10);
669 static const char *add_prefix(const char *prefix
, const char *path
)
671 return prefix_path(prefix
, prefix
? strlen(prefix
) : 0, path
);
674 static int git_blame_config(const char *var
, const char *value
, void *cb
)
676 if (!strcmp(var
, "blame.showroot")) {
677 show_root
= git_config_bool(var
, value
);
680 if (!strcmp(var
, "blame.blankboundary")) {
681 blank_boundary
= git_config_bool(var
, value
);
684 if (!strcmp(var
, "blame.showemail")) {
685 int *output_option
= cb
;
686 if (git_config_bool(var
, value
))
687 *output_option
|= OUTPUT_SHOW_EMAIL
;
689 *output_option
&= ~OUTPUT_SHOW_EMAIL
;
692 if (!strcmp(var
, "blame.date")) {
694 return config_error_nonbool(var
);
695 parse_date_format(value
, &blame_date_mode
);
698 if (!strcmp(var
, "color.blame.repeatedlines")) {
699 if (color_parse_mem(value
, strlen(value
), repeated_meta_color
))
700 warning(_("invalid color '%s' in color.blame.repeatedLines"),
704 if (!strcmp(var
, "color.blame.highlightrecent")) {
705 parse_color_fields(value
);
709 if (!strcmp(var
, "blame.coloring")) {
710 if (!strcmp(value
, "repeatedLines")) {
711 coloring_mode
|= OUTPUT_COLOR_LINE
;
712 } else if (!strcmp(value
, "highlightRecent")) {
713 coloring_mode
|= OUTPUT_SHOW_AGE_WITH_COLOR
;
714 } else if (!strcmp(value
, "none")) {
715 coloring_mode
&= ~(OUTPUT_COLOR_LINE
|
716 OUTPUT_SHOW_AGE_WITH_COLOR
);
718 warning(_("invalid value for blame.coloring"));
723 if (git_diff_heuristic_config(var
, value
, cb
) < 0)
725 if (userdiff_config(var
, value
) < 0)
728 return git_default_config(var
, value
, cb
);
731 static int blame_copy_callback(const struct option
*option
, const char *arg
, int unset
)
733 int *opt
= option
->value
;
736 * -C enables copy from removed files;
737 * -C -C enables copy from existing files, but only
738 * when blaming a new file;
739 * -C -C -C enables copy from existing files for
742 if (*opt
& PICKAXE_BLAME_COPY_HARDER
)
743 *opt
|= PICKAXE_BLAME_COPY_HARDEST
;
744 if (*opt
& PICKAXE_BLAME_COPY
)
745 *opt
|= PICKAXE_BLAME_COPY_HARDER
;
746 *opt
|= PICKAXE_BLAME_COPY
| PICKAXE_BLAME_MOVE
;
749 blame_copy_score
= parse_score(arg
);
753 static int blame_move_callback(const struct option
*option
, const char *arg
, int unset
)
755 int *opt
= option
->value
;
757 *opt
|= PICKAXE_BLAME_MOVE
;
760 blame_move_score
= parse_score(arg
);
764 static int is_a_rev(const char *name
)
766 struct object_id oid
;
768 if (get_oid(name
, &oid
))
770 return OBJ_NONE
< oid_object_info(the_repository
, &oid
, NULL
);
773 int cmd_blame(int argc
, const char **argv
, const char *prefix
)
775 struct rev_info revs
;
777 struct blame_scoreboard sb
;
778 struct blame_origin
*o
;
779 struct blame_entry
*ent
= NULL
;
780 long dashdash_pos
, lno
;
781 struct progress_info pi
= { NULL
, 0 };
783 struct string_list range_list
= STRING_LIST_INIT_NODUP
;
784 int output_option
= 0, opt
= 0;
786 const char *revs_file
= NULL
;
787 const char *contents_from
= NULL
;
788 const struct option options
[] = {
789 OPT_BOOL(0, "incremental", &incremental
, N_("Show blame entries as we find them, incrementally")),
790 OPT_BOOL('b', NULL
, &blank_boundary
, N_("Show blank SHA-1 for boundary commits (Default: off)")),
791 OPT_BOOL(0, "root", &show_root
, N_("Do not treat root commits as boundaries (Default: off)")),
792 OPT_BOOL(0, "show-stats", &show_stats
, N_("Show work cost statistics")),
793 OPT_BOOL(0, "progress", &show_progress
, N_("Force progress reporting")),
794 OPT_BIT(0, "score-debug", &output_option
, N_("Show output score for blame entries"), OUTPUT_SHOW_SCORE
),
795 OPT_BIT('f', "show-name", &output_option
, N_("Show original filename (Default: auto)"), OUTPUT_SHOW_NAME
),
796 OPT_BIT('n', "show-number", &output_option
, N_("Show original linenumber (Default: off)"), OUTPUT_SHOW_NUMBER
),
797 OPT_BIT('p', "porcelain", &output_option
, N_("Show in a format designed for machine consumption"), OUTPUT_PORCELAIN
),
798 OPT_BIT(0, "line-porcelain", &output_option
, N_("Show porcelain format with per-line commit information"), OUTPUT_PORCELAIN
|OUTPUT_LINE_PORCELAIN
),
799 OPT_BIT('c', NULL
, &output_option
, N_("Use the same output mode as git-annotate (Default: off)"), OUTPUT_ANNOTATE_COMPAT
),
800 OPT_BIT('t', NULL
, &output_option
, N_("Show raw timestamp (Default: off)"), OUTPUT_RAW_TIMESTAMP
),
801 OPT_BIT('l', NULL
, &output_option
, N_("Show long commit SHA1 (Default: off)"), OUTPUT_LONG_OBJECT_NAME
),
802 OPT_BIT('s', NULL
, &output_option
, N_("Suppress author name and timestamp (Default: off)"), OUTPUT_NO_AUTHOR
),
803 OPT_BIT('e', "show-email", &output_option
, N_("Show author email instead of name (Default: off)"), OUTPUT_SHOW_EMAIL
),
804 OPT_BIT('w', NULL
, &xdl_opts
, N_("Ignore whitespace differences"), XDF_IGNORE_WHITESPACE
),
805 OPT_BIT(0, "color-lines", &output_option
, N_("color redundant metadata from previous line differently"), OUTPUT_COLOR_LINE
),
806 OPT_BIT(0, "color-by-age", &output_option
, N_("color lines by age"), OUTPUT_SHOW_AGE_WITH_COLOR
),
809 * The following two options are parsed by parse_revision_opt()
810 * and are only included here to get included in the "-h"
813 { OPTION_LOWLEVEL_CALLBACK
, 0, "indent-heuristic", NULL
, NULL
, N_("Use an experimental heuristic to improve diffs"), PARSE_OPT_NOARG
, parse_opt_unknown_cb
},
815 OPT_BIT(0, "minimal", &xdl_opts
, N_("Spend extra cycles to find better match"), XDF_NEED_MINIMAL
),
816 OPT_STRING('S', NULL
, &revs_file
, N_("file"), N_("Use revisions from <file> instead of calling git-rev-list")),
817 OPT_STRING(0, "contents", &contents_from
, N_("file"), N_("Use <file>'s contents as the final image")),
818 { OPTION_CALLBACK
, 'C', NULL
, &opt
, N_("score"), N_("Find line copies within and across files"), PARSE_OPT_OPTARG
, blame_copy_callback
},
819 { OPTION_CALLBACK
, 'M', NULL
, &opt
, N_("score"), N_("Find line movements within and across files"), PARSE_OPT_OPTARG
, blame_move_callback
},
820 OPT_STRING_LIST('L', NULL
, &range_list
, N_("n,m"), N_("Process only line range n,m, counting from 1")),
821 OPT__ABBREV(&abbrev
),
825 struct parse_opt_ctx_t ctx
;
826 int cmd_is_annotate
= !strcmp(argv
[0], "annotate");
827 struct range_set ranges
;
828 unsigned int range_i
;
831 setup_default_color_by_age();
832 git_config(git_blame_config
, &output_option
);
833 init_revisions(&revs
, NULL
);
834 revs
.date_mode
= blame_date_mode
;
835 revs
.diffopt
.flags
.allow_textconv
= 1;
836 revs
.diffopt
.flags
.follow_renames
= 1;
838 save_commit_buffer
= 0;
842 parse_options_start(&ctx
, argc
, argv
, prefix
, options
,
843 PARSE_OPT_KEEP_DASHDASH
| PARSE_OPT_KEEP_ARGV0
);
845 switch (parse_options_step(&ctx
, options
, blame_opt_usage
)) {
847 case PARSE_OPT_ERROR
:
851 dashdash_pos
= ctx
.cpidx
;
855 if (!strcmp(ctx
.argv
[0], "--reverse")) {
856 ctx
.argv
[0] = "--children";
859 parse_revision_opt(&revs
, &ctx
, options
, blame_opt_usage
);
862 no_whole_file_rename
= !revs
.diffopt
.flags
.follow_renames
;
863 xdl_opts
|= revs
.diffopt
.xdl_opts
& XDF_INDENT_HEURISTIC
;
864 revs
.diffopt
.flags
.follow_renames
= 0;
865 argc
= parse_options_end(&ctx
);
867 if (incremental
|| (output_option
& OUTPUT_PORCELAIN
)) {
868 if (show_progress
> 0)
869 die(_("--progress can't be used with --incremental or porcelain formats"));
871 } else if (show_progress
< 0)
872 show_progress
= isatty(2);
874 if (0 < abbrev
&& abbrev
< GIT_SHA1_HEXSZ
)
875 /* one more abbrev length is needed for the boundary commit */
878 abbrev
= GIT_SHA1_HEXSZ
;
880 if (revs_file
&& read_ancestry(revs_file
))
881 die_errno("reading graft file '%s' failed", revs_file
);
883 if (cmd_is_annotate
) {
884 output_option
|= OUTPUT_ANNOTATE_COMPAT
;
885 blame_date_mode
.type
= DATE_ISO8601
;
887 blame_date_mode
= revs
.date_mode
;
890 /* The maximum width used to show the dates */
891 switch (blame_date_mode
.type
) {
893 blame_date_width
= sizeof("Thu, 19 Oct 2006 16:00:04 -0700");
895 case DATE_ISO8601_STRICT
:
896 blame_date_width
= sizeof("2006-10-19T16:00:04-07:00");
899 blame_date_width
= sizeof("2006-10-19 16:00:04 -0700");
902 blame_date_width
= sizeof("1161298804 -0700");
905 blame_date_width
= sizeof("1161298804");
908 blame_date_width
= sizeof("2006-10-19");
912 * TRANSLATORS: This string is used to tell us the
913 * maximum display width for a relative timestamp in
914 * "git blame" output. For C locale, "4 years, 11
915 * months ago", which takes 22 places, is the longest
916 * among various forms of relative timestamps, but
917 * your language may need more or fewer display
920 blame_date_width
= utf8_strwidth(_("4 years, 11 months ago")) + 1; /* add the null */
923 blame_date_width
= sizeof("Thu Oct 19 16:00:04 2006 -0700");
926 blame_date_width
= strlen(show_date(0, 0, &blame_date_mode
)) + 1; /* add the null */
929 blame_date_width
-= 1; /* strip the null */
931 if (revs
.diffopt
.flags
.find_copies_harder
)
932 opt
|= (PICKAXE_BLAME_COPY
| PICKAXE_BLAME_MOVE
|
933 PICKAXE_BLAME_COPY_HARDER
);
936 * We have collected options unknown to us in argv[1..unk]
937 * which are to be passed to revision machinery if we are
938 * going to do the "bottom" processing.
942 * (1) if dashdash_pos != 0, it is either
943 * "blame [revisions] -- <path>" or
944 * "blame -- <path> <rev>"
946 * (2) otherwise, it is one of the two:
947 * "blame [revisions] <path>"
948 * "blame <path> <rev>"
950 * Note that we must strip out <path> from the arguments: we do not
951 * want the path pruning but we may want "bottom" processing.
954 switch (argc
- dashdash_pos
- 1) {
957 usage_with_options(blame_opt_usage
, options
);
958 /* reorder for the new way: <rev> -- <path> */
964 path
= add_prefix(prefix
, argv
[--argc
]);
968 usage_with_options(blame_opt_usage
, options
);
972 usage_with_options(blame_opt_usage
, options
);
973 if (argc
== 3 && is_a_rev(argv
[argc
- 1])) { /* (2b) */
974 path
= add_prefix(prefix
, argv
[1]);
977 if (argc
== 2 && is_a_rev(argv
[1]) && !get_git_work_tree())
978 die("missing <path> to blame");
979 path
= add_prefix(prefix
, argv
[argc
- 1]);
981 argv
[argc
- 1] = "--";
984 revs
.disable_stdin
= 1;
985 setup_revisions(argc
, argv
, &revs
, NULL
);
987 init_scoreboard(&sb
);
989 sb
.contents_from
= contents_from
;
990 sb
.reverse
= reverse
;
991 sb
.repo
= the_repository
;
992 setup_scoreboard(&sb
, path
, &o
);
995 if (lno
&& !range_list
.nr
)
996 string_list_append(&range_list
, "1");
999 range_set_init(&ranges
, range_list
.nr
);
1000 for (range_i
= 0; range_i
< range_list
.nr
; ++range_i
) {
1002 if (parse_range_arg(range_list
.items
[range_i
].string
,
1003 nth_line_cb
, &sb
, lno
, anchor
,
1004 &bottom
, &top
, sb
.path
))
1006 if ((!lno
&& (top
|| bottom
)) || lno
< bottom
)
1007 die(Q_("file %s has only %lu line",
1008 "file %s has only %lu lines",
1012 if (top
< 1 || lno
< top
)
1015 range_set_append_unsafe(&ranges
, bottom
, top
);
1018 sort_and_merge_range_set(&ranges
);
1020 for (range_i
= ranges
.nr
; range_i
> 0; --range_i
) {
1021 const struct range
*r
= &ranges
.ranges
[range_i
- 1];
1022 ent
= blame_entry_prepend(ent
, r
->start
, r
->end
, o
);
1026 prio_queue_put(&sb
.commits
, o
->commit
);
1028 blame_origin_decref(o
);
1030 range_set_release(&ranges
);
1031 string_list_clear(&range_list
, 0);
1036 if (blame_move_score
)
1037 sb
.move_score
= blame_move_score
;
1038 if (blame_copy_score
)
1039 sb
.copy_score
= blame_copy_score
;
1042 sb
.on_sanity_fail
= &sanity_check_on_fail
;
1044 sb
.show_root
= show_root
;
1045 sb
.xdl_opts
= xdl_opts
;
1046 sb
.no_whole_file_rename
= no_whole_file_rename
;
1048 read_mailmap(&mailmap
, NULL
);
1050 sb
.found_guilty_entry
= &found_guilty_entry
;
1051 sb
.found_guilty_entry_data
= &pi
;
1053 pi
.progress
= start_delayed_progress(_("Blaming lines"), sb
.num_lines
);
1055 assign_blame(&sb
, opt
);
1057 stop_progress(&pi
.progress
);
1064 blame_sort_final(&sb
);
1066 blame_coalesce(&sb
);
1068 if (!(output_option
& (OUTPUT_COLOR_LINE
| OUTPUT_SHOW_AGE_WITH_COLOR
)))
1069 output_option
|= coloring_mode
;
1071 if (!(output_option
& OUTPUT_PORCELAIN
)) {
1072 find_alignment(&sb
, &output_option
);
1073 if (!*repeated_meta_color
&&
1074 (output_option
& OUTPUT_COLOR_LINE
))
1075 xsnprintf(repeated_meta_color
,
1076 sizeof(repeated_meta_color
),
1077 "%s", GIT_COLOR_CYAN
);
1079 if (output_option
& OUTPUT_ANNOTATE_COMPAT
)
1080 output_option
&= ~(OUTPUT_COLOR_LINE
| OUTPUT_SHOW_AGE_WITH_COLOR
);
1082 output(&sb
, output_option
);
1083 free((void *)sb
.final_buf
);
1084 for (ent
= sb
.ent
; ent
; ) {
1085 struct blame_entry
*e
= ent
->next
;
1091 printf("num read blob: %d\n", sb
.num_read_blob
);
1092 printf("num get patch: %d\n", sb
.num_get_patch
);
1093 printf("num commits: %d\n", sb
.num_commits
);