This source file includes following definitions.
- diff_hunks
 
- textconv_object
 
- fill_origin_blob
 
- origin_incref
 
- origin_decref
 
- drop_origin_blob
 
- blame_merge
 
- get_next_blame
 
- set_next_blame
 
- compare_blame_final
 
- compare_blame_suspect
 
- blame_sort
 
- compare_commits_by_reverse_commit_date
 
- coalesce
 
- queue_blames
 
- make_origin
 
- get_origin
 
- fill_blob_sha1_and_mode
 
- find_origin
 
- find_rename
 
- add_blame_entry
 
- dup_entry
 
- nth_line
 
- nth_line_cb
 
- split_overlap
 
- split_blame
 
- decref_split
 
- reverse_blame
 
- blame_chunk
 
- blame_chunk_cb
 
- pass_blame_to_parent
 
- ent_score
 
- copy_split_if_better
 
- handle_split
 
- handle_split_cb
 
- find_copy_in_blob
 
- filter_small
 
- find_move_in_parent
 
- setup_blame_list
 
- find_copy_in_parent
 
- pass_whole_blame
 
- first_scapegoat
 
- num_scapegoats
 
- distribute_blame
 
- pass_blame
 
- get_ac_line
 
- commit_info_init
 
- commit_info_destroy
 
- get_commit_info
 
- write_filename_info
 
- emit_one_suspect_detail
 
- found_guilty_entry
 
- assign_blame
 
- format_time
 
- emit_porcelain_details
 
- emit_porcelain
 
- emit_other
 
- output
 
- get_next_line
 
- prepare_lines
 
- read_ancestry
 
- update_auto_abbrev
 
- find_alignment
 
- sanity_check_refcnt
 
- parse_score
 
- add_prefix
 
- git_blame_config
 
- verify_working_tree_path
 
- append_parent
 
- append_merge_parents
 
- set_commit_buffer_from_strbuf
 
- fake_working_tree_commit
 
- prepare_final
 
- prepare_initial
 
- blame_copy_callback
 
- blame_move_callback
 
- cmd_blame
 
#include "cache.h"
#include "refs.h"
#include "builtin.h"
#include "blob.h"
#include "commit.h"
#include "tag.h"
#include "tree-walk.h"
#include "diff.h"
#include "diffcore.h"
#include "revision.h"
#include "quote.h"
#include "xdiff-interface.h"
#include "cache-tree.h"
#include "string-list.h"
#include "mailmap.h"
#include "mergesort.h"
#include "parse-options.h"
#include "prio-queue.h"
#include "utf8.h"
#include "userdiff.h"
#include "line-range.h"
#include "line-log.h"
#include "dir.h"
static char blame_usage[] = N_("git blame [<options>] [<rev-opts>] [<rev>] [--] <file>");
static const char *blame_opt_usage[] = {
        blame_usage,
        "",
        N_("<rev-opts> are documented in git-rev-list(1)"),
        NULL
};
static int longest_file;
static int longest_author;
static int max_orig_digits;
static int max_digits;
static int max_score_digits;
static int show_root;
static int reverse;
static int blank_boundary;
static int incremental;
static int xdl_opts;
static int abbrev = -1;
static int no_whole_file_rename;
static struct date_mode blame_date_mode = { DATE_ISO8601 };
static size_t blame_date_width;
static struct string_list mailmap;
#ifndef DEBUG
#define DEBUG 0
#endif
static int num_read_blob;
static int num_get_patch;
static int num_commits;
#define PICKAXE_BLAME_MOVE              01
#define PICKAXE_BLAME_COPY              02
#define PICKAXE_BLAME_COPY_HARDER       04
#define PICKAXE_BLAME_COPY_HARDEST      010
static unsigned blame_move_score;
static unsigned blame_copy_score;
#define BLAME_DEFAULT_MOVE_SCORE        20
#define BLAME_DEFAULT_COPY_SCORE        40
#define METAINFO_SHOWN          (1u<<12)
#define MORE_THAN_ONE_PATH      (1u<<13)
struct origin {
        int refcnt;
        
        struct origin *previous;
        
        struct origin *next;
        struct commit *commit;
        
        struct blame_entry *suspects;
        mmfile_t file;
        unsigned char blob_sha1[20];
        unsigned mode;
        
        char guilty;
        char path[FLEX_ARRAY];
};
static int diff_hunks(mmfile_t *file_a, mmfile_t *file_b, long ctxlen,
                      xdl_emit_hunk_consume_func_t hunk_func, void *cb_data)
{
        xpparam_t xpp = {0};
        xdemitconf_t xecfg = {0};
        xdemitcb_t ecb = {NULL};
        xpp.flags = xdl_opts;
        xecfg.ctxlen = ctxlen;
        xecfg.hunk_func = hunk_func;
        ecb.priv = cb_data;
        return xdi_diff(file_a, file_b, &xpp, &xecfg, &ecb);
}
int textconv_object(const char *path,
                    unsigned mode,
                    const unsigned char *sha1,
                    int sha1_valid,
                    char **buf,
                    unsigned long *buf_size)
{
        struct diff_filespec *df;
        struct userdiff_driver *textconv;
        df = alloc_filespec(path);
        fill_filespec(df, sha1, sha1_valid, mode);
        textconv = get_textconv(df);
        if (!textconv) {
                free_filespec(df);
                return 0;
        }
        *buf_size = fill_textconv(textconv, df, buf);
        free_filespec(df);
        return 1;
}
static void fill_origin_blob(struct diff_options *opt,
                             struct origin *o, mmfile_t *file)
{
        if (!o->file.ptr) {
                enum object_type type;
                unsigned long file_size;
                num_read_blob++;
                if (DIFF_OPT_TST(opt, ALLOW_TEXTCONV) &&
                    textconv_object(o->path, o->mode, o->blob_sha1, 1, &file->ptr, &file_size))
                        ;
                else
                        file->ptr = read_sha1_file(o->blob_sha1, &type, &file_size);
                file->size = file_size;
                if (!file->ptr)
                        die("Cannot read blob %s for path %s",
                            sha1_to_hex(o->blob_sha1),
                            o->path);
                o->file = *file;
        }
        else
                *file = o->file;
}
static inline struct origin *origin_incref(struct origin *o)
{
        if (o)
                o->refcnt++;
        return o;
}
static void origin_decref(struct origin *o)
{
        if (o && --o->refcnt <= 0) {
                struct origin *p, *l = NULL;
                if (o->previous)
                        origin_decref(o->previous);
                free(o->file.ptr);
                
                for (p = o->commit->util; p; l = p, p = p->next) {
                        if (p == o) {
                                if (l)
                                        l->next = p->next;
                                else
                                        o->commit->util = p->next;
                                free(o);
                                return;
                        }
                }
                die("internal error in blame::origin_decref");
        }
}
static void drop_origin_blob(struct origin *o)
{
        if (o->file.ptr) {
                free(o->file.ptr);
                o->file.ptr = NULL;
        }
}
struct blame_entry {
        struct blame_entry *next;
        
        int lno;
        
        int num_lines;
        
        struct origin *suspect;
        
        int s_lno;
        
        unsigned score;
};
static struct blame_entry *blame_merge(struct blame_entry *list1,
                                       struct blame_entry *list2)
{
        struct blame_entry *p1 = list1, *p2 = list2,
                **tail = &list1;
        if (!p1)
                return p2;
        if (!p2)
                return p1;
        if (p1->s_lno <= p2->s_lno) {
                do {
                        tail = &p1->next;
                        if ((p1 = *tail) == NULL) {
                                *tail = p2;
                                return list1;
                        }
                } while (p1->s_lno <= p2->s_lno);
        }
        for (;;) {
                *tail = p2;
                do {
                        tail = &p2->next;
                        if ((p2 = *tail) == NULL)  {
                                *tail = p1;
                                return list1;
                        }
                } while (p1->s_lno > p2->s_lno);
                *tail = p1;
                do {
                        tail = &p1->next;
                        if ((p1 = *tail) == NULL) {
                                *tail = p2;
                                return list1;
                        }
                } while (p1->s_lno <= p2->s_lno);
        }
}
static void *get_next_blame(const void *p)
{
        return ((struct blame_entry *)p)->next;
}
static void set_next_blame(void *p1, void *p2)
{
        ((struct blame_entry *)p1)->next = p2;
}
static int compare_blame_final(const void *p1, const void *p2)
{
        return ((struct blame_entry *)p1)->lno > ((struct blame_entry *)p2)->lno
                ? 1 : -1;
}
static int compare_blame_suspect(const void *p1, const void *p2)
{
        const struct blame_entry *s1 = p1, *s2 = p2;
        
        if (s1->suspect != s2->suspect)
                return (intptr_t)s1->suspect > (intptr_t)s2->suspect ? 1 : -1;
        if (s1->s_lno == s2->s_lno)
                return 0;
        return s1->s_lno > s2->s_lno ? 1 : -1;
}
static struct blame_entry *blame_sort(struct blame_entry *head,
                                      int (*compare_fn)(const void *, const void *))
{
        return llist_mergesort (head, get_next_blame, set_next_blame, compare_fn);
}
static int compare_commits_by_reverse_commit_date(const void *a,
                                                  const void *b,
                                                  void *c)
{
        return -compare_commits_by_commit_date(a, b, c);
}
struct scoreboard {
        
        struct commit *final;
        
        struct prio_queue commits;
        struct rev_info *revs;
        const char *path;
        
        const char *final_buf;
        unsigned long final_buf_size;
        
        struct blame_entry *ent;
        
        int num_lines;
        int *lineno;
};
static void sanity_check_refcnt(struct scoreboard *);
static void coalesce(struct scoreboard *sb)
{
        struct blame_entry *ent, *next;
        for (ent = sb->ent; ent && (next = ent->next); ent = next) {
                if (ent->suspect == next->suspect &&
                    ent->s_lno + ent->num_lines == next->s_lno) {
                        ent->num_lines += next->num_lines;
                        ent->next = next->next;
                        origin_decref(next->suspect);
                        free(next);
                        ent->score = 0;
                        next = ent; 
                }
        }
        if (DEBUG) 
                sanity_check_refcnt(sb);
}
static void queue_blames(struct scoreboard *sb, struct origin *porigin,
                         struct blame_entry *sorted)
{
        if (porigin->suspects)
                porigin->suspects = blame_merge(porigin->suspects, sorted);
        else {
                struct origin *o;
                for (o = porigin->commit->util; o; o = o->next) {
                        if (o->suspects) {
                                porigin->suspects = sorted;
                                return;
                        }
                }
                porigin->suspects = sorted;
                prio_queue_put(&sb->commits, porigin->commit);
        }
}
static struct origin *make_origin(struct commit *commit, const char *path)
{
        struct origin *o;
        o = xcalloc(1, sizeof(*o) + strlen(path) + 1);
        o->commit = commit;
        o->refcnt = 1;
        o->next = commit->util;
        commit->util = o;
        strcpy(o->path, path);
        return o;
}
static struct origin *get_origin(struct scoreboard *sb,
                                 struct commit *commit,
                                 const char *path)
{
        struct origin *o, *l;
        for (o = commit->util, l = NULL; o; l = o, o = o->next) {
                if (!strcmp(o->path, path)) {
                        
                        if (l) {
                                l->next = o->next;
                                o->next = commit->util;
                                commit->util = o;
                        }
                        return origin_incref(o);
                }
        }
        return make_origin(commit, path);
}
static int fill_blob_sha1_and_mode(struct origin *origin)
{
        if (!is_null_sha1(origin->blob_sha1))
                return 0;
        if (get_tree_entry(origin->commit->object.sha1,
                           origin->path,
                           origin->blob_sha1, &origin->mode))
                goto error_out;
        if (sha1_object_info(origin->blob_sha1, NULL) != OBJ_BLOB)
                goto error_out;
        return 0;
 error_out:
        hashclr(origin->blob_sha1);
        origin->mode = S_IFINVALID;
        return -1;
}
static struct origin *find_origin(struct scoreboard *sb,
                                  struct commit *parent,
                                  struct origin *origin)
{
        struct origin *porigin;
        struct diff_options diff_opts;
        const char *paths[2];
        
        for (porigin = parent->util; porigin; porigin = porigin->next)
                if (!strcmp(porigin->path, origin->path)) {
                        
                        return origin_incref (porigin);
                }
        
        diff_setup(&diff_opts);
        DIFF_OPT_SET(&diff_opts, RECURSIVE);
        diff_opts.detect_rename = 0;
        diff_opts.output_format = DIFF_FORMAT_NO_OUTPUT;
        paths[0] = origin->path;
        paths[1] = NULL;
        parse_pathspec(&diff_opts.pathspec,
                       PATHSPEC_ALL_MAGIC & ~PATHSPEC_LITERAL,
                       PATHSPEC_LITERAL_PATH, "", paths);
        diff_setup_done(&diff_opts);
        if (is_null_sha1(origin->commit->object.sha1))
                do_diff_cache(parent->tree->object.sha1, &diff_opts);
        else
                diff_tree_sha1(parent->tree->object.sha1,
                               origin->commit->tree->object.sha1,
                               "", &diff_opts);
        diffcore_std(&diff_opts);
        if (!diff_queued_diff.nr) {
                
                porigin = get_origin(sb, parent, origin->path);
                hashcpy(porigin->blob_sha1, origin->blob_sha1);
                porigin->mode = origin->mode;
        } else {
                
                int i;
                struct diff_filepair *p = NULL;
                for (i = 0; i < diff_queued_diff.nr; i++) {
                        const char *name;
                        p = diff_queued_diff.queue[i];
                        name = p->one->path ? p->one->path : p->two->path;
                        if (!strcmp(name, origin->path))
                                break;
                }
                if (!p)
                        die("internal error in blame::find_origin");
                switch (p->status) {
                default:
                        die("internal error in blame::find_origin (%c)",
                            p->status);
                case 'M':
                        porigin = get_origin(sb, parent, origin->path);
                        hashcpy(porigin->blob_sha1, p->one->sha1);
                        porigin->mode = p->one->mode;
                        break;
                case 'A':
                case 'T':
                        
                        break;
                }
        }
        diff_flush(&diff_opts);
        free_pathspec(&diff_opts.pathspec);
        return porigin;
}
static struct origin *find_rename(struct scoreboard *sb,
                                  struct commit *parent,
                                  struct origin *origin)
{
        struct origin *porigin = NULL;
        struct diff_options diff_opts;
        int i;
        diff_setup(&diff_opts);
        DIFF_OPT_SET(&diff_opts, RECURSIVE);
        diff_opts.detect_rename = DIFF_DETECT_RENAME;
        diff_opts.output_format = DIFF_FORMAT_NO_OUTPUT;
        diff_opts.single_follow = origin->path;
        diff_setup_done(&diff_opts);
        if (is_null_sha1(origin->commit->object.sha1))
                do_diff_cache(parent->tree->object.sha1, &diff_opts);
        else
                diff_tree_sha1(parent->tree->object.sha1,
                               origin->commit->tree->object.sha1,
                               "", &diff_opts);
        diffcore_std(&diff_opts);
        for (i = 0; i < diff_queued_diff.nr; i++) {
                struct diff_filepair *p = diff_queued_diff.queue[i];
                if ((p->status == 'R' || p->status == 'C') &&
                    !strcmp(p->two->path, origin->path)) {
                        porigin = get_origin(sb, parent, p->one->path);
                        hashcpy(porigin->blob_sha1, p->one->sha1);
                        porigin->mode = p->one->mode;
                        break;
                }
        }
        diff_flush(&diff_opts);
        free_pathspec(&diff_opts.pathspec);
        return porigin;
}
static void add_blame_entry(struct blame_entry ***queue, struct blame_entry *e)
{
        origin_incref(e->suspect);
        e->next = **queue;
        **queue = e;
        *queue = &e->next;
}
static void dup_entry(struct blame_entry ***queue,
                      struct blame_entry *dst, struct blame_entry *src)
{
        origin_incref(src->suspect);
        origin_decref(dst->suspect);
        memcpy(dst, src, sizeof(*src));
        dst->next = **queue;
        **queue = dst;
        *queue = &dst->next;
}
static const char *nth_line(struct scoreboard *sb, long lno)
{
        return sb->final_buf + sb->lineno[lno];
}
static const char *nth_line_cb(void *data, long lno)
{
        return nth_line((struct scoreboard *)data, lno);
}
static void split_overlap(struct blame_entry *split,
                          struct blame_entry *e,
                          int tlno, int plno, int same,
                          struct origin *parent)
{
        int chunk_end_lno;
        memset(split, 0, sizeof(struct blame_entry [3]));
        if (e->s_lno < tlno) {
                
                split[0].suspect = origin_incref(e->suspect);
                split[0].lno = e->lno;
                split[0].s_lno = e->s_lno;
                split[0].num_lines = tlno - e->s_lno;
                split[1].lno = e->lno + tlno - e->s_lno;
                split[1].s_lno = plno;
        }
        else {
                split[1].lno = e->lno;
                split[1].s_lno = plno + (e->s_lno - tlno);
        }
        if (same < e->s_lno + e->num_lines) {
                
                split[2].suspect = origin_incref(e->suspect);
                split[2].lno = e->lno + (same - e->s_lno);
                split[2].s_lno = e->s_lno + (same - e->s_lno);
                split[2].num_lines = e->s_lno + e->num_lines - same;
                chunk_end_lno = split[2].lno;
        }
        else
                chunk_end_lno = e->lno + e->num_lines;
        split[1].num_lines = chunk_end_lno - split[1].lno;
        
        if (split[1].num_lines < 1)
                return;
        split[1].suspect = origin_incref(parent);
}
static void split_blame(struct blame_entry ***blamed,
                        struct blame_entry ***unblamed,
                        struct blame_entry *split,
                        struct blame_entry *e)
{
        struct blame_entry *new_entry;
        if (split[0].suspect && split[2].suspect) {
                
                dup_entry(unblamed, e, &split[0]);
                
                new_entry = xmalloc(sizeof(*new_entry));
                memcpy(new_entry, &(split[2]), sizeof(struct blame_entry));
                add_blame_entry(unblamed, new_entry);
                
                new_entry = xmalloc(sizeof(*new_entry));
                memcpy(new_entry, &(split[1]), sizeof(struct blame_entry));
                add_blame_entry(blamed, new_entry);
        }
        else if (!split[0].suspect && !split[2].suspect)
                
                dup_entry(blamed, e, &split[1]);
        else if (split[0].suspect) {
                
                dup_entry(unblamed, e, &split[0]);
                new_entry = xmalloc(sizeof(*new_entry));
                memcpy(new_entry, &(split[1]), sizeof(struct blame_entry));
                add_blame_entry(blamed, new_entry);
        }
        else {
                
                dup_entry(blamed, e, &split[1]);
                new_entry = xmalloc(sizeof(*new_entry));
                memcpy(new_entry, &(split[2]), sizeof(struct blame_entry));
                add_blame_entry(unblamed, new_entry);
        }
}
static void decref_split(struct blame_entry *split)
{
        int i;
        for (i = 0; i < 3; i++)
                origin_decref(split[i].suspect);
}
static struct blame_entry *reverse_blame(struct blame_entry *head,
                                         struct blame_entry *tail)
{
        while (head) {
                struct blame_entry *next = head->next;
                head->next = tail;
                tail = head;
                head = next;
        }
        return tail;
}
static void blame_chunk(struct blame_entry ***dstq, struct blame_entry ***srcq,
                        int tlno, int offset, int same,
                        struct origin *parent)
{
        struct blame_entry *e = **srcq;
        struct blame_entry *samep = NULL, *diffp = NULL;
        while (e && e->s_lno < tlno) {
                struct blame_entry *next = e->next;
                
                if (e->s_lno + e->num_lines > tlno) {
                        
                        int len = tlno - e->s_lno;
                        struct blame_entry *n = xcalloc(1, sizeof (struct blame_entry));
                        n->suspect = e->suspect;
                        n->lno = e->lno + len;
                        n->s_lno = e->s_lno + len;
                        n->num_lines = e->num_lines - len;
                        e->num_lines = len;
                        e->score = 0;
                        
                        n->next = diffp;
                        diffp = n;
                } else
                        origin_decref(e->suspect);
                
                e->suspect = origin_incref(parent);
                e->s_lno += offset;
                e->next = samep;
                samep = e;
                e = next;
        }
        
        if (samep) {
                **dstq = reverse_blame(samep, **dstq);
                *dstq = &samep->next;
        }
        
        e = reverse_blame(diffp, e);
        
        samep = NULL;
        diffp = NULL;
        while (e && e->s_lno < same) {
                struct blame_entry *next = e->next;
                
                if (e->s_lno + e->num_lines > same) {
                        
                        int len = same - e->s_lno;
                        struct blame_entry *n = xcalloc(1, sizeof (struct blame_entry));
                        n->suspect = origin_incref(e->suspect);
                        n->lno = e->lno + len;
                        n->s_lno = e->s_lno + len;
                        n->num_lines = e->num_lines - len;
                        e->num_lines = len;
                        e->score = 0;
                        
                        n->next = samep;
                        samep = n;
                }
                e->next = diffp;
                diffp = e;
                e = next;
        }
        **srcq = reverse_blame(diffp, reverse_blame(samep, e));
        
        if (diffp)
                *srcq = &diffp->next;
}
struct blame_chunk_cb_data {
        struct origin *parent;
        long offset;
        struct blame_entry **dstq;
        struct blame_entry **srcq;
};
static int blame_chunk_cb(long start_a, long count_a,
                          long start_b, long count_b, void *data)
{
        struct blame_chunk_cb_data *d = data;
        if (start_a - start_b != d->offset)
                die("internal error in blame::blame_chunk_cb");
        blame_chunk(&d->dstq, &d->srcq, start_b, start_a - start_b,
                    start_b + count_b, d->parent);
        d->offset = start_a + count_a - (start_b + count_b);
        return 0;
}
static void pass_blame_to_parent(struct scoreboard *sb,
                                 struct origin *target,
                                 struct origin *parent)
{
        mmfile_t file_p, file_o;
        struct blame_chunk_cb_data d;
        struct blame_entry *newdest = NULL;
        if (!target->suspects)
                return; 
        d.parent = parent;
        d.offset = 0;
        d.dstq = &newdest; d.srcq = &target->suspects;
        fill_origin_blob(&sb->revs->diffopt, parent, &file_p);
        fill_origin_blob(&sb->revs->diffopt, target, &file_o);
        num_get_patch++;
        if (diff_hunks(&file_p, &file_o, 0, blame_chunk_cb, &d))
                die("unable to generate diff (%s -> %s)",
                    sha1_to_hex(parent->commit->object.sha1),
                    sha1_to_hex(target->commit->object.sha1));
        
        blame_chunk(&d.dstq, &d.srcq, INT_MAX, d.offset, INT_MAX, parent);
        *d.dstq = NULL;
        queue_blames(sb, parent, newdest);
        return;
}
static unsigned ent_score(struct scoreboard *sb, struct blame_entry *e)
{
        unsigned score;
        const char *cp, *ep;
        if (e->score)
                return e->score;
        score = 1;
        cp = nth_line(sb, e->lno);
        ep = nth_line(sb, e->lno + e->num_lines);
        while (cp < ep) {
                unsigned ch = *((unsigned char *)cp);
                if (isalnum(ch))
                        score++;
                cp++;
        }
        e->score = score;
        return score;
}
static void copy_split_if_better(struct scoreboard *sb,
                                 struct blame_entry *best_so_far,
                                 struct blame_entry *this)
{
        int i;
        if (!this[1].suspect)
                return;
        if (best_so_far[1].suspect) {
                if (ent_score(sb, &this[1]) < ent_score(sb, &best_so_far[1]))
                        return;
        }
        for (i = 0; i < 3; i++)
                origin_incref(this[i].suspect);
        decref_split(best_so_far);
        memcpy(best_so_far, this, sizeof(struct blame_entry [3]));
}
static void handle_split(struct scoreboard *sb,
                         struct blame_entry *ent,
                         int tlno, int plno, int same,
                         struct origin *parent,
                         struct blame_entry *split)
{
        if (ent->num_lines <= tlno)
                return;
        if (tlno < same) {
                struct blame_entry this[3];
                tlno += ent->s_lno;
                same += ent->s_lno;
                split_overlap(this, ent, tlno, plno, same, parent);
                copy_split_if_better(sb, split, this);
                decref_split(this);
        }
}
struct handle_split_cb_data {
        struct scoreboard *sb;
        struct blame_entry *ent;
        struct origin *parent;
        struct blame_entry *split;
        long plno;
        long tlno;
};
static int handle_split_cb(long start_a, long count_a,
                           long start_b, long count_b, void *data)
{
        struct handle_split_cb_data *d = data;
        handle_split(d->sb, d->ent, d->tlno, d->plno, start_b, d->parent,
                     d->split);
        d->plno = start_a + count_a;
        d->tlno = start_b + count_b;
        return 0;
}
static void find_copy_in_blob(struct scoreboard *sb,
                              struct blame_entry *ent,
                              struct origin *parent,
                              struct blame_entry *split,
                              mmfile_t *file_p)
{
        const char *cp;
        mmfile_t file_o;
        struct handle_split_cb_data d;
        memset(&d, 0, sizeof(d));
        d.sb = sb; d.ent = ent; d.parent = parent; d.split = split;
        
        cp = nth_line(sb, ent->lno);
        file_o.ptr = (char *) cp;
        file_o.size = nth_line(sb, ent->lno + ent->num_lines) - cp;
        
        memset(split, 0, sizeof(struct blame_entry [3]));
        if (diff_hunks(file_p, &file_o, 1, handle_split_cb, &d))
                die("unable to generate diff (%s)",
                    sha1_to_hex(parent->commit->object.sha1));
        
        handle_split(sb, ent, d.tlno, d.plno, ent->num_lines, parent, split);
}
static struct blame_entry **filter_small(struct scoreboard *sb,
                                         struct blame_entry **small,
                                         struct blame_entry **source,
                                         unsigned score_min)
{
        struct blame_entry *p = *source;
        struct blame_entry *oldsmall = *small;
        while (p) {
                if (ent_score(sb, p) <= score_min) {
                        *small = p;
                        small = &p->next;
                        p = *small;
                } else {
                        *source = p;
                        source = &p->next;
                        p = *source;
                }
        }
        *small = oldsmall;
        *source = NULL;
        return small;
}
static void find_move_in_parent(struct scoreboard *sb,
                                struct blame_entry ***blamed,
                                struct blame_entry **toosmall,
                                struct origin *target,
                                struct origin *parent)
{
        struct blame_entry *e, split[3];
        struct blame_entry *unblamed = target->suspects;
        struct blame_entry *leftover = NULL;
        mmfile_t file_p;
        if (!unblamed)
                return; 
        fill_origin_blob(&sb->revs->diffopt, parent, &file_p);
        if (!file_p.ptr)
                return;
        
        do {
                struct blame_entry **unblamedtail = &unblamed;
                struct blame_entry *next;
                for (e = unblamed; e; e = next) {
                        next = e->next;
                        find_copy_in_blob(sb, e, parent, split, &file_p);
                        if (split[1].suspect &&
                            blame_move_score < ent_score(sb, &split[1])) {
                                split_blame(blamed, &unblamedtail, split, e);
                        } else {
                                e->next = leftover;
                                leftover = e;
                        }
                        decref_split(split);
                }
                *unblamedtail = NULL;
                toosmall = filter_small(sb, toosmall, &unblamed, blame_move_score);
        } while (unblamed);
        target->suspects = reverse_blame(leftover, NULL);
}
struct blame_list {
        struct blame_entry *ent;
        struct blame_entry split[3];
};
static struct blame_list *setup_blame_list(struct blame_entry *unblamed,
                                           int *num_ents_p)
{
        struct blame_entry *e;
        int num_ents, i;
        struct blame_list *blame_list = NULL;
        for (e = unblamed, num_ents = 0; e; e = e->next)
                num_ents++;
        if (num_ents) {
                blame_list = xcalloc(num_ents, sizeof(struct blame_list));
                for (e = unblamed, i = 0; e; e = e->next)
                        blame_list[i++].ent = e;
        }
        *num_ents_p = num_ents;
        return blame_list;
}
static void find_copy_in_parent(struct scoreboard *sb,
                                struct blame_entry ***blamed,
                                struct blame_entry **toosmall,
                                struct origin *target,
                                struct commit *parent,
                                struct origin *porigin,
                                int opt)
{
        struct diff_options diff_opts;
        int i, j;
        struct blame_list *blame_list;
        int num_ents;
        struct blame_entry *unblamed = target->suspects;
        struct blame_entry *leftover = NULL;
        if (!unblamed)
                return; 
        diff_setup(&diff_opts);
        DIFF_OPT_SET(&diff_opts, RECURSIVE);
        diff_opts.output_format = DIFF_FORMAT_NO_OUTPUT;
        diff_setup_done(&diff_opts);
        
        if ((opt & PICKAXE_BLAME_COPY_HARDEST)
            || ((opt & PICKAXE_BLAME_COPY_HARDER)
                && (!porigin || strcmp(target->path, porigin->path))))
                DIFF_OPT_SET(&diff_opts, FIND_COPIES_HARDER);
        if (is_null_sha1(target->commit->object.sha1))
                do_diff_cache(parent->tree->object.sha1, &diff_opts);
        else
                diff_tree_sha1(parent->tree->object.sha1,
                               target->commit->tree->object.sha1,
                               "", &diff_opts);
        if (!DIFF_OPT_TST(&diff_opts, FIND_COPIES_HARDER))
                diffcore_std(&diff_opts);
        do {
                struct blame_entry **unblamedtail = &unblamed;
                blame_list = setup_blame_list(unblamed, &num_ents);
                for (i = 0; i < diff_queued_diff.nr; i++) {
                        struct diff_filepair *p = diff_queued_diff.queue[i];
                        struct origin *norigin;
                        mmfile_t file_p;
                        struct blame_entry this[3];
                        if (!DIFF_FILE_VALID(p->one))
                                continue; 
                        if (S_ISGITLINK(p->one->mode))
                                continue; 
                        if (porigin && !strcmp(p->one->path, porigin->path))
                                
                                continue;
                        norigin = get_origin(sb, parent, p->one->path);
                        hashcpy(norigin->blob_sha1, p->one->sha1);
                        norigin->mode = p->one->mode;
                        fill_origin_blob(&sb->revs->diffopt, norigin, &file_p);
                        if (!file_p.ptr)
                                continue;
                        for (j = 0; j < num_ents; j++) {
                                find_copy_in_blob(sb, blame_list[j].ent,
                                                  norigin, this, &file_p);
                                copy_split_if_better(sb, blame_list[j].split,
                                                     this);
                                decref_split(this);
                        }
                        origin_decref(norigin);
                }
                for (j = 0; j < num_ents; j++) {
                        struct blame_entry *split = blame_list[j].split;
                        if (split[1].suspect &&
                            blame_copy_score < ent_score(sb, &split[1])) {
                                split_blame(blamed, &unblamedtail, split,
                                            blame_list[j].ent);
                        } else {
                                blame_list[j].ent->next = leftover;
                                leftover = blame_list[j].ent;
                        }
                        decref_split(split);
                }
                free(blame_list);
                *unblamedtail = NULL;
                toosmall = filter_small(sb, toosmall, &unblamed, blame_copy_score);
        } while (unblamed);
        target->suspects = reverse_blame(leftover, NULL);
        diff_flush(&diff_opts);
        free_pathspec(&diff_opts.pathspec);
}
static void pass_whole_blame(struct scoreboard *sb,
                             struct origin *origin, struct origin *porigin)
{
        struct blame_entry *e, *suspects;
        if (!porigin->file.ptr && origin->file.ptr) {
                
                porigin->file = origin->file;
                origin->file.ptr = NULL;
        }
        suspects = origin->suspects;
        origin->suspects = NULL;
        for (e = suspects; e; e = e->next) {
                origin_incref(porigin);
                origin_decref(e->suspect);
                e->suspect = porigin;
        }
        queue_blames(sb, porigin, suspects);
}
static struct commit_list *first_scapegoat(struct rev_info *revs, struct commit *commit)
{
        if (!reverse) {
                if (revs->first_parent_only &&
                    commit->parents &&
                    commit->parents->next) {
                        free_commit_list(commit->parents->next);
                        commit->parents->next = NULL;
                }
                return commit->parents;
        }
        return lookup_decoration(&revs->children, &commit->object);
}
static int num_scapegoats(struct rev_info *revs, struct commit *commit)
{
        struct commit_list *l = first_scapegoat(revs, commit);
        return commit_list_count(l);
}
static void distribute_blame(struct scoreboard *sb, struct blame_entry *blamed)
{
        blamed = blame_sort(blamed, compare_blame_suspect);
        while (blamed)
        {
                struct origin *porigin = blamed->suspect;
                struct blame_entry *suspects = NULL;
                do {
                        struct blame_entry *next = blamed->next;
                        blamed->next = suspects;
                        suspects = blamed;
                        blamed = next;
                } while (blamed && blamed->suspect == porigin);
                suspects = reverse_blame(suspects, NULL);
                queue_blames(sb, porigin, suspects);
        }
}
#define MAXSG 16
static void pass_blame(struct scoreboard *sb, struct origin *origin, int opt)
{
        struct rev_info *revs = sb->revs;
        int i, pass, num_sg;
        struct commit *commit = origin->commit;
        struct commit_list *sg;
        struct origin *sg_buf[MAXSG];
        struct origin *porigin, **sg_origin = sg_buf;
        struct blame_entry *toosmall = NULL;
        struct blame_entry *blames, **blametail = &blames;
        num_sg = num_scapegoats(revs, commit);
        if (!num_sg)
                goto finish;
        else if (num_sg < ARRAY_SIZE(sg_buf))
                memset(sg_buf, 0, sizeof(sg_buf));
        else
                sg_origin = xcalloc(num_sg, sizeof(*sg_origin));
        
        for (pass = 0; pass < 2 - no_whole_file_rename; pass++) {
                struct origin *(*find)(struct scoreboard *,
                                       struct commit *, struct origin *);
                find = pass ? find_rename : find_origin;
                for (i = 0, sg = first_scapegoat(revs, commit);
                     i < num_sg && sg;
                     sg = sg->next, i++) {
                        struct commit *p = sg->item;
                        int j, same;
                        if (sg_origin[i])
                                continue;
                        if (parse_commit(p))
                                continue;
                        porigin = find(sb, p, origin);
                        if (!porigin)
                                continue;
                        if (!hashcmp(porigin->blob_sha1, origin->blob_sha1)) {
                                pass_whole_blame(sb, origin, porigin);
                                origin_decref(porigin);
                                goto finish;
                        }
                        for (j = same = 0; j < i; j++)
                                if (sg_origin[j] &&
                                    !hashcmp(sg_origin[j]->blob_sha1,
                                             porigin->blob_sha1)) {
                                        same = 1;
                                        break;
                                }
                        if (!same)
                                sg_origin[i] = porigin;
                        else
                                origin_decref(porigin);
                }
        }
        num_commits++;
        for (i = 0, sg = first_scapegoat(revs, commit);
             i < num_sg && sg;
             sg = sg->next, i++) {
                struct origin *porigin = sg_origin[i];
                if (!porigin)
                        continue;
                if (!origin->previous) {
                        origin_incref(porigin);
                        origin->previous = porigin;
                }
                pass_blame_to_parent(sb, origin, porigin);
                if (!origin->suspects)
                        goto finish;
        }
        
        if (opt & PICKAXE_BLAME_MOVE) {
                filter_small(sb, &toosmall, &origin->suspects, blame_move_score);
                if (origin->suspects) {
                        for (i = 0, sg = first_scapegoat(revs, commit);
                             i < num_sg && sg;
                             sg = sg->next, i++) {
                                struct origin *porigin = sg_origin[i];
                                if (!porigin)
                                        continue;
                                find_move_in_parent(sb, &blametail, &toosmall, origin, porigin);
                                if (!origin->suspects)
                                        break;
                        }
                }
        }
        
        if (opt & PICKAXE_BLAME_COPY) {
                if (blame_copy_score > blame_move_score)
                        filter_small(sb, &toosmall, &origin->suspects, blame_copy_score);
                else if (blame_copy_score < blame_move_score) {
                        origin->suspects = blame_merge(origin->suspects, toosmall);
                        toosmall = NULL;
                        filter_small(sb, &toosmall, &origin->suspects, blame_copy_score);
                }
                if (!origin->suspects)
                        goto finish;
                for (i = 0, sg = first_scapegoat(revs, commit);
                     i < num_sg && sg;
                     sg = sg->next, i++) {
                        struct origin *porigin = sg_origin[i];
                        find_copy_in_parent(sb, &blametail, &toosmall,
                                            origin, sg->item, porigin, opt);
                        if (!origin->suspects)
                                goto finish;
                }
        }
finish:
        *blametail = NULL;
        distribute_blame(sb, blames);
        
        if (toosmall) {
                struct blame_entry **tail = &toosmall;
                while (*tail)
                        tail = &(*tail)->next;
                *tail = origin->suspects;
                origin->suspects = toosmall;
        }
        for (i = 0; i < num_sg; i++) {
                if (sg_origin[i]) {
                        drop_origin_blob(sg_origin[i]);
                        origin_decref(sg_origin[i]);
                }
        }
        drop_origin_blob(origin);
        if (sg_buf != sg_origin)
                free(sg_origin);
}
struct commit_info {
        struct strbuf author;
        struct strbuf author_mail;
        unsigned long author_time;
        struct strbuf author_tz;
        
        struct strbuf committer;
        struct strbuf committer_mail;
        unsigned long committer_time;
        struct strbuf committer_tz;
        struct strbuf summary;
};
static void get_ac_line(const char *inbuf, const char *what,
        struct strbuf *name, struct strbuf *mail,
        unsigned long *time, struct strbuf *tz)
{
        struct ident_split ident;
        size_t len, maillen, namelen;
        char *tmp, *endp;
        const char *namebuf, *mailbuf;
        tmp = strstr(inbuf, what);
        if (!tmp)
                goto error_out;
        tmp += strlen(what);
        endp = strchr(tmp, '\n');
        if (!endp)
                len = strlen(tmp);
        else
                len = endp - tmp;
        if (split_ident_line(&ident, tmp, len)) {
        error_out:
                
                tmp = "(unknown)";
                strbuf_addstr(name, tmp);
                strbuf_addstr(mail, tmp);
                strbuf_addstr(tz, tmp);
                *time = 0;
                return;
        }
        namelen = ident.name_end - ident.name_begin;
        namebuf = ident.name_begin;
        maillen = ident.mail_end - ident.mail_begin;
        mailbuf = ident.mail_begin;
        if (ident.date_begin && ident.date_end)
                *time = strtoul(ident.date_begin, NULL, 10);
        else
                *time = 0;
        if (ident.tz_begin && ident.tz_end)
                strbuf_add(tz, ident.tz_begin, ident.tz_end - ident.tz_begin);
        else
                strbuf_addstr(tz, "(unknown)");
        
        map_user(&mailmap, &mailbuf, &maillen,
                 &namebuf, &namelen);
        strbuf_addf(mail, "<%.*s>", (int)maillen, mailbuf);
        strbuf_add(name, namebuf, namelen);
}
static void commit_info_init(struct commit_info *ci)
{
        strbuf_init(&ci->author, 0);
        strbuf_init(&ci->author_mail, 0);
        strbuf_init(&ci->author_tz, 0);
        strbuf_init(&ci->committer, 0);
        strbuf_init(&ci->committer_mail, 0);
        strbuf_init(&ci->committer_tz, 0);
        strbuf_init(&ci->summary, 0);
}
static void commit_info_destroy(struct commit_info *ci)
{
        strbuf_release(&ci->author);
        strbuf_release(&ci->author_mail);
        strbuf_release(&ci->author_tz);
        strbuf_release(&ci->committer);
        strbuf_release(&ci->committer_mail);
        strbuf_release(&ci->committer_tz);
        strbuf_release(&ci->summary);
}
static void get_commit_info(struct commit *commit,
                            struct commit_info *ret,
                            int detailed)
{
        int len;
        const char *subject, *encoding;
        const char *message;
        commit_info_init(ret);
        encoding = get_log_output_encoding();
        message = logmsg_reencode(commit, NULL, encoding);
        get_ac_line(message, "\nauthor ",
                    &ret->author, &ret->author_mail,
                    &ret->author_time, &ret->author_tz);
        if (!detailed) {
                unuse_commit_buffer(commit, message);
                return;
        }
        get_ac_line(message, "\ncommitter ",
                    &ret->committer, &ret->committer_mail,
                    &ret->committer_time, &ret->committer_tz);
        len = find_commit_subject(message, &subject);
        if (len)
                strbuf_add(&ret->summary, subject, len);
        else
                strbuf_addf(&ret->summary, "(%s)", sha1_to_hex(commit->object.sha1));
        unuse_commit_buffer(commit, message);
}
static void write_filename_info(const char *path)
{
        printf("filename ");
        write_name_quoted(path, stdout, '\n');
}
static int emit_one_suspect_detail(struct origin *suspect, int repeat)
{
        struct commit_info ci;
        if (!repeat && (suspect->commit->object.flags & METAINFO_SHOWN))
                return 0;
        suspect->commit->object.flags |= METAINFO_SHOWN;
        get_commit_info(suspect->commit, &ci, 1);
        printf("author %s\n", ci.author.buf);
        printf("author-mail %s\n", ci.author_mail.buf);
        printf("author-time %lu\n", ci.author_time);
        printf("author-tz %s\n", ci.author_tz.buf);
        printf("committer %s\n", ci.committer.buf);
        printf("committer-mail %s\n", ci.committer_mail.buf);
        printf("committer-time %lu\n", ci.committer_time);
        printf("committer-tz %s\n", ci.committer_tz.buf);
        printf("summary %s\n", ci.summary.buf);
        if (suspect->commit->object.flags & UNINTERESTING)
                printf("boundary\n");
        if (suspect->previous) {
                struct origin *prev = suspect->previous;
                printf("previous %s ", sha1_to_hex(prev->commit->object.sha1));
                write_name_quoted(prev->path, stdout, '\n');
        }
        commit_info_destroy(&ci);
        return 1;
}
static void found_guilty_entry(struct blame_entry *ent)
{
        if (incremental) {
                struct origin *suspect = ent->suspect;
                printf("%s %d %d %d\n",
                       sha1_to_hex(suspect->commit->object.sha1),
                       ent->s_lno + 1, ent->lno + 1, ent->num_lines);
                emit_one_suspect_detail(suspect, 0);
                write_filename_info(suspect->path);
                maybe_flush_or_die(stdout, "stdout");
        }
}
static void assign_blame(struct scoreboard *sb, int opt)
{
        struct rev_info *revs = sb->revs;
        struct commit *commit = prio_queue_get(&sb->commits);
        while (commit) {
                struct blame_entry *ent;
                struct origin *suspect = commit->util;
                
                while (suspect && !suspect->suspects)
                        suspect = suspect->next;
                if (!suspect) {
                        commit = prio_queue_get(&sb->commits);
                        continue;
                }
                assert(commit == suspect->commit);
                
                origin_incref(suspect);
                parse_commit(commit);
                if (reverse ||
                    (!(commit->object.flags & UNINTERESTING) &&
                     !(revs->max_age != -1 && commit->date < revs->max_age)))
                        pass_blame(sb, suspect, opt);
                else {
                        commit->object.flags |= UNINTERESTING;
                        if (commit->object.parsed)
                                mark_parents_uninteresting(commit);
                }
                
                if (!commit->parents && !show_root)
                        commit->object.flags |= UNINTERESTING;
                
                ent = suspect->suspects;
                if (ent) {
                        suspect->guilty = 1;
                        for (;;) {
                                struct blame_entry *next = ent->next;
                                found_guilty_entry(ent);
                                if (next) {
                                        ent = next;
                                        continue;
                                }
                                ent->next = sb->ent;
                                sb->ent = suspect->suspects;
                                suspect->suspects = NULL;
                                break;
                        }
                }
                origin_decref(suspect);
                if (DEBUG) 
                        sanity_check_refcnt(sb);
        }
}
static const char *format_time(unsigned long time, const char *tz_str,
                               int show_raw_time)
{
        static struct strbuf time_buf = STRBUF_INIT;
        strbuf_reset(&time_buf);
        if (show_raw_time) {
                strbuf_addf(&time_buf, "%lu %s", time, tz_str);
        }
        else {
                const char *time_str;
                size_t time_width;
                int tz;
                tz = atoi(tz_str);
                time_str = show_date(time, tz, &blame_date_mode);
                strbuf_addstr(&time_buf, time_str);
                
                for (time_width = utf8_strwidth(time_str);
                     time_width < blame_date_width;
                     time_width++)
                        strbuf_addch(&time_buf, ' ');
        }
        return time_buf.buf;
}
#define OUTPUT_ANNOTATE_COMPAT  001
#define OUTPUT_LONG_OBJECT_NAME 002
#define OUTPUT_RAW_TIMESTAMP    004
#define OUTPUT_PORCELAIN        010
#define OUTPUT_SHOW_NAME        020
#define OUTPUT_SHOW_NUMBER      040
#define OUTPUT_SHOW_SCORE      0100
#define OUTPUT_NO_AUTHOR       0200
#define OUTPUT_SHOW_EMAIL       0400
#define OUTPUT_LINE_PORCELAIN 01000
static void emit_porcelain_details(struct origin *suspect, int repeat)
{
        if (emit_one_suspect_detail(suspect, repeat) ||
            (suspect->commit->object.flags & MORE_THAN_ONE_PATH))
                write_filename_info(suspect->path);
}
static void emit_porcelain(struct scoreboard *sb, struct blame_entry *ent,
                           int opt)
{
        int repeat = opt & OUTPUT_LINE_PORCELAIN;
        int cnt;
        const char *cp;
        struct origin *suspect = ent->suspect;
        char hex[41];
        strcpy(hex, sha1_to_hex(suspect->commit->object.sha1));
        printf("%s %d %d %d\n",
               hex,
               ent->s_lno + 1,
               ent->lno + 1,
               ent->num_lines);
        emit_porcelain_details(suspect, repeat);
        cp = nth_line(sb, ent->lno);
        for (cnt = 0; cnt < ent->num_lines; cnt++) {
                char ch;
                if (cnt) {
                        printf("%s %d %d\n", hex,
                               ent->s_lno + 1 + cnt,
                               ent->lno + 1 + cnt);
                        if (repeat)
                                emit_porcelain_details(suspect, 1);
                }
                putchar('\t');
                do {
                        ch = *cp++;
                        putchar(ch);
                } while (ch != '\n' &&
                         cp < sb->final_buf + sb->final_buf_size);
        }
        if (sb->final_buf_size && cp[-1] != '\n')
                putchar('\n');
}
static void emit_other(struct scoreboard *sb, struct blame_entry *ent, int opt)
{
        int cnt;
        const char *cp;
        struct origin *suspect = ent->suspect;
        struct commit_info ci;
        char hex[41];
        int show_raw_time = !!(opt & OUTPUT_RAW_TIMESTAMP);
        get_commit_info(suspect->commit, &ci, 1);
        strcpy(hex, sha1_to_hex(suspect->commit->object.sha1));
        cp = nth_line(sb, ent->lno);
        for (cnt = 0; cnt < ent->num_lines; cnt++) {
                char ch;
                int length = (opt & OUTPUT_LONG_OBJECT_NAME) ? 40 : abbrev;
                if (suspect->commit->object.flags & UNINTERESTING) {
                        if (blank_boundary)
                                memset(hex, ' ', length);
                        else if (!(opt & OUTPUT_ANNOTATE_COMPAT)) {
                                length--;
                                putchar('^');
                        }
                }
                printf("%.*s", length, hex);
                if (opt & OUTPUT_ANNOTATE_COMPAT) {
                        const char *name;
                        if (opt & OUTPUT_SHOW_EMAIL)
                                name = ci.author_mail.buf;
                        else
                                name = ci.author.buf;
                        printf("\t(%10s\t%10s\t%d)", name,
                               format_time(ci.author_time, ci.author_tz.buf,
                                           show_raw_time),
                               ent->lno + 1 + cnt);
                } else {
                        if (opt & OUTPUT_SHOW_SCORE)
                                printf(" %*d %02d",
                                       max_score_digits, ent->score,
                                       ent->suspect->refcnt);
                        if (opt & OUTPUT_SHOW_NAME)
                                printf(" %-*.*s", longest_file, longest_file,
                                       suspect->path);
                        if (opt & OUTPUT_SHOW_NUMBER)
                                printf(" %*d", max_orig_digits,
                                       ent->s_lno + 1 + cnt);
                        if (!(opt & OUTPUT_NO_AUTHOR)) {
                                const char *name;
                                int pad;
                                if (opt & OUTPUT_SHOW_EMAIL)
                                        name = ci.author_mail.buf;
                                else
                                        name = ci.author.buf;
                                pad = longest_author - utf8_strwidth(name);
                                printf(" (%s%*s %10s",
                                       name, pad, "",
                                       format_time(ci.author_time,
                                                   ci.author_tz.buf,
                                                   show_raw_time));
                        }
                        printf(" %*d) ",
                               max_digits, ent->lno + 1 + cnt);
                }
                do {
                        ch = *cp++;
                        putchar(ch);
                } while (ch != '\n' &&
                         cp < sb->final_buf + sb->final_buf_size);
        }
        if (sb->final_buf_size && cp[-1] != '\n')
                putchar('\n');
        commit_info_destroy(&ci);
}
static void output(struct scoreboard *sb, int option)
{
        struct blame_entry *ent;
        if (option & OUTPUT_PORCELAIN) {
                for (ent = sb->ent; ent; ent = ent->next) {
                        int count = 0;
                        struct origin *suspect;
                        struct commit *commit = ent->suspect->commit;
                        if (commit->object.flags & MORE_THAN_ONE_PATH)
                                continue;
                        for (suspect = commit->util; suspect; suspect = suspect->next) {
                                if (suspect->guilty && count++) {
                                        commit->object.flags |= MORE_THAN_ONE_PATH;
                                        break;
                                }
                        }
                }
        }
        for (ent = sb->ent; ent; ent = ent->next) {
                if (option & OUTPUT_PORCELAIN)
                        emit_porcelain(sb, ent, option);
                else {
                        emit_other(sb, ent, option);
                }
        }
}
static const char *get_next_line(const char *start, const char *end)
{
        const char *nl = memchr(start, '\n', end - start);
        return nl ? nl + 1 : end;
}
static int prepare_lines(struct scoreboard *sb)
{
        const char *buf = sb->final_buf;
        unsigned long len = sb->final_buf_size;
        const char *end = buf + len;
        const char *p;
        int *lineno;
        int num = 0;
        for (p = buf; p < end; p = get_next_line(p, end))
                num++;
        sb->lineno = lineno = xmalloc(sizeof(*sb->lineno) * (num + 1));
        for (p = buf; p < end; p = get_next_line(p, end))
                *lineno++ = p - buf;
        *lineno = len;
        sb->num_lines = num;
        return sb->num_lines;
}
static int read_ancestry(const char *graft_file)
{
        FILE *fp = fopen(graft_file, "r");
        struct strbuf buf = STRBUF_INIT;
        if (!fp)
                return -1;
        while (!strbuf_getwholeline(&buf, fp, '\n')) {
                
                struct commit_graft *graft = read_graft_line(buf.buf, buf.len);
                if (graft)
                        register_commit_graft(graft, 0);
        }
        fclose(fp);
        strbuf_release(&buf);
        return 0;
}
static int update_auto_abbrev(int auto_abbrev, struct origin *suspect)
{
        const char *uniq = find_unique_abbrev(suspect->commit->object.sha1,
                                              auto_abbrev);
        int len = strlen(uniq);
        if (auto_abbrev < len)
                return len;
        return auto_abbrev;
}
static void find_alignment(struct scoreboard *sb, int *option)
{
        int longest_src_lines = 0;
        int longest_dst_lines = 0;
        unsigned largest_score = 0;
        struct blame_entry *e;
        int compute_auto_abbrev = (abbrev < 0);
        int auto_abbrev = default_abbrev;
        for (e = sb->ent; e; e = e->next) {
                struct origin *suspect = e->suspect;
                int num;
                if (compute_auto_abbrev)
                        auto_abbrev = update_auto_abbrev(auto_abbrev, suspect);
                if (strcmp(suspect->path, sb->path))
                        *option |= OUTPUT_SHOW_NAME;
                num = strlen(suspect->path);
                if (longest_file < num)
                        longest_file = num;
                if (!(suspect->commit->object.flags & METAINFO_SHOWN)) {
                        struct commit_info ci;
                        suspect->commit->object.flags |= METAINFO_SHOWN;
                        get_commit_info(suspect->commit, &ci, 1);
                        if (*option & OUTPUT_SHOW_EMAIL)
                                num = utf8_strwidth(ci.author_mail.buf);
                        else
                                num = utf8_strwidth(ci.author.buf);
                        if (longest_author < num)
                                longest_author = num;
                        commit_info_destroy(&ci);
                }
                num = e->s_lno + e->num_lines;
                if (longest_src_lines < num)
                        longest_src_lines = num;
                num = e->lno + e->num_lines;
                if (longest_dst_lines < num)
                        longest_dst_lines = num;
                if (largest_score < ent_score(sb, e))
                        largest_score = ent_score(sb, e);
        }
        max_orig_digits = decimal_width(longest_src_lines);
        max_digits = decimal_width(longest_dst_lines);
        max_score_digits = decimal_width(largest_score);
        if (compute_auto_abbrev)
                
                abbrev = auto_abbrev + 1;
}
static void sanity_check_refcnt(struct scoreboard *sb)
{
        int baa = 0;
        struct blame_entry *ent;
        for (ent = sb->ent; ent; ent = ent->next) {
                
                if (ent->suspect->refcnt <= 0) {
                        fprintf(stderr, "%s in %s has negative refcnt %d\n",
                                ent->suspect->path,
                                sha1_to_hex(ent->suspect->commit->object.sha1),
                                ent->suspect->refcnt);
                        baa = 1;
                }
        }
        if (baa) {
                int opt = 0160;
                find_alignment(sb, &opt);
                output(sb, opt);
                die("Baa %d!", baa);
        }
}
static unsigned parse_score(const char *arg)
{
        char *end;
        unsigned long score = strtoul(arg, &end, 10);
        if (*end)
                return 0;
        return score;
}
static const char *add_prefix(const char *prefix, const char *path)
{
        return prefix_path(prefix, prefix ? strlen(prefix) : 0, path);
}
static int git_blame_config(const char *var, const char *value, void *cb)
{
        if (!strcmp(var, "blame.showroot")) {
                show_root = git_config_bool(var, value);
                return 0;
        }
        if (!strcmp(var, "blame.blankboundary")) {
                blank_boundary = git_config_bool(var, value);
                return 0;
        }
        if (!strcmp(var, "blame.showemail")) {
                int *output_option = cb;
                if (git_config_bool(var, value))
                        *output_option |= OUTPUT_SHOW_EMAIL;
                else
                        *output_option &= ~OUTPUT_SHOW_EMAIL;
                return 0;
        }
        if (!strcmp(var, "blame.date")) {
                if (!value)
                        return config_error_nonbool(var);
                parse_date_format(value, &blame_date_mode);
                return 0;
        }
        if (userdiff_config(var, value) < 0)
                return -1;
        return git_default_config(var, value, cb);
}
static void verify_working_tree_path(struct commit *work_tree, const char *path)
{
        struct commit_list *parents;
        for (parents = work_tree->parents; parents; parents = parents->next) {
                const unsigned char *commit_sha1 = parents->item->object.sha1;
                unsigned char blob_sha1[20];
                unsigned mode;
                if (!get_tree_entry(commit_sha1, path, blob_sha1, &mode) &&
                    sha1_object_info(blob_sha1, NULL) == OBJ_BLOB)
                        return;
        }
        die("no such path '%s' in HEAD", path);
}
static struct commit_list **append_parent(struct commit_list **tail, const unsigned char *sha1)
{
        struct commit *parent;
        parent = lookup_commit_reference(sha1);
        if (!parent)
                die("no such commit %s", sha1_to_hex(sha1));
        return &commit_list_insert(parent, tail)->next;
}
static void append_merge_parents(struct commit_list **tail)
{
        int merge_head;
        struct strbuf line = STRBUF_INIT;
        merge_head = open(git_path_merge_head(), O_RDONLY);
        if (merge_head < 0) {
                if (errno == ENOENT)
                        return;
                die("cannot open '%s' for reading", git_path_merge_head());
        }
        while (!strbuf_getwholeline_fd(&line, merge_head, '\n')) {
                unsigned char sha1[20];
                if (line.len < 40 || get_sha1_hex(line.buf, sha1))
                        die("unknown line in '%s': %s", git_path_merge_head(), line.buf);
                tail = append_parent(tail, sha1);
        }
        close(merge_head);
        strbuf_release(&line);
}
static void set_commit_buffer_from_strbuf(struct commit *c, struct strbuf *sb)
{
        size_t len;
        void *buf = strbuf_detach(sb, &len);
        set_commit_buffer(c, buf, len);
}
static struct commit *fake_working_tree_commit(struct diff_options *opt,
                                               const char *path,
                                               const char *contents_from)
{
        struct commit *commit;
        struct origin *origin;
        struct commit_list **parent_tail, *parent;
        unsigned char head_sha1[20];
        struct strbuf buf = STRBUF_INIT;
        const char *ident;
        time_t now;
        int size, len;
        struct cache_entry *ce;
        unsigned mode;
        struct strbuf msg = STRBUF_INIT;
        time(&now);
        commit = alloc_commit_node();
        commit->object.parsed = 1;
        commit->date = now;
        parent_tail = &commit->parents;
        if (!resolve_ref_unsafe("HEAD", RESOLVE_REF_READING, head_sha1, NULL))
                die("no such ref: HEAD");
        parent_tail = append_parent(parent_tail, head_sha1);
        append_merge_parents(parent_tail);
        verify_working_tree_path(commit, path);
        origin = make_origin(commit, path);
        ident = fmt_ident("Not Committed Yet", "not.committed.yet", NULL, 0);
        strbuf_addstr(&msg, "tree 0000000000000000000000000000000000000000\n");
        for (parent = commit->parents; parent; parent = parent->next)
                strbuf_addf(&msg, "parent %s\n",
                            sha1_to_hex(parent->item->object.sha1));
        strbuf_addf(&msg,
                    "author %s\n"
                    "committer %s\n\n"
                    "Version of %s from %s\n",
                    ident, ident, path,
                    (!contents_from ? path :
                     (!strcmp(contents_from, "-") ? "standard input" : contents_from)));
        set_commit_buffer_from_strbuf(commit, &msg);
        if (!contents_from || strcmp("-", contents_from)) {
                struct stat st;
                const char *read_from;
                char *buf_ptr;
                unsigned long buf_len;
                if (contents_from) {
                        if (stat(contents_from, &st) < 0)
                                die_errno("Cannot stat '%s'", contents_from);
                        read_from = contents_from;
                }
                else {
                        if (lstat(path, &st) < 0)
                                die_errno("Cannot lstat '%s'", path);
                        read_from = path;
                }
                mode = canon_mode(st.st_mode);
                switch (st.st_mode & S_IFMT) {
                case S_IFREG:
                        if (DIFF_OPT_TST(opt, ALLOW_TEXTCONV) &&
                            textconv_object(read_from, mode, null_sha1, 0, &buf_ptr, &buf_len))
                                strbuf_attach(&buf, buf_ptr, buf_len, buf_len + 1);
                        else if (strbuf_read_file(&buf, read_from, st.st_size) != st.st_size)
                                die_errno("cannot open or read '%s'", read_from);
                        break;
                case S_IFLNK:
                        if (strbuf_readlink(&buf, read_from, st.st_size) < 0)
                                die_errno("cannot readlink '%s'", read_from);
                        break;
                default:
                        die("unsupported file type %s", read_from);
                }
        }
        else {
                
                mode = 0;
                if (strbuf_read(&buf, 0, 0) < 0)
                        die_errno("failed to read from stdin");
        }
        convert_to_git(path, buf.buf, buf.len, &buf, 0);
        origin->file.ptr = buf.buf;
        origin->file.size = buf.len;
        pretend_sha1_file(buf.buf, buf.len, OBJ_BLOB, origin->blob_sha1);
        
        discard_cache();
        read_cache();
        len = strlen(path);
        if (!mode) {
                int pos = cache_name_pos(path, len);
                if (0 <= pos)
                        mode = active_cache[pos]->ce_mode;
                else
                        
                        mode = S_IFREG | 0644;
        }
        size = cache_entry_size(len);
        ce = xcalloc(1, size);
        hashcpy(ce->sha1, origin->blob_sha1);
        memcpy(ce->name, path, len);
        ce->ce_flags = create_ce_flags(0);
        ce->ce_namelen = len;
        ce->ce_mode = create_ce_mode(mode);
        add_cache_entry(ce, ADD_CACHE_OK_TO_ADD|ADD_CACHE_OK_TO_REPLACE);
        
        cache_tree_invalidate_path(&the_index, path);
        return commit;
}
static char *prepare_final(struct scoreboard *sb)
{
        int i;
        const char *final_commit_name = NULL;
        struct rev_info *revs = sb->revs;
        
        for (i = 0; i < revs->pending.nr; i++) {
                struct object *obj = revs->pending.objects[i].item;
                if (obj->flags & UNINTERESTING)
                        continue;
                while (obj->type == OBJ_TAG)
                        obj = deref_tag(obj, NULL, 0);
                if (obj->type != OBJ_COMMIT)
                        die("Non commit %s?", revs->pending.objects[i].name);
                if (sb->final)
                        die("More than one commit to dig from %s and %s?",
                            revs->pending.objects[i].name,
                            final_commit_name);
                sb->final = (struct commit *) obj;
                final_commit_name = revs->pending.objects[i].name;
        }
        return xstrdup_or_null(final_commit_name);
}
static char *prepare_initial(struct scoreboard *sb)
{
        int i;
        const char *final_commit_name = NULL;
        struct rev_info *revs = sb->revs;
        
        for (i = 0; i < revs->pending.nr; i++) {
                struct object *obj = revs->pending.objects[i].item;
                if (!(obj->flags & UNINTERESTING))
                        continue;
                while (obj->type == OBJ_TAG)
                        obj = deref_tag(obj, NULL, 0);
                if (obj->type != OBJ_COMMIT)
                        die("Non commit %s?", revs->pending.objects[i].name);
                if (sb->final)
                        die("More than one commit to dig down to %s and %s?",
                            revs->pending.objects[i].name,
                            final_commit_name);
                sb->final = (struct commit *) obj;
                final_commit_name = revs->pending.objects[i].name;
        }
        if (!final_commit_name)
                die("No commit to dig down to?");
        return xstrdup(final_commit_name);
}
static int blame_copy_callback(const struct option *option, const char *arg, int unset)
{
        int *opt = option->value;
        
        if (*opt & PICKAXE_BLAME_COPY_HARDER)
                *opt |= PICKAXE_BLAME_COPY_HARDEST;
        if (*opt & PICKAXE_BLAME_COPY)
                *opt |= PICKAXE_BLAME_COPY_HARDER;
        *opt |= PICKAXE_BLAME_COPY | PICKAXE_BLAME_MOVE;
        if (arg)
                blame_copy_score = parse_score(arg);
        return 0;
}
static int blame_move_callback(const struct option *option, const char *arg, int unset)
{
        int *opt = option->value;
        *opt |= PICKAXE_BLAME_MOVE;
        if (arg)
                blame_move_score = parse_score(arg);
        return 0;
}
int cmd_blame(int argc, const char **argv, const char *prefix)
{
        struct rev_info revs;
        const char *path;
        struct scoreboard sb;
        struct origin *o;
        struct blame_entry *ent = NULL;
        long dashdash_pos, lno;
        char *final_commit_name = NULL;
        enum object_type type;
        static struct string_list range_list;
        static int output_option = 0, opt = 0;
        static int show_stats = 0;
        static const char *revs_file = NULL;
        static const char *contents_from = NULL;
        static const struct option options[] = {
                OPT_BOOL(0, "incremental", &incremental, N_("Show blame entries as we find them, incrementally")),
                OPT_BOOL('b', NULL, &blank_boundary, N_("Show blank SHA-1 for boundary commits (Default: off)")),
                OPT_BOOL(0, "root", &show_root, N_("Do not treat root commits as boundaries (Default: off)")),
                OPT_BOOL(0, "show-stats", &show_stats, N_("Show work cost statistics")),
                OPT_BIT(0, "score-debug", &output_option, N_("Show output score for blame entries"), OUTPUT_SHOW_SCORE),
                OPT_BIT('f', "show-name", &output_option, N_("Show original filename (Default: auto)"), OUTPUT_SHOW_NAME),
                OPT_BIT('n', "show-number", &output_option, N_("Show original linenumber (Default: off)"), OUTPUT_SHOW_NUMBER),
                OPT_BIT('p', "porcelain", &output_option, N_("Show in a format designed for machine consumption"), OUTPUT_PORCELAIN),
                OPT_BIT(0, "line-porcelain", &output_option, N_("Show porcelain format with per-line commit information"), OUTPUT_PORCELAIN|OUTPUT_LINE_PORCELAIN),
                OPT_BIT('c', NULL, &output_option, N_("Use the same output mode as git-annotate (Default: off)"), OUTPUT_ANNOTATE_COMPAT),
                OPT_BIT('t', NULL, &output_option, N_("Show raw timestamp (Default: off)"), OUTPUT_RAW_TIMESTAMP),
                OPT_BIT('l', NULL, &output_option, N_("Show long commit SHA1 (Default: off)"), OUTPUT_LONG_OBJECT_NAME),
                OPT_BIT('s', NULL, &output_option, N_("Suppress author name and timestamp (Default: off)"), OUTPUT_NO_AUTHOR),
                OPT_BIT('e', "show-email", &output_option, N_("Show author email instead of name (Default: off)"), OUTPUT_SHOW_EMAIL),
                OPT_BIT('w', NULL, &xdl_opts, N_("Ignore whitespace differences"), XDF_IGNORE_WHITESPACE),
                OPT_BIT(0, "minimal", &xdl_opts, N_("Spend extra cycles to find better match"), XDF_NEED_MINIMAL),
                OPT_STRING('S', NULL, &revs_file, N_("file"), N_("Use revisions from <file> instead of calling git-rev-list")),
                OPT_STRING(0, "contents", &contents_from, N_("file"), N_("Use <file>'s contents as the final image")),
                { OPTION_CALLBACK, 'C', NULL, &opt, N_("score"), N_("Find line copies within and across files"), PARSE_OPT_OPTARG, blame_copy_callback },
                { OPTION_CALLBACK, 'M', NULL, &opt, N_("score"), N_("Find line movements within and across files"), PARSE_OPT_OPTARG, blame_move_callback },
                OPT_STRING_LIST('L', NULL, &range_list, N_("n,m"), N_("Process only line range n,m, counting from 1")),
                OPT__ABBREV(&abbrev),
                OPT_END()
        };
        struct parse_opt_ctx_t ctx;
        int cmd_is_annotate = !strcmp(argv[0], "annotate");
        struct range_set ranges;
        unsigned int range_i;
        long anchor;
        git_config(git_blame_config, &output_option);
        init_revisions(&revs, NULL);
        revs.date_mode = blame_date_mode;
        DIFF_OPT_SET(&revs.diffopt, ALLOW_TEXTCONV);
        DIFF_OPT_SET(&revs.diffopt, FOLLOW_RENAMES);
        save_commit_buffer = 0;
        dashdash_pos = 0;
        parse_options_start(&ctx, argc, argv, prefix, options,
                            PARSE_OPT_KEEP_DASHDASH | PARSE_OPT_KEEP_ARGV0);
        for (;;) {
                switch (parse_options_step(&ctx, options, blame_opt_usage)) {
                case PARSE_OPT_HELP:
                        exit(129);
                case PARSE_OPT_DONE:
                        if (ctx.argv[0])
                                dashdash_pos = ctx.cpidx;
                        goto parse_done;
                }
                if (!strcmp(ctx.argv[0], "--reverse")) {
                        ctx.argv[0] = "--children";
                        reverse = 1;
                }
                parse_revision_opt(&revs, &ctx, options, blame_opt_usage);
        }
parse_done:
        no_whole_file_rename = !DIFF_OPT_TST(&revs.diffopt, FOLLOW_RENAMES);
        DIFF_OPT_CLR(&revs.diffopt, FOLLOW_RENAMES);
        argc = parse_options_end(&ctx);
        if (0 < abbrev)
                
                abbrev++;
        if (revs_file && read_ancestry(revs_file))
                die_errno("reading graft file '%s' failed", revs_file);
        if (cmd_is_annotate) {
                output_option |= OUTPUT_ANNOTATE_COMPAT;
                blame_date_mode.type = DATE_ISO8601;
        } else {
                blame_date_mode = revs.date_mode;
        }
        
        switch (blame_date_mode.type) {
        case DATE_RFC2822:
                blame_date_width = sizeof("Thu, 19 Oct 2006 16:00:04 -0700");
                break;
        case DATE_ISO8601_STRICT:
                blame_date_width = sizeof("2006-10-19T16:00:04-07:00");
                break;
        case DATE_ISO8601:
                blame_date_width = sizeof("2006-10-19 16:00:04 -0700");
                break;
        case DATE_RAW:
                blame_date_width = sizeof("1161298804 -0700");
                break;
        case DATE_SHORT:
                blame_date_width = sizeof("2006-10-19");
                break;
        case DATE_RELATIVE:
                
                blame_date_width = utf8_strwidth(_("4 years, 11 months ago")) + 1; 
                break;
        case DATE_LOCAL:
        case DATE_NORMAL:
                blame_date_width = sizeof("Thu Oct 19 16:00:04 2006 -0700");
                break;
        case DATE_STRFTIME:
                blame_date_width = strlen(show_date(0, 0, &blame_date_mode)) + 1; 
                break;
        }
        blame_date_width -= 1; 
        if (DIFF_OPT_TST(&revs.diffopt, FIND_COPIES_HARDER))
                opt |= (PICKAXE_BLAME_COPY | PICKAXE_BLAME_MOVE |
                        PICKAXE_BLAME_COPY_HARDER);
        if (!blame_move_score)
                blame_move_score = BLAME_DEFAULT_MOVE_SCORE;
        if (!blame_copy_score)
                blame_copy_score = BLAME_DEFAULT_COPY_SCORE;
        
        if (dashdash_pos) {
                switch (argc - dashdash_pos - 1) {
                case 2: 
                        if (argc != 4)
                                usage_with_options(blame_opt_usage, options);
                        
                        argv[1] = argv[3];
                        argv[3] = argv[2];
                        argv[2] = "--";
                        
                case 1: 
                        path = add_prefix(prefix, argv[--argc]);
                        argv[argc] = NULL;
                        break;
                default:
                        usage_with_options(blame_opt_usage, options);
                }
        } else {
                if (argc < 2)
                        usage_with_options(blame_opt_usage, options);
                path = add_prefix(prefix, argv[argc - 1]);
                if (argc == 3 && !file_exists(path)) { 
                        path = add_prefix(prefix, argv[1]);
                        argv[1] = argv[2];
                }
                argv[argc - 1] = "--";
                setup_work_tree();
                if (!file_exists(path))
                        die_errno("cannot stat path '%s'", path);
        }
        revs.disable_stdin = 1;
        setup_revisions(argc, argv, &revs, NULL);
        memset(&sb, 0, sizeof(sb));
        sb.revs = &revs;
        if (!reverse) {
                final_commit_name = prepare_final(&sb);
                sb.commits.compare = compare_commits_by_commit_date;
        }
        else if (contents_from)
                die("--contents and --reverse do not blend well.");
        else if (revs.first_parent_only)
                die("combining --first-parent and --reverse is not supported");
        else {
                final_commit_name = prepare_initial(&sb);
                sb.commits.compare = compare_commits_by_reverse_commit_date;
        }
        if (!sb.final) {
                
                setup_work_tree();
                sb.final = fake_working_tree_commit(&sb.revs->diffopt,
                                                    path, contents_from);
                add_pending_object(&revs, &(sb.final->object), ":");
        }
        else if (contents_from)
                die("Cannot use --contents with final commit object name");
        
        if (prepare_revision_walk(&revs))
                die(_("revision walk setup failed"));
        if (is_null_sha1(sb.final->object.sha1)) {
                o = sb.final->util;
                sb.final_buf = xmemdupz(o->file.ptr, o->file.size);
                sb.final_buf_size = o->file.size;
        }
        else {
                o = get_origin(&sb, sb.final, path);
                if (fill_blob_sha1_and_mode(o))
                        die("no such path %s in %s", path, final_commit_name);
                if (DIFF_OPT_TST(&sb.revs->diffopt, ALLOW_TEXTCONV) &&
                    textconv_object(path, o->mode, o->blob_sha1, 1, (char **) &sb.final_buf,
                                    &sb.final_buf_size))
                        ;
                else
                        sb.final_buf = read_sha1_file(o->blob_sha1, &type,
                                                      &sb.final_buf_size);
                if (!sb.final_buf)
                        die("Cannot read blob %s for path %s",
                            sha1_to_hex(o->blob_sha1),
                            path);
        }
        num_read_blob++;
        lno = prepare_lines(&sb);
        if (lno && !range_list.nr)
                string_list_append(&range_list, xstrdup("1"));
        anchor = 1;
        range_set_init(&ranges, range_list.nr);
        for (range_i = 0; range_i < range_list.nr; ++range_i) {
                long bottom, top;
                if (parse_range_arg(range_list.items[range_i].string,
                                    nth_line_cb, &sb, lno, anchor,
                                    &bottom, &top, sb.path))
                        usage(blame_usage);
                if (lno < top || ((lno || bottom) && lno < bottom))
                        die("file %s has only %lu lines", path, lno);
                if (bottom < 1)
                        bottom = 1;
                if (top < 1)
                        top = lno;
                bottom--;
                range_set_append_unsafe(&ranges, bottom, top);
                anchor = top + 1;
        }
        sort_and_merge_range_set(&ranges);
        for (range_i = ranges.nr; range_i > 0; --range_i) {
                const struct range *r = &ranges.ranges[range_i - 1];
                long bottom = r->start;
                long top = r->end;
                struct blame_entry *next = ent;
                ent = xcalloc(1, sizeof(*ent));
                ent->lno = bottom;
                ent->num_lines = top - bottom;
                ent->suspect = o;
                ent->s_lno = bottom;
                ent->next = next;
                origin_incref(o);
        }
        o->suspects = ent;
        prio_queue_put(&sb.commits, o->commit);
        origin_decref(o);
        range_set_release(&ranges);
        string_list_clear(&range_list, 0);
        sb.ent = NULL;
        sb.path = path;
        read_mailmap(&mailmap, NULL);
        if (!incremental)
                setup_pager();
        assign_blame(&sb, opt);
        free(final_commit_name);
        if (incremental)
                return 0;
        sb.ent = blame_sort(sb.ent, compare_blame_final);
        coalesce(&sb);
        if (!(output_option & OUTPUT_PORCELAIN))
                find_alignment(&sb, &output_option);
        output(&sb, output_option);
        free((void *)sb.final_buf);
        for (ent = sb.ent; ent; ) {
                struct blame_entry *e = ent->next;
                free(ent);
                ent = e;
        }
        if (show_stats) {
                printf("num read blob: %d\n", num_read_blob);
                printf("num get patch: %d\n", num_get_patch);
                printf("num commits: %d\n", num_commits);
        }
        return 0;
}