4 * Copyright (c) 2006, 2014 by its authors
5 * See COPYING for licensing conditions
16 #include "string-list.h"
18 #include "parse-options.h"
19 #include "prio-queue.h"
22 #include "line-range.h"
27 #include "string-list.h"
29 static char blame_usage
[] = N_("git blame [<options>] [<rev-opts>] [<rev>] [--] <file>");
31 static const char *blame_opt_usage
[] = {
34 N_("<rev-opts> are documented in git-rev-list(1)"),
38 static int longest_file
;
39 static int longest_author
;
40 static int max_orig_digits
;
41 static int max_digits
;
42 static int max_score_digits
;
45 static int blank_boundary
;
46 static int incremental
;
48 static int abbrev
= -1;
49 static int no_whole_file_rename
;
50 static int show_progress
;
51 static char repeated_meta_color
[COLOR_MAXLEN
];
52 static int coloring_mode
;
54 static struct date_mode blame_date_mode
= { DATE_ISO8601
};
55 static size_t blame_date_width
;
57 static struct string_list mailmap
= STRING_LIST_INIT_NODUP
;
63 static unsigned blame_move_score
;
64 static unsigned blame_copy_score
;
66 /* Remember to update object flag allocation in object.h */
67 #define METAINFO_SHOWN (1u<<12)
68 #define MORE_THAN_ONE_PATH (1u<<13)
70 struct progress_info
{
71 struct progress
*progress
;
75 static const char *nth_line_cb(void *data
, long lno
)
77 return blame_nth_line((struct blame_scoreboard
*)data
, lno
);
81 * Information on commits, used for output.
85 struct strbuf author_mail
;
86 timestamp_t author_time
;
87 struct strbuf author_tz
;
89 /* filled only when asked for details */
90 struct strbuf committer
;
91 struct strbuf committer_mail
;
92 timestamp_t committer_time
;
93 struct strbuf committer_tz
;
95 struct strbuf summary
;
99 * Parse author/committer line in the commit object buffer
101 static void get_ac_line(const char *inbuf
, const char *what
,
102 struct strbuf
*name
, struct strbuf
*mail
,
103 timestamp_t
*time
, struct strbuf
*tz
)
105 struct ident_split ident
;
106 size_t len
, maillen
, namelen
;
108 const char *namebuf
, *mailbuf
;
110 tmp
= strstr(inbuf
, what
);
114 endp
= strchr(tmp
, '\n');
120 if (split_ident_line(&ident
, tmp
, len
)) {
124 strbuf_addstr(name
, tmp
);
125 strbuf_addstr(mail
, tmp
);
126 strbuf_addstr(tz
, tmp
);
131 namelen
= ident
.name_end
- ident
.name_begin
;
132 namebuf
= ident
.name_begin
;
134 maillen
= ident
.mail_end
- ident
.mail_begin
;
135 mailbuf
= ident
.mail_begin
;
137 if (ident
.date_begin
&& ident
.date_end
)
138 *time
= strtoul(ident
.date_begin
, NULL
, 10);
142 if (ident
.tz_begin
&& ident
.tz_end
)
143 strbuf_add(tz
, ident
.tz_begin
, ident
.tz_end
- ident
.tz_begin
);
145 strbuf_addstr(tz
, "(unknown)");
148 * Now, convert both name and e-mail using mailmap
150 map_user(&mailmap
, &mailbuf
, &maillen
,
153 strbuf_addf(mail
, "<%.*s>", (int)maillen
, mailbuf
);
154 strbuf_add(name
, namebuf
, namelen
);
157 static void commit_info_init(struct commit_info
*ci
)
160 strbuf_init(&ci
->author
, 0);
161 strbuf_init(&ci
->author_mail
, 0);
162 strbuf_init(&ci
->author_tz
, 0);
163 strbuf_init(&ci
->committer
, 0);
164 strbuf_init(&ci
->committer_mail
, 0);
165 strbuf_init(&ci
->committer_tz
, 0);
166 strbuf_init(&ci
->summary
, 0);
169 static void commit_info_destroy(struct commit_info
*ci
)
172 strbuf_release(&ci
->author
);
173 strbuf_release(&ci
->author_mail
);
174 strbuf_release(&ci
->author_tz
);
175 strbuf_release(&ci
->committer
);
176 strbuf_release(&ci
->committer_mail
);
177 strbuf_release(&ci
->committer_tz
);
178 strbuf_release(&ci
->summary
);
181 static void get_commit_info(struct commit
*commit
,
182 struct commit_info
*ret
,
186 const char *subject
, *encoding
;
189 commit_info_init(ret
);
191 encoding
= get_log_output_encoding();
192 message
= logmsg_reencode(commit
, NULL
, encoding
);
193 get_ac_line(message
, "\nauthor ",
194 &ret
->author
, &ret
->author_mail
,
195 &ret
->author_time
, &ret
->author_tz
);
198 unuse_commit_buffer(commit
, message
);
202 get_ac_line(message
, "\ncommitter ",
203 &ret
->committer
, &ret
->committer_mail
,
204 &ret
->committer_time
, &ret
->committer_tz
);
206 len
= find_commit_subject(message
, &subject
);
208 strbuf_add(&ret
->summary
, subject
, len
);
210 strbuf_addf(&ret
->summary
, "(%s)", oid_to_hex(&commit
->object
.oid
));
212 unuse_commit_buffer(commit
, message
);
216 * Write out any suspect information which depends on the path. This must be
217 * handled separately from emit_one_suspect_detail(), because a given commit
218 * may have changes in multiple paths. So this needs to appear each time
219 * we mention a new group.
221 * To allow LF and other nonportable characters in pathnames,
222 * they are c-style quoted as needed.
224 static void write_filename_info(struct blame_origin
*suspect
)
226 if (suspect
->previous
) {
227 struct blame_origin
*prev
= suspect
->previous
;
228 printf("previous %s ", oid_to_hex(&prev
->commit
->object
.oid
));
229 write_name_quoted(prev
->path
, stdout
, '\n');
232 write_name_quoted(suspect
->path
, stdout
, '\n');
236 * Porcelain/Incremental format wants to show a lot of details per
237 * commit. Instead of repeating this every line, emit it only once,
238 * the first time each commit appears in the output (unless the
239 * user has specifically asked for us to repeat).
241 static int emit_one_suspect_detail(struct blame_origin
*suspect
, int repeat
)
243 struct commit_info ci
;
245 if (!repeat
&& (suspect
->commit
->object
.flags
& METAINFO_SHOWN
))
248 suspect
->commit
->object
.flags
|= METAINFO_SHOWN
;
249 get_commit_info(suspect
->commit
, &ci
, 1);
250 printf("author %s\n", ci
.author
.buf
);
251 printf("author-mail %s\n", ci
.author_mail
.buf
);
252 printf("author-time %"PRItime
"\n", ci
.author_time
);
253 printf("author-tz %s\n", ci
.author_tz
.buf
);
254 printf("committer %s\n", ci
.committer
.buf
);
255 printf("committer-mail %s\n", ci
.committer_mail
.buf
);
256 printf("committer-time %"PRItime
"\n", ci
.committer_time
);
257 printf("committer-tz %s\n", ci
.committer_tz
.buf
);
258 printf("summary %s\n", ci
.summary
.buf
);
259 if (suspect
->commit
->object
.flags
& UNINTERESTING
)
260 printf("boundary\n");
262 commit_info_destroy(&ci
);
268 * The blame_entry is found to be guilty for the range.
269 * Show it in incremental output.
271 static void found_guilty_entry(struct blame_entry
*ent
, void *data
)
273 struct progress_info
*pi
= (struct progress_info
*)data
;
276 struct blame_origin
*suspect
= ent
->suspect
;
278 printf("%s %d %d %d\n",
279 oid_to_hex(&suspect
->commit
->object
.oid
),
280 ent
->s_lno
+ 1, ent
->lno
+ 1, ent
->num_lines
);
281 emit_one_suspect_detail(suspect
, 0);
282 write_filename_info(suspect
);
283 maybe_flush_or_die(stdout
, "stdout");
285 pi
->blamed_lines
+= ent
->num_lines
;
286 display_progress(pi
->progress
, pi
->blamed_lines
);
289 static const char *format_time(timestamp_t time
, const char *tz_str
,
292 static struct strbuf time_buf
= STRBUF_INIT
;
294 strbuf_reset(&time_buf
);
296 strbuf_addf(&time_buf
, "%"PRItime
" %s", time
, tz_str
);
299 const char *time_str
;
303 time_str
= show_date(time
, tz
, &blame_date_mode
);
304 strbuf_addstr(&time_buf
, time_str
);
306 * Add space paddings to time_buf to display a fixed width
307 * string, and use time_width for display width calibration.
309 for (time_width
= utf8_strwidth(time_str
);
310 time_width
< blame_date_width
;
312 strbuf_addch(&time_buf
, ' ');
317 #define OUTPUT_ANNOTATE_COMPAT 001
318 #define OUTPUT_LONG_OBJECT_NAME 002
319 #define OUTPUT_RAW_TIMESTAMP 004
320 #define OUTPUT_PORCELAIN 010
321 #define OUTPUT_SHOW_NAME 020
322 #define OUTPUT_SHOW_NUMBER 040
323 #define OUTPUT_SHOW_SCORE 0100
324 #define OUTPUT_NO_AUTHOR 0200
325 #define OUTPUT_SHOW_EMAIL 0400
326 #define OUTPUT_LINE_PORCELAIN 01000
327 #define OUTPUT_COLOR_LINE 02000
328 #define OUTPUT_SHOW_AGE_WITH_COLOR 04000
330 static void emit_porcelain_details(struct blame_origin
*suspect
, int repeat
)
332 if (emit_one_suspect_detail(suspect
, repeat
) ||
333 (suspect
->commit
->object
.flags
& MORE_THAN_ONE_PATH
))
334 write_filename_info(suspect
);
337 static void emit_porcelain(struct blame_scoreboard
*sb
, struct blame_entry
*ent
,
340 int repeat
= opt
& OUTPUT_LINE_PORCELAIN
;
343 struct blame_origin
*suspect
= ent
->suspect
;
344 char hex
[GIT_MAX_HEXSZ
+ 1];
346 oid_to_hex_r(hex
, &suspect
->commit
->object
.oid
);
347 printf("%s %d %d %d\n",
352 emit_porcelain_details(suspect
, repeat
);
354 cp
= blame_nth_line(sb
, ent
->lno
);
355 for (cnt
= 0; cnt
< ent
->num_lines
; cnt
++) {
358 printf("%s %d %d\n", hex
,
359 ent
->s_lno
+ 1 + cnt
,
362 emit_porcelain_details(suspect
, 1);
368 } while (ch
!= '\n' &&
369 cp
< sb
->final_buf
+ sb
->final_buf_size
);
372 if (sb
->final_buf_size
&& cp
[-1] != '\n')
376 static struct color_field
{
378 char col
[COLOR_MAXLEN
];
380 static int colorfield_nr
, colorfield_alloc
;
382 static void parse_color_fields(const char *s
)
384 struct string_list l
= STRING_LIST_INIT_DUP
;
385 struct string_list_item
*item
;
386 enum { EXPECT_DATE
, EXPECT_COLOR
} next
= EXPECT_COLOR
;
390 /* Ideally this would be stripped and split at the same time? */
391 string_list_split(&l
, s
, ',', -1);
392 ALLOC_GROW(colorfield
, colorfield_nr
+ 1, colorfield_alloc
);
394 for_each_string_list_item(item
, &l
) {
397 colorfield
[colorfield_nr
].hop
= approxidate(item
->string
);
400 ALLOC_GROW(colorfield
, colorfield_nr
+ 1, colorfield_alloc
);
403 if (color_parse(item
->string
, colorfield
[colorfield_nr
].col
))
404 die(_("expecting a color: %s"), item
->string
);
410 if (next
== EXPECT_COLOR
)
411 die (_("must end with a color"));
413 colorfield
[colorfield_nr
].hop
= TIME_MAX
;
414 string_list_clear(&l
, 0);
417 static void setup_default_color_by_age(void)
419 parse_color_fields("blue,12 month ago,white,1 month ago,red");
422 static void determine_line_heat(struct blame_entry
*ent
, const char **dest_color
)
425 struct commit_info ci
;
426 get_commit_info(ent
->suspect
->commit
, &ci
, 1);
428 while (i
< colorfield_nr
&& ci
.author_time
> colorfield
[i
].hop
)
431 *dest_color
= colorfield
[i
].col
;
434 static void emit_other(struct blame_scoreboard
*sb
, struct blame_entry
*ent
, int opt
)
438 struct blame_origin
*suspect
= ent
->suspect
;
439 struct commit_info ci
;
440 char hex
[GIT_MAX_HEXSZ
+ 1];
441 int show_raw_time
= !!(opt
& OUTPUT_RAW_TIMESTAMP
);
442 const char *default_color
= NULL
, *color
= NULL
, *reset
= NULL
;
444 get_commit_info(suspect
->commit
, &ci
, 1);
445 oid_to_hex_r(hex
, &suspect
->commit
->object
.oid
);
447 cp
= blame_nth_line(sb
, ent
->lno
);
449 if (opt
& OUTPUT_SHOW_AGE_WITH_COLOR
) {
450 determine_line_heat(ent
, &default_color
);
451 color
= default_color
;
452 reset
= GIT_COLOR_RESET
;
455 for (cnt
= 0; cnt
< ent
->num_lines
; cnt
++) {
457 int length
= (opt
& OUTPUT_LONG_OBJECT_NAME
) ? GIT_SHA1_HEXSZ
: abbrev
;
459 if (opt
& OUTPUT_COLOR_LINE
) {
461 color
= repeated_meta_color
;
462 reset
= GIT_COLOR_RESET
;
464 color
= default_color
? default_color
: NULL
;
465 reset
= default_color
? GIT_COLOR_RESET
: NULL
;
469 fputs(color
, stdout
);
471 if (suspect
->commit
->object
.flags
& UNINTERESTING
) {
473 memset(hex
, ' ', length
);
474 else if (!(opt
& OUTPUT_ANNOTATE_COMPAT
)) {
480 printf("%.*s", length
, hex
);
481 if (opt
& OUTPUT_ANNOTATE_COMPAT
) {
483 if (opt
& OUTPUT_SHOW_EMAIL
)
484 name
= ci
.author_mail
.buf
;
486 name
= ci
.author
.buf
;
487 printf("\t(%10s\t%10s\t%d)", name
,
488 format_time(ci
.author_time
, ci
.author_tz
.buf
,
492 if (opt
& OUTPUT_SHOW_SCORE
)
494 max_score_digits
, ent
->score
,
495 ent
->suspect
->refcnt
);
496 if (opt
& OUTPUT_SHOW_NAME
)
497 printf(" %-*.*s", longest_file
, longest_file
,
499 if (opt
& OUTPUT_SHOW_NUMBER
)
500 printf(" %*d", max_orig_digits
,
501 ent
->s_lno
+ 1 + cnt
);
503 if (!(opt
& OUTPUT_NO_AUTHOR
)) {
506 if (opt
& OUTPUT_SHOW_EMAIL
)
507 name
= ci
.author_mail
.buf
;
509 name
= ci
.author
.buf
;
510 pad
= longest_author
- utf8_strwidth(name
);
511 printf(" (%s%*s %10s",
513 format_time(ci
.author_time
,
518 max_digits
, ent
->lno
+ 1 + cnt
);
521 fputs(reset
, stdout
);
525 } while (ch
!= '\n' &&
526 cp
< sb
->final_buf
+ sb
->final_buf_size
);
529 if (sb
->final_buf_size
&& cp
[-1] != '\n')
532 commit_info_destroy(&ci
);
535 static void output(struct blame_scoreboard
*sb
, int option
)
537 struct blame_entry
*ent
;
539 if (option
& OUTPUT_PORCELAIN
) {
540 for (ent
= sb
->ent
; ent
; ent
= ent
->next
) {
542 struct blame_origin
*suspect
;
543 struct commit
*commit
= ent
->suspect
->commit
;
544 if (commit
->object
.flags
& MORE_THAN_ONE_PATH
)
546 for (suspect
= get_blame_suspects(commit
); suspect
; suspect
= suspect
->next
) {
547 if (suspect
->guilty
&& count
++) {
548 commit
->object
.flags
|= MORE_THAN_ONE_PATH
;
555 for (ent
= sb
->ent
; ent
; ent
= ent
->next
) {
556 if (option
& OUTPUT_PORCELAIN
)
557 emit_porcelain(sb
, ent
, option
);
559 emit_other(sb
, ent
, option
);
565 * Add phony grafts for use with -S; this is primarily to
566 * support git's cvsserver that wants to give a linear history
569 static int read_ancestry(const char *graft_file
)
571 FILE *fp
= fopen_or_warn(graft_file
, "r");
572 struct strbuf buf
= STRBUF_INIT
;
575 while (!strbuf_getwholeline(&buf
, fp
, '\n')) {
576 /* The format is just "Commit Parent1 Parent2 ...\n" */
577 struct commit_graft
*graft
= read_graft_line(&buf
);
579 register_commit_graft(graft
, 0);
582 strbuf_release(&buf
);
586 static int update_auto_abbrev(int auto_abbrev
, struct blame_origin
*suspect
)
588 const char *uniq
= find_unique_abbrev(&suspect
->commit
->object
.oid
,
590 int len
= strlen(uniq
);
591 if (auto_abbrev
< len
)
597 * How many columns do we need to show line numbers, authors,
600 static void find_alignment(struct blame_scoreboard
*sb
, int *option
)
602 int longest_src_lines
= 0;
603 int longest_dst_lines
= 0;
604 unsigned largest_score
= 0;
605 struct blame_entry
*e
;
606 int compute_auto_abbrev
= (abbrev
< 0);
607 int auto_abbrev
= DEFAULT_ABBREV
;
609 for (e
= sb
->ent
; e
; e
= e
->next
) {
610 struct blame_origin
*suspect
= e
->suspect
;
613 if (compute_auto_abbrev
)
614 auto_abbrev
= update_auto_abbrev(auto_abbrev
, suspect
);
615 if (strcmp(suspect
->path
, sb
->path
))
616 *option
|= OUTPUT_SHOW_NAME
;
617 num
= strlen(suspect
->path
);
618 if (longest_file
< num
)
620 if (!(suspect
->commit
->object
.flags
& METAINFO_SHOWN
)) {
621 struct commit_info ci
;
622 suspect
->commit
->object
.flags
|= METAINFO_SHOWN
;
623 get_commit_info(suspect
->commit
, &ci
, 1);
624 if (*option
& OUTPUT_SHOW_EMAIL
)
625 num
= utf8_strwidth(ci
.author_mail
.buf
);
627 num
= utf8_strwidth(ci
.author
.buf
);
628 if (longest_author
< num
)
629 longest_author
= num
;
630 commit_info_destroy(&ci
);
632 num
= e
->s_lno
+ e
->num_lines
;
633 if (longest_src_lines
< num
)
634 longest_src_lines
= num
;
635 num
= e
->lno
+ e
->num_lines
;
636 if (longest_dst_lines
< num
)
637 longest_dst_lines
= num
;
638 if (largest_score
< blame_entry_score(sb
, e
))
639 largest_score
= blame_entry_score(sb
, e
);
641 max_orig_digits
= decimal_width(longest_src_lines
);
642 max_digits
= decimal_width(longest_dst_lines
);
643 max_score_digits
= decimal_width(largest_score
);
645 if (compute_auto_abbrev
)
646 /* one more abbrev length is needed for the boundary commit */
647 abbrev
= auto_abbrev
+ 1;
650 static void sanity_check_on_fail(struct blame_scoreboard
*sb
, int baa
)
652 int opt
= OUTPUT_SHOW_SCORE
| OUTPUT_SHOW_NUMBER
| OUTPUT_SHOW_NAME
;
653 find_alignment(sb
, &opt
);
658 static unsigned parse_score(const char *arg
)
661 unsigned long score
= strtoul(arg
, &end
, 10);
667 static const char *add_prefix(const char *prefix
, const char *path
)
669 return prefix_path(prefix
, prefix
? strlen(prefix
) : 0, path
);
672 static int git_blame_config(const char *var
, const char *value
, void *cb
)
674 if (!strcmp(var
, "blame.showroot")) {
675 show_root
= git_config_bool(var
, value
);
678 if (!strcmp(var
, "blame.blankboundary")) {
679 blank_boundary
= git_config_bool(var
, value
);
682 if (!strcmp(var
, "blame.showemail")) {
683 int *output_option
= cb
;
684 if (git_config_bool(var
, value
))
685 *output_option
|= OUTPUT_SHOW_EMAIL
;
687 *output_option
&= ~OUTPUT_SHOW_EMAIL
;
690 if (!strcmp(var
, "blame.date")) {
692 return config_error_nonbool(var
);
693 parse_date_format(value
, &blame_date_mode
);
696 if (!strcmp(var
, "color.blame.repeatedlines")) {
697 if (color_parse_mem(value
, strlen(value
), repeated_meta_color
))
698 warning(_("invalid color '%s' in color.blame.repeatedLines"),
702 if (!strcmp(var
, "color.blame.highlightrecent")) {
703 parse_color_fields(value
);
707 if (!strcmp(var
, "blame.coloring")) {
708 if (!strcmp(value
, "repeatedLines")) {
709 coloring_mode
|= OUTPUT_COLOR_LINE
;
710 } else if (!strcmp(value
, "highlightRecent")) {
711 coloring_mode
|= OUTPUT_SHOW_AGE_WITH_COLOR
;
712 } else if (!strcmp(value
, "none")) {
713 coloring_mode
&= ~(OUTPUT_COLOR_LINE
|
714 OUTPUT_SHOW_AGE_WITH_COLOR
);
716 warning(_("invalid value for blame.coloring"));
721 if (git_diff_heuristic_config(var
, value
, cb
) < 0)
723 if (userdiff_config(var
, value
) < 0)
726 return git_default_config(var
, value
, cb
);
729 static int blame_copy_callback(const struct option
*option
, const char *arg
, int unset
)
731 int *opt
= option
->value
;
734 * -C enables copy from removed files;
735 * -C -C enables copy from existing files, but only
736 * when blaming a new file;
737 * -C -C -C enables copy from existing files for
740 if (*opt
& PICKAXE_BLAME_COPY_HARDER
)
741 *opt
|= PICKAXE_BLAME_COPY_HARDEST
;
742 if (*opt
& PICKAXE_BLAME_COPY
)
743 *opt
|= PICKAXE_BLAME_COPY_HARDER
;
744 *opt
|= PICKAXE_BLAME_COPY
| PICKAXE_BLAME_MOVE
;
747 blame_copy_score
= parse_score(arg
);
751 static int blame_move_callback(const struct option
*option
, const char *arg
, int unset
)
753 int *opt
= option
->value
;
755 *opt
|= PICKAXE_BLAME_MOVE
;
758 blame_move_score
= parse_score(arg
);
762 static int is_a_rev(const char *name
)
764 struct object_id oid
;
766 if (get_oid(name
, &oid
))
768 return OBJ_NONE
< oid_object_info(the_repository
, &oid
, NULL
);
771 int cmd_blame(int argc
, const char **argv
, const char *prefix
)
773 struct rev_info revs
;
775 struct blame_scoreboard sb
;
776 struct blame_origin
*o
;
777 struct blame_entry
*ent
= NULL
;
778 long dashdash_pos
, lno
;
779 struct progress_info pi
= { NULL
, 0 };
781 struct string_list range_list
= STRING_LIST_INIT_NODUP
;
782 int output_option
= 0, opt
= 0;
784 const char *revs_file
= NULL
;
785 const char *contents_from
= NULL
;
786 const struct option options
[] = {
787 OPT_BOOL(0, "incremental", &incremental
, N_("Show blame entries as we find them, incrementally")),
788 OPT_BOOL('b', NULL
, &blank_boundary
, N_("Show blank SHA-1 for boundary commits (Default: off)")),
789 OPT_BOOL(0, "root", &show_root
, N_("Do not treat root commits as boundaries (Default: off)")),
790 OPT_BOOL(0, "show-stats", &show_stats
, N_("Show work cost statistics")),
791 OPT_BOOL(0, "progress", &show_progress
, N_("Force progress reporting")),
792 OPT_BIT(0, "score-debug", &output_option
, N_("Show output score for blame entries"), OUTPUT_SHOW_SCORE
),
793 OPT_BIT('f', "show-name", &output_option
, N_("Show original filename (Default: auto)"), OUTPUT_SHOW_NAME
),
794 OPT_BIT('n', "show-number", &output_option
, N_("Show original linenumber (Default: off)"), OUTPUT_SHOW_NUMBER
),
795 OPT_BIT('p', "porcelain", &output_option
, N_("Show in a format designed for machine consumption"), OUTPUT_PORCELAIN
),
796 OPT_BIT(0, "line-porcelain", &output_option
, N_("Show porcelain format with per-line commit information"), OUTPUT_PORCELAIN
|OUTPUT_LINE_PORCELAIN
),
797 OPT_BIT('c', NULL
, &output_option
, N_("Use the same output mode as git-annotate (Default: off)"), OUTPUT_ANNOTATE_COMPAT
),
798 OPT_BIT('t', NULL
, &output_option
, N_("Show raw timestamp (Default: off)"), OUTPUT_RAW_TIMESTAMP
),
799 OPT_BIT('l', NULL
, &output_option
, N_("Show long commit SHA1 (Default: off)"), OUTPUT_LONG_OBJECT_NAME
),
800 OPT_BIT('s', NULL
, &output_option
, N_("Suppress author name and timestamp (Default: off)"), OUTPUT_NO_AUTHOR
),
801 OPT_BIT('e', "show-email", &output_option
, N_("Show author email instead of name (Default: off)"), OUTPUT_SHOW_EMAIL
),
802 OPT_BIT('w', NULL
, &xdl_opts
, N_("Ignore whitespace differences"), XDF_IGNORE_WHITESPACE
),
803 OPT_BIT(0, "color-lines", &output_option
, N_("color redundant metadata from previous line differently"), OUTPUT_COLOR_LINE
),
804 OPT_BIT(0, "color-by-age", &output_option
, N_("color lines by age"), OUTPUT_SHOW_AGE_WITH_COLOR
),
807 * The following two options are parsed by parse_revision_opt()
808 * and are only included here to get included in the "-h"
811 { OPTION_LOWLEVEL_CALLBACK
, 0, "indent-heuristic", NULL
, NULL
, N_("Use an experimental heuristic to improve diffs"), PARSE_OPT_NOARG
, parse_opt_unknown_cb
},
813 OPT_BIT(0, "minimal", &xdl_opts
, N_("Spend extra cycles to find better match"), XDF_NEED_MINIMAL
),
814 OPT_STRING('S', NULL
, &revs_file
, N_("file"), N_("Use revisions from <file> instead of calling git-rev-list")),
815 OPT_STRING(0, "contents", &contents_from
, N_("file"), N_("Use <file>'s contents as the final image")),
816 { OPTION_CALLBACK
, 'C', NULL
, &opt
, N_("score"), N_("Find line copies within and across files"), PARSE_OPT_OPTARG
, blame_copy_callback
},
817 { OPTION_CALLBACK
, 'M', NULL
, &opt
, N_("score"), N_("Find line movements within and across files"), PARSE_OPT_OPTARG
, blame_move_callback
},
818 OPT_STRING_LIST('L', NULL
, &range_list
, N_("n,m"), N_("Process only line range n,m, counting from 1")),
819 OPT__ABBREV(&abbrev
),
823 struct parse_opt_ctx_t ctx
;
824 int cmd_is_annotate
= !strcmp(argv
[0], "annotate");
825 struct range_set ranges
;
826 unsigned int range_i
;
829 setup_default_color_by_age();
830 git_config(git_blame_config
, &output_option
);
831 init_revisions(&revs
, NULL
);
832 revs
.date_mode
= blame_date_mode
;
833 revs
.diffopt
.flags
.allow_textconv
= 1;
834 revs
.diffopt
.flags
.follow_renames
= 1;
836 save_commit_buffer
= 0;
840 parse_options_start(&ctx
, argc
, argv
, prefix
, options
,
841 PARSE_OPT_KEEP_DASHDASH
| PARSE_OPT_KEEP_ARGV0
);
843 switch (parse_options_step(&ctx
, options
, blame_opt_usage
)) {
845 case PARSE_OPT_ERROR
:
849 dashdash_pos
= ctx
.cpidx
;
853 if (!strcmp(ctx
.argv
[0], "--reverse")) {
854 ctx
.argv
[0] = "--children";
857 parse_revision_opt(&revs
, &ctx
, options
, blame_opt_usage
);
860 no_whole_file_rename
= !revs
.diffopt
.flags
.follow_renames
;
861 xdl_opts
|= revs
.diffopt
.xdl_opts
& XDF_INDENT_HEURISTIC
;
862 revs
.diffopt
.flags
.follow_renames
= 0;
863 argc
= parse_options_end(&ctx
);
865 if (incremental
|| (output_option
& OUTPUT_PORCELAIN
)) {
866 if (show_progress
> 0)
867 die(_("--progress can't be used with --incremental or porcelain formats"));
869 } else if (show_progress
< 0)
870 show_progress
= isatty(2);
872 if (0 < abbrev
&& abbrev
< GIT_SHA1_HEXSZ
)
873 /* one more abbrev length is needed for the boundary commit */
876 abbrev
= GIT_SHA1_HEXSZ
;
878 if (revs_file
&& read_ancestry(revs_file
))
879 die_errno("reading graft file '%s' failed", revs_file
);
881 if (cmd_is_annotate
) {
882 output_option
|= OUTPUT_ANNOTATE_COMPAT
;
883 blame_date_mode
.type
= DATE_ISO8601
;
885 blame_date_mode
= revs
.date_mode
;
888 /* The maximum width used to show the dates */
889 switch (blame_date_mode
.type
) {
891 blame_date_width
= sizeof("Thu, 19 Oct 2006 16:00:04 -0700");
893 case DATE_ISO8601_STRICT
:
894 blame_date_width
= sizeof("2006-10-19T16:00:04-07:00");
897 blame_date_width
= sizeof("2006-10-19 16:00:04 -0700");
900 blame_date_width
= sizeof("1161298804 -0700");
903 blame_date_width
= sizeof("1161298804");
906 blame_date_width
= sizeof("2006-10-19");
910 * TRANSLATORS: This string is used to tell us the
911 * maximum display width for a relative timestamp in
912 * "git blame" output. For C locale, "4 years, 11
913 * months ago", which takes 22 places, is the longest
914 * among various forms of relative timestamps, but
915 * your language may need more or fewer display
918 blame_date_width
= utf8_strwidth(_("4 years, 11 months ago")) + 1; /* add the null */
921 blame_date_width
= sizeof("Thu Oct 19 16:00:04 2006 -0700");
924 blame_date_width
= strlen(show_date(0, 0, &blame_date_mode
)) + 1; /* add the null */
927 blame_date_width
-= 1; /* strip the null */
929 if (revs
.diffopt
.flags
.find_copies_harder
)
930 opt
|= (PICKAXE_BLAME_COPY
| PICKAXE_BLAME_MOVE
|
931 PICKAXE_BLAME_COPY_HARDER
);
934 * We have collected options unknown to us in argv[1..unk]
935 * which are to be passed to revision machinery if we are
936 * going to do the "bottom" processing.
940 * (1) if dashdash_pos != 0, it is either
941 * "blame [revisions] -- <path>" or
942 * "blame -- <path> <rev>"
944 * (2) otherwise, it is one of the two:
945 * "blame [revisions] <path>"
946 * "blame <path> <rev>"
948 * Note that we must strip out <path> from the arguments: we do not
949 * want the path pruning but we may want "bottom" processing.
952 switch (argc
- dashdash_pos
- 1) {
955 usage_with_options(blame_opt_usage
, options
);
956 /* reorder for the new way: <rev> -- <path> */
962 path
= add_prefix(prefix
, argv
[--argc
]);
966 usage_with_options(blame_opt_usage
, options
);
970 usage_with_options(blame_opt_usage
, options
);
971 if (argc
== 3 && is_a_rev(argv
[argc
- 1])) { /* (2b) */
972 path
= add_prefix(prefix
, argv
[1]);
975 if (argc
== 2 && is_a_rev(argv
[1]) && !get_git_work_tree())
976 die("missing <path> to blame");
977 path
= add_prefix(prefix
, argv
[argc
- 1]);
979 argv
[argc
- 1] = "--";
982 revs
.disable_stdin
= 1;
983 setup_revisions(argc
, argv
, &revs
, NULL
);
985 init_scoreboard(&sb
);
987 sb
.contents_from
= contents_from
;
988 sb
.reverse
= reverse
;
989 setup_scoreboard(&sb
, path
, &o
);
992 if (lno
&& !range_list
.nr
)
993 string_list_append(&range_list
, "1");
996 range_set_init(&ranges
, range_list
.nr
);
997 for (range_i
= 0; range_i
< range_list
.nr
; ++range_i
) {
999 if (parse_range_arg(range_list
.items
[range_i
].string
,
1000 nth_line_cb
, &sb
, lno
, anchor
,
1001 &bottom
, &top
, sb
.path
))
1003 if (lno
< top
|| ((lno
|| bottom
) && lno
< bottom
))
1004 die(Q_("file %s has only %lu line",
1005 "file %s has only %lu lines",
1012 range_set_append_unsafe(&ranges
, bottom
, top
);
1015 sort_and_merge_range_set(&ranges
);
1017 for (range_i
= ranges
.nr
; range_i
> 0; --range_i
) {
1018 const struct range
*r
= &ranges
.ranges
[range_i
- 1];
1019 ent
= blame_entry_prepend(ent
, r
->start
, r
->end
, o
);
1023 prio_queue_put(&sb
.commits
, o
->commit
);
1025 blame_origin_decref(o
);
1027 range_set_release(&ranges
);
1028 string_list_clear(&range_list
, 0);
1033 if (blame_move_score
)
1034 sb
.move_score
= blame_move_score
;
1035 if (blame_copy_score
)
1036 sb
.copy_score
= blame_copy_score
;
1039 sb
.on_sanity_fail
= &sanity_check_on_fail
;
1041 sb
.show_root
= show_root
;
1042 sb
.xdl_opts
= xdl_opts
;
1043 sb
.no_whole_file_rename
= no_whole_file_rename
;
1045 read_mailmap(&mailmap
, NULL
);
1047 sb
.found_guilty_entry
= &found_guilty_entry
;
1048 sb
.found_guilty_entry_data
= &pi
;
1050 pi
.progress
= start_delayed_progress(_("Blaming lines"), sb
.num_lines
);
1052 assign_blame(&sb
, opt
);
1054 stop_progress(&pi
.progress
);
1061 blame_sort_final(&sb
);
1063 blame_coalesce(&sb
);
1065 if (!(output_option
& (OUTPUT_COLOR_LINE
| OUTPUT_SHOW_AGE_WITH_COLOR
)))
1066 output_option
|= coloring_mode
;
1068 if (!(output_option
& OUTPUT_PORCELAIN
)) {
1069 find_alignment(&sb
, &output_option
);
1070 if (!*repeated_meta_color
&&
1071 (output_option
& OUTPUT_COLOR_LINE
))
1072 strcpy(repeated_meta_color
, GIT_COLOR_CYAN
);
1074 if (output_option
& OUTPUT_ANNOTATE_COMPAT
)
1075 output_option
&= ~(OUTPUT_COLOR_LINE
| OUTPUT_SHOW_AGE_WITH_COLOR
);
1077 output(&sb
, output_option
);
1078 free((void *)sb
.final_buf
);
1079 for (ent
= sb
.ent
; ent
; ) {
1080 struct blame_entry
*e
= ent
->next
;
1086 printf("num read blob: %d\n", sb
.num_read_blob
);
1087 printf("num get patch: %d\n", sb
.num_get_patch
);
1088 printf("num commits: %d\n", sb
.num_commits
);