200772c75afd0ddae9e3d9e5eb988a191f62563b
   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 "xdiff-interface.h"
  17
  18#include <time.h>
  19#include <sys/time.h>
  20
  21static char pickaxe_usage[] =
  22"git-pickaxe [-c] [-l] [-t] [-f] [-n] [-p] [-L n,m] [-S <revs-file>] [-M] [-C] [-C] [commit] [--] file\n"
  23"  -c, --compatibility Use the same output mode as git-annotate (Default: off)\n"
  24"  -l, --long          Show long commit SHA1 (Default: off)\n"
  25"  -t, --time          Show raw timestamp (Default: off)\n"
  26"  -f, --show-name     Show original filename (Default: auto)\n"
  27"  -n, --show-number   Show original linenumber (Default: off)\n"
  28"  -p, --porcelain     Show in a format designed for machine consumption\n"
  29"  -L n,m              Process only line range n,m, counting from 1\n"
  30"  -M, -C              Find line movements within and across files\n"
  31"  -S revs-file        Use revisions from revs-file instead of calling git-rev-list\n";
  32
  33static int longest_file;
  34static int longest_author;
  35static int max_orig_digits;
  36static int max_digits;
  37static int max_score_digits;
  38
  39#ifndef DEBUG
  40#define DEBUG 0
  41#endif
  42
  43#define PICKAXE_BLAME_MOVE              01
  44#define PICKAXE_BLAME_COPY              02
  45#define PICKAXE_BLAME_COPY_HARDER       04
  46
  47/*
  48 * blame for a blame_entry with score lower than these thresholds
  49 * is not passed to the parent using move/copy logic.
  50 */
  51static unsigned blame_move_score;
  52static unsigned blame_copy_score;
  53#define BLAME_DEFAULT_MOVE_SCORE        20
  54#define BLAME_DEFAULT_COPY_SCORE        40
  55
  56/* bits #0..7 in revision.h, #8..11 used for merge_bases() in commit.c */
  57#define METAINFO_SHOWN          (1u<<12)
  58#define MORE_THAN_ONE_PATH      (1u<<13)
  59
  60/*
  61 * One blob in a commit that is being suspected
  62 */
  63struct origin {
  64        int refcnt;
  65        struct commit *commit;
  66        unsigned char blob_sha1[20];
  67        char path[FLEX_ARRAY];
  68};
  69
  70static inline struct origin *origin_incref(struct origin *o)
  71{
  72        if (o)
  73                o->refcnt++;
  74        return o;
  75}
  76
  77static void origin_decref(struct origin *o)
  78{
  79        if (o && --o->refcnt <= 0) {
  80                memset(o, 0, sizeof(*o));
  81                free(o);
  82        }
  83}
  84
  85struct blame_entry {
  86        struct blame_entry *prev;
  87        struct blame_entry *next;
  88
  89        /* the first line of this group in the final image;
  90         * internally all line numbers are 0 based.
  91         */
  92        int lno;
  93
  94        /* how many lines this group has */
  95        int num_lines;
  96
  97        /* the commit that introduced this group into the final image */
  98        struct origin *suspect;
  99
 100        /* true if the suspect is truly guilty; false while we have not
 101         * checked if the group came from one of its parents.
 102         */
 103        char guilty;
 104
 105        /* the line number of the first line of this group in the
 106         * suspect's file; internally all line numbers are 0 based.
 107         */
 108        int s_lno;
 109
 110        /* how significant this entry is -- cached to avoid
 111         * scanning the lines over and over
 112         */
 113        unsigned score;
 114};
 115
 116struct scoreboard {
 117        /* the final commit (i.e. where we started digging from) */
 118        struct commit *final;
 119
 120        const char *path;
 121
 122        /* the contents in the final; pointed into by buf pointers of
 123         * blame_entries
 124         */
 125        const char *final_buf;
 126        unsigned long final_buf_size;
 127
 128        /* linked list of blames */
 129        struct blame_entry *ent;
 130
 131        /* look-up a line in the final buffer */
 132        int num_lines;
 133        int *lineno;
 134};
 135
 136static int cmp_suspect(struct origin *a, struct origin *b)
 137{
 138        int cmp = hashcmp(a->commit->object.sha1, b->commit->object.sha1);
 139        if (cmp)
 140                return cmp;
 141        return strcmp(a->path, b->path);
 142}
 143
 144static void sanity_check_refcnt(struct scoreboard *);
 145
 146static void coalesce(struct scoreboard *sb)
 147{
 148        struct blame_entry *ent, *next;
 149
 150        for (ent = sb->ent; ent && (next = ent->next); ent = next) {
 151                if (!cmp_suspect(ent->suspect, next->suspect) &&
 152                    ent->guilty == next->guilty &&
 153                    ent->s_lno + ent->num_lines == next->s_lno) {
 154                        ent->num_lines += next->num_lines;
 155                        ent->next = next->next;
 156                        if (ent->next)
 157                                ent->next->prev = ent;
 158                        origin_decref(next->suspect);
 159                        free(next);
 160                        ent->score = 0;
 161                        next = ent; /* again */
 162                }
 163        }
 164
 165        if (DEBUG) /* sanity */
 166                sanity_check_refcnt(sb);
 167}
 168
 169static struct origin *get_origin(struct scoreboard *sb,
 170                                 struct commit *commit,
 171                                 const char *path)
 172{
 173        struct blame_entry *e;
 174        struct origin *o;
 175
 176        for (e = sb->ent; e; e = e->next) {
 177                if (e->suspect->commit == commit &&
 178                    !strcmp(e->suspect->path, path))
 179                        return origin_incref(e->suspect);
 180        }
 181        o = xcalloc(1, sizeof(*o) + strlen(path) + 1);
 182        o->commit = commit;
 183        o->refcnt = 1;
 184        strcpy(o->path, path);
 185        return o;
 186}
 187
 188static int fill_blob_sha1(struct origin *origin)
 189{
 190        unsigned mode;
 191        char type[10];
 192
 193        if (!is_null_sha1(origin->blob_sha1))
 194                return 0;
 195        if (get_tree_entry(origin->commit->object.sha1,
 196                           origin->path,
 197                           origin->blob_sha1, &mode))
 198                goto error_out;
 199        if (sha1_object_info(origin->blob_sha1, type, NULL) ||
 200            strcmp(type, blob_type))
 201                goto error_out;
 202        return 0;
 203 error_out:
 204        hashclr(origin->blob_sha1);
 205        return -1;
 206}
 207
 208static struct origin *find_origin(struct scoreboard *sb,
 209                                  struct commit *parent,
 210                                  struct origin *origin)
 211{
 212        struct origin *porigin = NULL;
 213        struct diff_options diff_opts;
 214        int i;
 215        const char *paths[2];
 216
 217        /* See if the origin->path is different between parent
 218         * and origin first.  Most of the time they are the
 219         * same and diff-tree is fairly efficient about this.
 220         */
 221        diff_setup(&diff_opts);
 222        diff_opts.recursive = 1;
 223        diff_opts.detect_rename = 0;
 224        diff_opts.output_format = DIFF_FORMAT_NO_OUTPUT;
 225        paths[0] = origin->path;
 226        paths[1] = NULL;
 227
 228        diff_tree_setup_paths(paths, &diff_opts);
 229        if (diff_setup_done(&diff_opts) < 0)
 230                die("diff-setup");
 231        diff_tree_sha1(parent->tree->object.sha1,
 232                       origin->commit->tree->object.sha1,
 233                       "", &diff_opts);
 234        diffcore_std(&diff_opts);
 235
 236        /* It is either one entry that says "modified", or "created",
 237         * or nothing.
 238         */
 239        if (!diff_queued_diff.nr) {
 240                /* The path is the same as parent */
 241                porigin = get_origin(sb, parent, origin->path);
 242                hashcpy(porigin->blob_sha1, origin->blob_sha1);
 243        }
 244        else if (diff_queued_diff.nr != 1)
 245                die("internal error in pickaxe::find_origin");
 246        else {
 247                struct diff_filepair *p = diff_queued_diff.queue[0];
 248                switch (p->status) {
 249                default:
 250                        die("internal error in pickaxe::find_origin (%c)",
 251                            p->status);
 252                case 'M':
 253                        porigin = get_origin(sb, parent, origin->path);
 254                        hashcpy(porigin->blob_sha1, p->one->sha1);
 255                        break;
 256                case 'A':
 257                case 'T':
 258                        /* Did not exist in parent, or type changed */
 259                        break;
 260                }
 261        }
 262        diff_flush(&diff_opts);
 263        if (porigin)
 264                return porigin;
 265
 266        /* Otherwise we would look for a rename */
 267
 268        diff_setup(&diff_opts);
 269        diff_opts.recursive = 1;
 270        diff_opts.detect_rename = DIFF_DETECT_RENAME;
 271        diff_opts.output_format = DIFF_FORMAT_NO_OUTPUT;
 272        paths[0] = NULL;
 273        diff_tree_setup_paths(paths, &diff_opts);
 274        if (diff_setup_done(&diff_opts) < 0)
 275                die("diff-setup");
 276        diff_tree_sha1(parent->tree->object.sha1,
 277                       origin->commit->tree->object.sha1,
 278                       "", &diff_opts);
 279        diffcore_std(&diff_opts);
 280
 281        for (i = 0; i < diff_queued_diff.nr; i++) {
 282                struct diff_filepair *p = diff_queued_diff.queue[i];
 283                if ((p->status == 'R' || p->status == 'C') &&
 284                    !strcmp(p->two->path, origin->path)) {
 285                        porigin = get_origin(sb, parent, p->one->path);
 286                        hashcpy(porigin->blob_sha1, p->one->sha1);
 287                        break;
 288                }
 289        }
 290        diff_flush(&diff_opts);
 291        return porigin;
 292}
 293
 294struct chunk {
 295        /* line number in postimage; up to but not including this
 296         * line is the same as preimage
 297         */
 298        int same;
 299
 300        /* preimage line number after this chunk */
 301        int p_next;
 302
 303        /* postimage line number after this chunk */
 304        int t_next;
 305};
 306
 307struct patch {
 308        struct chunk *chunks;
 309        int num;
 310};
 311
 312struct blame_diff_state {
 313        struct xdiff_emit_state xm;
 314        struct patch *ret;
 315        unsigned hunk_post_context;
 316        unsigned hunk_in_pre_context : 1;
 317};
 318
 319static void process_u_diff(void *state_, char *line, unsigned long len)
 320{
 321        struct blame_diff_state *state = state_;
 322        struct chunk *chunk;
 323        int off1, off2, len1, len2, num;
 324
 325        num = state->ret->num;
 326        if (len < 4 || line[0] != '@' || line[1] != '@') {
 327                if (state->hunk_in_pre_context && line[0] == ' ')
 328                        state->ret->chunks[num - 1].same++;
 329                else {
 330                        state->hunk_in_pre_context = 0;
 331                        if (line[0] == ' ')
 332                                state->hunk_post_context++;
 333                        else
 334                                state->hunk_post_context = 0;
 335                }
 336                return;
 337        }
 338
 339        if (num && state->hunk_post_context) {
 340                chunk = &state->ret->chunks[num - 1];
 341                chunk->p_next -= state->hunk_post_context;
 342                chunk->t_next -= state->hunk_post_context;
 343        }
 344        state->ret->num = ++num;
 345        state->ret->chunks = xrealloc(state->ret->chunks,
 346                                      sizeof(struct chunk) * num);
 347        chunk = &state->ret->chunks[num - 1];
 348        if (parse_hunk_header(line, len, &off1, &len1, &off2, &len2)) {
 349                state->ret->num--;
 350                return;
 351        }
 352
 353        /* Line numbers in patch output are one based. */
 354        off1--;
 355        off2--;
 356
 357        chunk->same = len2 ? off2 : (off2 + 1);
 358
 359        chunk->p_next = off1 + (len1 ? len1 : 1);
 360        chunk->t_next = chunk->same + len2;
 361        state->hunk_in_pre_context = 1;
 362        state->hunk_post_context = 0;
 363}
 364
 365static struct patch *compare_buffer(mmfile_t *file_p, mmfile_t *file_o,
 366                                    int context)
 367{
 368        struct blame_diff_state state;
 369        xpparam_t xpp;
 370        xdemitconf_t xecfg;
 371        xdemitcb_t ecb;
 372
 373        xpp.flags = XDF_NEED_MINIMAL;
 374        xecfg.ctxlen = context;
 375        xecfg.flags = 0;
 376        ecb.outf = xdiff_outf;
 377        ecb.priv = &state;
 378        memset(&state, 0, sizeof(state));
 379        state.xm.consume = process_u_diff;
 380        state.ret = xmalloc(sizeof(struct patch));
 381        state.ret->chunks = NULL;
 382        state.ret->num = 0;
 383
 384        xdl_diff(file_p, file_o, &xpp, &xecfg, &ecb);
 385
 386        if (state.ret->num) {
 387                struct chunk *chunk;
 388                chunk = &state.ret->chunks[state.ret->num - 1];
 389                chunk->p_next -= state.hunk_post_context;
 390                chunk->t_next -= state.hunk_post_context;
 391        }
 392        return state.ret;
 393}
 394
 395static struct patch *get_patch(struct origin *parent, struct origin *origin)
 396{
 397        mmfile_t file_p, file_o;
 398        char type[10];
 399        char *blob_p, *blob_o;
 400        struct patch *patch;
 401
 402        blob_p = read_sha1_file(parent->blob_sha1, type,
 403                                (unsigned long *) &file_p.size);
 404        blob_o = read_sha1_file(origin->blob_sha1, type,
 405                                (unsigned long *) &file_o.size);
 406        file_p.ptr = blob_p;
 407        file_o.ptr = blob_o;
 408        if (!file_p.ptr || !file_o.ptr) {
 409                free(blob_p);
 410                free(blob_o);
 411                return NULL;
 412        }
 413
 414        patch = compare_buffer(&file_p, &file_o, 0);
 415        free(blob_p);
 416        free(blob_o);
 417        return patch;
 418}
 419
 420static void free_patch(struct patch *p)
 421{
 422        free(p->chunks);
 423        free(p);
 424}
 425
 426static void add_blame_entry(struct scoreboard *sb, struct blame_entry *e)
 427{
 428        struct blame_entry *ent, *prev = NULL;
 429
 430        origin_incref(e->suspect);
 431
 432        for (ent = sb->ent; ent && ent->lno < e->lno; ent = ent->next)
 433                prev = ent;
 434
 435        /* prev, if not NULL, is the last one that is below e */
 436        e->prev = prev;
 437        if (prev) {
 438                e->next = prev->next;
 439                prev->next = e;
 440        }
 441        else {
 442                e->next = sb->ent;
 443                sb->ent = e;
 444        }
 445        if (e->next)
 446                e->next->prev = e;
 447}
 448
 449static void dup_entry(struct blame_entry *dst, struct blame_entry *src)
 450{
 451        struct blame_entry *p, *n;
 452
 453        p = dst->prev;
 454        n = dst->next;
 455        origin_incref(src->suspect);
 456        origin_decref(dst->suspect);
 457        memcpy(dst, src, sizeof(*src));
 458        dst->prev = p;
 459        dst->next = n;
 460        dst->score = 0;
 461}
 462
 463static const char *nth_line(struct scoreboard *sb, int lno)
 464{
 465        return sb->final_buf + sb->lineno[lno];
 466}
 467
 468static void split_overlap(struct blame_entry *split,
 469                          struct blame_entry *e,
 470                          int tlno, int plno, int same,
 471                          struct origin *parent)
 472{
 473        /* it is known that lines between tlno to same came from
 474         * parent, and e has an overlap with that range.  it also is
 475         * known that parent's line plno corresponds to e's line tlno.
 476         *
 477         *                <---- e ----->
 478         *                   <------>
 479         *                   <------------>
 480         *             <------------>
 481         *             <------------------>
 482         *
 483         * Potentially we need to split e into three parts; before
 484         * this chunk, the chunk to be blamed for parent, and after
 485         * that portion.
 486         */
 487        int chunk_end_lno;
 488        memset(split, 0, sizeof(struct blame_entry [3]));
 489
 490        if (e->s_lno < tlno) {
 491                /* there is a pre-chunk part not blamed on parent */
 492                split[0].suspect = origin_incref(e->suspect);
 493                split[0].lno = e->lno;
 494                split[0].s_lno = e->s_lno;
 495                split[0].num_lines = tlno - e->s_lno;
 496                split[1].lno = e->lno + tlno - e->s_lno;
 497                split[1].s_lno = plno;
 498        }
 499        else {
 500                split[1].lno = e->lno;
 501                split[1].s_lno = plno + (e->s_lno - tlno);
 502        }
 503
 504        if (same < e->s_lno + e->num_lines) {
 505                /* there is a post-chunk part not blamed on parent */
 506                split[2].suspect = origin_incref(e->suspect);
 507                split[2].lno = e->lno + (same - e->s_lno);
 508                split[2].s_lno = e->s_lno + (same - e->s_lno);
 509                split[2].num_lines = e->s_lno + e->num_lines - same;
 510                chunk_end_lno = split[2].lno;
 511        }
 512        else
 513                chunk_end_lno = e->lno + e->num_lines;
 514        split[1].num_lines = chunk_end_lno - split[1].lno;
 515
 516        if (split[1].num_lines < 1)
 517                return;
 518        split[1].suspect = origin_incref(parent);
 519}
 520
 521static void split_blame(struct scoreboard *sb,
 522                        struct blame_entry *split,
 523                        struct blame_entry *e)
 524{
 525        struct blame_entry *new_entry;
 526
 527        if (split[0].suspect && split[2].suspect) {
 528                /* we need to split e into two and add another for parent */
 529                dup_entry(e, &split[0]);
 530
 531                new_entry = xmalloc(sizeof(*new_entry));
 532                memcpy(new_entry, &(split[2]), sizeof(struct blame_entry));
 533                add_blame_entry(sb, new_entry);
 534
 535                new_entry = xmalloc(sizeof(*new_entry));
 536                memcpy(new_entry, &(split[1]), sizeof(struct blame_entry));
 537                add_blame_entry(sb, new_entry);
 538        }
 539        else if (!split[0].suspect && !split[2].suspect)
 540                /* parent covers the entire area */
 541                dup_entry(e, &split[1]);
 542        else if (split[0].suspect) {
 543                dup_entry(e, &split[0]);
 544
 545                new_entry = xmalloc(sizeof(*new_entry));
 546                memcpy(new_entry, &(split[1]), sizeof(struct blame_entry));
 547                add_blame_entry(sb, new_entry);
 548        }
 549        else {
 550                dup_entry(e, &split[1]);
 551
 552                new_entry = xmalloc(sizeof(*new_entry));
 553                memcpy(new_entry, &(split[2]), sizeof(struct blame_entry));
 554                add_blame_entry(sb, new_entry);
 555        }
 556
 557        if (DEBUG) { /* sanity */
 558                struct blame_entry *ent;
 559                int lno = sb->ent->lno, corrupt = 0;
 560
 561                for (ent = sb->ent; ent; ent = ent->next) {
 562                        if (lno != ent->lno)
 563                                corrupt = 1;
 564                        if (ent->s_lno < 0)
 565                                corrupt = 1;
 566                        lno += ent->num_lines;
 567                }
 568                if (corrupt) {
 569                        lno = sb->ent->lno;
 570                        for (ent = sb->ent; ent; ent = ent->next) {
 571                                printf("L %8d l %8d n %8d\n",
 572                                       lno, ent->lno, ent->num_lines);
 573                                lno = ent->lno + ent->num_lines;
 574                        }
 575                        die("oops");
 576                }
 577        }
 578}
 579
 580static void decref_split(struct blame_entry *split)
 581{
 582        int i;
 583
 584        for (i = 0; i < 3; i++)
 585                origin_decref(split[i].suspect);
 586}
 587
 588static void blame_overlap(struct scoreboard *sb, struct blame_entry *e,
 589                          int tlno, int plno, int same,
 590                          struct origin *parent)
 591{
 592        struct blame_entry split[3];
 593
 594        split_overlap(split, e, tlno, plno, same, parent);
 595        if (split[1].suspect)
 596                split_blame(sb, split, e);
 597        decref_split(split);
 598}
 599
 600static int find_last_in_target(struct scoreboard *sb, struct origin *target)
 601{
 602        struct blame_entry *e;
 603        int last_in_target = -1;
 604
 605        for (e = sb->ent; e; e = e->next) {
 606                if (e->guilty || cmp_suspect(e->suspect, target))
 607                        continue;
 608                if (last_in_target < e->s_lno + e->num_lines)
 609                        last_in_target = e->s_lno + e->num_lines;
 610        }
 611        return last_in_target;
 612}
 613
 614static void blame_chunk(struct scoreboard *sb,
 615                        int tlno, int plno, int same,
 616                        struct origin *target, struct origin *parent)
 617{
 618        struct blame_entry *e;
 619
 620        for (e = sb->ent; e; e = e->next) {
 621                if (e->guilty || cmp_suspect(e->suspect, target))
 622                        continue;
 623                if (same <= e->s_lno)
 624                        continue;
 625                if (tlno < e->s_lno + e->num_lines)
 626                        blame_overlap(sb, e, tlno, plno, same, parent);
 627        }
 628}
 629
 630static int pass_blame_to_parent(struct scoreboard *sb,
 631                                struct origin *target,
 632                                struct origin *parent)
 633{
 634        int i, last_in_target, plno, tlno;
 635        struct patch *patch;
 636
 637        last_in_target = find_last_in_target(sb, target);
 638        if (last_in_target < 0)
 639                return 1; /* nothing remains for this target */
 640
 641        patch = get_patch(parent, target);
 642        plno = tlno = 0;
 643        for (i = 0; i < patch->num; i++) {
 644                struct chunk *chunk = &patch->chunks[i];
 645
 646                blame_chunk(sb, tlno, plno, chunk->same, target, parent);
 647                plno = chunk->p_next;
 648                tlno = chunk->t_next;
 649        }
 650        /* rest (i.e. anything above tlno) are the same as parent */
 651        blame_chunk(sb, tlno, plno, last_in_target, target, parent);
 652
 653        free_patch(patch);
 654        return 0;
 655}
 656
 657static unsigned ent_score(struct scoreboard *sb, struct blame_entry *e)
 658{
 659        unsigned score;
 660        const char *cp, *ep;
 661
 662        if (e->score)
 663                return e->score;
 664
 665        score = 1;
 666        cp = nth_line(sb, e->lno);
 667        ep = nth_line(sb, e->lno + e->num_lines);
 668        while (cp < ep) {
 669                unsigned ch = *((unsigned char *)cp);
 670                if (isalnum(ch))
 671                        score++;
 672                cp++;
 673        }
 674        e->score = score;
 675        return score;
 676}
 677
 678static void copy_split_if_better(struct scoreboard *sb,
 679                                 struct blame_entry *best_so_far,
 680                                 struct blame_entry *this)
 681{
 682        int i;
 683
 684        if (!this[1].suspect)
 685                return;
 686        if (best_so_far[1].suspect) {
 687                if (ent_score(sb, &this[1]) < ent_score(sb, &best_so_far[1]))
 688                        return;
 689        }
 690
 691        for (i = 0; i < 3; i++)
 692                origin_incref(this[i].suspect);
 693        decref_split(best_so_far);
 694        memcpy(best_so_far, this, sizeof(struct blame_entry [3]));
 695}
 696
 697static void find_copy_in_blob(struct scoreboard *sb,
 698                              struct blame_entry *ent,
 699                              struct origin *parent,
 700                              struct blame_entry *split,
 701                              mmfile_t *file_p)
 702{
 703        const char *cp;
 704        int cnt;
 705        mmfile_t file_o;
 706        struct patch *patch;
 707        int i, plno, tlno;
 708
 709        cp = nth_line(sb, ent->lno);
 710        file_o.ptr = (char*) cp;
 711        cnt = ent->num_lines;
 712
 713        while (cnt && cp < sb->final_buf + sb->final_buf_size) {
 714                if (*cp++ == '\n')
 715                        cnt--;
 716        }
 717        file_o.size = cp - file_o.ptr;
 718
 719        patch = compare_buffer(file_p, &file_o, 1);
 720
 721        memset(split, 0, sizeof(struct blame_entry [3]));
 722        plno = tlno = 0;
 723        for (i = 0; i < patch->num; i++) {
 724                struct chunk *chunk = &patch->chunks[i];
 725
 726                /* tlno to chunk->same are the same as ent */
 727                if (ent->num_lines <= tlno)
 728                        break;
 729                if (tlno < chunk->same) {
 730                        struct blame_entry this[3];
 731                        split_overlap(this, ent,
 732                                      tlno + ent->s_lno, plno,
 733                                      chunk->same + ent->s_lno,
 734                                      parent);
 735                        copy_split_if_better(sb, split, this);
 736                        decref_split(this);
 737                }
 738                plno = chunk->p_next;
 739                tlno = chunk->t_next;
 740        }
 741        free_patch(patch);
 742}
 743
 744static int find_move_in_parent(struct scoreboard *sb,
 745                               struct origin *target,
 746                               struct origin *parent)
 747{
 748        int last_in_target;
 749        struct blame_entry *e, split[3];
 750        mmfile_t file_p;
 751        char type[10];
 752        char *blob_p;
 753
 754        last_in_target = find_last_in_target(sb, target);
 755        if (last_in_target < 0)
 756                return 1; /* nothing remains for this target */
 757
 758        blob_p = read_sha1_file(parent->blob_sha1, type,
 759                                (unsigned long *) &file_p.size);
 760        file_p.ptr = blob_p;
 761        if (!file_p.ptr) {
 762                free(blob_p);
 763                return 0;
 764        }
 765
 766        for (e = sb->ent; e; e = e->next) {
 767                if (e->guilty || cmp_suspect(e->suspect, target))
 768                        continue;
 769                find_copy_in_blob(sb, e, parent, split, &file_p);
 770                if (split[1].suspect &&
 771                    blame_move_score < ent_score(sb, &split[1]))
 772                        split_blame(sb, split, e);
 773                decref_split(split);
 774        }
 775        free(blob_p);
 776        return 0;
 777}
 778
 779static int find_copy_in_parent(struct scoreboard *sb,
 780                               struct origin *target,
 781                               struct commit *parent,
 782                               struct origin *porigin,
 783                               int opt)
 784{
 785        struct diff_options diff_opts;
 786        const char *paths[1];
 787        struct blame_entry *e;
 788        int i, j;
 789        struct blame_list {
 790                struct blame_entry *ent;
 791                struct blame_entry split[3];
 792        } *blame_list;
 793        int num_ents;
 794
 795        /* Count the number of entries the target is suspected for,
 796         * and prepare a list of entry and the best split.
 797         */
 798        for (e = sb->ent, num_ents = 0; e; e = e->next)
 799                if (!e->guilty && !cmp_suspect(e->suspect, target))
 800                        num_ents++;
 801        if (!num_ents)
 802                return 1; /* nothing remains for this target */
 803
 804        blame_list = xcalloc(num_ents, sizeof(struct blame_list));
 805        for (e = sb->ent, i = 0; e; e = e->next)
 806                if (!e->guilty && !cmp_suspect(e->suspect, target))
 807                        blame_list[i++].ent = e;
 808
 809        diff_setup(&diff_opts);
 810        diff_opts.recursive = 1;
 811        diff_opts.output_format = DIFF_FORMAT_NO_OUTPUT;
 812
 813        /* Try "find copies harder" on new path */
 814        if ((opt & PICKAXE_BLAME_COPY_HARDER) &&
 815            (!porigin || strcmp(target->path, porigin->path))) {
 816                diff_opts.detect_rename = DIFF_DETECT_COPY;
 817                diff_opts.find_copies_harder = 1;
 818        }
 819        paths[0] = NULL;
 820        diff_tree_setup_paths(paths, &diff_opts);
 821        if (diff_setup_done(&diff_opts) < 0)
 822                die("diff-setup");
 823        diff_tree_sha1(parent->tree->object.sha1,
 824                       target->commit->tree->object.sha1,
 825                       "", &diff_opts);
 826        diffcore_std(&diff_opts);
 827
 828        for (i = 0; i < diff_queued_diff.nr; i++) {
 829                struct diff_filepair *p = diff_queued_diff.queue[i];
 830                struct origin *norigin;
 831                mmfile_t file_p;
 832                char type[10];
 833                char *blob;
 834                struct blame_entry this[3];
 835
 836                if (!DIFF_FILE_VALID(p->one))
 837                        continue; /* does not exist in parent */
 838                if (porigin && !strcmp(p->one->path, porigin->path))
 839                        /* find_move already dealt with this path */
 840                        continue;
 841
 842                norigin = get_origin(sb, parent, p->one->path);
 843                hashcpy(norigin->blob_sha1, p->one->sha1);
 844                blob = read_sha1_file(norigin->blob_sha1, type,
 845                                      (unsigned long *) &file_p.size);
 846                file_p.ptr = blob;
 847                if (!file_p.ptr)
 848                        continue;
 849
 850                for (j = 0; j < num_ents; j++) {
 851                        find_copy_in_blob(sb, blame_list[j].ent, norigin,
 852                                          this, &file_p);
 853                        copy_split_if_better(sb, blame_list[j].split,
 854                                             this);
 855                }
 856                free(blob);
 857                origin_decref(norigin);
 858        }
 859        diff_flush(&diff_opts);
 860
 861        for (j = 0; j < num_ents; j++) {
 862                struct blame_entry *split = blame_list[j].split;
 863                if (split[1].suspect &&
 864                    blame_copy_score < ent_score(sb, &split[1]))
 865                        split_blame(sb, split, blame_list[j].ent);
 866                decref_split(split);
 867        }
 868        free(blame_list);
 869
 870        return 0;
 871}
 872
 873#define MAXPARENT 16
 874
 875static void pass_blame(struct scoreboard *sb, struct origin *origin, int opt)
 876{
 877        int i;
 878        struct commit *commit = origin->commit;
 879        struct commit_list *parent;
 880        struct origin *parent_origin[MAXPARENT], *porigin;
 881
 882        memset(parent_origin, 0, sizeof(parent_origin));
 883        for (i = 0, parent = commit->parents;
 884             i < MAXPARENT && parent;
 885             parent = parent->next, i++) {
 886                struct commit *p = parent->item;
 887
 888                if (parse_commit(p))
 889                        continue;
 890                porigin = find_origin(sb, parent->item, origin);
 891                if (!porigin)
 892                        continue;
 893                if (!hashcmp(porigin->blob_sha1, origin->blob_sha1)) {
 894                        struct blame_entry *e;
 895                        for (e = sb->ent; e; e = e->next)
 896                                if (e->suspect == origin) {
 897                                        origin_incref(porigin);
 898                                        origin_decref(e->suspect);
 899                                        e->suspect = porigin;
 900                                }
 901                        origin_decref(porigin);
 902                        goto finish;
 903                }
 904                parent_origin[i] = porigin;
 905        }
 906
 907        for (i = 0, parent = commit->parents;
 908             i < MAXPARENT && parent;
 909             parent = parent->next, i++) {
 910                struct origin *porigin = parent_origin[i];
 911                if (!porigin)
 912                        continue;
 913                if (pass_blame_to_parent(sb, origin, porigin))
 914                        goto finish;
 915        }
 916
 917        /*
 918         * Optionally run "miff" to find moves in parents' files here.
 919         */
 920        if (opt & PICKAXE_BLAME_MOVE)
 921                for (i = 0, parent = commit->parents;
 922                     i < MAXPARENT && parent;
 923                     parent = parent->next, i++) {
 924                        struct origin *porigin = parent_origin[i];
 925                        if (!porigin)
 926                                continue;
 927                        if (find_move_in_parent(sb, origin, porigin))
 928                                goto finish;
 929                }
 930
 931        /*
 932         * Optionally run "ciff" to find copies from parents' files here.
 933         */
 934        if (opt & PICKAXE_BLAME_COPY)
 935                for (i = 0, parent = commit->parents;
 936                     i < MAXPARENT && parent;
 937                     parent = parent->next, i++) {
 938                        struct origin *porigin = parent_origin[i];
 939                        if (find_copy_in_parent(sb, origin, parent->item,
 940                                                porigin, opt))
 941                                goto finish;
 942                }
 943
 944 finish:
 945        for (i = 0; i < MAXPARENT; i++)
 946                origin_decref(parent_origin[i]);
 947}
 948
 949static void assign_blame(struct scoreboard *sb, struct rev_info *revs, int opt)
 950{
 951        while (1) {
 952                struct blame_entry *ent;
 953                struct commit *commit;
 954                struct origin *suspect = NULL;
 955
 956                /* find one suspect to break down */
 957                for (ent = sb->ent; !suspect && ent; ent = ent->next)
 958                        if (!ent->guilty)
 959                                suspect = ent->suspect;
 960                if (!suspect)
 961                        return; /* all done */
 962
 963                origin_incref(suspect);
 964                commit = suspect->commit;
 965                parse_commit(commit);
 966                if (!(commit->object.flags & UNINTERESTING) &&
 967                    !(revs->max_age != -1 && commit->date  < revs->max_age))
 968                        pass_blame(sb, suspect, opt);
 969
 970                /* Take responsibility for the remaining entries */
 971                for (ent = sb->ent; ent; ent = ent->next)
 972                        if (!cmp_suspect(ent->suspect, suspect))
 973                                ent->guilty = 1;
 974                origin_decref(suspect);
 975                coalesce(sb);
 976        }
 977}
 978
 979static const char *format_time(unsigned long time, const char *tz_str,
 980                               int show_raw_time)
 981{
 982        static char time_buf[128];
 983        time_t t = time;
 984        int minutes, tz;
 985        struct tm *tm;
 986
 987        if (show_raw_time) {
 988                sprintf(time_buf, "%lu %s", time, tz_str);
 989                return time_buf;
 990        }
 991
 992        tz = atoi(tz_str);
 993        minutes = tz < 0 ? -tz : tz;
 994        minutes = (minutes / 100)*60 + (minutes % 100);
 995        minutes = tz < 0 ? -minutes : minutes;
 996        t = time + minutes * 60;
 997        tm = gmtime(&t);
 998
 999        strftime(time_buf, sizeof(time_buf), "%Y-%m-%d %H:%M:%S ", tm);
1000        strcat(time_buf, tz_str);
1001        return time_buf;
1002}
1003
1004struct commit_info
1005{
1006        char *author;
1007        char *author_mail;
1008        unsigned long author_time;
1009        char *author_tz;
1010
1011        /* filled only when asked for details */
1012        char *committer;
1013        char *committer_mail;
1014        unsigned long committer_time;
1015        char *committer_tz;
1016
1017        char *summary;
1018};
1019
1020static void get_ac_line(const char *inbuf, const char *what,
1021                        int bufsz, char *person, char **mail,
1022                        unsigned long *time, char **tz)
1023{
1024        int len;
1025        char *tmp, *endp;
1026
1027        tmp = strstr(inbuf, what);
1028        if (!tmp)
1029                goto error_out;
1030        tmp += strlen(what);
1031        endp = strchr(tmp, '\n');
1032        if (!endp)
1033                len = strlen(tmp);
1034        else
1035                len = endp - tmp;
1036        if (bufsz <= len) {
1037        error_out:
1038                /* Ugh */
1039                person = *mail = *tz = "(unknown)";
1040                *time = 0;
1041                return;
1042        }
1043        memcpy(person, tmp, len);
1044
1045        tmp = person;
1046        tmp += len;
1047        *tmp = 0;
1048        while (*tmp != ' ')
1049                tmp--;
1050        *tz = tmp+1;
1051
1052        *tmp = 0;
1053        while (*tmp != ' ')
1054                tmp--;
1055        *time = strtoul(tmp, NULL, 10);
1056
1057        *tmp = 0;
1058        while (*tmp != ' ')
1059                tmp--;
1060        *mail = tmp + 1;
1061        *tmp = 0;
1062}
1063
1064static void get_commit_info(struct commit *commit,
1065                            struct commit_info *ret,
1066                            int detailed)
1067{
1068        int len;
1069        char *tmp, *endp;
1070        static char author_buf[1024];
1071        static char committer_buf[1024];
1072        static char summary_buf[1024];
1073
1074        /* We've operated without save_commit_buffer, so
1075         * we now need to populate them for output.
1076         */
1077        if (!commit->buffer) {
1078                char type[20];
1079                unsigned long size;
1080                commit->buffer =
1081                        read_sha1_file(commit->object.sha1, type, &size);
1082        }
1083        ret->author = author_buf;
1084        get_ac_line(commit->buffer, "\nauthor ",
1085                    sizeof(author_buf), author_buf, &ret->author_mail,
1086                    &ret->author_time, &ret->author_tz);
1087
1088        if (!detailed)
1089                return;
1090
1091        ret->committer = committer_buf;
1092        get_ac_line(commit->buffer, "\ncommitter ",
1093                    sizeof(committer_buf), committer_buf, &ret->committer_mail,
1094                    &ret->committer_time, &ret->committer_tz);
1095
1096        ret->summary = summary_buf;
1097        tmp = strstr(commit->buffer, "\n\n");
1098        if (!tmp) {
1099        error_out:
1100                sprintf(summary_buf, "(%s)", sha1_to_hex(commit->object.sha1));
1101                return;
1102        }
1103        tmp += 2;
1104        endp = strchr(tmp, '\n');
1105        if (!endp)
1106                goto error_out;
1107        len = endp - tmp;
1108        if (len >= sizeof(summary_buf))
1109                goto error_out;
1110        memcpy(summary_buf, tmp, len);
1111        summary_buf[len] = 0;
1112}
1113
1114#define OUTPUT_ANNOTATE_COMPAT  001
1115#define OUTPUT_LONG_OBJECT_NAME 002
1116#define OUTPUT_RAW_TIMESTAMP    004
1117#define OUTPUT_PORCELAIN        010
1118#define OUTPUT_SHOW_NAME        020
1119#define OUTPUT_SHOW_NUMBER      040
1120#define OUTPUT_SHOW_SCORE      0100
1121
1122static void emit_porcelain(struct scoreboard *sb, struct blame_entry *ent)
1123{
1124        int cnt;
1125        const char *cp;
1126        struct origin *suspect = ent->suspect;
1127        char hex[41];
1128
1129        strcpy(hex, sha1_to_hex(suspect->commit->object.sha1));
1130        printf("%s%c%d %d %d\n",
1131               hex,
1132               ent->guilty ? ' ' : '*', // purely for debugging
1133               ent->s_lno + 1,
1134               ent->lno + 1,
1135               ent->num_lines);
1136        if (!(suspect->commit->object.flags & METAINFO_SHOWN)) {
1137                struct commit_info ci;
1138                suspect->commit->object.flags |= METAINFO_SHOWN;
1139                get_commit_info(suspect->commit, &ci, 1);
1140                printf("author %s\n", ci.author);
1141                printf("author-mail %s\n", ci.author_mail);
1142                printf("author-time %lu\n", ci.author_time);
1143                printf("author-tz %s\n", ci.author_tz);
1144                printf("committer %s\n", ci.committer);
1145                printf("committer-mail %s\n", ci.committer_mail);
1146                printf("committer-time %lu\n", ci.committer_time);
1147                printf("committer-tz %s\n", ci.committer_tz);
1148                printf("filename %s\n", suspect->path);
1149                printf("summary %s\n", ci.summary);
1150        }
1151        else if (suspect->commit->object.flags & MORE_THAN_ONE_PATH)
1152                printf("filename %s\n", suspect->path);
1153
1154        cp = nth_line(sb, ent->lno);
1155        for (cnt = 0; cnt < ent->num_lines; cnt++) {
1156                char ch;
1157                if (cnt)
1158                        printf("%s %d %d\n", hex,
1159                               ent->s_lno + 1 + cnt,
1160                               ent->lno + 1 + cnt);
1161                putchar('\t');
1162                do {
1163                        ch = *cp++;
1164                        putchar(ch);
1165                } while (ch != '\n' &&
1166                         cp < sb->final_buf + sb->final_buf_size);
1167        }
1168}
1169
1170static void emit_other(struct scoreboard *sb, struct blame_entry *ent, int opt)
1171{
1172        int cnt;
1173        const char *cp;
1174        struct origin *suspect = ent->suspect;
1175        struct commit_info ci;
1176        char hex[41];
1177        int show_raw_time = !!(opt & OUTPUT_RAW_TIMESTAMP);
1178
1179        get_commit_info(suspect->commit, &ci, 1);
1180        strcpy(hex, sha1_to_hex(suspect->commit->object.sha1));
1181
1182        cp = nth_line(sb, ent->lno);
1183        for (cnt = 0; cnt < ent->num_lines; cnt++) {
1184                char ch;
1185
1186                printf("%.*s", (opt & OUTPUT_LONG_OBJECT_NAME) ? 40 : 8, hex);
1187                if (opt & OUTPUT_ANNOTATE_COMPAT)
1188                        printf("\t(%10s\t%10s\t%d)", ci.author,
1189                               format_time(ci.author_time, ci.author_tz,
1190                                           show_raw_time),
1191                               ent->lno + 1 + cnt);
1192                else {
1193                        if (opt & OUTPUT_SHOW_SCORE)
1194                                printf(" %*d %02d",
1195                                       max_score_digits, ent->score,
1196                                       ent->suspect->refcnt);
1197                        if (opt & OUTPUT_SHOW_NAME)
1198                                printf(" %-*.*s", longest_file, longest_file,
1199                                       suspect->path);
1200                        if (opt & OUTPUT_SHOW_NUMBER)
1201                                printf(" %*d", max_orig_digits,
1202                                       ent->s_lno + 1 + cnt);
1203                        printf(" (%-*.*s %10s %*d) ",
1204                               longest_author, longest_author, ci.author,
1205                               format_time(ci.author_time, ci.author_tz,
1206                                           show_raw_time),
1207                               max_digits, ent->lno + 1 + cnt);
1208                }
1209                do {
1210                        ch = *cp++;
1211                        putchar(ch);
1212                } while (ch != '\n' &&
1213                         cp < sb->final_buf + sb->final_buf_size);
1214        }
1215}
1216
1217static void output(struct scoreboard *sb, int option)
1218{
1219        struct blame_entry *ent;
1220
1221        if (option & OUTPUT_PORCELAIN) {
1222                for (ent = sb->ent; ent; ent = ent->next) {
1223                        struct blame_entry *oth;
1224                        struct origin *suspect = ent->suspect;
1225                        struct commit *commit = suspect->commit;
1226                        if (commit->object.flags & MORE_THAN_ONE_PATH)
1227                                continue;
1228                        for (oth = ent->next; oth; oth = oth->next) {
1229                                if ((oth->suspect->commit != commit) ||
1230                                    !strcmp(oth->suspect->path, suspect->path))
1231                                        continue;
1232                                commit->object.flags |= MORE_THAN_ONE_PATH;
1233                                break;
1234                        }
1235                }
1236        }
1237
1238        for (ent = sb->ent; ent; ent = ent->next) {
1239                if (option & OUTPUT_PORCELAIN)
1240                        emit_porcelain(sb, ent);
1241                else {
1242                        emit_other(sb, ent, option);
1243                }
1244        }
1245}
1246
1247static int prepare_lines(struct scoreboard *sb)
1248{
1249        const char *buf = sb->final_buf;
1250        unsigned long len = sb->final_buf_size;
1251        int num = 0, incomplete = 0, bol = 1;
1252
1253        if (len && buf[len-1] != '\n')
1254                incomplete++; /* incomplete line at the end */
1255        while (len--) {
1256                if (bol) {
1257                        sb->lineno = xrealloc(sb->lineno,
1258                                              sizeof(int* ) * (num + 1));
1259                        sb->lineno[num] = buf - sb->final_buf;
1260                        bol = 0;
1261                }
1262                if (*buf++ == '\n') {
1263                        num++;
1264                        bol = 1;
1265                }
1266        }
1267        sb->lineno = xrealloc(sb->lineno,
1268                              sizeof(int* ) * (num + incomplete + 1));
1269        sb->lineno[num + incomplete] = buf - sb->final_buf;
1270        sb->num_lines = num + incomplete;
1271        return sb->num_lines;
1272}
1273
1274static int read_ancestry(const char *graft_file)
1275{
1276        FILE *fp = fopen(graft_file, "r");
1277        char buf[1024];
1278        if (!fp)
1279                return -1;
1280        while (fgets(buf, sizeof(buf), fp)) {
1281                /* The format is just "Commit Parent1 Parent2 ...\n" */
1282                int len = strlen(buf);
1283                struct commit_graft *graft = read_graft_line(buf, len);
1284                register_commit_graft(graft, 0);
1285        }
1286        fclose(fp);
1287        return 0;
1288}
1289
1290static int lineno_width(int lines)
1291{
1292        int i, width;
1293
1294        for (width = 1, i = 10; i <= lines + 1; width++)
1295                i *= 10;
1296        return width;
1297}
1298
1299static void find_alignment(struct scoreboard *sb, int *option)
1300{
1301        int longest_src_lines = 0;
1302        int longest_dst_lines = 0;
1303        unsigned largest_score = 0;
1304        struct blame_entry *e;
1305
1306        for (e = sb->ent; e; e = e->next) {
1307                struct origin *suspect = e->suspect;
1308                struct commit_info ci;
1309                int num;
1310
1311                if (!(suspect->commit->object.flags & METAINFO_SHOWN)) {
1312                        suspect->commit->object.flags |= METAINFO_SHOWN;
1313                        get_commit_info(suspect->commit, &ci, 1);
1314                        if (strcmp(suspect->path, sb->path))
1315                                *option |= OUTPUT_SHOW_NAME;
1316                        num = strlen(suspect->path);
1317                        if (longest_file < num)
1318                                longest_file = num;
1319                        num = strlen(ci.author);
1320                        if (longest_author < num)
1321                                longest_author = num;
1322                }
1323                num = e->s_lno + e->num_lines;
1324                if (longest_src_lines < num)
1325                        longest_src_lines = num;
1326                num = e->lno + e->num_lines;
1327                if (longest_dst_lines < num)
1328                        longest_dst_lines = num;
1329                if (largest_score < ent_score(sb, e))
1330                        largest_score = ent_score(sb, e);
1331        }
1332        max_orig_digits = lineno_width(longest_src_lines);
1333        max_digits = lineno_width(longest_dst_lines);
1334        max_score_digits = lineno_width(largest_score);
1335}
1336
1337static void sanity_check_refcnt(struct scoreboard *sb)
1338{
1339        int baa = 0;
1340        struct blame_entry *ent;
1341
1342        for (ent = sb->ent; ent; ent = ent->next) {
1343                /* first mark the ones that haven't been checked */
1344                if (0 < ent->suspect->refcnt)
1345                        ent->suspect->refcnt = -ent->suspect->refcnt;
1346                else if (!ent->suspect->refcnt)
1347                        baa = 1;
1348        }
1349        for (ent = sb->ent; ent; ent = ent->next) {
1350                /* then pick each and see if they have the the
1351                 * correct refcnt
1352                 */
1353                int found;
1354                struct blame_entry *e;
1355                struct origin *suspect = ent->suspect;
1356
1357                if (0 < suspect->refcnt)
1358                        continue;
1359                suspect->refcnt = -suspect->refcnt;
1360                for (found = 0, e = sb->ent; e; e = e->next) {
1361                        if (e->suspect != suspect)
1362                                continue;
1363                        found++;
1364                }
1365                if (suspect->refcnt != found)
1366                        baa = 1;
1367        }
1368        if (baa) {
1369                int opt = 0160;
1370                find_alignment(sb, &opt);
1371                output(sb, opt);
1372                die("Baa!");
1373        }
1374}
1375
1376static int has_path_in_work_tree(const char *path)
1377{
1378        struct stat st;
1379        return !lstat(path, &st);
1380}
1381
1382static unsigned parse_score(const char *arg)
1383{
1384        char *end;
1385        unsigned long score = strtoul(arg, &end, 10);
1386        if (*end)
1387                return 0;
1388        return score;
1389}
1390
1391int cmd_pickaxe(int argc, const char **argv, const char *prefix)
1392{
1393        struct rev_info revs;
1394        const char *path;
1395        struct scoreboard sb;
1396        struct origin *o;
1397        struct blame_entry *ent;
1398        int i, seen_dashdash, unk, opt;
1399        long bottom, top, lno;
1400        int output_option = 0;
1401        const char *revs_file = NULL;
1402        const char *final_commit_name = NULL;
1403        char type[10];
1404
1405        save_commit_buffer = 0;
1406
1407        opt = 0;
1408        bottom = top = 0;
1409        seen_dashdash = 0;
1410        for (unk = i = 1; i < argc; i++) {
1411                const char *arg = argv[i];
1412                if (*arg != '-')
1413                        break;
1414                else if (!strcmp("-c", arg))
1415                        output_option |= OUTPUT_ANNOTATE_COMPAT;
1416                else if (!strcmp("-t", arg))
1417                        output_option |= OUTPUT_RAW_TIMESTAMP;
1418                else if (!strcmp("-l", arg))
1419                        output_option |= OUTPUT_LONG_OBJECT_NAME;
1420                else if (!strcmp("-S", arg) && ++i < argc)
1421                        revs_file = argv[i];
1422                else if (!strncmp("-M", arg, 2)) {
1423                        opt |= PICKAXE_BLAME_MOVE;
1424                        blame_move_score = parse_score(arg+2);
1425                }
1426                else if (!strncmp("-C", arg, 2)) {
1427                        if (opt & PICKAXE_BLAME_COPY)
1428                                opt |= PICKAXE_BLAME_COPY_HARDER;
1429                        opt |= PICKAXE_BLAME_COPY | PICKAXE_BLAME_MOVE;
1430                        blame_copy_score = parse_score(arg+2);
1431                }
1432                else if (!strncmp("-L", arg, 2)) {
1433                        char *term;
1434                        if (!arg[2]) {
1435                                if (++i >= argc)
1436                                        usage(pickaxe_usage);
1437                                arg = argv[i];
1438                        }
1439                        else
1440                                arg += 2;
1441                        if (bottom || top)
1442                                die("More than one '-L n,m' option given");
1443                        bottom = strtol(arg, &term, 10);
1444                        if (*term == ',') {
1445                                top = strtol(term + 1, &term, 10);
1446                                if (*term)
1447                                        usage(pickaxe_usage);
1448                        }
1449                        if (bottom && top && top < bottom) {
1450                                unsigned long tmp;
1451                                tmp = top; top = bottom; bottom = tmp;
1452                        }
1453                }
1454                else if (!strcmp("--score-debug", arg))
1455                        output_option |= OUTPUT_SHOW_SCORE;
1456                else if (!strcmp("-f", arg) ||
1457                         !strcmp("--show-name", arg))
1458                        output_option |= OUTPUT_SHOW_NAME;
1459                else if (!strcmp("-n", arg) ||
1460                         !strcmp("--show-number", arg))
1461                        output_option |= OUTPUT_SHOW_NUMBER;
1462                else if (!strcmp("-p", arg) ||
1463                         !strcmp("--porcelain", arg))
1464                        output_option |= OUTPUT_PORCELAIN;
1465                else if (!strcmp("--", arg)) {
1466                        seen_dashdash = 1;
1467                        i++;
1468                        break;
1469                }
1470                else
1471                        argv[unk++] = arg;
1472        }
1473
1474        if (!blame_move_score)
1475                blame_move_score = BLAME_DEFAULT_MOVE_SCORE;
1476        if (!blame_copy_score)
1477                blame_copy_score = BLAME_DEFAULT_COPY_SCORE;
1478
1479        /* We have collected options unknown to us in argv[1..unk]
1480         * which are to be passed to revision machinery if we are
1481         * going to do the "bottom" procesing.
1482         *
1483         * The remaining are:
1484         *
1485         * (1) if seen_dashdash, its either
1486         *     "-options -- <path>" or
1487         *     "-options -- <path> <rev>".
1488         *     but the latter is allowed only if there is no
1489         *     options that we passed to revision machinery.
1490         *
1491         * (2) otherwise, we may have "--" somewhere later and
1492         *     might be looking at the first one of multiple 'rev'
1493         *     parameters (e.g. " master ^next ^maint -- path").
1494         *     See if there is a dashdash first, and give the
1495         *     arguments before that to revision machinery.
1496         *     After that there must be one 'path'.
1497         *
1498         * (3) otherwise, its one of the three:
1499         *     "-options <path> <rev>"
1500         *     "-options <rev> <path>"
1501         *     "-options <path>"
1502         *     but again the first one is allowed only if
1503         *     there is no options that we passed to revision
1504         *     machinery.
1505         */
1506
1507        if (seen_dashdash) {
1508                /* (1) */
1509                if (argc <= i)
1510                        usage(pickaxe_usage);
1511                path = argv[i];
1512                if (i + 1 == argc - 1) {
1513                        if (unk != 1)
1514                                usage(pickaxe_usage);
1515                        argv[unk++] = argv[i + 1];
1516                }
1517                else if (i + 1 != argc)
1518                        /* garbage at end */
1519                        usage(pickaxe_usage);
1520        }
1521        else {
1522                int j;
1523                for (j = i; !seen_dashdash && j < argc; j++)
1524                        if (!strcmp(argv[j], "--"))
1525                                seen_dashdash = j;
1526                if (seen_dashdash) {
1527                        if (seen_dashdash + 1 != argc - 1)
1528                                usage(pickaxe_usage);
1529                        path = argv[seen_dashdash + 1];
1530                        for (j = i; j < seen_dashdash; j++)
1531                                argv[unk++] = argv[j];
1532                }
1533                else {
1534                        /* (3) */
1535                        path = argv[i];
1536                        if (i + 1 == argc - 1) {
1537                                final_commit_name = argv[i + 1];
1538
1539                                /* if (unk == 1) we could be getting
1540                                 * old-style
1541                                 */
1542                                if (unk == 1 && !has_path_in_work_tree(path)) {
1543                                        path = argv[i + 1];
1544                                        final_commit_name = argv[i];
1545                                }
1546                        }
1547                        else if (i != argc - 1)
1548                                usage(pickaxe_usage); /* garbage at end */
1549
1550                        if (!has_path_in_work_tree(path))
1551                                die("cannot stat path %s: %s",
1552                                    path, strerror(errno));
1553                }
1554        }
1555
1556        if (final_commit_name)
1557                argv[unk++] = final_commit_name;
1558
1559        /* Now we got rev and path.  We do not want the path pruning
1560         * but we may want "bottom" processing.
1561         */
1562        argv[unk] = NULL;
1563
1564        init_revisions(&revs, NULL);
1565        setup_revisions(unk, argv, &revs, "HEAD");
1566        memset(&sb, 0, sizeof(sb));
1567
1568        /* There must be one and only one positive commit in the
1569         * revs->pending array.
1570         */
1571        for (i = 0; i < revs.pending.nr; i++) {
1572                struct object *obj = revs.pending.objects[i].item;
1573                if (obj->flags & UNINTERESTING)
1574                        continue;
1575                while (obj->type == OBJ_TAG)
1576                        obj = deref_tag(obj, NULL, 0);
1577                if (obj->type != OBJ_COMMIT)
1578                        die("Non commit %s?",
1579                            revs.pending.objects[i].name);
1580                if (sb.final)
1581                        die("More than one commit to dig from %s and %s?",
1582                            revs.pending.objects[i].name,
1583                            final_commit_name);
1584                sb.final = (struct commit *) obj;
1585                final_commit_name = revs.pending.objects[i].name;
1586        }
1587
1588        if (!sb.final) {
1589                /* "--not A B -- path" without anything positive */
1590                unsigned char head_sha1[20];
1591
1592                final_commit_name = "HEAD";
1593                if (get_sha1(final_commit_name, head_sha1))
1594                        die("No such ref: HEAD");
1595                sb.final = lookup_commit_reference(head_sha1);
1596                add_pending_object(&revs, &(sb.final->object), "HEAD");
1597        }
1598
1599        /* If we have bottom, this will mark the ancestors of the
1600         * bottom commits we would reach while traversing as
1601         * uninteresting.
1602         */
1603        prepare_revision_walk(&revs);
1604
1605        o = get_origin(&sb, sb.final, path);
1606        if (fill_blob_sha1(o))
1607                die("no such path %s in %s", path, final_commit_name);
1608
1609        sb.final_buf = read_sha1_file(o->blob_sha1, type, &sb.final_buf_size);
1610        lno = prepare_lines(&sb);
1611
1612        if (bottom < 1)
1613                bottom = 1;
1614        if (top < 1)
1615                top = lno;
1616        bottom--;
1617        if (lno < top)
1618                die("file %s has only %lu lines", path, lno);
1619
1620        ent = xcalloc(1, sizeof(*ent));
1621        ent->lno = bottom;
1622        ent->num_lines = top - bottom;
1623        ent->suspect = o;
1624        ent->s_lno = bottom;
1625
1626        sb.ent = ent;
1627        sb.path = path;
1628
1629        if (revs_file && read_ancestry(revs_file))
1630                die("reading graft file %s failed: %s",
1631                    revs_file, strerror(errno));
1632
1633        assign_blame(&sb, &revs, opt);
1634
1635        coalesce(&sb);
1636
1637        if (!(output_option & OUTPUT_PORCELAIN))
1638                find_alignment(&sb, &output_option);
1639
1640        output(&sb, output_option);
1641        free((void *)sb.final_buf);
1642        for (ent = sb.ent; ent; ) {
1643                struct blame_entry *e = ent->next;
1644                free(ent);
1645                ent = e;
1646        }
1647        return 0;
1648}