1/* 2 * Pickaxe 3 * 4 * Copyright (c) 2006, Junio C Hamano 5 */ 6 7#include"cache.h" 8#include"builtin.h" 9#include"blob.h" 10#include"commit.h" 11#include"tag.h" 12#include"tree-walk.h" 13#include"diff.h" 14#include"diffcore.h" 15#include"revision.h" 16#include"quote.h" 17#include"xdiff-interface.h" 18#include"cache-tree.h" 19#include"path-list.h" 20#include"mailmap.h" 21 22static char blame_usage[] = 23"git-blame [-c] [-b] [-l] [--root] [-t] [-f] [-n] [-s] [-p] [-w] [-L n,m] [-S <revs-file>] [-M] [-C] [-C] [--contents <filename>] [--incremental] [commit] [--] file\n" 24" -c Use the same output mode as git-annotate (Default: off)\n" 25" -b Show blank SHA-1 for boundary commits (Default: off)\n" 26" -l Show long commit SHA1 (Default: off)\n" 27" --root Do not treat root commits as boundaries (Default: off)\n" 28" -t Show raw timestamp (Default: off)\n" 29" -f, --show-name Show original filename (Default: auto)\n" 30" -n, --show-number Show original linenumber (Default: off)\n" 31" -s Suppress author name and timestamp (Default: off)\n" 32" -p, --porcelain Show in a format designed for machine consumption\n" 33" -w Ignore whitespace differences\n" 34" -L n,m Process only line range n,m, counting from 1\n" 35" -M, -C Find line movements within and across files\n" 36" --incremental Show blame entries as we find them, incrementally\n" 37" --contents file Use <file>'s contents as the final image\n" 38" -S revs-file Use revisions from revs-file instead of calling git-rev-list\n"; 39 40static int longest_file; 41static int longest_author; 42static int max_orig_digits; 43static int max_digits; 44static int max_score_digits; 45static int show_root; 46static int blank_boundary; 47static int incremental; 48static int cmd_is_annotate; 49static int xdl_opts = XDF_NEED_MINIMAL; 50static struct path_list mailmap; 51 52#ifndef DEBUG 53#define DEBUG 0 54#endif 55 56/* stats */ 57static int num_read_blob; 58static int num_get_patch; 59static int num_commits; 60 61#define PICKAXE_BLAME_MOVE 01 62#define PICKAXE_BLAME_COPY 02 63#define PICKAXE_BLAME_COPY_HARDER 04 64#define PICKAXE_BLAME_COPY_HARDEST 010 65 66/* 67 * blame for a blame_entry with score lower than these thresholds 68 * is not passed to the parent using move/copy logic. 69 */ 70static unsigned blame_move_score; 71static unsigned blame_copy_score; 72#define BLAME_DEFAULT_MOVE_SCORE 20 73#define BLAME_DEFAULT_COPY_SCORE 40 74 75/* bits #0..7 in revision.h, #8..11 used for merge_bases() in commit.c */ 76#define METAINFO_SHOWN (1u<<12) 77#define MORE_THAN_ONE_PATH (1u<<13) 78 79/* 80 * One blob in a commit that is being suspected 81 */ 82struct origin { 83int refcnt; 84struct commit *commit; 85 mmfile_t file; 86unsigned char blob_sha1[20]; 87char path[FLEX_ARRAY]; 88}; 89 90/* 91 * Given an origin, prepare mmfile_t structure to be used by the 92 * diff machinery 93 */ 94static char*fill_origin_blob(struct origin *o, mmfile_t *file) 95{ 96if(!o->file.ptr) { 97enum object_type type; 98 num_read_blob++; 99 file->ptr =read_sha1_file(o->blob_sha1, &type, 100(unsigned long*)(&(file->size))); 101if(!file->ptr) 102die("Cannot read blob%sfor path%s", 103sha1_to_hex(o->blob_sha1), 104 o->path); 105 o->file = *file; 106} 107else 108*file = o->file; 109return file->ptr; 110} 111 112/* 113 * Origin is refcounted and usually we keep the blob contents to be 114 * reused. 115 */ 116staticinlinestruct origin *origin_incref(struct origin *o) 117{ 118if(o) 119 o->refcnt++; 120return o; 121} 122 123static voidorigin_decref(struct origin *o) 124{ 125if(o && --o->refcnt <=0) { 126free(o->file.ptr); 127free(o); 128} 129} 130 131static voiddrop_origin_blob(struct origin *o) 132{ 133if(o->file.ptr) { 134free(o->file.ptr); 135 o->file.ptr = NULL; 136} 137} 138 139/* 140 * Each group of lines is described by a blame_entry; it can be split 141 * as we pass blame to the parents. They form a linked list in the 142 * scoreboard structure, sorted by the target line number. 143 */ 144struct blame_entry { 145struct blame_entry *prev; 146struct blame_entry *next; 147 148/* the first line of this group in the final image; 149 * internally all line numbers are 0 based. 150 */ 151int lno; 152 153/* how many lines this group has */ 154int num_lines; 155 156/* the commit that introduced this group into the final image */ 157struct origin *suspect; 158 159/* true if the suspect is truly guilty; false while we have not 160 * checked if the group came from one of its parents. 161 */ 162char guilty; 163 164/* the line number of the first line of this group in the 165 * suspect's file; internally all line numbers are 0 based. 166 */ 167int s_lno; 168 169/* how significant this entry is -- cached to avoid 170 * scanning the lines over and over. 171 */ 172unsigned score; 173}; 174 175/* 176 * The current state of the blame assignment. 177 */ 178struct scoreboard { 179/* the final commit (i.e. where we started digging from) */ 180struct commit *final; 181 182const char*path; 183 184/* 185 * The contents in the final image. 186 * Used by many functions to obtain contents of the nth line, 187 * indexed with scoreboard.lineno[blame_entry.lno]. 188 */ 189const char*final_buf; 190unsigned long final_buf_size; 191 192/* linked list of blames */ 193struct blame_entry *ent; 194 195/* look-up a line in the final buffer */ 196int num_lines; 197int*lineno; 198}; 199 200staticinlineintsame_suspect(struct origin *a,struct origin *b) 201{ 202if(a == b) 203return1; 204if(a->commit != b->commit) 205return0; 206return!strcmp(a->path, b->path); 207} 208 209static voidsanity_check_refcnt(struct scoreboard *); 210 211/* 212 * If two blame entries that are next to each other came from 213 * contiguous lines in the same origin (i.e. <commit, path> pair), 214 * merge them together. 215 */ 216static voidcoalesce(struct scoreboard *sb) 217{ 218struct blame_entry *ent, *next; 219 220for(ent = sb->ent; ent && (next = ent->next); ent = next) { 221if(same_suspect(ent->suspect, next->suspect) && 222 ent->guilty == next->guilty && 223 ent->s_lno + ent->num_lines == next->s_lno) { 224 ent->num_lines += next->num_lines; 225 ent->next = next->next; 226if(ent->next) 227 ent->next->prev = ent; 228origin_decref(next->suspect); 229free(next); 230 ent->score =0; 231 next = ent;/* again */ 232} 233} 234 235if(DEBUG)/* sanity */ 236sanity_check_refcnt(sb); 237} 238 239/* 240 * Given a commit and a path in it, create a new origin structure. 241 * The callers that add blame to the scoreboard should use 242 * get_origin() to obtain shared, refcounted copy instead of calling 243 * this function directly. 244 */ 245static struct origin *make_origin(struct commit *commit,const char*path) 246{ 247struct origin *o; 248 o =xcalloc(1,sizeof(*o) +strlen(path) +1); 249 o->commit = commit; 250 o->refcnt =1; 251strcpy(o->path, path); 252return o; 253} 254 255/* 256 * Locate an existing origin or create a new one. 257 */ 258static struct origin *get_origin(struct scoreboard *sb, 259struct commit *commit, 260const char*path) 261{ 262struct blame_entry *e; 263 264for(e = sb->ent; e; e = e->next) { 265if(e->suspect->commit == commit && 266!strcmp(e->suspect->path, path)) 267returnorigin_incref(e->suspect); 268} 269returnmake_origin(commit, path); 270} 271 272/* 273 * Fill the blob_sha1 field of an origin if it hasn't, so that later 274 * call to fill_origin_blob() can use it to locate the data. blob_sha1 275 * for an origin is also used to pass the blame for the entire file to 276 * the parent to detect the case where a child's blob is identical to 277 * that of its parent's. 278 */ 279static intfill_blob_sha1(struct origin *origin) 280{ 281unsigned mode; 282 283if(!is_null_sha1(origin->blob_sha1)) 284return0; 285if(get_tree_entry(origin->commit->object.sha1, 286 origin->path, 287 origin->blob_sha1, &mode)) 288goto error_out; 289if(sha1_object_info(origin->blob_sha1, NULL) != OBJ_BLOB) 290goto error_out; 291return0; 292 error_out: 293hashclr(origin->blob_sha1); 294return-1; 295} 296 297/* 298 * We have an origin -- check if the same path exists in the 299 * parent and return an origin structure to represent it. 300 */ 301static struct origin *find_origin(struct scoreboard *sb, 302struct commit *parent, 303struct origin *origin) 304{ 305struct origin *porigin = NULL; 306struct diff_options diff_opts; 307const char*paths[2]; 308 309if(parent->util) { 310/* 311 * Each commit object can cache one origin in that 312 * commit. This is a freestanding copy of origin and 313 * not refcounted. 314 */ 315struct origin *cached = parent->util; 316if(!strcmp(cached->path, origin->path)) { 317/* 318 * The same path between origin and its parent 319 * without renaming -- the most common case. 320 */ 321 porigin =get_origin(sb, parent, cached->path); 322 323/* 324 * If the origin was newly created (i.e. get_origin 325 * would call make_origin if none is found in the 326 * scoreboard), it does not know the blob_sha1, 327 * so copy it. Otherwise porigin was in the 328 * scoreboard and already knows blob_sha1. 329 */ 330if(porigin->refcnt ==1) 331hashcpy(porigin->blob_sha1, cached->blob_sha1); 332return porigin; 333} 334/* otherwise it was not very useful; free it */ 335free(parent->util); 336 parent->util = NULL; 337} 338 339/* See if the origin->path is different between parent 340 * and origin first. Most of the time they are the 341 * same and diff-tree is fairly efficient about this. 342 */ 343diff_setup(&diff_opts); 344DIFF_OPT_SET(&diff_opts, RECURSIVE); 345 diff_opts.detect_rename =0; 346 diff_opts.output_format = DIFF_FORMAT_NO_OUTPUT; 347 paths[0] = origin->path; 348 paths[1] = NULL; 349 350diff_tree_setup_paths(paths, &diff_opts); 351if(diff_setup_done(&diff_opts) <0) 352die("diff-setup"); 353 354if(is_null_sha1(origin->commit->object.sha1)) 355do_diff_cache(parent->tree->object.sha1, &diff_opts); 356else 357diff_tree_sha1(parent->tree->object.sha1, 358 origin->commit->tree->object.sha1, 359"", &diff_opts); 360diffcore_std(&diff_opts); 361 362/* It is either one entry that says "modified", or "created", 363 * or nothing. 364 */ 365if(!diff_queued_diff.nr) { 366/* The path is the same as parent */ 367 porigin =get_origin(sb, parent, origin->path); 368hashcpy(porigin->blob_sha1, origin->blob_sha1); 369} 370else if(diff_queued_diff.nr !=1) 371die("internal error in blame::find_origin"); 372else{ 373struct diff_filepair *p = diff_queued_diff.queue[0]; 374switch(p->status) { 375default: 376die("internal error in blame::find_origin (%c)", 377 p->status); 378case'M': 379 porigin =get_origin(sb, parent, origin->path); 380hashcpy(porigin->blob_sha1, p->one->sha1); 381break; 382case'A': 383case'T': 384/* Did not exist in parent, or type changed */ 385break; 386} 387} 388diff_flush(&diff_opts); 389diff_tree_release_paths(&diff_opts); 390if(porigin) { 391/* 392 * Create a freestanding copy that is not part of 393 * the refcounted origin found in the scoreboard, and 394 * cache it in the commit. 395 */ 396struct origin *cached; 397 398 cached =make_origin(porigin->commit, porigin->path); 399hashcpy(cached->blob_sha1, porigin->blob_sha1); 400 parent->util = cached; 401} 402return porigin; 403} 404 405/* 406 * We have an origin -- find the path that corresponds to it in its 407 * parent and return an origin structure to represent it. 408 */ 409static struct origin *find_rename(struct scoreboard *sb, 410struct commit *parent, 411struct origin *origin) 412{ 413struct origin *porigin = NULL; 414struct diff_options diff_opts; 415int i; 416const char*paths[2]; 417 418diff_setup(&diff_opts); 419DIFF_OPT_SET(&diff_opts, RECURSIVE); 420 diff_opts.detect_rename = DIFF_DETECT_RENAME; 421 diff_opts.output_format = DIFF_FORMAT_NO_OUTPUT; 422 diff_opts.single_follow = origin->path; 423 paths[0] = NULL; 424diff_tree_setup_paths(paths, &diff_opts); 425if(diff_setup_done(&diff_opts) <0) 426die("diff-setup"); 427 428if(is_null_sha1(origin->commit->object.sha1)) 429do_diff_cache(parent->tree->object.sha1, &diff_opts); 430else 431diff_tree_sha1(parent->tree->object.sha1, 432 origin->commit->tree->object.sha1, 433"", &diff_opts); 434diffcore_std(&diff_opts); 435 436for(i =0; i < diff_queued_diff.nr; i++) { 437struct diff_filepair *p = diff_queued_diff.queue[i]; 438if((p->status =='R'|| p->status =='C') && 439!strcmp(p->two->path, origin->path)) { 440 porigin =get_origin(sb, parent, p->one->path); 441hashcpy(porigin->blob_sha1, p->one->sha1); 442break; 443} 444} 445diff_flush(&diff_opts); 446diff_tree_release_paths(&diff_opts); 447return porigin; 448} 449 450/* 451 * Parsing of patch chunks... 452 */ 453struct chunk { 454/* line number in postimage; up to but not including this 455 * line is the same as preimage 456 */ 457int same; 458 459/* preimage line number after this chunk */ 460int p_next; 461 462/* postimage line number after this chunk */ 463int t_next; 464}; 465 466struct patch { 467struct chunk *chunks; 468int num; 469}; 470 471struct blame_diff_state { 472struct xdiff_emit_state xm; 473struct patch *ret; 474unsigned hunk_post_context; 475unsigned hunk_in_pre_context :1; 476}; 477 478static voidprocess_u_diff(void*state_,char*line,unsigned long len) 479{ 480struct blame_diff_state *state = state_; 481struct chunk *chunk; 482int off1, off2, len1, len2, num; 483 484 num = state->ret->num; 485if(len <4|| line[0] !='@'|| line[1] !='@') { 486if(state->hunk_in_pre_context && line[0] ==' ') 487 state->ret->chunks[num -1].same++; 488else{ 489 state->hunk_in_pre_context =0; 490if(line[0] ==' ') 491 state->hunk_post_context++; 492else 493 state->hunk_post_context =0; 494} 495return; 496} 497 498if(num && state->hunk_post_context) { 499 chunk = &state->ret->chunks[num -1]; 500 chunk->p_next -= state->hunk_post_context; 501 chunk->t_next -= state->hunk_post_context; 502} 503 state->ret->num = ++num; 504 state->ret->chunks =xrealloc(state->ret->chunks, 505sizeof(struct chunk) * num); 506 chunk = &state->ret->chunks[num -1]; 507if(parse_hunk_header(line, len, &off1, &len1, &off2, &len2)) { 508 state->ret->num--; 509return; 510} 511 512/* Line numbers in patch output are one based. */ 513 off1--; 514 off2--; 515 516 chunk->same = len2 ? off2 : (off2 +1); 517 518 chunk->p_next = off1 + (len1 ? len1 :1); 519 chunk->t_next = chunk->same + len2; 520 state->hunk_in_pre_context =1; 521 state->hunk_post_context =0; 522} 523 524static struct patch *compare_buffer(mmfile_t *file_p, mmfile_t *file_o, 525int context) 526{ 527struct blame_diff_state state; 528 xpparam_t xpp; 529 xdemitconf_t xecfg; 530 xdemitcb_t ecb; 531 532 xpp.flags = xdl_opts; 533memset(&xecfg,0,sizeof(xecfg)); 534 xecfg.ctxlen = context; 535 ecb.outf = xdiff_outf; 536 ecb.priv = &state; 537memset(&state,0,sizeof(state)); 538 state.xm.consume = process_u_diff; 539 state.ret =xmalloc(sizeof(struct patch)); 540 state.ret->chunks = NULL; 541 state.ret->num =0; 542 543xdi_diff(file_p, file_o, &xpp, &xecfg, &ecb); 544 545if(state.ret->num) { 546struct chunk *chunk; 547 chunk = &state.ret->chunks[state.ret->num -1]; 548 chunk->p_next -= state.hunk_post_context; 549 chunk->t_next -= state.hunk_post_context; 550} 551return state.ret; 552} 553 554/* 555 * Run diff between two origins and grab the patch output, so that 556 * we can pass blame for lines origin is currently suspected for 557 * to its parent. 558 */ 559static struct patch *get_patch(struct origin *parent,struct origin *origin) 560{ 561 mmfile_t file_p, file_o; 562struct patch *patch; 563 564fill_origin_blob(parent, &file_p); 565fill_origin_blob(origin, &file_o); 566if(!file_p.ptr || !file_o.ptr) 567return NULL; 568 patch =compare_buffer(&file_p, &file_o,0); 569 num_get_patch++; 570return patch; 571} 572 573static voidfree_patch(struct patch *p) 574{ 575free(p->chunks); 576free(p); 577} 578 579/* 580 * Link in a new blame entry to the scoreboard. Entries that cover the 581 * same line range have been removed from the scoreboard previously. 582 */ 583static voidadd_blame_entry(struct scoreboard *sb,struct blame_entry *e) 584{ 585struct blame_entry *ent, *prev = NULL; 586 587origin_incref(e->suspect); 588 589for(ent = sb->ent; ent && ent->lno < e->lno; ent = ent->next) 590 prev = ent; 591 592/* prev, if not NULL, is the last one that is below e */ 593 e->prev = prev; 594if(prev) { 595 e->next = prev->next; 596 prev->next = e; 597} 598else{ 599 e->next = sb->ent; 600 sb->ent = e; 601} 602if(e->next) 603 e->next->prev = e; 604} 605 606/* 607 * src typically is on-stack; we want to copy the information in it to 608 * a malloced blame_entry that is already on the linked list of the 609 * scoreboard. The origin of dst loses a refcnt while the origin of src 610 * gains one. 611 */ 612static voiddup_entry(struct blame_entry *dst,struct blame_entry *src) 613{ 614struct blame_entry *p, *n; 615 616 p = dst->prev; 617 n = dst->next; 618origin_incref(src->suspect); 619origin_decref(dst->suspect); 620memcpy(dst, src,sizeof(*src)); 621 dst->prev = p; 622 dst->next = n; 623 dst->score =0; 624} 625 626static const char*nth_line(struct scoreboard *sb,int lno) 627{ 628return sb->final_buf + sb->lineno[lno]; 629} 630 631/* 632 * It is known that lines between tlno to same came from parent, and e 633 * has an overlap with that range. it also is known that parent's 634 * line plno corresponds to e's line tlno. 635 * 636 * <---- e -----> 637 * <------> 638 * <------------> 639 * <------------> 640 * <------------------> 641 * 642 * Split e into potentially three parts; before this chunk, the chunk 643 * to be blamed for the parent, and after that portion. 644 */ 645static voidsplit_overlap(struct blame_entry *split, 646struct blame_entry *e, 647int tlno,int plno,int same, 648struct origin *parent) 649{ 650int chunk_end_lno; 651memset(split,0,sizeof(struct blame_entry [3])); 652 653if(e->s_lno < tlno) { 654/* there is a pre-chunk part not blamed on parent */ 655 split[0].suspect =origin_incref(e->suspect); 656 split[0].lno = e->lno; 657 split[0].s_lno = e->s_lno; 658 split[0].num_lines = tlno - e->s_lno; 659 split[1].lno = e->lno + tlno - e->s_lno; 660 split[1].s_lno = plno; 661} 662else{ 663 split[1].lno = e->lno; 664 split[1].s_lno = plno + (e->s_lno - tlno); 665} 666 667if(same < e->s_lno + e->num_lines) { 668/* there is a post-chunk part not blamed on parent */ 669 split[2].suspect =origin_incref(e->suspect); 670 split[2].lno = e->lno + (same - e->s_lno); 671 split[2].s_lno = e->s_lno + (same - e->s_lno); 672 split[2].num_lines = e->s_lno + e->num_lines - same; 673 chunk_end_lno = split[2].lno; 674} 675else 676 chunk_end_lno = e->lno + e->num_lines; 677 split[1].num_lines = chunk_end_lno - split[1].lno; 678 679/* 680 * if it turns out there is nothing to blame the parent for, 681 * forget about the splitting. !split[1].suspect signals this. 682 */ 683if(split[1].num_lines <1) 684return; 685 split[1].suspect =origin_incref(parent); 686} 687 688/* 689 * split_overlap() divided an existing blame e into up to three parts 690 * in split. Adjust the linked list of blames in the scoreboard to 691 * reflect the split. 692 */ 693static voidsplit_blame(struct scoreboard *sb, 694struct blame_entry *split, 695struct blame_entry *e) 696{ 697struct blame_entry *new_entry; 698 699if(split[0].suspect && split[2].suspect) { 700/* The first part (reuse storage for the existing entry e) */ 701dup_entry(e, &split[0]); 702 703/* The last part -- me */ 704 new_entry =xmalloc(sizeof(*new_entry)); 705memcpy(new_entry, &(split[2]),sizeof(struct blame_entry)); 706add_blame_entry(sb, new_entry); 707 708/* ... and the middle part -- parent */ 709 new_entry =xmalloc(sizeof(*new_entry)); 710memcpy(new_entry, &(split[1]),sizeof(struct blame_entry)); 711add_blame_entry(sb, new_entry); 712} 713else if(!split[0].suspect && !split[2].suspect) 714/* 715 * The parent covers the entire area; reuse storage for 716 * e and replace it with the parent. 717 */ 718dup_entry(e, &split[1]); 719else if(split[0].suspect) { 720/* me and then parent */ 721dup_entry(e, &split[0]); 722 723 new_entry =xmalloc(sizeof(*new_entry)); 724memcpy(new_entry, &(split[1]),sizeof(struct blame_entry)); 725add_blame_entry(sb, new_entry); 726} 727else{ 728/* parent and then me */ 729dup_entry(e, &split[1]); 730 731 new_entry =xmalloc(sizeof(*new_entry)); 732memcpy(new_entry, &(split[2]),sizeof(struct blame_entry)); 733add_blame_entry(sb, new_entry); 734} 735 736if(DEBUG) {/* sanity */ 737struct blame_entry *ent; 738int lno = sb->ent->lno, corrupt =0; 739 740for(ent = sb->ent; ent; ent = ent->next) { 741if(lno != ent->lno) 742 corrupt =1; 743if(ent->s_lno <0) 744 corrupt =1; 745 lno += ent->num_lines; 746} 747if(corrupt) { 748 lno = sb->ent->lno; 749for(ent = sb->ent; ent; ent = ent->next) { 750printf("L%8d l%8d n%8d\n", 751 lno, ent->lno, ent->num_lines); 752 lno = ent->lno + ent->num_lines; 753} 754die("oops"); 755} 756} 757} 758 759/* 760 * After splitting the blame, the origins used by the 761 * on-stack blame_entry should lose one refcnt each. 762 */ 763static voiddecref_split(struct blame_entry *split) 764{ 765int i; 766 767for(i =0; i <3; i++) 768origin_decref(split[i].suspect); 769} 770 771/* 772 * Helper for blame_chunk(). blame_entry e is known to overlap with 773 * the patch hunk; split it and pass blame to the parent. 774 */ 775static voidblame_overlap(struct scoreboard *sb,struct blame_entry *e, 776int tlno,int plno,int same, 777struct origin *parent) 778{ 779struct blame_entry split[3]; 780 781split_overlap(split, e, tlno, plno, same, parent); 782if(split[1].suspect) 783split_blame(sb, split, e); 784decref_split(split); 785} 786 787/* 788 * Find the line number of the last line the target is suspected for. 789 */ 790static intfind_last_in_target(struct scoreboard *sb,struct origin *target) 791{ 792struct blame_entry *e; 793int last_in_target = -1; 794 795for(e = sb->ent; e; e = e->next) { 796if(e->guilty || !same_suspect(e->suspect, target)) 797continue; 798if(last_in_target < e->s_lno + e->num_lines) 799 last_in_target = e->s_lno + e->num_lines; 800} 801return last_in_target; 802} 803 804/* 805 * Process one hunk from the patch between the current suspect for 806 * blame_entry e and its parent. Find and split the overlap, and 807 * pass blame to the overlapping part to the parent. 808 */ 809static voidblame_chunk(struct scoreboard *sb, 810int tlno,int plno,int same, 811struct origin *target,struct origin *parent) 812{ 813struct blame_entry *e; 814 815for(e = sb->ent; e; e = e->next) { 816if(e->guilty || !same_suspect(e->suspect, target)) 817continue; 818if(same <= e->s_lno) 819continue; 820if(tlno < e->s_lno + e->num_lines) 821blame_overlap(sb, e, tlno, plno, same, parent); 822} 823} 824 825/* 826 * We are looking at the origin 'target' and aiming to pass blame 827 * for the lines it is suspected to its parent. Run diff to find 828 * which lines came from parent and pass blame for them. 829 */ 830static intpass_blame_to_parent(struct scoreboard *sb, 831struct origin *target, 832struct origin *parent) 833{ 834int i, last_in_target, plno, tlno; 835struct patch *patch; 836 837 last_in_target =find_last_in_target(sb, target); 838if(last_in_target <0) 839return1;/* nothing remains for this target */ 840 841 patch =get_patch(parent, target); 842 plno = tlno =0; 843for(i =0; i < patch->num; i++) { 844struct chunk *chunk = &patch->chunks[i]; 845 846blame_chunk(sb, tlno, plno, chunk->same, target, parent); 847 plno = chunk->p_next; 848 tlno = chunk->t_next; 849} 850/* The rest (i.e. anything after tlno) are the same as the parent */ 851blame_chunk(sb, tlno, plno, last_in_target, target, parent); 852 853free_patch(patch); 854return0; 855} 856 857/* 858 * The lines in blame_entry after splitting blames many times can become 859 * very small and trivial, and at some point it becomes pointless to 860 * blame the parents. E.g. "\t\t}\n\t}\n\n" appears everywhere in any 861 * ordinary C program, and it is not worth to say it was copied from 862 * totally unrelated file in the parent. 863 * 864 * Compute how trivial the lines in the blame_entry are. 865 */ 866static unsignedent_score(struct scoreboard *sb,struct blame_entry *e) 867{ 868unsigned score; 869const char*cp, *ep; 870 871if(e->score) 872return e->score; 873 874 score =1; 875 cp =nth_line(sb, e->lno); 876 ep =nth_line(sb, e->lno + e->num_lines); 877while(cp < ep) { 878unsigned ch = *((unsigned char*)cp); 879if(isalnum(ch)) 880 score++; 881 cp++; 882} 883 e->score = score; 884return score; 885} 886 887/* 888 * best_so_far[] and this[] are both a split of an existing blame_entry 889 * that passes blame to the parent. Maintain best_so_far the best split 890 * so far, by comparing this and best_so_far and copying this into 891 * bst_so_far as needed. 892 */ 893static voidcopy_split_if_better(struct scoreboard *sb, 894struct blame_entry *best_so_far, 895struct blame_entry *this) 896{ 897int i; 898 899if(!this[1].suspect) 900return; 901if(best_so_far[1].suspect) { 902if(ent_score(sb, &this[1]) <ent_score(sb, &best_so_far[1])) 903return; 904} 905 906for(i =0; i <3; i++) 907origin_incref(this[i].suspect); 908decref_split(best_so_far); 909memcpy(best_so_far,this,sizeof(struct blame_entry [3])); 910} 911 912/* 913 * We are looking at a part of the final image represented by 914 * ent (tlno and same are offset by ent->s_lno). 915 * tlno is where we are looking at in the final image. 916 * up to (but not including) same match preimage. 917 * plno is where we are looking at in the preimage. 918 * 919 * <-------------- final image ----------------------> 920 * <------ent------> 921 * ^tlno ^same 922 * <---------preimage-----> 923 * ^plno 924 * 925 * All line numbers are 0-based. 926 */ 927static voidhandle_split(struct scoreboard *sb, 928struct blame_entry *ent, 929int tlno,int plno,int same, 930struct origin *parent, 931struct blame_entry *split) 932{ 933if(ent->num_lines <= tlno) 934return; 935if(tlno < same) { 936struct blame_entry this[3]; 937 tlno += ent->s_lno; 938 same += ent->s_lno; 939split_overlap(this, ent, tlno, plno, same, parent); 940copy_split_if_better(sb, split,this); 941decref_split(this); 942} 943} 944 945/* 946 * Find the lines from parent that are the same as ent so that 947 * we can pass blames to it. file_p has the blob contents for 948 * the parent. 949 */ 950static voidfind_copy_in_blob(struct scoreboard *sb, 951struct blame_entry *ent, 952struct origin *parent, 953struct blame_entry *split, 954 mmfile_t *file_p) 955{ 956const char*cp; 957int cnt; 958 mmfile_t file_o; 959struct patch *patch; 960int i, plno, tlno; 961 962/* 963 * Prepare mmfile that contains only the lines in ent. 964 */ 965 cp =nth_line(sb, ent->lno); 966 file_o.ptr = (char*) cp; 967 cnt = ent->num_lines; 968 969while(cnt && cp < sb->final_buf + sb->final_buf_size) { 970if(*cp++ =='\n') 971 cnt--; 972} 973 file_o.size = cp - file_o.ptr; 974 975 patch =compare_buffer(file_p, &file_o,1); 976 977/* 978 * file_o is a part of final image we are annotating. 979 * file_p partially may match that image. 980 */ 981memset(split,0,sizeof(struct blame_entry [3])); 982 plno = tlno =0; 983for(i =0; i < patch->num; i++) { 984struct chunk *chunk = &patch->chunks[i]; 985 986handle_split(sb, ent, tlno, plno, chunk->same, parent, split); 987 plno = chunk->p_next; 988 tlno = chunk->t_next; 989} 990/* remainder, if any, all match the preimage */ 991handle_split(sb, ent, tlno, plno, ent->num_lines, parent, split); 992free_patch(patch); 993} 994 995/* 996 * See if lines currently target is suspected for can be attributed to 997 * parent. 998 */ 999static intfind_move_in_parent(struct scoreboard *sb,1000struct origin *target,1001struct origin *parent)1002{1003int last_in_target, made_progress;1004struct blame_entry *e, split[3];1005 mmfile_t file_p;10061007 last_in_target =find_last_in_target(sb, target);1008if(last_in_target <0)1009return1;/* nothing remains for this target */10101011fill_origin_blob(parent, &file_p);1012if(!file_p.ptr)1013return0;10141015 made_progress =1;1016while(made_progress) {1017 made_progress =0;1018for(e = sb->ent; e; e = e->next) {1019if(e->guilty || !same_suspect(e->suspect, target))1020continue;1021find_copy_in_blob(sb, e, parent, split, &file_p);1022if(split[1].suspect &&1023 blame_move_score <ent_score(sb, &split[1])) {1024split_blame(sb, split, e);1025 made_progress =1;1026}1027decref_split(split);1028}1029}1030return0;1031}10321033struct blame_list {1034struct blame_entry *ent;1035struct blame_entry split[3];1036};10371038/*1039 * Count the number of entries the target is suspected for,1040 * and prepare a list of entry and the best split.1041 */1042static struct blame_list *setup_blame_list(struct scoreboard *sb,1043struct origin *target,1044int*num_ents_p)1045{1046struct blame_entry *e;1047int num_ents, i;1048struct blame_list *blame_list = NULL;10491050for(e = sb->ent, num_ents =0; e; e = e->next)1051if(!e->guilty &&same_suspect(e->suspect, target))1052 num_ents++;1053if(num_ents) {1054 blame_list =xcalloc(num_ents,sizeof(struct blame_list));1055for(e = sb->ent, i =0; e; e = e->next)1056if(!e->guilty &&same_suspect(e->suspect, target))1057 blame_list[i++].ent = e;1058}1059*num_ents_p = num_ents;1060return blame_list;1061}10621063/*1064 * For lines target is suspected for, see if we can find code movement1065 * across file boundary from the parent commit. porigin is the path1066 * in the parent we already tried.1067 */1068static intfind_copy_in_parent(struct scoreboard *sb,1069struct origin *target,1070struct commit *parent,1071struct origin *porigin,1072int opt)1073{1074struct diff_options diff_opts;1075const char*paths[1];1076int i, j;1077int retval;1078struct blame_list *blame_list;1079int num_ents;10801081 blame_list =setup_blame_list(sb, target, &num_ents);1082if(!blame_list)1083return1;/* nothing remains for this target */10841085diff_setup(&diff_opts);1086DIFF_OPT_SET(&diff_opts, RECURSIVE);1087 diff_opts.output_format = DIFF_FORMAT_NO_OUTPUT;10881089 paths[0] = NULL;1090diff_tree_setup_paths(paths, &diff_opts);1091if(diff_setup_done(&diff_opts) <0)1092die("diff-setup");10931094/* Try "find copies harder" on new path if requested;1095 * we do not want to use diffcore_rename() actually to1096 * match things up; find_copies_harder is set only to1097 * force diff_tree_sha1() to feed all filepairs to diff_queue,1098 * and this code needs to be after diff_setup_done(), which1099 * usually makes find-copies-harder imply copy detection.1100 */1101if((opt & PICKAXE_BLAME_COPY_HARDEST)1102|| ((opt & PICKAXE_BLAME_COPY_HARDER)1103&& (!porigin ||strcmp(target->path, porigin->path))))1104DIFF_OPT_SET(&diff_opts, FIND_COPIES_HARDER);11051106if(is_null_sha1(target->commit->object.sha1))1107do_diff_cache(parent->tree->object.sha1, &diff_opts);1108else1109diff_tree_sha1(parent->tree->object.sha1,1110 target->commit->tree->object.sha1,1111"", &diff_opts);11121113if(!DIFF_OPT_TST(&diff_opts, FIND_COPIES_HARDER))1114diffcore_std(&diff_opts);11151116 retval =0;1117while(1) {1118int made_progress =0;11191120for(i =0; i < diff_queued_diff.nr; i++) {1121struct diff_filepair *p = diff_queued_diff.queue[i];1122struct origin *norigin;1123 mmfile_t file_p;1124struct blame_entry this[3];11251126if(!DIFF_FILE_VALID(p->one))1127continue;/* does not exist in parent */1128if(porigin && !strcmp(p->one->path, porigin->path))1129/* find_move already dealt with this path */1130continue;11311132 norigin =get_origin(sb, parent, p->one->path);1133hashcpy(norigin->blob_sha1, p->one->sha1);1134fill_origin_blob(norigin, &file_p);1135if(!file_p.ptr)1136continue;11371138for(j =0; j < num_ents; j++) {1139find_copy_in_blob(sb, blame_list[j].ent,1140 norigin,this, &file_p);1141copy_split_if_better(sb, blame_list[j].split,1142this);1143decref_split(this);1144}1145origin_decref(norigin);1146}11471148for(j =0; j < num_ents; j++) {1149struct blame_entry *split = blame_list[j].split;1150if(split[1].suspect &&1151 blame_copy_score <ent_score(sb, &split[1])) {1152split_blame(sb, split, blame_list[j].ent);1153 made_progress =1;1154}1155decref_split(split);1156}1157free(blame_list);11581159if(!made_progress)1160break;1161 blame_list =setup_blame_list(sb, target, &num_ents);1162if(!blame_list) {1163 retval =1;1164break;1165}1166}1167diff_flush(&diff_opts);1168diff_tree_release_paths(&diff_opts);1169return retval;1170}11711172/*1173 * The blobs of origin and porigin exactly match, so everything1174 * origin is suspected for can be blamed on the parent.1175 */1176static voidpass_whole_blame(struct scoreboard *sb,1177struct origin *origin,struct origin *porigin)1178{1179struct blame_entry *e;11801181if(!porigin->file.ptr && origin->file.ptr) {1182/* Steal its file */1183 porigin->file = origin->file;1184 origin->file.ptr = NULL;1185}1186for(e = sb->ent; e; e = e->next) {1187if(!same_suspect(e->suspect, origin))1188continue;1189origin_incref(porigin);1190origin_decref(e->suspect);1191 e->suspect = porigin;1192}1193}11941195#define MAXPARENT 1611961197static voidpass_blame(struct scoreboard *sb,struct origin *origin,int opt)1198{1199int i, pass;1200struct commit *commit = origin->commit;1201struct commit_list *parent;1202struct origin *parent_origin[MAXPARENT], *porigin;12031204memset(parent_origin,0,sizeof(parent_origin));12051206/* The first pass looks for unrenamed path to optimize for1207 * common cases, then we look for renames in the second pass.1208 */1209for(pass =0; pass <2; pass++) {1210struct origin *(*find)(struct scoreboard *,1211struct commit *,struct origin *);1212 find = pass ? find_rename : find_origin;12131214for(i =0, parent = commit->parents;1215 i < MAXPARENT && parent;1216 parent = parent->next, i++) {1217struct commit *p = parent->item;1218int j, same;12191220if(parent_origin[i])1221continue;1222if(parse_commit(p))1223continue;1224 porigin =find(sb, p, origin);1225if(!porigin)1226continue;1227if(!hashcmp(porigin->blob_sha1, origin->blob_sha1)) {1228pass_whole_blame(sb, origin, porigin);1229origin_decref(porigin);1230goto finish;1231}1232for(j = same =0; j < i; j++)1233if(parent_origin[j] &&1234!hashcmp(parent_origin[j]->blob_sha1,1235 porigin->blob_sha1)) {1236 same =1;1237break;1238}1239if(!same)1240 parent_origin[i] = porigin;1241else1242origin_decref(porigin);1243}1244}12451246 num_commits++;1247for(i =0, parent = commit->parents;1248 i < MAXPARENT && parent;1249 parent = parent->next, i++) {1250struct origin *porigin = parent_origin[i];1251if(!porigin)1252continue;1253if(pass_blame_to_parent(sb, origin, porigin))1254goto finish;1255}12561257/*1258 * Optionally find moves in parents' files.1259 */1260if(opt & PICKAXE_BLAME_MOVE)1261for(i =0, parent = commit->parents;1262 i < MAXPARENT && parent;1263 parent = parent->next, i++) {1264struct origin *porigin = parent_origin[i];1265if(!porigin)1266continue;1267if(find_move_in_parent(sb, origin, porigin))1268goto finish;1269}12701271/*1272 * Optionally find copies from parents' files.1273 */1274if(opt & PICKAXE_BLAME_COPY)1275for(i =0, parent = commit->parents;1276 i < MAXPARENT && parent;1277 parent = parent->next, i++) {1278struct origin *porigin = parent_origin[i];1279if(find_copy_in_parent(sb, origin, parent->item,1280 porigin, opt))1281goto finish;1282}12831284 finish:1285for(i =0; i < MAXPARENT; i++) {1286if(parent_origin[i]) {1287drop_origin_blob(parent_origin[i]);1288origin_decref(parent_origin[i]);1289}1290}1291drop_origin_blob(origin);1292}12931294/*1295 * Information on commits, used for output.1296 */1297struct commit_info1298{1299const char*author;1300const char*author_mail;1301unsigned long author_time;1302const char*author_tz;13031304/* filled only when asked for details */1305const char*committer;1306const char*committer_mail;1307unsigned long committer_time;1308const char*committer_tz;13091310const char*summary;1311};13121313/*1314 * Parse author/committer line in the commit object buffer1315 */1316static voidget_ac_line(const char*inbuf,const char*what,1317int bufsz,char*person,const char**mail,1318unsigned long*time,const char**tz)1319{1320int len, tzlen, maillen;1321char*tmp, *endp, *timepos;13221323 tmp =strstr(inbuf, what);1324if(!tmp)1325goto error_out;1326 tmp +=strlen(what);1327 endp =strchr(tmp,'\n');1328if(!endp)1329 len =strlen(tmp);1330else1331 len = endp - tmp;1332if(bufsz <= len) {1333 error_out:1334/* Ugh */1335*mail = *tz ="(unknown)";1336*time =0;1337return;1338}1339memcpy(person, tmp, len);13401341 tmp = person;1342 tmp += len;1343*tmp =0;1344while(*tmp !=' ')1345 tmp--;1346*tz = tmp+1;1347 tzlen = (person+len)-(tmp+1);13481349*tmp =0;1350while(*tmp !=' ')1351 tmp--;1352*time =strtoul(tmp, NULL,10);1353 timepos = tmp;13541355*tmp =0;1356while(*tmp !=' ')1357 tmp--;1358*mail = tmp +1;1359*tmp =0;1360 maillen = timepos - tmp;13611362if(!mailmap.nr)1363return;13641365/*1366 * mailmap expansion may make the name longer.1367 * make room by pushing stuff down.1368 */1369 tmp = person + bufsz - (tzlen +1);1370memmove(tmp, *tz, tzlen);1371 tmp[tzlen] =0;1372*tz = tmp;13731374 tmp = tmp - (maillen +1);1375memmove(tmp, *mail, maillen);1376 tmp[maillen] =0;1377*mail = tmp;13781379/*1380 * Now, convert e-mail using mailmap1381 */1382map_email(&mailmap, tmp +1, person, tmp-person-1);1383}13841385static voidget_commit_info(struct commit *commit,1386struct commit_info *ret,1387int detailed)1388{1389int len;1390char*tmp, *endp;1391static char author_buf[1024];1392static char committer_buf[1024];1393static char summary_buf[1024];13941395/*1396 * We've operated without save_commit_buffer, so1397 * we now need to populate them for output.1398 */1399if(!commit->buffer) {1400enum object_type type;1401unsigned long size;1402 commit->buffer =1403read_sha1_file(commit->object.sha1, &type, &size);1404if(!commit->buffer)1405die("Cannot read commit%s",1406sha1_to_hex(commit->object.sha1));1407}1408 ret->author = author_buf;1409get_ac_line(commit->buffer,"\nauthor ",1410sizeof(author_buf), author_buf, &ret->author_mail,1411&ret->author_time, &ret->author_tz);14121413if(!detailed)1414return;14151416 ret->committer = committer_buf;1417get_ac_line(commit->buffer,"\ncommitter ",1418sizeof(committer_buf), committer_buf, &ret->committer_mail,1419&ret->committer_time, &ret->committer_tz);14201421 ret->summary = summary_buf;1422 tmp =strstr(commit->buffer,"\n\n");1423if(!tmp) {1424 error_out:1425sprintf(summary_buf,"(%s)",sha1_to_hex(commit->object.sha1));1426return;1427}1428 tmp +=2;1429 endp =strchr(tmp,'\n');1430if(!endp)1431 endp = tmp +strlen(tmp);1432 len = endp - tmp;1433if(len >=sizeof(summary_buf) || len ==0)1434goto error_out;1435memcpy(summary_buf, tmp, len);1436 summary_buf[len] =0;1437}14381439/*1440 * To allow LF and other nonportable characters in pathnames,1441 * they are c-style quoted as needed.1442 */1443static voidwrite_filename_info(const char*path)1444{1445printf("filename ");1446write_name_quoted(path, stdout,'\n');1447}14481449/*1450 * The blame_entry is found to be guilty for the range. Mark it1451 * as such, and show it in incremental output.1452 */1453static voidfound_guilty_entry(struct blame_entry *ent)1454{1455if(ent->guilty)1456return;1457 ent->guilty =1;1458if(incremental) {1459struct origin *suspect = ent->suspect;14601461printf("%s %d %d %d\n",1462sha1_to_hex(suspect->commit->object.sha1),1463 ent->s_lno +1, ent->lno +1, ent->num_lines);1464if(!(suspect->commit->object.flags & METAINFO_SHOWN)) {1465struct commit_info ci;1466 suspect->commit->object.flags |= METAINFO_SHOWN;1467get_commit_info(suspect->commit, &ci,1);1468printf("author%s\n", ci.author);1469printf("author-mail%s\n", ci.author_mail);1470printf("author-time%lu\n", ci.author_time);1471printf("author-tz%s\n", ci.author_tz);1472printf("committer%s\n", ci.committer);1473printf("committer-mail%s\n", ci.committer_mail);1474printf("committer-time%lu\n", ci.committer_time);1475printf("committer-tz%s\n", ci.committer_tz);1476printf("summary%s\n", ci.summary);1477if(suspect->commit->object.flags & UNINTERESTING)1478printf("boundary\n");1479}1480write_filename_info(suspect->path);1481maybe_flush_or_die(stdout,"stdout");1482}1483}14841485/*1486 * The main loop -- while the scoreboard has lines whose true origin1487 * is still unknown, pick one blame_entry, and allow its current1488 * suspect to pass blames to its parents.1489 */1490static voidassign_blame(struct scoreboard *sb,struct rev_info *revs,int opt)1491{1492while(1) {1493struct blame_entry *ent;1494struct commit *commit;1495struct origin *suspect = NULL;14961497/* find one suspect to break down */1498for(ent = sb->ent; !suspect && ent; ent = ent->next)1499if(!ent->guilty)1500 suspect = ent->suspect;1501if(!suspect)1502return;/* all done */15031504/*1505 * We will use this suspect later in the loop,1506 * so hold onto it in the meantime.1507 */1508origin_incref(suspect);1509 commit = suspect->commit;1510if(!commit->object.parsed)1511parse_commit(commit);1512if(!(commit->object.flags & UNINTERESTING) &&1513!(revs->max_age != -1&& commit->date < revs->max_age))1514pass_blame(sb, suspect, opt);1515else{1516 commit->object.flags |= UNINTERESTING;1517if(commit->object.parsed)1518mark_parents_uninteresting(commit);1519}1520/* treat root commit as boundary */1521if(!commit->parents && !show_root)1522 commit->object.flags |= UNINTERESTING;15231524/* Take responsibility for the remaining entries */1525for(ent = sb->ent; ent; ent = ent->next)1526if(same_suspect(ent->suspect, suspect))1527found_guilty_entry(ent);1528origin_decref(suspect);15291530if(DEBUG)/* sanity */1531sanity_check_refcnt(sb);1532}1533}15341535static const char*format_time(unsigned long time,const char*tz_str,1536int show_raw_time)1537{1538static char time_buf[128];1539time_t t = time;1540int minutes, tz;1541struct tm *tm;15421543if(show_raw_time) {1544sprintf(time_buf,"%lu%s", time, tz_str);1545return time_buf;1546}15471548 tz =atoi(tz_str);1549 minutes = tz <0? -tz : tz;1550 minutes = (minutes /100)*60+ (minutes %100);1551 minutes = tz <0? -minutes : minutes;1552 t = time + minutes *60;1553 tm =gmtime(&t);15541555strftime(time_buf,sizeof(time_buf),"%Y-%m-%d %H:%M:%S", tm);1556strcat(time_buf, tz_str);1557return time_buf;1558}15591560#define OUTPUT_ANNOTATE_COMPAT 0011561#define OUTPUT_LONG_OBJECT_NAME 0021562#define OUTPUT_RAW_TIMESTAMP 0041563#define OUTPUT_PORCELAIN 0101564#define OUTPUT_SHOW_NAME 0201565#define OUTPUT_SHOW_NUMBER 0401566#define OUTPUT_SHOW_SCORE 01001567#define OUTPUT_NO_AUTHOR 020015681569static voidemit_porcelain(struct scoreboard *sb,struct blame_entry *ent)1570{1571int cnt;1572const char*cp;1573struct origin *suspect = ent->suspect;1574char hex[41];15751576strcpy(hex,sha1_to_hex(suspect->commit->object.sha1));1577printf("%s%c%d %d %d\n",1578 hex,1579 ent->guilty ?' ':'*',// purely for debugging1580 ent->s_lno +1,1581 ent->lno +1,1582 ent->num_lines);1583if(!(suspect->commit->object.flags & METAINFO_SHOWN)) {1584struct commit_info ci;1585 suspect->commit->object.flags |= METAINFO_SHOWN;1586get_commit_info(suspect->commit, &ci,1);1587printf("author%s\n", ci.author);1588printf("author-mail%s\n", ci.author_mail);1589printf("author-time%lu\n", ci.author_time);1590printf("author-tz%s\n", ci.author_tz);1591printf("committer%s\n", ci.committer);1592printf("committer-mail%s\n", ci.committer_mail);1593printf("committer-time%lu\n", ci.committer_time);1594printf("committer-tz%s\n", ci.committer_tz);1595write_filename_info(suspect->path);1596printf("summary%s\n", ci.summary);1597if(suspect->commit->object.flags & UNINTERESTING)1598printf("boundary\n");1599}1600else if(suspect->commit->object.flags & MORE_THAN_ONE_PATH)1601write_filename_info(suspect->path);16021603 cp =nth_line(sb, ent->lno);1604for(cnt =0; cnt < ent->num_lines; cnt++) {1605char ch;1606if(cnt)1607printf("%s %d %d\n", hex,1608 ent->s_lno +1+ cnt,1609 ent->lno +1+ cnt);1610putchar('\t');1611do{1612 ch = *cp++;1613putchar(ch);1614}while(ch !='\n'&&1615 cp < sb->final_buf + sb->final_buf_size);1616}1617}16181619static voidemit_other(struct scoreboard *sb,struct blame_entry *ent,int opt)1620{1621int cnt;1622const char*cp;1623struct origin *suspect = ent->suspect;1624struct commit_info ci;1625char hex[41];1626int show_raw_time = !!(opt & OUTPUT_RAW_TIMESTAMP);16271628get_commit_info(suspect->commit, &ci,1);1629strcpy(hex,sha1_to_hex(suspect->commit->object.sha1));16301631 cp =nth_line(sb, ent->lno);1632for(cnt =0; cnt < ent->num_lines; cnt++) {1633char ch;1634int length = (opt & OUTPUT_LONG_OBJECT_NAME) ?40:8;16351636if(suspect->commit->object.flags & UNINTERESTING) {1637if(blank_boundary)1638memset(hex,' ', length);1639else if(!cmd_is_annotate) {1640 length--;1641putchar('^');1642}1643}16441645printf("%.*s", length, hex);1646if(opt & OUTPUT_ANNOTATE_COMPAT)1647printf("\t(%10s\t%10s\t%d)", ci.author,1648format_time(ci.author_time, ci.author_tz,1649 show_raw_time),1650 ent->lno +1+ cnt);1651else{1652if(opt & OUTPUT_SHOW_SCORE)1653printf(" %*d%02d",1654 max_score_digits, ent->score,1655 ent->suspect->refcnt);1656if(opt & OUTPUT_SHOW_NAME)1657printf(" %-*.*s", longest_file, longest_file,1658 suspect->path);1659if(opt & OUTPUT_SHOW_NUMBER)1660printf(" %*d", max_orig_digits,1661 ent->s_lno +1+ cnt);16621663if(!(opt & OUTPUT_NO_AUTHOR))1664printf(" (%-*.*s%10s",1665 longest_author, longest_author,1666 ci.author,1667format_time(ci.author_time,1668 ci.author_tz,1669 show_raw_time));1670printf(" %*d) ",1671 max_digits, ent->lno +1+ cnt);1672}1673do{1674 ch = *cp++;1675putchar(ch);1676}while(ch !='\n'&&1677 cp < sb->final_buf + sb->final_buf_size);1678}1679}16801681static voidoutput(struct scoreboard *sb,int option)1682{1683struct blame_entry *ent;16841685if(option & OUTPUT_PORCELAIN) {1686for(ent = sb->ent; ent; ent = ent->next) {1687struct blame_entry *oth;1688struct origin *suspect = ent->suspect;1689struct commit *commit = suspect->commit;1690if(commit->object.flags & MORE_THAN_ONE_PATH)1691continue;1692for(oth = ent->next; oth; oth = oth->next) {1693if((oth->suspect->commit != commit) ||1694!strcmp(oth->suspect->path, suspect->path))1695continue;1696 commit->object.flags |= MORE_THAN_ONE_PATH;1697break;1698}1699}1700}17011702for(ent = sb->ent; ent; ent = ent->next) {1703if(option & OUTPUT_PORCELAIN)1704emit_porcelain(sb, ent);1705else{1706emit_other(sb, ent, option);1707}1708}1709}17101711/*1712 * To allow quick access to the contents of nth line in the1713 * final image, prepare an index in the scoreboard.1714 */1715static intprepare_lines(struct scoreboard *sb)1716{1717const char*buf = sb->final_buf;1718unsigned long len = sb->final_buf_size;1719int num =0, incomplete =0, bol =1;17201721if(len && buf[len-1] !='\n')1722 incomplete++;/* incomplete line at the end */1723while(len--) {1724if(bol) {1725 sb->lineno =xrealloc(sb->lineno,1726sizeof(int* ) * (num +1));1727 sb->lineno[num] = buf - sb->final_buf;1728 bol =0;1729}1730if(*buf++ =='\n') {1731 num++;1732 bol =1;1733}1734}1735 sb->lineno =xrealloc(sb->lineno,1736sizeof(int* ) * (num + incomplete +1));1737 sb->lineno[num + incomplete] = buf - sb->final_buf;1738 sb->num_lines = num + incomplete;1739return sb->num_lines;1740}17411742/*1743 * Add phony grafts for use with -S; this is primarily to1744 * support git-cvsserver that wants to give a linear history1745 * to its clients.1746 */1747static intread_ancestry(const char*graft_file)1748{1749FILE*fp =fopen(graft_file,"r");1750char buf[1024];1751if(!fp)1752return-1;1753while(fgets(buf,sizeof(buf), fp)) {1754/* The format is just "Commit Parent1 Parent2 ...\n" */1755int len =strlen(buf);1756struct commit_graft *graft =read_graft_line(buf, len);1757if(graft)1758register_commit_graft(graft,0);1759}1760fclose(fp);1761return0;1762}17631764/*1765 * How many columns do we need to show line numbers in decimal?1766 */1767static intlineno_width(int lines)1768{1769int i, width;17701771for(width =1, i =10; i <= lines +1; width++)1772 i *=10;1773return width;1774}17751776/*1777 * How many columns do we need to show line numbers, authors,1778 * and filenames?1779 */1780static voidfind_alignment(struct scoreboard *sb,int*option)1781{1782int longest_src_lines =0;1783int longest_dst_lines =0;1784unsigned largest_score =0;1785struct blame_entry *e;17861787for(e = sb->ent; e; e = e->next) {1788struct origin *suspect = e->suspect;1789struct commit_info ci;1790int num;17911792if(strcmp(suspect->path, sb->path))1793*option |= OUTPUT_SHOW_NAME;1794 num =strlen(suspect->path);1795if(longest_file < num)1796 longest_file = num;1797if(!(suspect->commit->object.flags & METAINFO_SHOWN)) {1798 suspect->commit->object.flags |= METAINFO_SHOWN;1799get_commit_info(suspect->commit, &ci,1);1800 num =strlen(ci.author);1801if(longest_author < num)1802 longest_author = num;1803}1804 num = e->s_lno + e->num_lines;1805if(longest_src_lines < num)1806 longest_src_lines = num;1807 num = e->lno + e->num_lines;1808if(longest_dst_lines < num)1809 longest_dst_lines = num;1810if(largest_score <ent_score(sb, e))1811 largest_score =ent_score(sb, e);1812}1813 max_orig_digits =lineno_width(longest_src_lines);1814 max_digits =lineno_width(longest_dst_lines);1815 max_score_digits =lineno_width(largest_score);1816}18171818/*1819 * For debugging -- origin is refcounted, and this asserts that1820 * we do not underflow.1821 */1822static voidsanity_check_refcnt(struct scoreboard *sb)1823{1824int baa =0;1825struct blame_entry *ent;18261827for(ent = sb->ent; ent; ent = ent->next) {1828/* Nobody should have zero or negative refcnt */1829if(ent->suspect->refcnt <=0) {1830fprintf(stderr,"%sin%shas negative refcnt%d\n",1831 ent->suspect->path,1832sha1_to_hex(ent->suspect->commit->object.sha1),1833 ent->suspect->refcnt);1834 baa =1;1835}1836}1837for(ent = sb->ent; ent; ent = ent->next) {1838/* Mark the ones that haven't been checked */1839if(0< ent->suspect->refcnt)1840 ent->suspect->refcnt = -ent->suspect->refcnt;1841}1842for(ent = sb->ent; ent; ent = ent->next) {1843/*1844 * ... then pick each and see if they have the the1845 * correct refcnt.1846 */1847int found;1848struct blame_entry *e;1849struct origin *suspect = ent->suspect;18501851if(0< suspect->refcnt)1852continue;1853 suspect->refcnt = -suspect->refcnt;/* Unmark */1854for(found =0, e = sb->ent; e; e = e->next) {1855if(e->suspect != suspect)1856continue;1857 found++;1858}1859if(suspect->refcnt != found) {1860fprintf(stderr,"%sin%shas refcnt%d, not%d\n",1861 ent->suspect->path,1862sha1_to_hex(ent->suspect->commit->object.sha1),1863 ent->suspect->refcnt, found);1864 baa =2;1865}1866}1867if(baa) {1868int opt =0160;1869find_alignment(sb, &opt);1870output(sb, opt);1871die("Baa%d!", baa);1872}1873}18741875/*1876 * Used for the command line parsing; check if the path exists1877 * in the working tree.1878 */1879static inthas_path_in_work_tree(const char*path)1880{1881struct stat st;1882return!lstat(path, &st);1883}18841885static unsignedparse_score(const char*arg)1886{1887char*end;1888unsigned long score =strtoul(arg, &end,10);1889if(*end)1890return0;1891return score;1892}18931894static const char*add_prefix(const char*prefix,const char*path)1895{1896returnprefix_path(prefix, prefix ?strlen(prefix) :0, path);1897}18981899/*1900 * Parsing of (comma separated) one item in the -L option1901 */1902static const char*parse_loc(const char*spec,1903struct scoreboard *sb,long lno,1904long begin,long*ret)1905{1906char*term;1907const char*line;1908long num;1909int reg_error;1910 regex_t regexp;1911 regmatch_t match[1];19121913/* Allow "-L <something>,+20" to mean starting at <something>1914 * for 20 lines, or "-L <something>,-5" for 5 lines ending at1915 * <something>.1916 */1917if(1< begin && (spec[0] =='+'|| spec[0] =='-')) {1918 num =strtol(spec +1, &term,10);1919if(term != spec +1) {1920if(spec[0] =='-')1921 num =0- num;1922if(0< num)1923*ret = begin + num -2;1924else if(!num)1925*ret = begin;1926else1927*ret = begin + num;1928return term;1929}1930return spec;1931}1932 num =strtol(spec, &term,10);1933if(term != spec) {1934*ret = num;1935return term;1936}1937if(spec[0] !='/')1938return spec;19391940/* it could be a regexp of form /.../ */1941for(term = (char*) spec +1; *term && *term !='/'; term++) {1942if(*term =='\\')1943 term++;1944}1945if(*term !='/')1946return spec;19471948/* try [spec+1 .. term-1] as regexp */1949*term =0;1950 begin--;/* input is in human terms */1951 line =nth_line(sb, begin);19521953if(!(reg_error =regcomp(®exp, spec +1, REG_NEWLINE)) &&1954!(reg_error =regexec(®exp, line,1, match,0))) {1955const char*cp = line + match[0].rm_so;1956const char*nline;19571958while(begin++ < lno) {1959 nline =nth_line(sb, begin);1960if(line <= cp && cp < nline)1961break;1962 line = nline;1963}1964*ret = begin;1965regfree(®exp);1966*term++ ='/';1967return term;1968}1969else{1970char errbuf[1024];1971regerror(reg_error, ®exp, errbuf,1024);1972die("-L parameter '%s':%s", spec +1, errbuf);1973}1974}19751976/*1977 * Parsing of -L option1978 */1979static voidprepare_blame_range(struct scoreboard *sb,1980const char*bottomtop,1981long lno,1982long*bottom,long*top)1983{1984const char*term;19851986 term =parse_loc(bottomtop, sb, lno,1, bottom);1987if(*term ==',') {1988 term =parse_loc(term +1, sb, lno, *bottom +1, top);1989if(*term)1990usage(blame_usage);1991}1992if(*term)1993usage(blame_usage);1994}19951996static intgit_blame_config(const char*var,const char*value)1997{1998if(!strcmp(var,"blame.showroot")) {1999 show_root =git_config_bool(var, value);2000return0;2001}2002if(!strcmp(var,"blame.blankboundary")) {2003 blank_boundary =git_config_bool(var, value);2004return0;2005}2006returngit_default_config(var, value);2007}20082009static struct commit *fake_working_tree_commit(const char*path,const char*contents_from)2010{2011struct commit *commit;2012struct origin *origin;2013unsigned char head_sha1[20];2014struct strbuf buf;2015const char*ident;2016time_t now;2017int size, len;2018struct cache_entry *ce;2019unsigned mode;20202021if(get_sha1("HEAD", head_sha1))2022die("No such ref: HEAD");20232024time(&now);2025 commit =xcalloc(1,sizeof(*commit));2026 commit->parents =xcalloc(1,sizeof(*commit->parents));2027 commit->parents->item =lookup_commit_reference(head_sha1);2028 commit->object.parsed =1;2029 commit->date = now;2030 commit->object.type = OBJ_COMMIT;20312032 origin =make_origin(commit, path);20332034strbuf_init(&buf,0);2035if(!contents_from ||strcmp("-", contents_from)) {2036struct stat st;2037const char*read_from;2038unsigned long fin_size;20392040if(contents_from) {2041if(stat(contents_from, &st) <0)2042die("Cannot stat%s", contents_from);2043 read_from = contents_from;2044}2045else{2046if(lstat(path, &st) <0)2047die("Cannot lstat%s", path);2048 read_from = path;2049}2050 fin_size =xsize_t(st.st_size);2051 mode =canon_mode(st.st_mode);2052switch(st.st_mode & S_IFMT) {2053case S_IFREG:2054if(strbuf_read_file(&buf, read_from, st.st_size) != st.st_size)2055die("cannot open or read%s", read_from);2056break;2057case S_IFLNK:2058if(readlink(read_from, buf.buf, buf.alloc) != fin_size)2059die("cannot readlink%s", read_from);2060 buf.len = fin_size;2061break;2062default:2063die("unsupported file type%s", read_from);2064}2065}2066else{2067/* Reading from stdin */2068 contents_from ="standard input";2069 mode =0;2070if(strbuf_read(&buf,0,0) <0)2071die("read error%sfrom stdin",strerror(errno));2072}2073convert_to_git(path, buf.buf, buf.len, &buf,0);2074 origin->file.ptr = buf.buf;2075 origin->file.size = buf.len;2076pretend_sha1_file(buf.buf, buf.len, OBJ_BLOB, origin->blob_sha1);2077 commit->util = origin;20782079/*2080 * Read the current index, replace the path entry with2081 * origin->blob_sha1 without mucking with its mode or type2082 * bits; we are not going to write this index out -- we just2083 * want to run "diff-index --cached".2084 */2085discard_cache();2086read_cache();20872088 len =strlen(path);2089if(!mode) {2090int pos =cache_name_pos(path, len);2091if(0<= pos)2092 mode = active_cache[pos]->ce_mode;2093else2094/* Let's not bother reading from HEAD tree */2095 mode = S_IFREG |0644;2096}2097 size =cache_entry_size(len);2098 ce =xcalloc(1, size);2099hashcpy(ce->sha1, origin->blob_sha1);2100memcpy(ce->name, path, len);2101 ce->ce_flags =create_ce_flags(len,0);2102 ce->ce_mode =create_ce_mode(mode);2103add_cache_entry(ce, ADD_CACHE_OK_TO_ADD|ADD_CACHE_OK_TO_REPLACE);21042105/*2106 * We are not going to write this out, so this does not matter2107 * right now, but someday we might optimize diff-index --cached2108 * with cache-tree information.2109 */2110cache_tree_invalidate_path(active_cache_tree, path);21112112 commit->buffer =xmalloc(400);2113 ident =fmt_ident("Not Committed Yet","not.committed.yet", NULL,0);2114snprintf(commit->buffer,400,2115"tree 0000000000000000000000000000000000000000\n"2116"parent%s\n"2117"author%s\n"2118"committer%s\n\n"2119"Version of%sfrom%s\n",2120sha1_to_hex(head_sha1),2121 ident, ident, path, contents_from ? contents_from : path);2122return commit;2123}21242125intcmd_blame(int argc,const char**argv,const char*prefix)2126{2127struct rev_info revs;2128const char*path;2129struct scoreboard sb;2130struct origin *o;2131struct blame_entry *ent;2132int i, seen_dashdash, unk, opt;2133long bottom, top, lno;2134int output_option =0;2135int show_stats =0;2136const char*revs_file = NULL;2137const char*final_commit_name = NULL;2138enum object_type type;2139const char*bottomtop = NULL;2140const char*contents_from = NULL;21412142 cmd_is_annotate = !strcmp(argv[0],"annotate");21432144git_config(git_blame_config);2145 save_commit_buffer =0;21462147 opt =0;2148 seen_dashdash =0;2149for(unk = i =1; i < argc; i++) {2150const char*arg = argv[i];2151if(*arg !='-')2152break;2153else if(!strcmp("-b", arg))2154 blank_boundary =1;2155else if(!strcmp("--root", arg))2156 show_root =1;2157else if(!strcmp(arg,"--show-stats"))2158 show_stats =1;2159else if(!strcmp("-c", arg))2160 output_option |= OUTPUT_ANNOTATE_COMPAT;2161else if(!strcmp("-t", arg))2162 output_option |= OUTPUT_RAW_TIMESTAMP;2163else if(!strcmp("-l", arg))2164 output_option |= OUTPUT_LONG_OBJECT_NAME;2165else if(!strcmp("-s", arg))2166 output_option |= OUTPUT_NO_AUTHOR;2167else if(!strcmp("-w", arg))2168 xdl_opts |= XDF_IGNORE_WHITESPACE;2169else if(!strcmp("-S", arg) && ++i < argc)2170 revs_file = argv[i];2171else if(!prefixcmp(arg,"-M")) {2172 opt |= PICKAXE_BLAME_MOVE;2173 blame_move_score =parse_score(arg+2);2174}2175else if(!prefixcmp(arg,"-C")) {2176/*2177 * -C enables copy from removed files;2178 * -C -C enables copy from existing files, but only2179 * when blaming a new file;2180 * -C -C -C enables copy from existing files for2181 * everybody2182 */2183if(opt & PICKAXE_BLAME_COPY_HARDER)2184 opt |= PICKAXE_BLAME_COPY_HARDEST;2185if(opt & PICKAXE_BLAME_COPY)2186 opt |= PICKAXE_BLAME_COPY_HARDER;2187 opt |= PICKAXE_BLAME_COPY | PICKAXE_BLAME_MOVE;2188 blame_copy_score =parse_score(arg+2);2189}2190else if(!prefixcmp(arg,"-L")) {2191if(!arg[2]) {2192if(++i >= argc)2193usage(blame_usage);2194 arg = argv[i];2195}2196else2197 arg +=2;2198if(bottomtop)2199die("More than one '-L n,m' option given");2200 bottomtop = arg;2201}2202else if(!strcmp("--contents", arg)) {2203if(++i >= argc)2204usage(blame_usage);2205 contents_from = argv[i];2206}2207else if(!strcmp("--incremental", arg))2208 incremental =1;2209else if(!strcmp("--score-debug", arg))2210 output_option |= OUTPUT_SHOW_SCORE;2211else if(!strcmp("-f", arg) ||2212!strcmp("--show-name", arg))2213 output_option |= OUTPUT_SHOW_NAME;2214else if(!strcmp("-n", arg) ||2215!strcmp("--show-number", arg))2216 output_option |= OUTPUT_SHOW_NUMBER;2217else if(!strcmp("-p", arg) ||2218!strcmp("--porcelain", arg))2219 output_option |= OUTPUT_PORCELAIN;2220else if(!strcmp("--", arg)) {2221 seen_dashdash =1;2222 i++;2223break;2224}2225else2226 argv[unk++] = arg;2227}22282229if(!blame_move_score)2230 blame_move_score = BLAME_DEFAULT_MOVE_SCORE;2231if(!blame_copy_score)2232 blame_copy_score = BLAME_DEFAULT_COPY_SCORE;22332234/*2235 * We have collected options unknown to us in argv[1..unk]2236 * which are to be passed to revision machinery if we are2237 * going to do the "bottom" processing.2238 *2239 * The remaining are:2240 *2241 * (1) if seen_dashdash, its either2242 * "-options -- <path>" or2243 * "-options -- <path> <rev>".2244 * but the latter is allowed only if there is no2245 * options that we passed to revision machinery.2246 *2247 * (2) otherwise, we may have "--" somewhere later and2248 * might be looking at the first one of multiple 'rev'2249 * parameters (e.g. " master ^next ^maint -- path").2250 * See if there is a dashdash first, and give the2251 * arguments before that to revision machinery.2252 * After that there must be one 'path'.2253 *2254 * (3) otherwise, its one of the three:2255 * "-options <path> <rev>"2256 * "-options <rev> <path>"2257 * "-options <path>"2258 * but again the first one is allowed only if2259 * there is no options that we passed to revision2260 * machinery.2261 */22622263if(seen_dashdash) {2264/* (1) */2265if(argc <= i)2266usage(blame_usage);2267 path =add_prefix(prefix, argv[i]);2268if(i +1== argc -1) {2269if(unk !=1)2270usage(blame_usage);2271 argv[unk++] = argv[i +1];2272}2273else if(i +1!= argc)2274/* garbage at end */2275usage(blame_usage);2276}2277else{2278int j;2279for(j = i; !seen_dashdash && j < argc; j++)2280if(!strcmp(argv[j],"--"))2281 seen_dashdash = j;2282if(seen_dashdash) {2283/* (2) */2284if(seen_dashdash +1!= argc -1)2285usage(blame_usage);2286 path =add_prefix(prefix, argv[seen_dashdash +1]);2287for(j = i; j < seen_dashdash; j++)2288 argv[unk++] = argv[j];2289}2290else{2291/* (3) */2292if(argc <= i)2293usage(blame_usage);2294 path =add_prefix(prefix, argv[i]);2295if(i +1== argc -1) {2296 final_commit_name = argv[i +1];22972298/* if (unk == 1) we could be getting2299 * old-style2300 */2301if(unk ==1&& !has_path_in_work_tree(path)) {2302 path =add_prefix(prefix, argv[i +1]);2303 final_commit_name = argv[i];2304}2305}2306else if(i != argc -1)2307usage(blame_usage);/* garbage at end */23082309setup_work_tree();2310if(!has_path_in_work_tree(path))2311die("cannot stat path%s:%s",2312 path,strerror(errno));2313}2314}23152316if(final_commit_name)2317 argv[unk++] = final_commit_name;23182319/*2320 * Now we got rev and path. We do not want the path pruning2321 * but we may want "bottom" processing.2322 */2323 argv[unk++] ="--";/* terminate the rev name */2324 argv[unk] = NULL;23252326init_revisions(&revs, NULL);2327setup_revisions(unk, argv, &revs, NULL);2328memset(&sb,0,sizeof(sb));23292330/*2331 * There must be one and only one positive commit in the2332 * revs->pending array.2333 */2334for(i =0; i < revs.pending.nr; i++) {2335struct object *obj = revs.pending.objects[i].item;2336if(obj->flags & UNINTERESTING)2337continue;2338while(obj->type == OBJ_TAG)2339 obj =deref_tag(obj, NULL,0);2340if(obj->type != OBJ_COMMIT)2341die("Non commit%s?",2342 revs.pending.objects[i].name);2343if(sb.final)2344die("More than one commit to dig from%sand%s?",2345 revs.pending.objects[i].name,2346 final_commit_name);2347 sb.final = (struct commit *) obj;2348 final_commit_name = revs.pending.objects[i].name;2349}23502351if(!sb.final) {2352/*2353 * "--not A B -- path" without anything positive;2354 * do not default to HEAD, but use the working tree2355 * or "--contents".2356 */2357setup_work_tree();2358 sb.final =fake_working_tree_commit(path, contents_from);2359add_pending_object(&revs, &(sb.final->object),":");2360}2361else if(contents_from)2362die("Cannot use --contents with final commit object name");23632364/*2365 * If we have bottom, this will mark the ancestors of the2366 * bottom commits we would reach while traversing as2367 * uninteresting.2368 */2369if(prepare_revision_walk(&revs))2370die("revision walk setup failed");23712372if(is_null_sha1(sb.final->object.sha1)) {2373char*buf;2374 o = sb.final->util;2375 buf =xmalloc(o->file.size +1);2376memcpy(buf, o->file.ptr, o->file.size +1);2377 sb.final_buf = buf;2378 sb.final_buf_size = o->file.size;2379}2380else{2381 o =get_origin(&sb, sb.final, path);2382if(fill_blob_sha1(o))2383die("no such path%sin%s", path, final_commit_name);23842385 sb.final_buf =read_sha1_file(o->blob_sha1, &type,2386&sb.final_buf_size);2387if(!sb.final_buf)2388die("Cannot read blob%sfor path%s",2389sha1_to_hex(o->blob_sha1),2390 path);2391}2392 num_read_blob++;2393 lno =prepare_lines(&sb);23942395 bottom = top =0;2396if(bottomtop)2397prepare_blame_range(&sb, bottomtop, lno, &bottom, &top);2398if(bottom && top && top < bottom) {2399long tmp;2400 tmp = top; top = bottom; bottom = tmp;2401}2402if(bottom <1)2403 bottom =1;2404if(top <1)2405 top = lno;2406 bottom--;2407if(lno < top)2408die("file%shas only%lu lines", path, lno);24092410 ent =xcalloc(1,sizeof(*ent));2411 ent->lno = bottom;2412 ent->num_lines = top - bottom;2413 ent->suspect = o;2414 ent->s_lno = bottom;24152416 sb.ent = ent;2417 sb.path = path;24182419if(revs_file &&read_ancestry(revs_file))2420die("reading graft file%sfailed:%s",2421 revs_file,strerror(errno));24222423read_mailmap(&mailmap,".mailmap", NULL);24242425if(!incremental)2426setup_pager();24272428assign_blame(&sb, &revs, opt);24292430if(incremental)2431return0;24322433coalesce(&sb);24342435if(!(output_option & OUTPUT_PORCELAIN))2436find_alignment(&sb, &output_option);24372438output(&sb, output_option);2439free((void*)sb.final_buf);2440for(ent = sb.ent; ent; ) {2441struct blame_entry *e = ent->next;2442free(ent);2443 ent = e;2444}24452446if(show_stats) {2447printf("num read blob:%d\n", num_read_blob);2448printf("num get patch:%d\n", num_get_patch);2449printf("num commits:%d\n", num_commits);2450}2451return0;2452}