1/* 2 * Blame 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"string-list.h" 20#include"mailmap.h" 21#include"parse-options.h" 22#include"utf8.h" 23 24static char blame_usage[] ="git blame [options] [rev-opts] [rev] [--] file"; 25 26static const char*blame_opt_usage[] = { 27 blame_usage, 28"", 29"[rev-opts] are documented in git-rev-list(1)", 30 NULL 31}; 32 33static int longest_file; 34static int longest_author; 35static int max_orig_digits; 36static int max_digits; 37static int max_score_digits; 38static int show_root; 39static int reverse; 40static int blank_boundary; 41static int incremental; 42static int xdl_opts = XDF_NEED_MINIMAL; 43 44static enum date_mode blame_date_mode = DATE_ISO8601; 45static size_t blame_date_width; 46 47static struct string_list mailmap; 48 49#ifndef DEBUG 50#define DEBUG 0 51#endif 52 53/* stats */ 54static int num_read_blob; 55static int num_get_patch; 56static int num_commits; 57 58#define PICKAXE_BLAME_MOVE 01 59#define PICKAXE_BLAME_COPY 02 60#define PICKAXE_BLAME_COPY_HARDER 04 61#define PICKAXE_BLAME_COPY_HARDEST 010 62 63/* 64 * blame for a blame_entry with score lower than these thresholds 65 * is not passed to the parent using move/copy logic. 66 */ 67static unsigned blame_move_score; 68static unsigned blame_copy_score; 69#define BLAME_DEFAULT_MOVE_SCORE 20 70#define BLAME_DEFAULT_COPY_SCORE 40 71 72/* bits #0..7 in revision.h, #8..11 used for merge_bases() in commit.c */ 73#define METAINFO_SHOWN (1u<<12) 74#define MORE_THAN_ONE_PATH (1u<<13) 75 76/* 77 * One blob in a commit that is being suspected 78 */ 79struct origin { 80int refcnt; 81struct origin *previous; 82struct commit *commit; 83 mmfile_t file; 84unsigned char blob_sha1[20]; 85char path[FLEX_ARRAY]; 86}; 87 88/* 89 * Given an origin, prepare mmfile_t structure to be used by the 90 * diff machinery 91 */ 92static voidfill_origin_blob(struct origin *o, mmfile_t *file) 93{ 94if(!o->file.ptr) { 95enum object_type type; 96 num_read_blob++; 97 file->ptr =read_sha1_file(o->blob_sha1, &type, 98(unsigned long*)(&(file->size))); 99if(!file->ptr) 100die("Cannot read blob%sfor path%s", 101sha1_to_hex(o->blob_sha1), 102 o->path); 103 o->file = *file; 104} 105else 106*file = o->file; 107} 108 109/* 110 * Origin is refcounted and usually we keep the blob contents to be 111 * reused. 112 */ 113staticinlinestruct origin *origin_incref(struct origin *o) 114{ 115if(o) 116 o->refcnt++; 117return o; 118} 119 120static voidorigin_decref(struct origin *o) 121{ 122if(o && --o->refcnt <=0) { 123if(o->previous) 124origin_decref(o->previous); 125free(o->file.ptr); 126free(o); 127} 128} 129 130static voiddrop_origin_blob(struct origin *o) 131{ 132if(o->file.ptr) { 133free(o->file.ptr); 134 o->file.ptr = NULL; 135} 136} 137 138/* 139 * Each group of lines is described by a blame_entry; it can be split 140 * as we pass blame to the parents. They form a linked list in the 141 * scoreboard structure, sorted by the target line number. 142 */ 143struct blame_entry { 144struct blame_entry *prev; 145struct blame_entry *next; 146 147/* the first line of this group in the final image; 148 * internally all line numbers are 0 based. 149 */ 150int lno; 151 152/* how many lines this group has */ 153int num_lines; 154 155/* the commit that introduced this group into the final image */ 156struct origin *suspect; 157 158/* true if the suspect is truly guilty; false while we have not 159 * checked if the group came from one of its parents. 160 */ 161char guilty; 162 163/* true if the entry has been scanned for copies in the current parent 164 */ 165char scanned; 166 167/* the line number of the first line of this group in the 168 * suspect's file; internally all line numbers are 0 based. 169 */ 170int s_lno; 171 172/* how significant this entry is -- cached to avoid 173 * scanning the lines over and over. 174 */ 175unsigned score; 176}; 177 178/* 179 * The current state of the blame assignment. 180 */ 181struct scoreboard { 182/* the final commit (i.e. where we started digging from) */ 183struct commit *final; 184struct rev_info *revs; 185const char*path; 186 187/* 188 * The contents in the final image. 189 * Used by many functions to obtain contents of the nth line, 190 * indexed with scoreboard.lineno[blame_entry.lno]. 191 */ 192const char*final_buf; 193unsigned long final_buf_size; 194 195/* linked list of blames */ 196struct blame_entry *ent; 197 198/* look-up a line in the final buffer */ 199int num_lines; 200int*lineno; 201}; 202 203staticinlineintsame_suspect(struct origin *a,struct origin *b) 204{ 205if(a == b) 206return1; 207if(a->commit != b->commit) 208return0; 209return!strcmp(a->path, b->path); 210} 211 212static voidsanity_check_refcnt(struct scoreboard *); 213 214/* 215 * If two blame entries that are next to each other came from 216 * contiguous lines in the same origin (i.e. <commit, path> pair), 217 * merge them together. 218 */ 219static voidcoalesce(struct scoreboard *sb) 220{ 221struct blame_entry *ent, *next; 222 223for(ent = sb->ent; ent && (next = ent->next); ent = next) { 224if(same_suspect(ent->suspect, next->suspect) && 225 ent->guilty == next->guilty && 226 ent->s_lno + ent->num_lines == next->s_lno) { 227 ent->num_lines += next->num_lines; 228 ent->next = next->next; 229if(ent->next) 230 ent->next->prev = ent; 231origin_decref(next->suspect); 232free(next); 233 ent->score =0; 234 next = ent;/* again */ 235} 236} 237 238if(DEBUG)/* sanity */ 239sanity_check_refcnt(sb); 240} 241 242/* 243 * Given a commit and a path in it, create a new origin structure. 244 * The callers that add blame to the scoreboard should use 245 * get_origin() to obtain shared, refcounted copy instead of calling 246 * this function directly. 247 */ 248static struct origin *make_origin(struct commit *commit,const char*path) 249{ 250struct origin *o; 251 o =xcalloc(1,sizeof(*o) +strlen(path) +1); 252 o->commit = commit; 253 o->refcnt =1; 254strcpy(o->path, path); 255return o; 256} 257 258/* 259 * Locate an existing origin or create a new one. 260 */ 261static struct origin *get_origin(struct scoreboard *sb, 262struct commit *commit, 263const char*path) 264{ 265struct blame_entry *e; 266 267for(e = sb->ent; e; e = e->next) { 268if(e->suspect->commit == commit && 269!strcmp(e->suspect->path, path)) 270returnorigin_incref(e->suspect); 271} 272returnmake_origin(commit, path); 273} 274 275/* 276 * Fill the blob_sha1 field of an origin if it hasn't, so that later 277 * call to fill_origin_blob() can use it to locate the data. blob_sha1 278 * for an origin is also used to pass the blame for the entire file to 279 * the parent to detect the case where a child's blob is identical to 280 * that of its parent's. 281 */ 282static intfill_blob_sha1(struct origin *origin) 283{ 284unsigned mode; 285 286if(!is_null_sha1(origin->blob_sha1)) 287return0; 288if(get_tree_entry(origin->commit->object.sha1, 289 origin->path, 290 origin->blob_sha1, &mode)) 291goto error_out; 292if(sha1_object_info(origin->blob_sha1, NULL) != OBJ_BLOB) 293goto error_out; 294return0; 295 error_out: 296hashclr(origin->blob_sha1); 297return-1; 298} 299 300/* 301 * We have an origin -- check if the same path exists in the 302 * parent and return an origin structure to represent it. 303 */ 304static struct origin *find_origin(struct scoreboard *sb, 305struct commit *parent, 306struct origin *origin) 307{ 308struct origin *porigin = NULL; 309struct diff_options diff_opts; 310const char*paths[2]; 311 312if(parent->util) { 313/* 314 * Each commit object can cache one origin in that 315 * commit. This is a freestanding copy of origin and 316 * not refcounted. 317 */ 318struct origin *cached = parent->util; 319if(!strcmp(cached->path, origin->path)) { 320/* 321 * The same path between origin and its parent 322 * without renaming -- the most common case. 323 */ 324 porigin =get_origin(sb, parent, cached->path); 325 326/* 327 * If the origin was newly created (i.e. get_origin 328 * would call make_origin if none is found in the 329 * scoreboard), it does not know the blob_sha1, 330 * so copy it. Otherwise porigin was in the 331 * scoreboard and already knows blob_sha1. 332 */ 333if(porigin->refcnt ==1) 334hashcpy(porigin->blob_sha1, cached->blob_sha1); 335return porigin; 336} 337/* otherwise it was not very useful; free it */ 338free(parent->util); 339 parent->util = NULL; 340} 341 342/* See if the origin->path is different between parent 343 * and origin first. Most of the time they are the 344 * same and diff-tree is fairly efficient about this. 345 */ 346diff_setup(&diff_opts); 347DIFF_OPT_SET(&diff_opts, RECURSIVE); 348 diff_opts.detect_rename =0; 349 diff_opts.output_format = DIFF_FORMAT_NO_OUTPUT; 350 paths[0] = origin->path; 351 paths[1] = NULL; 352 353diff_tree_setup_paths(paths, &diff_opts); 354if(diff_setup_done(&diff_opts) <0) 355die("diff-setup"); 356 357if(is_null_sha1(origin->commit->object.sha1)) 358do_diff_cache(parent->tree->object.sha1, &diff_opts); 359else 360diff_tree_sha1(parent->tree->object.sha1, 361 origin->commit->tree->object.sha1, 362"", &diff_opts); 363diffcore_std(&diff_opts); 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}else{ 370/* 371 * Since origin->path is a pathspec, if the parent 372 * commit had it as a directory, we will see a whole 373 * bunch of deletion of files in the directory that we 374 * do not care about. 375 */ 376int i; 377struct diff_filepair *p = NULL; 378for(i =0; i < diff_queued_diff.nr; i++) { 379const char*name; 380 p = diff_queued_diff.queue[i]; 381 name = p->one->path ? p->one->path : p->two->path; 382if(!strcmp(name, origin->path)) 383break; 384} 385if(!p) 386die("internal error in blame::find_origin"); 387switch(p->status) { 388default: 389die("internal error in blame::find_origin (%c)", 390 p->status); 391case'M': 392 porigin =get_origin(sb, parent, origin->path); 393hashcpy(porigin->blob_sha1, p->one->sha1); 394break; 395case'A': 396case'T': 397/* Did not exist in parent, or type changed */ 398break; 399} 400} 401diff_flush(&diff_opts); 402diff_tree_release_paths(&diff_opts); 403if(porigin) { 404/* 405 * Create a freestanding copy that is not part of 406 * the refcounted origin found in the scoreboard, and 407 * cache it in the commit. 408 */ 409struct origin *cached; 410 411 cached =make_origin(porigin->commit, porigin->path); 412hashcpy(cached->blob_sha1, porigin->blob_sha1); 413 parent->util = cached; 414} 415return porigin; 416} 417 418/* 419 * We have an origin -- find the path that corresponds to it in its 420 * parent and return an origin structure to represent it. 421 */ 422static struct origin *find_rename(struct scoreboard *sb, 423struct commit *parent, 424struct origin *origin) 425{ 426struct origin *porigin = NULL; 427struct diff_options diff_opts; 428int i; 429const char*paths[2]; 430 431diff_setup(&diff_opts); 432DIFF_OPT_SET(&diff_opts, RECURSIVE); 433 diff_opts.detect_rename = DIFF_DETECT_RENAME; 434 diff_opts.output_format = DIFF_FORMAT_NO_OUTPUT; 435 diff_opts.single_follow = origin->path; 436 paths[0] = NULL; 437diff_tree_setup_paths(paths, &diff_opts); 438if(diff_setup_done(&diff_opts) <0) 439die("diff-setup"); 440 441if(is_null_sha1(origin->commit->object.sha1)) 442do_diff_cache(parent->tree->object.sha1, &diff_opts); 443else 444diff_tree_sha1(parent->tree->object.sha1, 445 origin->commit->tree->object.sha1, 446"", &diff_opts); 447diffcore_std(&diff_opts); 448 449for(i =0; i < diff_queued_diff.nr; i++) { 450struct diff_filepair *p = diff_queued_diff.queue[i]; 451if((p->status =='R'|| p->status =='C') && 452!strcmp(p->two->path, origin->path)) { 453 porigin =get_origin(sb, parent, p->one->path); 454hashcpy(porigin->blob_sha1, p->one->sha1); 455break; 456} 457} 458diff_flush(&diff_opts); 459diff_tree_release_paths(&diff_opts); 460return porigin; 461} 462 463/* 464 * Link in a new blame entry to the scoreboard. Entries that cover the 465 * same line range have been removed from the scoreboard previously. 466 */ 467static voidadd_blame_entry(struct scoreboard *sb,struct blame_entry *e) 468{ 469struct blame_entry *ent, *prev = NULL; 470 471origin_incref(e->suspect); 472 473for(ent = sb->ent; ent && ent->lno < e->lno; ent = ent->next) 474 prev = ent; 475 476/* prev, if not NULL, is the last one that is below e */ 477 e->prev = prev; 478if(prev) { 479 e->next = prev->next; 480 prev->next = e; 481} 482else{ 483 e->next = sb->ent; 484 sb->ent = e; 485} 486if(e->next) 487 e->next->prev = e; 488} 489 490/* 491 * src typically is on-stack; we want to copy the information in it to 492 * a malloced blame_entry that is already on the linked list of the 493 * scoreboard. The origin of dst loses a refcnt while the origin of src 494 * gains one. 495 */ 496static voiddup_entry(struct blame_entry *dst,struct blame_entry *src) 497{ 498struct blame_entry *p, *n; 499 500 p = dst->prev; 501 n = dst->next; 502origin_incref(src->suspect); 503origin_decref(dst->suspect); 504memcpy(dst, src,sizeof(*src)); 505 dst->prev = p; 506 dst->next = n; 507 dst->score =0; 508} 509 510static const char*nth_line(struct scoreboard *sb,int lno) 511{ 512return sb->final_buf + sb->lineno[lno]; 513} 514 515/* 516 * It is known that lines between tlno to same came from parent, and e 517 * has an overlap with that range. it also is known that parent's 518 * line plno corresponds to e's line tlno. 519 * 520 * <---- e -----> 521 * <------> 522 * <------------> 523 * <------------> 524 * <------------------> 525 * 526 * Split e into potentially three parts; before this chunk, the chunk 527 * to be blamed for the parent, and after that portion. 528 */ 529static voidsplit_overlap(struct blame_entry *split, 530struct blame_entry *e, 531int tlno,int plno,int same, 532struct origin *parent) 533{ 534int chunk_end_lno; 535memset(split,0,sizeof(struct blame_entry [3])); 536 537if(e->s_lno < tlno) { 538/* there is a pre-chunk part not blamed on parent */ 539 split[0].suspect =origin_incref(e->suspect); 540 split[0].lno = e->lno; 541 split[0].s_lno = e->s_lno; 542 split[0].num_lines = tlno - e->s_lno; 543 split[1].lno = e->lno + tlno - e->s_lno; 544 split[1].s_lno = plno; 545} 546else{ 547 split[1].lno = e->lno; 548 split[1].s_lno = plno + (e->s_lno - tlno); 549} 550 551if(same < e->s_lno + e->num_lines) { 552/* there is a post-chunk part not blamed on parent */ 553 split[2].suspect =origin_incref(e->suspect); 554 split[2].lno = e->lno + (same - e->s_lno); 555 split[2].s_lno = e->s_lno + (same - e->s_lno); 556 split[2].num_lines = e->s_lno + e->num_lines - same; 557 chunk_end_lno = split[2].lno; 558} 559else 560 chunk_end_lno = e->lno + e->num_lines; 561 split[1].num_lines = chunk_end_lno - split[1].lno; 562 563/* 564 * if it turns out there is nothing to blame the parent for, 565 * forget about the splitting. !split[1].suspect signals this. 566 */ 567if(split[1].num_lines <1) 568return; 569 split[1].suspect =origin_incref(parent); 570} 571 572/* 573 * split_overlap() divided an existing blame e into up to three parts 574 * in split. Adjust the linked list of blames in the scoreboard to 575 * reflect the split. 576 */ 577static voidsplit_blame(struct scoreboard *sb, 578struct blame_entry *split, 579struct blame_entry *e) 580{ 581struct blame_entry *new_entry; 582 583if(split[0].suspect && split[2].suspect) { 584/* The first part (reuse storage for the existing entry e) */ 585dup_entry(e, &split[0]); 586 587/* The last part -- me */ 588 new_entry =xmalloc(sizeof(*new_entry)); 589memcpy(new_entry, &(split[2]),sizeof(struct blame_entry)); 590add_blame_entry(sb, new_entry); 591 592/* ... and the middle part -- parent */ 593 new_entry =xmalloc(sizeof(*new_entry)); 594memcpy(new_entry, &(split[1]),sizeof(struct blame_entry)); 595add_blame_entry(sb, new_entry); 596} 597else if(!split[0].suspect && !split[2].suspect) 598/* 599 * The parent covers the entire area; reuse storage for 600 * e and replace it with the parent. 601 */ 602dup_entry(e, &split[1]); 603else if(split[0].suspect) { 604/* me and then parent */ 605dup_entry(e, &split[0]); 606 607 new_entry =xmalloc(sizeof(*new_entry)); 608memcpy(new_entry, &(split[1]),sizeof(struct blame_entry)); 609add_blame_entry(sb, new_entry); 610} 611else{ 612/* parent and then me */ 613dup_entry(e, &split[1]); 614 615 new_entry =xmalloc(sizeof(*new_entry)); 616memcpy(new_entry, &(split[2]),sizeof(struct blame_entry)); 617add_blame_entry(sb, new_entry); 618} 619 620if(DEBUG) {/* sanity */ 621struct blame_entry *ent; 622int lno = sb->ent->lno, corrupt =0; 623 624for(ent = sb->ent; ent; ent = ent->next) { 625if(lno != ent->lno) 626 corrupt =1; 627if(ent->s_lno <0) 628 corrupt =1; 629 lno += ent->num_lines; 630} 631if(corrupt) { 632 lno = sb->ent->lno; 633for(ent = sb->ent; ent; ent = ent->next) { 634printf("L%8d l%8d n%8d\n", 635 lno, ent->lno, ent->num_lines); 636 lno = ent->lno + ent->num_lines; 637} 638die("oops"); 639} 640} 641} 642 643/* 644 * After splitting the blame, the origins used by the 645 * on-stack blame_entry should lose one refcnt each. 646 */ 647static voiddecref_split(struct blame_entry *split) 648{ 649int i; 650 651for(i =0; i <3; i++) 652origin_decref(split[i].suspect); 653} 654 655/* 656 * Helper for blame_chunk(). blame_entry e is known to overlap with 657 * the patch hunk; split it and pass blame to the parent. 658 */ 659static voidblame_overlap(struct scoreboard *sb,struct blame_entry *e, 660int tlno,int plno,int same, 661struct origin *parent) 662{ 663struct blame_entry split[3]; 664 665split_overlap(split, e, tlno, plno, same, parent); 666if(split[1].suspect) 667split_blame(sb, split, e); 668decref_split(split); 669} 670 671/* 672 * Find the line number of the last line the target is suspected for. 673 */ 674static intfind_last_in_target(struct scoreboard *sb,struct origin *target) 675{ 676struct blame_entry *e; 677int last_in_target = -1; 678 679for(e = sb->ent; e; e = e->next) { 680if(e->guilty || !same_suspect(e->suspect, target)) 681continue; 682if(last_in_target < e->s_lno + e->num_lines) 683 last_in_target = e->s_lno + e->num_lines; 684} 685return last_in_target; 686} 687 688/* 689 * Process one hunk from the patch between the current suspect for 690 * blame_entry e and its parent. Find and split the overlap, and 691 * pass blame to the overlapping part to the parent. 692 */ 693static voidblame_chunk(struct scoreboard *sb, 694int tlno,int plno,int same, 695struct origin *target,struct origin *parent) 696{ 697struct blame_entry *e; 698 699for(e = sb->ent; e; e = e->next) { 700if(e->guilty || !same_suspect(e->suspect, target)) 701continue; 702if(same <= e->s_lno) 703continue; 704if(tlno < e->s_lno + e->num_lines) 705blame_overlap(sb, e, tlno, plno, same, parent); 706} 707} 708 709struct blame_chunk_cb_data { 710struct scoreboard *sb; 711struct origin *target; 712struct origin *parent; 713long plno; 714long tlno; 715}; 716 717static voidblame_chunk_cb(void*data,long same,long p_next,long t_next) 718{ 719struct blame_chunk_cb_data *d = data; 720blame_chunk(d->sb, d->tlno, d->plno, same, d->target, d->parent); 721 d->plno = p_next; 722 d->tlno = t_next; 723} 724 725/* 726 * We are looking at the origin 'target' and aiming to pass blame 727 * for the lines it is suspected to its parent. Run diff to find 728 * which lines came from parent and pass blame for them. 729 */ 730static intpass_blame_to_parent(struct scoreboard *sb, 731struct origin *target, 732struct origin *parent) 733{ 734int last_in_target; 735 mmfile_t file_p, file_o; 736struct blame_chunk_cb_data d = { sb, target, parent,0,0}; 737 xpparam_t xpp; 738 xdemitconf_t xecfg; 739 740 last_in_target =find_last_in_target(sb, target); 741if(last_in_target <0) 742return1;/* nothing remains for this target */ 743 744fill_origin_blob(parent, &file_p); 745fill_origin_blob(target, &file_o); 746 num_get_patch++; 747 748memset(&xpp,0,sizeof(xpp)); 749 xpp.flags = xdl_opts; 750memset(&xecfg,0,sizeof(xecfg)); 751 xecfg.ctxlen =0; 752xdi_diff_hunks(&file_p, &file_o, blame_chunk_cb, &d, &xpp, &xecfg); 753/* The rest (i.e. anything after tlno) are the same as the parent */ 754blame_chunk(sb, d.tlno, d.plno, last_in_target, target, parent); 755 756return0; 757} 758 759/* 760 * The lines in blame_entry after splitting blames many times can become 761 * very small and trivial, and at some point it becomes pointless to 762 * blame the parents. E.g. "\t\t}\n\t}\n\n" appears everywhere in any 763 * ordinary C program, and it is not worth to say it was copied from 764 * totally unrelated file in the parent. 765 * 766 * Compute how trivial the lines in the blame_entry are. 767 */ 768static unsignedent_score(struct scoreboard *sb,struct blame_entry *e) 769{ 770unsigned score; 771const char*cp, *ep; 772 773if(e->score) 774return e->score; 775 776 score =1; 777 cp =nth_line(sb, e->lno); 778 ep =nth_line(sb, e->lno + e->num_lines); 779while(cp < ep) { 780unsigned ch = *((unsigned char*)cp); 781if(isalnum(ch)) 782 score++; 783 cp++; 784} 785 e->score = score; 786return score; 787} 788 789/* 790 * best_so_far[] and this[] are both a split of an existing blame_entry 791 * that passes blame to the parent. Maintain best_so_far the best split 792 * so far, by comparing this and best_so_far and copying this into 793 * bst_so_far as needed. 794 */ 795static voidcopy_split_if_better(struct scoreboard *sb, 796struct blame_entry *best_so_far, 797struct blame_entry *this) 798{ 799int i; 800 801if(!this[1].suspect) 802return; 803if(best_so_far[1].suspect) { 804if(ent_score(sb, &this[1]) <ent_score(sb, &best_so_far[1])) 805return; 806} 807 808for(i =0; i <3; i++) 809origin_incref(this[i].suspect); 810decref_split(best_so_far); 811memcpy(best_so_far,this,sizeof(struct blame_entry [3])); 812} 813 814/* 815 * We are looking at a part of the final image represented by 816 * ent (tlno and same are offset by ent->s_lno). 817 * tlno is where we are looking at in the final image. 818 * up to (but not including) same match preimage. 819 * plno is where we are looking at in the preimage. 820 * 821 * <-------------- final image ----------------------> 822 * <------ent------> 823 * ^tlno ^same 824 * <---------preimage-----> 825 * ^plno 826 * 827 * All line numbers are 0-based. 828 */ 829static voidhandle_split(struct scoreboard *sb, 830struct blame_entry *ent, 831int tlno,int plno,int same, 832struct origin *parent, 833struct blame_entry *split) 834{ 835if(ent->num_lines <= tlno) 836return; 837if(tlno < same) { 838struct blame_entry this[3]; 839 tlno += ent->s_lno; 840 same += ent->s_lno; 841split_overlap(this, ent, tlno, plno, same, parent); 842copy_split_if_better(sb, split,this); 843decref_split(this); 844} 845} 846 847struct handle_split_cb_data { 848struct scoreboard *sb; 849struct blame_entry *ent; 850struct origin *parent; 851struct blame_entry *split; 852long plno; 853long tlno; 854}; 855 856static voidhandle_split_cb(void*data,long same,long p_next,long t_next) 857{ 858struct handle_split_cb_data *d = data; 859handle_split(d->sb, d->ent, d->tlno, d->plno, same, d->parent, d->split); 860 d->plno = p_next; 861 d->tlno = t_next; 862} 863 864/* 865 * Find the lines from parent that are the same as ent so that 866 * we can pass blames to it. file_p has the blob contents for 867 * the parent. 868 */ 869static voidfind_copy_in_blob(struct scoreboard *sb, 870struct blame_entry *ent, 871struct origin *parent, 872struct blame_entry *split, 873 mmfile_t *file_p) 874{ 875const char*cp; 876int cnt; 877 mmfile_t file_o; 878struct handle_split_cb_data d = { sb, ent, parent, split,0,0}; 879 xpparam_t xpp; 880 xdemitconf_t xecfg; 881 882/* 883 * Prepare mmfile that contains only the lines in ent. 884 */ 885 cp =nth_line(sb, ent->lno); 886 file_o.ptr = (char*) cp; 887 cnt = ent->num_lines; 888 889while(cnt && cp < sb->final_buf + sb->final_buf_size) { 890if(*cp++ =='\n') 891 cnt--; 892} 893 file_o.size = cp - file_o.ptr; 894 895/* 896 * file_o is a part of final image we are annotating. 897 * file_p partially may match that image. 898 */ 899memset(&xpp,0,sizeof(xpp)); 900 xpp.flags = xdl_opts; 901memset(&xecfg,0,sizeof(xecfg)); 902 xecfg.ctxlen =1; 903memset(split,0,sizeof(struct blame_entry [3])); 904xdi_diff_hunks(file_p, &file_o, handle_split_cb, &d, &xpp, &xecfg); 905/* remainder, if any, all match the preimage */ 906handle_split(sb, ent, d.tlno, d.plno, ent->num_lines, parent, split); 907} 908 909/* 910 * See if lines currently target is suspected for can be attributed to 911 * parent. 912 */ 913static intfind_move_in_parent(struct scoreboard *sb, 914struct origin *target, 915struct origin *parent) 916{ 917int last_in_target, made_progress; 918struct blame_entry *e, split[3]; 919 mmfile_t file_p; 920 921 last_in_target =find_last_in_target(sb, target); 922if(last_in_target <0) 923return1;/* nothing remains for this target */ 924 925fill_origin_blob(parent, &file_p); 926if(!file_p.ptr) 927return0; 928 929 made_progress =1; 930while(made_progress) { 931 made_progress =0; 932for(e = sb->ent; e; e = e->next) { 933if(e->guilty || !same_suspect(e->suspect, target) || 934ent_score(sb, e) < blame_move_score) 935continue; 936find_copy_in_blob(sb, e, parent, split, &file_p); 937if(split[1].suspect && 938 blame_move_score <ent_score(sb, &split[1])) { 939split_blame(sb, split, e); 940 made_progress =1; 941} 942decref_split(split); 943} 944} 945return0; 946} 947 948struct blame_list { 949struct blame_entry *ent; 950struct blame_entry split[3]; 951}; 952 953/* 954 * Count the number of entries the target is suspected for, 955 * and prepare a list of entry and the best split. 956 */ 957static struct blame_list *setup_blame_list(struct scoreboard *sb, 958struct origin *target, 959int min_score, 960int*num_ents_p) 961{ 962struct blame_entry *e; 963int num_ents, i; 964struct blame_list *blame_list = NULL; 965 966for(e = sb->ent, num_ents =0; e; e = e->next) 967if(!e->scanned && !e->guilty && 968same_suspect(e->suspect, target) && 969 min_score <ent_score(sb, e)) 970 num_ents++; 971if(num_ents) { 972 blame_list =xcalloc(num_ents,sizeof(struct blame_list)); 973for(e = sb->ent, i =0; e; e = e->next) 974if(!e->scanned && !e->guilty && 975same_suspect(e->suspect, target) && 976 min_score <ent_score(sb, e)) 977 blame_list[i++].ent = e; 978} 979*num_ents_p = num_ents; 980return blame_list; 981} 982 983/* 984 * Reset the scanned status on all entries. 985 */ 986static voidreset_scanned_flag(struct scoreboard *sb) 987{ 988struct blame_entry *e; 989for(e = sb->ent; e; e = e->next) 990 e->scanned =0; 991} 992 993/* 994 * For lines target is suspected for, see if we can find code movement 995 * across file boundary from the parent commit. porigin is the path 996 * in the parent we already tried. 997 */ 998static intfind_copy_in_parent(struct scoreboard *sb, 999struct origin *target,1000struct commit *parent,1001struct origin *porigin,1002int opt)1003{1004struct diff_options diff_opts;1005const char*paths[1];1006int i, j;1007int retval;1008struct blame_list *blame_list;1009int num_ents;10101011 blame_list =setup_blame_list(sb, target, blame_copy_score, &num_ents);1012if(!blame_list)1013return1;/* nothing remains for this target */10141015diff_setup(&diff_opts);1016DIFF_OPT_SET(&diff_opts, RECURSIVE);1017 diff_opts.output_format = DIFF_FORMAT_NO_OUTPUT;10181019 paths[0] = NULL;1020diff_tree_setup_paths(paths, &diff_opts);1021if(diff_setup_done(&diff_opts) <0)1022die("diff-setup");10231024/* Try "find copies harder" on new path if requested;1025 * we do not want to use diffcore_rename() actually to1026 * match things up; find_copies_harder is set only to1027 * force diff_tree_sha1() to feed all filepairs to diff_queue,1028 * and this code needs to be after diff_setup_done(), which1029 * usually makes find-copies-harder imply copy detection.1030 */1031if((opt & PICKAXE_BLAME_COPY_HARDEST)1032|| ((opt & PICKAXE_BLAME_COPY_HARDER)1033&& (!porigin ||strcmp(target->path, porigin->path))))1034DIFF_OPT_SET(&diff_opts, FIND_COPIES_HARDER);10351036if(is_null_sha1(target->commit->object.sha1))1037do_diff_cache(parent->tree->object.sha1, &diff_opts);1038else1039diff_tree_sha1(parent->tree->object.sha1,1040 target->commit->tree->object.sha1,1041"", &diff_opts);10421043if(!DIFF_OPT_TST(&diff_opts, FIND_COPIES_HARDER))1044diffcore_std(&diff_opts);10451046 retval =0;1047while(1) {1048int made_progress =0;10491050for(i =0; i < diff_queued_diff.nr; i++) {1051struct diff_filepair *p = diff_queued_diff.queue[i];1052struct origin *norigin;1053 mmfile_t file_p;1054struct blame_entry this[3];10551056if(!DIFF_FILE_VALID(p->one))1057continue;/* does not exist in parent */1058if(S_ISGITLINK(p->one->mode))1059continue;/* ignore git links */1060if(porigin && !strcmp(p->one->path, porigin->path))1061/* find_move already dealt with this path */1062continue;10631064 norigin =get_origin(sb, parent, p->one->path);1065hashcpy(norigin->blob_sha1, p->one->sha1);1066fill_origin_blob(norigin, &file_p);1067if(!file_p.ptr)1068continue;10691070for(j =0; j < num_ents; j++) {1071find_copy_in_blob(sb, blame_list[j].ent,1072 norigin,this, &file_p);1073copy_split_if_better(sb, blame_list[j].split,1074this);1075decref_split(this);1076}1077origin_decref(norigin);1078}10791080for(j =0; j < num_ents; j++) {1081struct blame_entry *split = blame_list[j].split;1082if(split[1].suspect &&1083 blame_copy_score <ent_score(sb, &split[1])) {1084split_blame(sb, split, blame_list[j].ent);1085 made_progress =1;1086}1087else1088 blame_list[j].ent->scanned =1;1089decref_split(split);1090}1091free(blame_list);10921093if(!made_progress)1094break;1095 blame_list =setup_blame_list(sb, target, blame_copy_score, &num_ents);1096if(!blame_list) {1097 retval =1;1098break;1099}1100}1101reset_scanned_flag(sb);1102diff_flush(&diff_opts);1103diff_tree_release_paths(&diff_opts);1104return retval;1105}11061107/*1108 * The blobs of origin and porigin exactly match, so everything1109 * origin is suspected for can be blamed on the parent.1110 */1111static voidpass_whole_blame(struct scoreboard *sb,1112struct origin *origin,struct origin *porigin)1113{1114struct blame_entry *e;11151116if(!porigin->file.ptr && origin->file.ptr) {1117/* Steal its file */1118 porigin->file = origin->file;1119 origin->file.ptr = NULL;1120}1121for(e = sb->ent; e; e = e->next) {1122if(!same_suspect(e->suspect, origin))1123continue;1124origin_incref(porigin);1125origin_decref(e->suspect);1126 e->suspect = porigin;1127}1128}11291130/*1131 * We pass blame from the current commit to its parents. We keep saying1132 * "parent" (and "porigin"), but what we mean is to find scapegoat to1133 * exonerate ourselves.1134 */1135static struct commit_list *first_scapegoat(struct rev_info *revs,struct commit *commit)1136{1137if(!reverse)1138return commit->parents;1139returnlookup_decoration(&revs->children, &commit->object);1140}11411142static intnum_scapegoats(struct rev_info *revs,struct commit *commit)1143{1144int cnt;1145struct commit_list *l =first_scapegoat(revs, commit);1146for(cnt =0; l; l = l->next)1147 cnt++;1148return cnt;1149}11501151#define MAXSG 1611521153static voidpass_blame(struct scoreboard *sb,struct origin *origin,int opt)1154{1155struct rev_info *revs = sb->revs;1156int i, pass, num_sg;1157struct commit *commit = origin->commit;1158struct commit_list *sg;1159struct origin *sg_buf[MAXSG];1160struct origin *porigin, **sg_origin = sg_buf;11611162 num_sg =num_scapegoats(revs, commit);1163if(!num_sg)1164goto finish;1165else if(num_sg <ARRAY_SIZE(sg_buf))1166memset(sg_buf,0,sizeof(sg_buf));1167else1168 sg_origin =xcalloc(num_sg,sizeof(*sg_origin));11691170/*1171 * The first pass looks for unrenamed path to optimize for1172 * common cases, then we look for renames in the second pass.1173 */1174for(pass =0; pass <2; pass++) {1175struct origin *(*find)(struct scoreboard *,1176struct commit *,struct origin *);1177 find = pass ? find_rename : find_origin;11781179for(i =0, sg =first_scapegoat(revs, commit);1180 i < num_sg && sg;1181 sg = sg->next, i++) {1182struct commit *p = sg->item;1183int j, same;11841185if(sg_origin[i])1186continue;1187if(parse_commit(p))1188continue;1189 porigin =find(sb, p, origin);1190if(!porigin)1191continue;1192if(!hashcmp(porigin->blob_sha1, origin->blob_sha1)) {1193pass_whole_blame(sb, origin, porigin);1194origin_decref(porigin);1195goto finish;1196}1197for(j = same =0; j < i; j++)1198if(sg_origin[j] &&1199!hashcmp(sg_origin[j]->blob_sha1,1200 porigin->blob_sha1)) {1201 same =1;1202break;1203}1204if(!same)1205 sg_origin[i] = porigin;1206else1207origin_decref(porigin);1208}1209}12101211 num_commits++;1212for(i =0, sg =first_scapegoat(revs, commit);1213 i < num_sg && sg;1214 sg = sg->next, i++) {1215struct origin *porigin = sg_origin[i];1216if(!porigin)1217continue;1218if(!origin->previous) {1219origin_incref(porigin);1220 origin->previous = porigin;1221}1222if(pass_blame_to_parent(sb, origin, porigin))1223goto finish;1224}12251226/*1227 * Optionally find moves in parents' files.1228 */1229if(opt & PICKAXE_BLAME_MOVE)1230for(i =0, sg =first_scapegoat(revs, commit);1231 i < num_sg && sg;1232 sg = sg->next, i++) {1233struct origin *porigin = sg_origin[i];1234if(!porigin)1235continue;1236if(find_move_in_parent(sb, origin, porigin))1237goto finish;1238}12391240/*1241 * Optionally find copies from parents' files.1242 */1243if(opt & PICKAXE_BLAME_COPY)1244for(i =0, sg =first_scapegoat(revs, commit);1245 i < num_sg && sg;1246 sg = sg->next, i++) {1247struct origin *porigin = sg_origin[i];1248if(find_copy_in_parent(sb, origin, sg->item,1249 porigin, opt))1250goto finish;1251}12521253 finish:1254for(i =0; i < num_sg; i++) {1255if(sg_origin[i]) {1256drop_origin_blob(sg_origin[i]);1257origin_decref(sg_origin[i]);1258}1259}1260drop_origin_blob(origin);1261if(sg_buf != sg_origin)1262free(sg_origin);1263}12641265/*1266 * Information on commits, used for output.1267 */1268struct commit_info1269{1270const char*author;1271const char*author_mail;1272unsigned long author_time;1273const char*author_tz;12741275/* filled only when asked for details */1276const char*committer;1277const char*committer_mail;1278unsigned long committer_time;1279const char*committer_tz;12801281const char*summary;1282};12831284/*1285 * Parse author/committer line in the commit object buffer1286 */1287static voidget_ac_line(const char*inbuf,const char*what,1288int person_len,char*person,1289int mail_len,char*mail,1290unsigned long*time,const char**tz)1291{1292int len, tzlen, maillen;1293char*tmp, *endp, *timepos, *mailpos;12941295 tmp =strstr(inbuf, what);1296if(!tmp)1297goto error_out;1298 tmp +=strlen(what);1299 endp =strchr(tmp,'\n');1300if(!endp)1301 len =strlen(tmp);1302else1303 len = endp - tmp;1304if(person_len <= len) {1305 error_out:1306/* Ugh */1307*tz ="(unknown)";1308strcpy(mail, *tz);1309*time =0;1310return;1311}1312memcpy(person, tmp, len);13131314 tmp = person;1315 tmp += len;1316*tmp =0;1317while(*tmp !=' ')1318 tmp--;1319*tz = tmp+1;1320 tzlen = (person+len)-(tmp+1);13211322*tmp =0;1323while(*tmp !=' ')1324 tmp--;1325*time =strtoul(tmp, NULL,10);1326 timepos = tmp;13271328*tmp =0;1329while(*tmp !=' ')1330 tmp--;1331 mailpos = tmp +1;1332*tmp =0;1333 maillen = timepos - tmp;1334memcpy(mail, mailpos, maillen);13351336if(!mailmap.nr)1337return;13381339/*1340 * mailmap expansion may make the name longer.1341 * make room by pushing stuff down.1342 */1343 tmp = person + person_len - (tzlen +1);1344memmove(tmp, *tz, tzlen);1345 tmp[tzlen] =0;1346*tz = tmp;13471348/*1349 * Now, convert both name and e-mail using mailmap1350 */1351if(map_user(&mailmap, mail+1, mail_len-1, person, tmp-person-1)) {1352/* Add a trailing '>' to email, since map_user returns plain emails1353 Note: It already has '<', since we replace from mail+1 */1354 mailpos =memchr(mail,'\0', mail_len);1355if(mailpos && mailpos-mail < mail_len -1) {1356*mailpos ='>';1357*(mailpos+1) ='\0';1358}1359}1360}13611362static voidget_commit_info(struct commit *commit,1363struct commit_info *ret,1364int detailed)1365{1366int len;1367char*tmp, *endp, *reencoded, *message;1368static char author_name[1024];1369static char author_mail[1024];1370static char committer_name[1024];1371static char committer_mail[1024];1372static char summary_buf[1024];13731374/*1375 * We've operated without save_commit_buffer, so1376 * we now need to populate them for output.1377 */1378if(!commit->buffer) {1379enum object_type type;1380unsigned long size;1381 commit->buffer =1382read_sha1_file(commit->object.sha1, &type, &size);1383if(!commit->buffer)1384die("Cannot read commit%s",1385sha1_to_hex(commit->object.sha1));1386}1387 reencoded =reencode_commit_message(commit, NULL);1388 message = reencoded ? reencoded : commit->buffer;1389 ret->author = author_name;1390 ret->author_mail = author_mail;1391get_ac_line(message,"\nauthor ",1392sizeof(author_name), author_name,1393sizeof(author_mail), author_mail,1394&ret->author_time, &ret->author_tz);13951396if(!detailed) {1397free(reencoded);1398return;1399}14001401 ret->committer = committer_name;1402 ret->committer_mail = committer_mail;1403get_ac_line(message,"\ncommitter ",1404sizeof(committer_name), committer_name,1405sizeof(committer_mail), committer_mail,1406&ret->committer_time, &ret->committer_tz);14071408 ret->summary = summary_buf;1409 tmp =strstr(message,"\n\n");1410if(!tmp) {1411 error_out:1412sprintf(summary_buf,"(%s)",sha1_to_hex(commit->object.sha1));1413free(reencoded);1414return;1415}1416 tmp +=2;1417 endp =strchr(tmp,'\n');1418if(!endp)1419 endp = tmp +strlen(tmp);1420 len = endp - tmp;1421if(len >=sizeof(summary_buf) || len ==0)1422goto error_out;1423memcpy(summary_buf, tmp, len);1424 summary_buf[len] =0;1425free(reencoded);1426}14271428/*1429 * To allow LF and other nonportable characters in pathnames,1430 * they are c-style quoted as needed.1431 */1432static voidwrite_filename_info(const char*path)1433{1434printf("filename ");1435write_name_quoted(path, stdout,'\n');1436}14371438/*1439 * Porcelain/Incremental format wants to show a lot of details per1440 * commit. Instead of repeating this every line, emit it only once,1441 * the first time each commit appears in the output.1442 */1443static intemit_one_suspect_detail(struct origin *suspect)1444{1445struct commit_info ci;14461447if(suspect->commit->object.flags & METAINFO_SHOWN)1448return0;14491450 suspect->commit->object.flags |= METAINFO_SHOWN;1451get_commit_info(suspect->commit, &ci,1);1452printf("author%s\n", ci.author);1453printf("author-mail%s\n", ci.author_mail);1454printf("author-time%lu\n", ci.author_time);1455printf("author-tz%s\n", ci.author_tz);1456printf("committer%s\n", ci.committer);1457printf("committer-mail%s\n", ci.committer_mail);1458printf("committer-time%lu\n", ci.committer_time);1459printf("committer-tz%s\n", ci.committer_tz);1460printf("summary%s\n", ci.summary);1461if(suspect->commit->object.flags & UNINTERESTING)1462printf("boundary\n");1463if(suspect->previous) {1464struct origin *prev = suspect->previous;1465printf("previous%s",sha1_to_hex(prev->commit->object.sha1));1466write_name_quoted(prev->path, stdout,'\n');1467}1468return1;1469}14701471/*1472 * The blame_entry is found to be guilty for the range. Mark it1473 * as such, and show it in incremental output.1474 */1475static voidfound_guilty_entry(struct blame_entry *ent)1476{1477if(ent->guilty)1478return;1479 ent->guilty =1;1480if(incremental) {1481struct origin *suspect = ent->suspect;14821483printf("%s %d %d %d\n",1484sha1_to_hex(suspect->commit->object.sha1),1485 ent->s_lno +1, ent->lno +1, ent->num_lines);1486emit_one_suspect_detail(suspect);1487write_filename_info(suspect->path);1488maybe_flush_or_die(stdout,"stdout");1489}1490}14911492/*1493 * The main loop -- while the scoreboard has lines whose true origin1494 * is still unknown, pick one blame_entry, and allow its current1495 * suspect to pass blames to its parents.1496 */1497static voidassign_blame(struct scoreboard *sb,int opt)1498{1499struct rev_info *revs = sb->revs;15001501while(1) {1502struct blame_entry *ent;1503struct commit *commit;1504struct origin *suspect = NULL;15051506/* find one suspect to break down */1507for(ent = sb->ent; !suspect && ent; ent = ent->next)1508if(!ent->guilty)1509 suspect = ent->suspect;1510if(!suspect)1511return;/* all done */15121513/*1514 * We will use this suspect later in the loop,1515 * so hold onto it in the meantime.1516 */1517origin_incref(suspect);1518 commit = suspect->commit;1519if(!commit->object.parsed)1520parse_commit(commit);1521if(reverse ||1522(!(commit->object.flags & UNINTERESTING) &&1523!(revs->max_age != -1&& commit->date < revs->max_age)))1524pass_blame(sb, suspect, opt);1525else{1526 commit->object.flags |= UNINTERESTING;1527if(commit->object.parsed)1528mark_parents_uninteresting(commit);1529}1530/* treat root commit as boundary */1531if(!commit->parents && !show_root)1532 commit->object.flags |= UNINTERESTING;15331534/* Take responsibility for the remaining entries */1535for(ent = sb->ent; ent; ent = ent->next)1536if(same_suspect(ent->suspect, suspect))1537found_guilty_entry(ent);1538origin_decref(suspect);15391540if(DEBUG)/* sanity */1541sanity_check_refcnt(sb);1542}1543}15441545static const char*format_time(unsigned long time,const char*tz_str,1546int show_raw_time)1547{1548static char time_buf[128];1549const char*time_str;1550int time_len;1551int tz;15521553if(show_raw_time) {1554sprintf(time_buf,"%lu%s", time, tz_str);1555}1556else{1557 tz =atoi(tz_str);1558 time_str =show_date(time, tz, blame_date_mode);1559 time_len =strlen(time_str);1560memcpy(time_buf, time_str, time_len);1561memset(time_buf + time_len,' ', blame_date_width - time_len);1562}1563return time_buf;1564}15651566#define OUTPUT_ANNOTATE_COMPAT 0011567#define OUTPUT_LONG_OBJECT_NAME 0021568#define OUTPUT_RAW_TIMESTAMP 0041569#define OUTPUT_PORCELAIN 0101570#define OUTPUT_SHOW_NAME 0201571#define OUTPUT_SHOW_NUMBER 0401572#define OUTPUT_SHOW_SCORE 01001573#define OUTPUT_NO_AUTHOR 020015741575static voidemit_porcelain(struct scoreboard *sb,struct blame_entry *ent)1576{1577int cnt;1578const char*cp;1579struct origin *suspect = ent->suspect;1580char hex[41];15811582strcpy(hex,sha1_to_hex(suspect->commit->object.sha1));1583printf("%s%c%d %d %d\n",1584 hex,1585 ent->guilty ?' ':'*',// purely for debugging1586 ent->s_lno +1,1587 ent->lno +1,1588 ent->num_lines);1589if(emit_one_suspect_detail(suspect) ||1590(suspect->commit->object.flags & MORE_THAN_ONE_PATH))1591write_filename_info(suspect->path);15921593 cp =nth_line(sb, ent->lno);1594for(cnt =0; cnt < ent->num_lines; cnt++) {1595char ch;1596if(cnt)1597printf("%s %d %d\n", hex,1598 ent->s_lno +1+ cnt,1599 ent->lno +1+ cnt);1600putchar('\t');1601do{1602 ch = *cp++;1603putchar(ch);1604}while(ch !='\n'&&1605 cp < sb->final_buf + sb->final_buf_size);1606}16071608if(sb->final_buf_size && cp[-1] !='\n')1609putchar('\n');1610}16111612static voidemit_other(struct scoreboard *sb,struct blame_entry *ent,int opt)1613{1614int cnt;1615const char*cp;1616struct origin *suspect = ent->suspect;1617struct commit_info ci;1618char hex[41];1619int show_raw_time = !!(opt & OUTPUT_RAW_TIMESTAMP);16201621get_commit_info(suspect->commit, &ci,1);1622strcpy(hex,sha1_to_hex(suspect->commit->object.sha1));16231624 cp =nth_line(sb, ent->lno);1625for(cnt =0; cnt < ent->num_lines; cnt++) {1626char ch;1627int length = (opt & OUTPUT_LONG_OBJECT_NAME) ?40:8;16281629if(suspect->commit->object.flags & UNINTERESTING) {1630if(blank_boundary)1631memset(hex,' ', length);1632else if(!(opt & OUTPUT_ANNOTATE_COMPAT)) {1633 length--;1634putchar('^');1635}1636}16371638printf("%.*s", length, hex);1639if(opt & OUTPUT_ANNOTATE_COMPAT)1640printf("\t(%10s\t%10s\t%d)", ci.author,1641format_time(ci.author_time, ci.author_tz,1642 show_raw_time),1643 ent->lno +1+ cnt);1644else{1645if(opt & OUTPUT_SHOW_SCORE)1646printf(" %*d%02d",1647 max_score_digits, ent->score,1648 ent->suspect->refcnt);1649if(opt & OUTPUT_SHOW_NAME)1650printf(" %-*.*s", longest_file, longest_file,1651 suspect->path);1652if(opt & OUTPUT_SHOW_NUMBER)1653printf(" %*d", max_orig_digits,1654 ent->s_lno +1+ cnt);16551656if(!(opt & OUTPUT_NO_AUTHOR)) {1657int pad = longest_author -utf8_strwidth(ci.author);1658printf(" (%s%*s%10s",1659 ci.author, pad,"",1660format_time(ci.author_time,1661 ci.author_tz,1662 show_raw_time));1663}1664printf(" %*d) ",1665 max_digits, ent->lno +1+ cnt);1666}1667do{1668 ch = *cp++;1669putchar(ch);1670}while(ch !='\n'&&1671 cp < sb->final_buf + sb->final_buf_size);1672}16731674if(sb->final_buf_size && cp[-1] !='\n')1675putchar('\n');1676}16771678static voidoutput(struct scoreboard *sb,int option)1679{1680struct blame_entry *ent;16811682if(option & OUTPUT_PORCELAIN) {1683for(ent = sb->ent; ent; ent = ent->next) {1684struct blame_entry *oth;1685struct origin *suspect = ent->suspect;1686struct commit *commit = suspect->commit;1687if(commit->object.flags & MORE_THAN_ONE_PATH)1688continue;1689for(oth = ent->next; oth; oth = oth->next) {1690if((oth->suspect->commit != commit) ||1691!strcmp(oth->suspect->path, suspect->path))1692continue;1693 commit->object.flags |= MORE_THAN_ONE_PATH;1694break;1695}1696}1697}16981699for(ent = sb->ent; ent; ent = ent->next) {1700if(option & OUTPUT_PORCELAIN)1701emit_porcelain(sb, ent);1702else{1703emit_other(sb, ent, option);1704}1705}1706}17071708/*1709 * To allow quick access to the contents of nth line in the1710 * final image, prepare an index in the scoreboard.1711 */1712static intprepare_lines(struct scoreboard *sb)1713{1714const char*buf = sb->final_buf;1715unsigned long len = sb->final_buf_size;1716int num =0, incomplete =0, bol =1;17171718if(len && buf[len-1] !='\n')1719 incomplete++;/* incomplete line at the end */1720while(len--) {1721if(bol) {1722 sb->lineno =xrealloc(sb->lineno,1723sizeof(int*) * (num +1));1724 sb->lineno[num] = buf - sb->final_buf;1725 bol =0;1726}1727if(*buf++ =='\n') {1728 num++;1729 bol =1;1730}1731}1732 sb->lineno =xrealloc(sb->lineno,1733sizeof(int*) * (num + incomplete +1));1734 sb->lineno[num + incomplete] = buf - sb->final_buf;1735 sb->num_lines = num + incomplete;1736return sb->num_lines;1737}17381739/*1740 * Add phony grafts for use with -S; this is primarily to1741 * support git's cvsserver that wants to give a linear history1742 * to its clients.1743 */1744static intread_ancestry(const char*graft_file)1745{1746FILE*fp =fopen(graft_file,"r");1747char buf[1024];1748if(!fp)1749return-1;1750while(fgets(buf,sizeof(buf), fp)) {1751/* The format is just "Commit Parent1 Parent2 ...\n" */1752int len =strlen(buf);1753struct commit_graft *graft =read_graft_line(buf, len);1754if(graft)1755register_commit_graft(graft,0);1756}1757fclose(fp);1758return0;1759}17601761/*1762 * How many columns do we need to show line numbers in decimal?1763 */1764static intlineno_width(int lines)1765{1766int i, width;17671768for(width =1, i =10; i <= lines +1; width++)1769 i *=10;1770return width;1771}17721773/*1774 * How many columns do we need to show line numbers, authors,1775 * and filenames?1776 */1777static voidfind_alignment(struct scoreboard *sb,int*option)1778{1779int longest_src_lines =0;1780int longest_dst_lines =0;1781unsigned largest_score =0;1782struct blame_entry *e;17831784for(e = sb->ent; e; e = e->next) {1785struct origin *suspect = e->suspect;1786struct commit_info ci;1787int num;17881789if(strcmp(suspect->path, sb->path))1790*option |= OUTPUT_SHOW_NAME;1791 num =strlen(suspect->path);1792if(longest_file < num)1793 longest_file = num;1794if(!(suspect->commit->object.flags & METAINFO_SHOWN)) {1795 suspect->commit->object.flags |= METAINFO_SHOWN;1796get_commit_info(suspect->commit, &ci,1);1797 num =utf8_strwidth(ci.author);1798if(longest_author < num)1799 longest_author = num;1800}1801 num = e->s_lno + e->num_lines;1802if(longest_src_lines < num)1803 longest_src_lines = num;1804 num = e->lno + e->num_lines;1805if(longest_dst_lines < num)1806 longest_dst_lines = num;1807if(largest_score <ent_score(sb, e))1808 largest_score =ent_score(sb, e);1809}1810 max_orig_digits =lineno_width(longest_src_lines);1811 max_digits =lineno_width(longest_dst_lines);1812 max_score_digits =lineno_width(largest_score);1813}18141815/*1816 * For debugging -- origin is refcounted, and this asserts that1817 * we do not underflow.1818 */1819static voidsanity_check_refcnt(struct scoreboard *sb)1820{1821int baa =0;1822struct blame_entry *ent;18231824for(ent = sb->ent; ent; ent = ent->next) {1825/* Nobody should have zero or negative refcnt */1826if(ent->suspect->refcnt <=0) {1827fprintf(stderr,"%sin%shas negative refcnt%d\n",1828 ent->suspect->path,1829sha1_to_hex(ent->suspect->commit->object.sha1),1830 ent->suspect->refcnt);1831 baa =1;1832}1833}1834if(baa) {1835int opt =0160;1836find_alignment(sb, &opt);1837output(sb, opt);1838die("Baa%d!", baa);1839}1840}18411842/*1843 * Used for the command line parsing; check if the path exists1844 * in the working tree.1845 */1846static inthas_string_in_work_tree(const char*path)1847{1848struct stat st;1849return!lstat(path, &st);1850}18511852static unsignedparse_score(const char*arg)1853{1854char*end;1855unsigned long score =strtoul(arg, &end,10);1856if(*end)1857return0;1858return score;1859}18601861static const char*add_prefix(const char*prefix,const char*path)1862{1863returnprefix_path(prefix, prefix ?strlen(prefix) :0, path);1864}18651866/*1867 * Parsing of (comma separated) one item in the -L option1868 */1869static const char*parse_loc(const char*spec,1870struct scoreboard *sb,long lno,1871long begin,long*ret)1872{1873char*term;1874const char*line;1875long num;1876int reg_error;1877 regex_t regexp;1878 regmatch_t match[1];18791880/* Allow "-L <something>,+20" to mean starting at <something>1881 * for 20 lines, or "-L <something>,-5" for 5 lines ending at1882 * <something>.1883 */1884if(1< begin && (spec[0] =='+'|| spec[0] =='-')) {1885 num =strtol(spec +1, &term,10);1886if(term != spec +1) {1887if(spec[0] =='-')1888 num =0- num;1889if(0< num)1890*ret = begin + num -2;1891else if(!num)1892*ret = begin;1893else1894*ret = begin + num;1895return term;1896}1897return spec;1898}1899 num =strtol(spec, &term,10);1900if(term != spec) {1901*ret = num;1902return term;1903}1904if(spec[0] !='/')1905return spec;19061907/* it could be a regexp of form /.../ */1908for(term = (char*) spec +1; *term && *term !='/'; term++) {1909if(*term =='\\')1910 term++;1911}1912if(*term !='/')1913return spec;19141915/* try [spec+1 .. term-1] as regexp */1916*term =0;1917 begin--;/* input is in human terms */1918 line =nth_line(sb, begin);19191920if(!(reg_error =regcomp(®exp, spec +1, REG_NEWLINE)) &&1921!(reg_error =regexec(®exp, line,1, match,0))) {1922const char*cp = line + match[0].rm_so;1923const char*nline;19241925while(begin++ < lno) {1926 nline =nth_line(sb, begin);1927if(line <= cp && cp < nline)1928break;1929 line = nline;1930}1931*ret = begin;1932regfree(®exp);1933*term++ ='/';1934return term;1935}1936else{1937char errbuf[1024];1938regerror(reg_error, ®exp, errbuf,1024);1939die("-L parameter '%s':%s", spec +1, errbuf);1940}1941}19421943/*1944 * Parsing of -L option1945 */1946static voidprepare_blame_range(struct scoreboard *sb,1947const char*bottomtop,1948long lno,1949long*bottom,long*top)1950{1951const char*term;19521953 term =parse_loc(bottomtop, sb, lno,1, bottom);1954if(*term ==',') {1955 term =parse_loc(term +1, sb, lno, *bottom +1, top);1956if(*term)1957usage(blame_usage);1958}1959if(*term)1960usage(blame_usage);1961}19621963static intgit_blame_config(const char*var,const char*value,void*cb)1964{1965if(!strcmp(var,"blame.showroot")) {1966 show_root =git_config_bool(var, value);1967return0;1968}1969if(!strcmp(var,"blame.blankboundary")) {1970 blank_boundary =git_config_bool(var, value);1971return0;1972}1973if(!strcmp(var,"blame.date")) {1974if(!value)1975returnconfig_error_nonbool(var);1976 blame_date_mode =parse_date_format(value);1977return0;1978}1979returngit_default_config(var, value, cb);1980}19811982/*1983 * Prepare a dummy commit that represents the work tree (or staged) item.1984 * Note that annotating work tree item never works in the reverse.1985 */1986static struct commit *fake_working_tree_commit(const char*path,const char*contents_from)1987{1988struct commit *commit;1989struct origin *origin;1990unsigned char head_sha1[20];1991struct strbuf buf = STRBUF_INIT;1992const char*ident;1993time_t now;1994int size, len;1995struct cache_entry *ce;1996unsigned mode;19971998if(get_sha1("HEAD", head_sha1))1999die("No such ref: HEAD");20002001time(&now);2002 commit =xcalloc(1,sizeof(*commit));2003 commit->parents =xcalloc(1,sizeof(*commit->parents));2004 commit->parents->item =lookup_commit_reference(head_sha1);2005 commit->object.parsed =1;2006 commit->date = now;2007 commit->object.type = OBJ_COMMIT;20082009 origin =make_origin(commit, path);20102011if(!contents_from ||strcmp("-", contents_from)) {2012struct stat st;2013const char*read_from;20142015if(contents_from) {2016if(stat(contents_from, &st) <0)2017die_errno("Cannot stat '%s'", contents_from);2018 read_from = contents_from;2019}2020else{2021if(lstat(path, &st) <0)2022die_errno("Cannot lstat '%s'", path);2023 read_from = path;2024}2025 mode =canon_mode(st.st_mode);2026switch(st.st_mode & S_IFMT) {2027case S_IFREG:2028if(strbuf_read_file(&buf, read_from, st.st_size) != st.st_size)2029die_errno("cannot open or read '%s'", read_from);2030break;2031case S_IFLNK:2032if(strbuf_readlink(&buf, read_from, st.st_size) <0)2033die_errno("cannot readlink '%s'", read_from);2034break;2035default:2036die("unsupported file type%s", read_from);2037}2038}2039else{2040/* Reading from stdin */2041 contents_from ="standard input";2042 mode =0;2043if(strbuf_read(&buf,0,0) <0)2044die_errno("failed to read from stdin");2045}2046convert_to_git(path, buf.buf, buf.len, &buf,0);2047 origin->file.ptr = buf.buf;2048 origin->file.size = buf.len;2049pretend_sha1_file(buf.buf, buf.len, OBJ_BLOB, origin->blob_sha1);2050 commit->util = origin;20512052/*2053 * Read the current index, replace the path entry with2054 * origin->blob_sha1 without mucking with its mode or type2055 * bits; we are not going to write this index out -- we just2056 * want to run "diff-index --cached".2057 */2058discard_cache();2059read_cache();20602061 len =strlen(path);2062if(!mode) {2063int pos =cache_name_pos(path, len);2064if(0<= pos)2065 mode = active_cache[pos]->ce_mode;2066else2067/* Let's not bother reading from HEAD tree */2068 mode = S_IFREG |0644;2069}2070 size =cache_entry_size(len);2071 ce =xcalloc(1, size);2072hashcpy(ce->sha1, origin->blob_sha1);2073memcpy(ce->name, path, len);2074 ce->ce_flags =create_ce_flags(len,0);2075 ce->ce_mode =create_ce_mode(mode);2076add_cache_entry(ce, ADD_CACHE_OK_TO_ADD|ADD_CACHE_OK_TO_REPLACE);20772078/*2079 * We are not going to write this out, so this does not matter2080 * right now, but someday we might optimize diff-index --cached2081 * with cache-tree information.2082 */2083cache_tree_invalidate_path(active_cache_tree, path);20842085 commit->buffer =xmalloc(400);2086 ident =fmt_ident("Not Committed Yet","not.committed.yet", NULL,0);2087snprintf(commit->buffer,400,2088"tree 0000000000000000000000000000000000000000\n"2089"parent%s\n"2090"author%s\n"2091"committer%s\n\n"2092"Version of%sfrom%s\n",2093sha1_to_hex(head_sha1),2094 ident, ident, path, contents_from ? contents_from : path);2095return commit;2096}20972098static const char*prepare_final(struct scoreboard *sb)2099{2100int i;2101const char*final_commit_name = NULL;2102struct rev_info *revs = sb->revs;21032104/*2105 * There must be one and only one positive commit in the2106 * revs->pending array.2107 */2108for(i =0; i < revs->pending.nr; i++) {2109struct object *obj = revs->pending.objects[i].item;2110if(obj->flags & UNINTERESTING)2111continue;2112while(obj->type == OBJ_TAG)2113 obj =deref_tag(obj, NULL,0);2114if(obj->type != OBJ_COMMIT)2115die("Non commit%s?", revs->pending.objects[i].name);2116if(sb->final)2117die("More than one commit to dig from%sand%s?",2118 revs->pending.objects[i].name,2119 final_commit_name);2120 sb->final = (struct commit *) obj;2121 final_commit_name = revs->pending.objects[i].name;2122}2123return final_commit_name;2124}21252126static const char*prepare_initial(struct scoreboard *sb)2127{2128int i;2129const char*final_commit_name = NULL;2130struct rev_info *revs = sb->revs;21312132/*2133 * There must be one and only one negative commit, and it must be2134 * the boundary.2135 */2136for(i =0; i < revs->pending.nr; i++) {2137struct object *obj = revs->pending.objects[i].item;2138if(!(obj->flags & UNINTERESTING))2139continue;2140while(obj->type == OBJ_TAG)2141 obj =deref_tag(obj, NULL,0);2142if(obj->type != OBJ_COMMIT)2143die("Non commit%s?", revs->pending.objects[i].name);2144if(sb->final)2145die("More than one commit to dig down to%sand%s?",2146 revs->pending.objects[i].name,2147 final_commit_name);2148 sb->final = (struct commit *) obj;2149 final_commit_name = revs->pending.objects[i].name;2150}2151if(!final_commit_name)2152die("No commit to dig down to?");2153return final_commit_name;2154}21552156static intblame_copy_callback(const struct option *option,const char*arg,int unset)2157{2158int*opt = option->value;21592160/*2161 * -C enables copy from removed files;2162 * -C -C enables copy from existing files, but only2163 * when blaming a new file;2164 * -C -C -C enables copy from existing files for2165 * everybody2166 */2167if(*opt & PICKAXE_BLAME_COPY_HARDER)2168*opt |= PICKAXE_BLAME_COPY_HARDEST;2169if(*opt & PICKAXE_BLAME_COPY)2170*opt |= PICKAXE_BLAME_COPY_HARDER;2171*opt |= PICKAXE_BLAME_COPY | PICKAXE_BLAME_MOVE;21722173if(arg)2174 blame_copy_score =parse_score(arg);2175return0;2176}21772178static intblame_move_callback(const struct option *option,const char*arg,int unset)2179{2180int*opt = option->value;21812182*opt |= PICKAXE_BLAME_MOVE;21832184if(arg)2185 blame_move_score =parse_score(arg);2186return0;2187}21882189static intblame_bottomtop_callback(const struct option *option,const char*arg,int unset)2190{2191const char**bottomtop = option->value;2192if(!arg)2193return-1;2194if(*bottomtop)2195die("More than one '-L n,m' option given");2196*bottomtop = arg;2197return0;2198}21992200intcmd_blame(int argc,const char**argv,const char*prefix)2201{2202struct rev_info revs;2203const char*path;2204struct scoreboard sb;2205struct origin *o;2206struct blame_entry *ent;2207long dashdash_pos, bottom, top, lno;2208const char*final_commit_name = NULL;2209enum object_type type;22102211static const char*bottomtop = NULL;2212static int output_option =0, opt =0;2213static int show_stats =0;2214static const char*revs_file = NULL;2215static const char*contents_from = NULL;2216static const struct option options[] = {2217OPT_BOOLEAN(0,"incremental", &incremental,"Show blame entries as we find them, incrementally"),2218OPT_BOOLEAN('b', NULL, &blank_boundary,"Show blank SHA-1 for boundary commits (Default: off)"),2219OPT_BOOLEAN(0,"root", &show_root,"Do not treat root commits as boundaries (Default: off)"),2220OPT_BOOLEAN(0,"show-stats", &show_stats,"Show work cost statistics"),2221OPT_BIT(0,"score-debug", &output_option,"Show output score for blame entries", OUTPUT_SHOW_SCORE),2222OPT_BIT('f',"show-name", &output_option,"Show original filename (Default: auto)", OUTPUT_SHOW_NAME),2223OPT_BIT('n',"show-number", &output_option,"Show original linenumber (Default: off)", OUTPUT_SHOW_NUMBER),2224OPT_BIT('p',"porcelain", &output_option,"Show in a format designed for machine consumption", OUTPUT_PORCELAIN),2225OPT_BIT('c', NULL, &output_option,"Use the same output mode as git-annotate (Default: off)", OUTPUT_ANNOTATE_COMPAT),2226OPT_BIT('t', NULL, &output_option,"Show raw timestamp (Default: off)", OUTPUT_RAW_TIMESTAMP),2227OPT_BIT('l', NULL, &output_option,"Show long commit SHA1 (Default: off)", OUTPUT_LONG_OBJECT_NAME),2228OPT_BIT('s', NULL, &output_option,"Suppress author name and timestamp (Default: off)", OUTPUT_NO_AUTHOR),2229OPT_BIT('w', NULL, &xdl_opts,"Ignore whitespace differences", XDF_IGNORE_WHITESPACE),2230OPT_STRING('S', NULL, &revs_file,"file","Use revisions from <file> instead of calling git-rev-list"),2231OPT_STRING(0,"contents", &contents_from,"file","Use <file>'s contents as the final image"),2232{ OPTION_CALLBACK,'C', NULL, &opt,"score","Find line copies within and across files", PARSE_OPT_OPTARG, blame_copy_callback },2233{ OPTION_CALLBACK,'M', NULL, &opt,"score","Find line movements within and across files", PARSE_OPT_OPTARG, blame_move_callback },2234OPT_CALLBACK('L', NULL, &bottomtop,"n,m","Process only line range n,m, counting from 1", blame_bottomtop_callback),2235OPT_END()2236};22372238struct parse_opt_ctx_t ctx;2239int cmd_is_annotate = !strcmp(argv[0],"annotate");22402241git_config(git_blame_config, NULL);2242init_revisions(&revs, NULL);2243 revs.date_mode = blame_date_mode;22442245 save_commit_buffer =0;2246 dashdash_pos =0;22472248parse_options_start(&ctx, argc, argv, prefix, PARSE_OPT_KEEP_DASHDASH |2249 PARSE_OPT_KEEP_ARGV0);2250for(;;) {2251switch(parse_options_step(&ctx, options, blame_opt_usage)) {2252case PARSE_OPT_HELP:2253exit(129);2254case PARSE_OPT_DONE:2255if(ctx.argv[0])2256 dashdash_pos = ctx.cpidx;2257goto parse_done;2258}22592260if(!strcmp(ctx.argv[0],"--reverse")) {2261 ctx.argv[0] ="--children";2262 reverse =1;2263}2264parse_revision_opt(&revs, &ctx, options, blame_opt_usage);2265}2266parse_done:2267 argc =parse_options_end(&ctx);22682269if(revs_file &&read_ancestry(revs_file))2270die_errno("reading graft file '%s' failed", revs_file);22712272if(cmd_is_annotate) {2273 output_option |= OUTPUT_ANNOTATE_COMPAT;2274 blame_date_mode = DATE_ISO8601;2275}else{2276 blame_date_mode = revs.date_mode;2277}22782279/* The maximum width used to show the dates */2280switch(blame_date_mode) {2281case DATE_RFC2822:2282 blame_date_width =sizeof("Thu, 19 Oct 2006 16:00:04 -0700");2283break;2284case DATE_ISO8601:2285 blame_date_width =sizeof("2006-10-19 16:00:04 -0700");2286break;2287case DATE_RAW:2288 blame_date_width =sizeof("1161298804 -0700");2289break;2290case DATE_SHORT:2291 blame_date_width =sizeof("2006-10-19");2292break;2293case DATE_RELATIVE:2294/* "normal" is used as the fallback for "relative" */2295case DATE_LOCAL:2296case DATE_NORMAL:2297 blame_date_width =sizeof("Thu Oct 19 16:00:04 2006 -0700");2298break;2299}2300 blame_date_width -=1;/* strip the null */23012302if(DIFF_OPT_TST(&revs.diffopt, FIND_COPIES_HARDER))2303 opt |= (PICKAXE_BLAME_COPY | PICKAXE_BLAME_MOVE |2304 PICKAXE_BLAME_COPY_HARDER);23052306if(!blame_move_score)2307 blame_move_score = BLAME_DEFAULT_MOVE_SCORE;2308if(!blame_copy_score)2309 blame_copy_score = BLAME_DEFAULT_COPY_SCORE;23102311/*2312 * We have collected options unknown to us in argv[1..unk]2313 * which are to be passed to revision machinery if we are2314 * going to do the "bottom" processing.2315 *2316 * The remaining are:2317 *2318 * (1) if dashdash_pos != 0, its either2319 * "blame [revisions] -- <path>" or2320 * "blame -- <path> <rev>"2321 *2322 * (2) otherwise, its one of the two:2323 * "blame [revisions] <path>"2324 * "blame <path> <rev>"2325 *2326 * Note that we must strip out <path> from the arguments: we do not2327 * want the path pruning but we may want "bottom" processing.2328 */2329if(dashdash_pos) {2330switch(argc - dashdash_pos -1) {2331case2:/* (1b) */2332if(argc !=4)2333usage_with_options(blame_opt_usage, options);2334/* reorder for the new way: <rev> -- <path> */2335 argv[1] = argv[3];2336 argv[3] = argv[2];2337 argv[2] ="--";2338/* FALLTHROUGH */2339case1:/* (1a) */2340 path =add_prefix(prefix, argv[--argc]);2341 argv[argc] = NULL;2342break;2343default:2344usage_with_options(blame_opt_usage, options);2345}2346}else{2347if(argc <2)2348usage_with_options(blame_opt_usage, options);2349 path =add_prefix(prefix, argv[argc -1]);2350if(argc ==3&& !has_string_in_work_tree(path)) {/* (2b) */2351 path =add_prefix(prefix, argv[1]);2352 argv[1] = argv[2];2353}2354 argv[argc -1] ="--";23552356setup_work_tree();2357if(!has_string_in_work_tree(path))2358die_errno("cannot stat path '%s'", path);2359}23602361 revs.disable_stdin =1;2362setup_revisions(argc, argv, &revs, NULL);2363memset(&sb,0,sizeof(sb));23642365 sb.revs = &revs;2366if(!reverse)2367 final_commit_name =prepare_final(&sb);2368else if(contents_from)2369die("--contents and --children do not blend well.");2370else2371 final_commit_name =prepare_initial(&sb);23722373if(!sb.final) {2374/*2375 * "--not A B -- path" without anything positive;2376 * do not default to HEAD, but use the working tree2377 * or "--contents".2378 */2379setup_work_tree();2380 sb.final =fake_working_tree_commit(path, contents_from);2381add_pending_object(&revs, &(sb.final->object),":");2382}2383else if(contents_from)2384die("Cannot use --contents with final commit object name");23852386/*2387 * If we have bottom, this will mark the ancestors of the2388 * bottom commits we would reach while traversing as2389 * uninteresting.2390 */2391if(prepare_revision_walk(&revs))2392die("revision walk setup failed");23932394if(is_null_sha1(sb.final->object.sha1)) {2395char*buf;2396 o = sb.final->util;2397 buf =xmalloc(o->file.size +1);2398memcpy(buf, o->file.ptr, o->file.size +1);2399 sb.final_buf = buf;2400 sb.final_buf_size = o->file.size;2401}2402else{2403 o =get_origin(&sb, sb.final, path);2404if(fill_blob_sha1(o))2405die("no such path%sin%s", path, final_commit_name);24062407 sb.final_buf =read_sha1_file(o->blob_sha1, &type,2408&sb.final_buf_size);2409if(!sb.final_buf)2410die("Cannot read blob%sfor path%s",2411sha1_to_hex(o->blob_sha1),2412 path);2413}2414 num_read_blob++;2415 lno =prepare_lines(&sb);24162417 bottom = top =0;2418if(bottomtop)2419prepare_blame_range(&sb, bottomtop, lno, &bottom, &top);2420if(bottom && top && top < bottom) {2421long tmp;2422 tmp = top; top = bottom; bottom = tmp;2423}2424if(bottom <1)2425 bottom =1;2426if(top <1)2427 top = lno;2428 bottom--;2429if(lno < top)2430die("file%shas only%lu lines", path, lno);24312432 ent =xcalloc(1,sizeof(*ent));2433 ent->lno = bottom;2434 ent->num_lines = top - bottom;2435 ent->suspect = o;2436 ent->s_lno = bottom;24372438 sb.ent = ent;2439 sb.path = path;24402441read_mailmap(&mailmap, NULL);24422443if(!incremental)2444setup_pager();24452446assign_blame(&sb, opt);24472448if(incremental)2449return0;24502451coalesce(&sb);24522453if(!(output_option & OUTPUT_PORCELAIN))2454find_alignment(&sb, &output_option);24552456output(&sb, output_option);2457free((void*)sb.final_buf);2458for(ent = sb.ent; ent; ) {2459struct blame_entry *e = ent->next;2460free(ent);2461 ent = e;2462}24632464if(show_stats) {2465printf("num read blob:%d\n", num_read_blob);2466printf("num get patch:%d\n", num_get_patch);2467printf("num commits:%d\n", num_commits);2468}2469return0;2470}