]> git.proxmox.com Git - libgit2.git/blame - src/blame_git.c
Refresh patches
[libgit2.git] / src / blame_git.c
CommitLineData
ceab4e26
BS
1/*
2 * Copyright (C) the libgit2 contributors. All rights reserved.
3 *
4 * This file is part of libgit2, distributed under the GNU GPL v2 with
5 * a Linking Exception. For full terms see the included COPYING file.
6 */
7
8#include "blame_git.h"
eae0bfdc 9
ceab4e26 10#include "commit.h"
b6f60a4d 11#include "blob.h"
49781a03 12#include "xdiff/xinclude.h"
ae195a71 13#include "diff_xdiff.h"
ceab4e26
BS
14
15/*
b6f60a4d
BS
16 * Origin is refcounted and usually we keep the blob contents to be
17 * reused.
ceab4e26 18 */
b6f60a4d 19static git_blame__origin *origin_incref(git_blame__origin *o)
ceab4e26 20{
b6f60a4d
BS
21 if (o)
22 o->refcnt++;
23 return o;
24}
ceab4e26 25
b6f60a4d
BS
26static void origin_decref(git_blame__origin *o)
27{
28 if (o && --o->refcnt <= 0) {
29 if (o->previous)
30 origin_decref(o->previous);
31 git_blob_free(o->blob);
32 git_commit_free(o->commit);
33 git__free(o);
a121e580 34 }
ceab4e26
BS
35}
36
b6f60a4d
BS
37/* Given a commit and a path in it, create a new origin structure. */
38static int make_origin(git_blame__origin **out, git_commit *commit, const char *path)
ceab4e26 39{
a121e580 40 git_blame__origin *o;
21766702 41 git_object *blob;
f1453c59 42 size_t path_len = strlen(path), alloc_len;
392702ee
ET
43 int error = 0;
44
21766702 45 if ((error = git_object_lookup_bypath(&blob, (git_object*)commit,
ac3d33df 46 path, GIT_OBJECT_BLOB)) < 0)
21766702
PS
47 return error;
48
ac3d33df
JK
49 GIT_ERROR_CHECK_ALLOC_ADD(&alloc_len, sizeof(*o), path_len);
50 GIT_ERROR_CHECK_ALLOC_ADD(&alloc_len, alloc_len, 1);
f1453c59 51 o = git__calloc(1, alloc_len);
ac3d33df 52 GIT_ERROR_CHECK_ALLOC(o);
f1453c59 53
ceab4e26 54 o->commit = commit;
21766702 55 o->blob = (git_blob *) blob;
ceab4e26
BS
56 o->refcnt = 1;
57 strcpy(o->path, path);
58
21766702
PS
59 *out = o;
60
61 return 0;
ceab4e26
BS
62}
63
b6f60a4d
BS
64/* Locate an existing origin or create a new one. */
65int git_blame__get_origin(
66 git_blame__origin **out,
67 git_blame *blame,
68 git_commit *commit,
69 const char *path)
70{
71 git_blame__entry *e;
72
73 for (e = blame->ent; e; e = e->next) {
74 if (e->suspect->commit == commit && !strcmp(e->suspect->path, path)) {
75 *out = origin_incref(e->suspect);
76 }
77 }
78 return make_origin(out, commit, path);
79}
80
81typedef struct blame_chunk_cb_data {
0a0f0558 82 git_blame *blame;
a121e580
BS
83 git_blame__origin *target;
84 git_blame__origin *parent;
ceab4e26 85 long tlno;
a121e580 86 long plno;
b6f60a4d 87}blame_chunk_cb_data;
ceab4e26 88
a121e580 89static bool same_suspect(git_blame__origin *a, git_blame__origin *b)
ceab4e26
BS
90{
91 if (a == b)
92 return true;
93 if (git_oid_cmp(git_commit_id(a->commit), git_commit_id(b->commit)))
94 return false;
95 return 0 == strcmp(a->path, b->path);
96}
97
0a0f0558 98/* find the line number of the last line the target is suspected for */
944dbd12 99static bool find_last_in_target(size_t *out, git_blame *blame, git_blame__origin *target)
ceab4e26 100{
a121e580 101 git_blame__entry *e;
944dbd12
PS
102 size_t last_in_target = 0;
103 bool found = false;
104
105 *out = 0;
ceab4e26 106
0a0f0558 107 for (e=blame->ent; e; e=e->next) {
ceab4e26
BS
108 if (e->guilty || !same_suspect(e->suspect, target))
109 continue;
944dbd12
PS
110 if (last_in_target < e->s_lno + e->num_lines) {
111 found = true;
ceab4e26 112 last_in_target = e->s_lno + e->num_lines;
944dbd12 113 }
ceab4e26 114 }
944dbd12
PS
115
116 *out = last_in_target;
117 return found;
ceab4e26
BS
118}
119
120/*
121 * It is known that lines between tlno to same came from parent, and e
122 * has an overlap with that range. it also is known that parent's
123 * line plno corresponds to e's line tlno.
124 *
125 * <---- e ----->
b6f60a4d 126 * <------> (entirely within)
49781a03
BS
127 * <------------> (extends past)
128 * <------------> (starts before)
129 * <------------------> (entirely encloses)
ceab4e26
BS
130 *
131 * Split e into potentially three parts; before this chunk, the chunk
132 * to be blamed for the parent, and after that portion.
133 */
a121e580 134static void split_overlap(git_blame__entry *split, git_blame__entry *e,
944dbd12 135 size_t tlno, size_t plno, size_t same, git_blame__origin *parent)
ceab4e26 136{
944dbd12 137 size_t chunk_end_lno;
ceab4e26
BS
138
139 if (e->s_lno < tlno) {
140 /* there is a pre-chunk part not blamed on the parent */
141 split[0].suspect = origin_incref(e->suspect);
142 split[0].lno = e->lno;
143 split[0].s_lno = e->s_lno;
144 split[0].num_lines = tlno - e->s_lno;
145 split[1].lno = e->lno + tlno - e->s_lno;
146 split[1].s_lno = plno;
147 } else {
148 split[1].lno = e->lno;
149 split[1].s_lno = plno + (e->s_lno - tlno);
150 }
151
152 if (same < e->s_lno + e->num_lines) {
153 /* there is a post-chunk part not blamed on parent */
154 split[2].suspect = origin_incref(e->suspect);
155 split[2].lno = e->lno + (same - e->s_lno);
156 split[2].s_lno = e->s_lno + (same - e->s_lno);
157 split[2].num_lines = e->s_lno + e->num_lines - same;
158 chunk_end_lno = split[2].lno;
159 } else {
160 chunk_end_lno = e->lno + e->num_lines;
161 }
162 split[1].num_lines = chunk_end_lno - split[1].lno;
163
164 /*
165 * if it turns out there is nothing to blame the parent for, forget about
166 * the splitting. !split[1].suspect signals this.
167 */
168 if (split[1].num_lines < 1)
169 return;
170 split[1].suspect = origin_incref(parent);
171}
172
173/*
174 * Link in a new blame entry to the scoreboard. Entries that cover the same
175 * line range have been removed from the scoreboard previously.
176 */
0a0f0558 177static void add_blame_entry(git_blame *blame, git_blame__entry *e)
ceab4e26 178{
a121e580 179 git_blame__entry *ent, *prev = NULL;
ceab4e26
BS
180
181 origin_incref(e->suspect);
182
0a0f0558 183 for (ent = blame->ent; ent && ent->lno < e->lno; ent = ent->next)
ceab4e26
BS
184 prev = ent;
185
186 /* prev, if not NULL, is the last one that is below e */
187 e->prev = prev;
188 if (prev) {
189 e->next = prev->next;
190 prev->next = e;
191 } else {
0a0f0558
BS
192 e->next = blame->ent;
193 blame->ent = e;
ceab4e26
BS
194 }
195 if (e->next)
196 e->next->prev = e;
197}
198
199/*
200 * src typically is on-stack; we want to copy the information in it to
201 * a malloced blame_entry that is already on the linked list of the scoreboard.
202 * The origin of dst loses a refcnt while the origin of src gains one.
203 */
a121e580 204static void dup_entry(git_blame__entry *dst, git_blame__entry *src)
ceab4e26 205{
a121e580 206 git_blame__entry *p, *n;
ceab4e26
BS
207
208 p = dst->prev;
209 n = dst->next;
210 origin_incref(src->suspect);
211 origin_decref(dst->suspect);
212 memcpy(dst, src, sizeof(*src));
213 dst->prev = p;
214 dst->next = n;
215 dst->score = 0;
216}
217
218/*
219 * split_overlap() divided an existing blame e into up to three parts in split.
220 * Adjust the linked list of blames in the scoreboard to reflect the split.
221 */
22a2d3d5 222static int split_blame(git_blame *blame, git_blame__entry *split, git_blame__entry *e)
ceab4e26 223{
a121e580 224 git_blame__entry *new_entry;
ceab4e26
BS
225
226 if (split[0].suspect && split[2].suspect) {
227 /* The first part (reuse storage for the existing entry e */
228 dup_entry(e, &split[0]);
229
230 /* The last part -- me */
231 new_entry = git__malloc(sizeof(*new_entry));
22a2d3d5 232 GIT_ERROR_CHECK_ALLOC(new_entry);
a121e580 233 memcpy(new_entry, &(split[2]), sizeof(git_blame__entry));
0a0f0558 234 add_blame_entry(blame, new_entry);
ceab4e26
BS
235
236 /* ... and the middle part -- parent */
237 new_entry = git__malloc(sizeof(*new_entry));
22a2d3d5 238 GIT_ERROR_CHECK_ALLOC(new_entry);
a121e580 239 memcpy(new_entry, &(split[1]), sizeof(git_blame__entry));
0a0f0558 240 add_blame_entry(blame, new_entry);
ceab4e26
BS
241 } else if (!split[0].suspect && !split[2].suspect) {
242 /*
243 * The parent covers the entire area; reuse storage for e and replace it
244 * with the parent
245 */
246 dup_entry(e, &split[1]);
247 } else if (split[0].suspect) {
248 /* me and then parent */
249 dup_entry(e, &split[0]);
250 new_entry = git__malloc(sizeof(*new_entry));
22a2d3d5 251 GIT_ERROR_CHECK_ALLOC(new_entry);
a121e580 252 memcpy(new_entry, &(split[1]), sizeof(git_blame__entry));
0a0f0558 253 add_blame_entry(blame, new_entry);
ceab4e26
BS
254 } else {
255 /* parent and then me */
256 dup_entry(e, &split[1]);
257 new_entry = git__malloc(sizeof(*new_entry));
22a2d3d5 258 GIT_ERROR_CHECK_ALLOC(new_entry);
a121e580 259 memcpy(new_entry, &(split[2]), sizeof(git_blame__entry));
0a0f0558 260 add_blame_entry(blame, new_entry);
ceab4e26 261 }
22a2d3d5
UG
262
263 return 0;
ceab4e26
BS
264}
265
ac3d33df 266/*
ceab4e26
BS
267 * After splitting the blame, the origins used by the on-stack blame_entry
268 * should lose one refcnt each.
269 */
a121e580 270static void decref_split(git_blame__entry *split)
ceab4e26
BS
271{
272 int i;
273 for (i=0; i<3; i++)
274 origin_decref(split[i].suspect);
275}
276
277/*
278 * Helper for blame_chunk(). blame_entry e is known to overlap with the patch
279 * hunk; split it and pass blame to the parent.
280 */
22a2d3d5 281static int blame_overlap(
b6f60a4d
BS
282 git_blame *blame,
283 git_blame__entry *e,
944dbd12
PS
284 size_t tlno,
285 size_t plno,
286 size_t same,
b6f60a4d 287 git_blame__origin *parent)
ceab4e26 288{
a121e580 289 git_blame__entry split[3] = {{0}};
ceab4e26
BS
290
291 split_overlap(split, e, tlno, plno, same, parent);
292 if (split[1].suspect)
22a2d3d5
UG
293 if (split_blame(blame, split, e) < 0)
294 return -1;
ceab4e26 295 decref_split(split);
22a2d3d5
UG
296
297 return 0;
ceab4e26
BS
298}
299
300/*
301 * Process one hunk from the patch between the current suspect for blame_entry
302 * e and its parent. Find and split the overlap, and pass blame to the
303 * overlapping part to the parent.
304 */
22a2d3d5 305static int blame_chunk(
b6f60a4d 306 git_blame *blame,
944dbd12
PS
307 size_t tlno,
308 size_t plno,
309 size_t same,
b6f60a4d
BS
310 git_blame__origin *target,
311 git_blame__origin *parent)
ceab4e26 312{
a121e580 313 git_blame__entry *e;
ceab4e26 314
0a0f0558 315 for (e = blame->ent; e; e = e->next) {
ceab4e26
BS
316 if (e->guilty || !same_suspect(e->suspect, target))
317 continue;
318 if (same <= e->s_lno)
319 continue;
320 if (tlno < e->s_lno + e->num_lines) {
22a2d3d5
UG
321 if (blame_overlap(blame, e, tlno, plno, same, parent) < 0)
322 return -1;
ceab4e26
BS
323 }
324 }
22a2d3d5
UG
325
326 return 0;
ceab4e26
BS
327}
328
b6f60a4d 329static int my_emit(
234ca40a
ET
330 long start_a, long count_a,
331 long start_b, long count_b,
332 void *cb_data)
ceab4e26 333{
234ca40a
ET
334 blame_chunk_cb_data *d = (blame_chunk_cb_data *)cb_data;
335
22a2d3d5
UG
336 if (blame_chunk(d->blame, d->tlno, d->plno, start_b, d->target, d->parent) < 0)
337 return -1;
234ca40a
ET
338 d->plno = start_a + count_a;
339 d->tlno = start_b + count_b;
944dbd12 340
ceab4e26
BS
341 return 0;
342}
343
344static void trim_common_tail(mmfile_t *a, mmfile_t *b, long ctx)
345{
346 const int blk = 1024;
347 long trimmed = 0, recovered = 0;
348 char *ap = a->ptr + a->size;
349 char *bp = b->ptr + b->size;
aad5403f 350 long smaller = (long)((a->size < b->size) ? a->size : b->size);
ceab4e26
BS
351
352 if (ctx)
353 return;
354
355 while (blk + trimmed <= smaller && !memcmp(ap - blk, bp - blk, blk)) {
356 trimmed += blk;
357 ap -= blk;
358 bp -= blk;
359 }
360
361 while (recovered < trimmed)
362 if (ap[recovered++] == '\n')
363 break;
364 a->size -= trimmed - recovered;
365 b->size -= trimmed - recovered;
366}
367
22a2d3d5 368static int diff_hunks(mmfile_t file_a, mmfile_t file_b, void *cb_data, git_blame_options *options)
ceab4e26 369{
ceab4e26
BS
370 xdemitconf_t xecfg = {0};
371 xdemitcb_t ecb = {0};
22a2d3d5
UG
372 xpparam_t xpp = {0};
373
374 if (options->flags & GIT_BLAME_IGNORE_WHITESPACE)
375 xpp.flags |= XDF_IGNORE_WHITESPACE;
ceab4e26 376
234ca40a 377 xecfg.hunk_func = my_emit;
ceab4e26 378 ecb.priv = cb_data;
b6f60a4d
BS
379
380 trim_common_tail(&file_a, &file_b, 0);
ae195a71
ET
381
382 if (file_a.size > GIT_XDIFF_MAX_SIZE ||
383 file_b.size > GIT_XDIFF_MAX_SIZE) {
ac3d33df 384 git_error_set(GIT_ERROR_INVALID, "file too large to blame");
ae195a71
ET
385 return -1;
386 }
387
b6f60a4d 388 return xdl_diff(&file_a, &file_b, &xpp, &xecfg, &ecb);
ceab4e26
BS
389}
390
a121e580 391static void fill_origin_blob(git_blame__origin *o, mmfile_t *file)
ceab4e26
BS
392{
393 memset(file, 0, sizeof(*file));
394 if (o->blob) {
395 file->ptr = (char*)git_blob_rawcontent(o->blob);
396 file->size = (size_t)git_blob_rawsize(o->blob);
397 }
398}
399
b6f60a4d
BS
400static int pass_blame_to_parent(
401 git_blame *blame,
402 git_blame__origin *target,
403 git_blame__origin *parent)
ceab4e26 404{
944dbd12 405 size_t last_in_target;
ceab4e26 406 mmfile_t file_p, file_o;
b6f60a4d 407 blame_chunk_cb_data d = { blame, target, parent, 0, 0 };
ceab4e26 408
944dbd12 409 if (!find_last_in_target(&last_in_target, blame, target))
ceab4e26
BS
410 return 1; /* nothing remains for this target */
411
412 fill_origin_blob(parent, &file_p);
413 fill_origin_blob(target, &file_o);
414
22a2d3d5 415 if (diff_hunks(file_p, file_o, &d, &blame->options) < 0)
ae195a71
ET
416 return -1;
417
ceab4e26 418 /* The reset (i.e. anything after tlno) are the same as the parent */
22a2d3d5
UG
419 if (blame_chunk(blame, d.tlno, d.plno, last_in_target, target, parent) < 0)
420 return -1;
ceab4e26
BS
421
422 return 0;
423}
424
425static int paths_on_dup(void **old, void *new)
426{
427 GIT_UNUSED(old);
428 git__free(new);
429 return -1;
430}
b6f60a4d 431
c25aa7cd 432static git_blame__origin *find_origin(
b6f60a4d
BS
433 git_blame *blame,
434 git_commit *parent,
a121e580 435 git_blame__origin *origin)
ceab4e26 436{
a121e580 437 git_blame__origin *porigin = NULL;
7dcb1c45 438 git_diff *difflist = NULL;
ceab4e26
BS
439 git_diff_options diffopts = GIT_DIFF_OPTIONS_INIT;
440 git_tree *otree=NULL, *ptree=NULL;
441
442 /* Get the trees from this commit and its parent */
0afe9996
BS
443 if (0 != git_commit_tree(&otree, origin->commit) ||
444 0 != git_commit_tree(&ptree, parent))
445 goto cleanup;
ceab4e26
BS
446
447 /* Configure the diff */
448 diffopts.context_lines = 0;
449 diffopts.flags = GIT_DIFF_SKIP_BINARY_CHECK;
450
451 /* Check to see if files we're interested have changed */
0a0f0558
BS
452 diffopts.pathspec.count = blame->paths.length;
453 diffopts.pathspec.strings = (char**)blame->paths.contents;
454 if (0 != git_diff_tree_to_tree(&difflist, blame->repository, ptree, otree, &diffopts))
0afe9996 455 goto cleanup;
ceab4e26
BS
456
457 if (!git_diff_num_deltas(difflist)) {
458 /* No changes; copy data */
b6f60a4d 459 git_blame__get_origin(&porigin, blame, parent, origin->path);
ceab4e26
BS
460 } else {
461 git_diff_find_options findopts = GIT_DIFF_FIND_OPTIONS_INIT;
462 int i;
463
464 /* Generate a full diff between the two trees */
7dcb1c45 465 git_diff_free(difflist);
ceab4e26 466 diffopts.pathspec.count = 0;
0a0f0558 467 if (0 != git_diff_tree_to_tree(&difflist, blame->repository, ptree, otree, &diffopts))
0afe9996 468 goto cleanup;
ceab4e26
BS
469
470 /* Let diff find renames */
471 findopts.flags = GIT_DIFF_FIND_RENAMES;
0afe9996
BS
472 if (0 != git_diff_find_similar(difflist, &findopts))
473 goto cleanup;
ceab4e26
BS
474
475 /* Find one that matches */
476 for (i=0; i<(int)git_diff_num_deltas(difflist); i++) {
7dcb1c45
BS
477 const git_diff_delta *delta = git_diff_get_delta(difflist, i);
478
479 if (!git_vector_bsearch(NULL, &blame->paths, delta->new_file.path))
480 {
481 git_vector_insert_sorted(&blame->paths, (void*)git__strdup(delta->old_file.path),
482 paths_on_dup);
483 make_origin(&porigin, parent, delta->old_file.path);
484 }
ceab4e26
BS
485 }
486 }
487
0afe9996 488cleanup:
7dcb1c45 489 git_diff_free(difflist);
ceab4e26
BS
490 git_tree_free(otree);
491 git_tree_free(ptree);
492 return porigin;
ceab4e26
BS
493}
494
495/*
496 * The blobs of origin and porigin exactly match, so everything origin is
497 * suspected for can be blamed on the parent.
498 */
ff8d2eb1 499static int pass_whole_blame(git_blame *blame,
a121e580 500 git_blame__origin *origin, git_blame__origin *porigin)
ceab4e26 501{
a121e580 502 git_blame__entry *e;
ceab4e26 503
ff8d2eb1
PS
504 if (!porigin->blob &&
505 git_object_lookup((git_object**)&porigin->blob, blame->repository,
ac3d33df 506 git_blob_id(origin->blob), GIT_OBJECT_BLOB) < 0)
ff8d2eb1 507 return -1;
0a0f0558 508 for (e=blame->ent; e; e=e->next) {
ceab4e26
BS
509 if (!same_suspect(e->suspect, origin))
510 continue;
511 origin_incref(porigin);
512 origin_decref(e->suspect);
513 e->suspect = porigin;
514 }
ff8d2eb1
PS
515
516 return 0;
ceab4e26
BS
517}
518
ae195a71 519static int pass_blame(git_blame *blame, git_blame__origin *origin, uint32_t opt)
ceab4e26
BS
520{
521 git_commit *commit = origin->commit;
b6f60a4d 522 int i, num_parents;
a121e580
BS
523 git_blame__origin *sg_buf[16];
524 git_blame__origin *porigin, **sg_origin = sg_buf;
ae195a71 525 int ret, error = 0;
ceab4e26 526
b6f60a4d 527 num_parents = git_commit_parentcount(commit);
0a0f0558 528 if (!git_oid_cmp(git_commit_id(commit), &blame->options.oldest_commit))
b6f60a4d
BS
529 /* Stop at oldest specified commit */
530 num_parents = 0;
0276f0f5 531 else if (opt & GIT_BLAME_FIRST_PARENT && num_parents > 1)
c7c83394
JR
532 /* Limit search to the first parent */
533 num_parents = 1;
534
b6f60a4d 535 if (!num_parents) {
0a0f0558 536 git_oid_cpy(&blame->options.oldest_commit, git_commit_id(commit));
ceab4e26 537 goto finish;
756138e4 538 } else if (num_parents < (int)ARRAY_SIZE(sg_buf))
ceab4e26 539 memset(sg_buf, 0, sizeof(sg_buf));
756138e4 540 else {
b6f60a4d 541 sg_origin = git__calloc(num_parents, sizeof(*sg_origin));
ac3d33df 542 GIT_ERROR_CHECK_ALLOC(sg_origin);
756138e4 543 }
ceab4e26 544
b6f60a4d 545 for (i=0; i<num_parents; i++) {
ceab4e26
BS
546 git_commit *p;
547 int j, same;
548
549 if (sg_origin[i])
550 continue;
551
8a4a343a
PS
552 if ((error = git_commit_parent(&p, origin->commit, i)) < 0)
553 goto finish;
0a0f0558 554 porigin = find_origin(blame, p, origin);
ceab4e26 555
21766702
PS
556 if (!porigin) {
557 /*
558 * We only have to decrement the parent's
559 * reference count when no porigin has
560 * been created, as otherwise the commit
561 * is assigned to the created object.
562 */
563 git_commit_free(p);
ceab4e26 564 continue;
21766702 565 }
ceab4e26
BS
566 if (porigin->blob && origin->blob &&
567 !git_oid_cmp(git_blob_id(porigin->blob), git_blob_id(origin->blob))) {
ff8d2eb1 568 error = pass_whole_blame(blame, origin, porigin);
ceab4e26
BS
569 origin_decref(porigin);
570 goto finish;
571 }
572 for (j = same = 0; j<i; j++)
573 if (sg_origin[j] &&
574 !git_oid_cmp(git_blob_id(sg_origin[j]->blob), git_blob_id(porigin->blob))) {
575 same = 1;
576 break;
577 }
578 if (!same)
579 sg_origin[i] = porigin;
580 else
581 origin_decref(porigin);
582 }
583
b6f60a4d
BS
584 /* Standard blame */
585 for (i=0; i<num_parents; i++) {
a121e580 586 git_blame__origin *porigin = sg_origin[i];
ceab4e26
BS
587 if (!porigin)
588 continue;
589 if (!origin->previous) {
590 origin_incref(porigin);
591 origin->previous = porigin;
592 }
ae195a71
ET
593
594 if ((ret = pass_blame_to_parent(blame, origin, porigin)) != 0) {
595 if (ret < 0)
596 error = -1;
597
ceab4e26 598 goto finish;
ae195a71 599 }
ceab4e26
BS
600 }
601
602 /* TODO: optionally find moves in parents' files */
603
604 /* TODO: optionally find copies in parents' files */
605
606finish:
b6f60a4d 607 for (i=0; i<num_parents; i++)
ceab4e26
BS
608 if (sg_origin[i])
609 origin_decref(sg_origin[i]);
610 if (sg_origin != sg_buf)
611 git__free(sg_origin);
ae195a71 612 return error;
ceab4e26
BS
613}
614
615/*
b6f60a4d
BS
616 * If two blame entries that are next to each other came from
617 * contiguous lines in the same origin (i.e. <commit, path> pair),
618 * merge them together.
ceab4e26 619 */
b6f60a4d 620static void coalesce(git_blame *blame)
ceab4e26 621{
b6f60a4d 622 git_blame__entry *ent, *next;
ceab4e26 623
b6f60a4d
BS
624 for (ent=blame->ent; ent && (next = ent->next); ent = next) {
625 if (same_suspect(ent->suspect, next->suspect) &&
626 ent->guilty == next->guilty &&
627 ent->s_lno + ent->num_lines == next->s_lno)
628 {
629 ent->num_lines += next->num_lines;
630 ent->next = next->next;
631 if (ent->next)
632 ent->next->prev = ent;
633 origin_decref(next->suspect);
634 git__free(next);
635 ent->score = 0;
636 next = ent; /* again */
637 }
ceab4e26
BS
638 }
639}
640
ae195a71 641int git_blame__like_git(git_blame *blame, uint32_t opt)
ceab4e26 642{
ac3d33df
JK
643 int error = 0;
644
ceab4e26 645 while (true) {
a121e580
BS
646 git_blame__entry *ent;
647 git_blame__origin *suspect = NULL;
ceab4e26
BS
648
649 /* Find a suspect to break down */
0a0f0558 650 for (ent = blame->ent; !suspect && ent; ent = ent->next)
ceab4e26
BS
651 if (!ent->guilty)
652 suspect = ent->suspect;
653 if (!suspect)
ac3d33df 654 break;
ceab4e26
BS
655
656 /* We'll use this suspect later in the loop, so hold on to it for now. */
657 origin_incref(suspect);
ae195a71 658
ac3d33df
JK
659 if ((error = pass_blame(blame, suspect, opt)) < 0)
660 break;
ceab4e26
BS
661
662 /* Take responsibility for the remaining entries */
0a0f0558 663 for (ent = blame->ent; ent; ent = ent->next) {
25c47aae 664 if (same_suspect(ent->suspect, suspect)) {
a7d28f40 665 ent->guilty = true;
25c47aae
BS
666 ent->is_boundary = !git_oid_cmp(
667 git_commit_id(suspect->commit),
0a0f0558 668 &blame->options.oldest_commit);
25c47aae
BS
669 }
670 }
ceab4e26
BS
671 origin_decref(suspect);
672 }
b6f60a4d 673
ac3d33df
JK
674 if (!error)
675 coalesce(blame);
ae195a71 676
ac3d33df 677 return error;
ceab4e26
BS
678}
679
b6f60a4d 680void git_blame__free_entry(git_blame__entry *ent)
ceab4e26 681{
b6f60a4d
BS
682 if (!ent) return;
683 origin_decref(ent->suspect);
684 git__free(ent);
ceab4e26 685}