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