3 #include "object-store.h"
4 #include "cache-tree.h"
11 #include "commit-slab.h"
13 define_commit_slab(blame_suspects
, struct blame_origin
*);
14 static struct blame_suspects blame_suspects
;
16 struct blame_origin
*get_blame_suspects(struct commit
*commit
)
18 struct blame_origin
**result
;
20 result
= blame_suspects_peek(&blame_suspects
, commit
);
22 return result
? *result
: NULL
;
25 static void set_blame_suspects(struct commit
*commit
, struct blame_origin
*origin
)
27 *blame_suspects_at(&blame_suspects
, commit
) = origin
;
30 void blame_origin_decref(struct blame_origin
*o
)
32 if (o
&& --o
->refcnt
<= 0) {
33 struct blame_origin
*p
, *l
= NULL
;
35 blame_origin_decref(o
->previous
);
37 /* Should be present exactly once in commit chain */
38 for (p
= get_blame_suspects(o
->commit
); p
; l
= p
, p
= p
->next
) {
43 set_blame_suspects(o
->commit
, p
->next
);
48 die("internal error in blame_origin_decref");
53 * Given a commit and a path in it, create a new origin structure.
54 * The callers that add blame to the scoreboard should use
55 * get_origin() to obtain shared, refcounted copy instead of calling
56 * this function directly.
58 static struct blame_origin
*make_origin(struct commit
*commit
, const char *path
)
60 struct blame_origin
*o
;
61 FLEX_ALLOC_STR(o
, path
, path
);
64 o
->next
= get_blame_suspects(commit
);
65 set_blame_suspects(commit
, o
);
70 * Locate an existing origin or create a new one.
71 * This moves the origin to front position in the commit util list.
73 static struct blame_origin
*get_origin(struct commit
*commit
, const char *path
)
75 struct blame_origin
*o
, *l
;
77 for (o
= get_blame_suspects(commit
), l
= NULL
; o
; l
= o
, o
= o
->next
) {
78 if (!strcmp(o
->path
, path
)) {
82 o
->next
= get_blame_suspects(commit
);
83 set_blame_suspects(commit
, o
);
85 return blame_origin_incref(o
);
88 return make_origin(commit
, path
);
93 static void verify_working_tree_path(struct repository
*r
,
94 struct commit
*work_tree
, const char *path
)
96 struct commit_list
*parents
;
99 for (parents
= work_tree
->parents
; parents
; parents
= parents
->next
) {
100 const struct object_id
*commit_oid
= &parents
->item
->object
.oid
;
101 struct object_id blob_oid
;
104 if (!get_tree_entry(r
, commit_oid
, path
, &blob_oid
, &mode
) &&
105 oid_object_info(r
, &blob_oid
, NULL
) == OBJ_BLOB
)
109 pos
= index_name_pos(r
->index
, path
, strlen(path
));
111 ; /* path is in the index */
112 else if (-1 - pos
< r
->index
->cache_nr
&&
113 !strcmp(r
->index
->cache
[-1 - pos
]->name
, path
))
114 ; /* path is in the index, unmerged */
116 die("no such path '%s' in HEAD", path
);
119 static struct commit_list
**append_parent(struct repository
*r
,
120 struct commit_list
**tail
,
121 const struct object_id
*oid
)
123 struct commit
*parent
;
125 parent
= lookup_commit_reference(r
, oid
);
127 die("no such commit %s", oid_to_hex(oid
));
128 return &commit_list_insert(parent
, tail
)->next
;
131 static void append_merge_parents(struct repository
*r
,
132 struct commit_list
**tail
)
135 struct strbuf line
= STRBUF_INIT
;
137 merge_head
= open(git_path_merge_head(r
), O_RDONLY
);
138 if (merge_head
< 0) {
141 die("cannot open '%s' for reading",
142 git_path_merge_head(r
));
145 while (!strbuf_getwholeline_fd(&line
, merge_head
, '\n')) {
146 struct object_id oid
;
147 if (get_oid_hex(line
.buf
, &oid
))
148 die("unknown line in '%s': %s",
149 git_path_merge_head(r
), line
.buf
);
150 tail
= append_parent(r
, tail
, &oid
);
153 strbuf_release(&line
);
157 * This isn't as simple as passing sb->buf and sb->len, because we
158 * want to transfer ownership of the buffer to the commit (so we
161 static void set_commit_buffer_from_strbuf(struct repository
*r
,
166 void *buf
= strbuf_detach(sb
, &len
);
167 set_commit_buffer(r
, c
, buf
, len
);
171 * Prepare a dummy commit that represents the work tree (or staged) item.
172 * Note that annotating work tree item never works in the reverse.
174 static struct commit
*fake_working_tree_commit(struct repository
*r
,
175 struct diff_options
*opt
,
177 const char *contents_from
)
179 struct commit
*commit
;
180 struct blame_origin
*origin
;
181 struct commit_list
**parent_tail
, *parent
;
182 struct object_id head_oid
;
183 struct strbuf buf
= STRBUF_INIT
;
187 struct cache_entry
*ce
;
189 struct strbuf msg
= STRBUF_INIT
;
193 commit
= alloc_commit_node(r
);
194 commit
->object
.parsed
= 1;
196 parent_tail
= &commit
->parents
;
198 if (!resolve_ref_unsafe("HEAD", RESOLVE_REF_READING
, &head_oid
, NULL
))
199 die("no such ref: HEAD");
201 parent_tail
= append_parent(r
, parent_tail
, &head_oid
);
202 append_merge_parents(r
, parent_tail
);
203 verify_working_tree_path(r
, commit
, path
);
205 origin
= make_origin(commit
, path
);
207 ident
= fmt_ident("Not Committed Yet", "not.committed.yet",
208 WANT_BLANK_IDENT
, NULL
, 0);
209 strbuf_addstr(&msg
, "tree 0000000000000000000000000000000000000000\n");
210 for (parent
= commit
->parents
; parent
; parent
= parent
->next
)
211 strbuf_addf(&msg
, "parent %s\n",
212 oid_to_hex(&parent
->item
->object
.oid
));
216 "Version of %s from %s\n",
218 (!contents_from
? path
:
219 (!strcmp(contents_from
, "-") ? "standard input" : contents_from
)));
220 set_commit_buffer_from_strbuf(r
, commit
, &msg
);
222 if (!contents_from
|| strcmp("-", contents_from
)) {
224 const char *read_from
;
226 unsigned long buf_len
;
229 if (stat(contents_from
, &st
) < 0)
230 die_errno("Cannot stat '%s'", contents_from
);
231 read_from
= contents_from
;
234 if (lstat(path
, &st
) < 0)
235 die_errno("Cannot lstat '%s'", path
);
238 mode
= canon_mode(st
.st_mode
);
240 switch (st
.st_mode
& S_IFMT
) {
242 if (opt
->flags
.allow_textconv
&&
243 textconv_object(r
, read_from
, mode
, &null_oid
, 0, &buf_ptr
, &buf_len
))
244 strbuf_attach(&buf
, buf_ptr
, buf_len
, buf_len
+ 1);
245 else if (strbuf_read_file(&buf
, read_from
, st
.st_size
) != st
.st_size
)
246 die_errno("cannot open or read '%s'", read_from
);
249 if (strbuf_readlink(&buf
, read_from
, st
.st_size
) < 0)
250 die_errno("cannot readlink '%s'", read_from
);
253 die("unsupported file type %s", read_from
);
257 /* Reading from stdin */
259 if (strbuf_read(&buf
, 0, 0) < 0)
260 die_errno("failed to read from stdin");
262 convert_to_git(r
->index
, path
, buf
.buf
, buf
.len
, &buf
, 0);
263 origin
->file
.ptr
= buf
.buf
;
264 origin
->file
.size
= buf
.len
;
265 pretend_object_file(buf
.buf
, buf
.len
, OBJ_BLOB
, &origin
->blob_oid
);
268 * Read the current index, replace the path entry with
269 * origin->blob_sha1 without mucking with its mode or type
270 * bits; we are not going to write this index out -- we just
271 * want to run "diff-index --cached".
273 discard_index(r
->index
);
278 int pos
= index_name_pos(r
->index
, path
, len
);
280 mode
= r
->index
->cache
[pos
]->ce_mode
;
282 /* Let's not bother reading from HEAD tree */
283 mode
= S_IFREG
| 0644;
285 ce
= make_empty_cache_entry(r
->index
, len
);
286 oidcpy(&ce
->oid
, &origin
->blob_oid
);
287 memcpy(ce
->name
, path
, len
);
288 ce
->ce_flags
= create_ce_flags(0);
289 ce
->ce_namelen
= len
;
290 ce
->ce_mode
= create_ce_mode(mode
);
291 add_index_entry(r
->index
, ce
,
292 ADD_CACHE_OK_TO_ADD
| ADD_CACHE_OK_TO_REPLACE
);
294 cache_tree_invalidate_path(r
->index
, path
);
301 static int diff_hunks(mmfile_t
*file_a
, mmfile_t
*file_b
,
302 xdl_emit_hunk_consume_func_t hunk_func
, void *cb_data
, int xdl_opts
)
305 xdemitconf_t xecfg
= {0};
306 xdemitcb_t ecb
= {NULL
};
308 xpp
.flags
= xdl_opts
;
309 xecfg
.hunk_func
= hunk_func
;
311 return xdi_diff(file_a
, file_b
, &xpp
, &xecfg
, &ecb
);
314 static const char *get_next_line(const char *start
, const char *end
)
316 const char *nl
= memchr(start
, '\n', end
- start
);
318 return nl
? nl
+ 1 : end
;
321 static int find_line_starts(int **line_starts
, const char *buf
,
324 const char *end
= buf
+ len
;
329 for (p
= buf
; p
< end
; p
= get_next_line(p
, end
))
332 ALLOC_ARRAY(*line_starts
, num
+ 1);
333 lineno
= *line_starts
;
335 for (p
= buf
; p
< end
; p
= get_next_line(p
, end
))
343 struct fingerprint_entry
;
345 /* A fingerprint is intended to loosely represent a string, such that two
346 * fingerprints can be quickly compared to give an indication of the similarity
347 * of the strings that they represent.
349 * A fingerprint is represented as a multiset of the lower-cased byte pairs in
350 * the string that it represents. Whitespace is added at each end of the
351 * string. Whitespace pairs are ignored. Whitespace is converted to '\0'.
352 * For example, the string "Darth Radar" will be converted to the following
354 * {"\0d", "da", "da", "ar", "ar", "rt", "th", "h\0", "\0r", "ra", "ad", "r\0"}
356 * The similarity between two fingerprints is the size of the intersection of
357 * their multisets, including repeated elements. See fingerprint_similarity for
360 * For ease of implementation, the fingerprint is implemented as a map
361 * of byte pairs to the count of that byte pair in the string, instead of
362 * allowing repeated elements in a set.
366 /* As we know the maximum number of entries in advance, it's
367 * convenient to store the entries in a single array instead of having
368 * the hashmap manage the memory.
370 struct fingerprint_entry
*entries
;
373 /* A byte pair in a fingerprint. Stores the number of times the byte pair
374 * occurs in the string that the fingerprint represents.
376 struct fingerprint_entry
{
377 /* The hashmap entry - the hash represents the byte pair in its
378 * entirety so we don't need to store the byte pair separately.
380 struct hashmap_entry entry
;
381 /* The number of times the byte pair occurs in the string that the
382 * fingerprint represents.
387 /* See `struct fingerprint` for an explanation of what a fingerprint is.
388 * \param result the fingerprint of the string is stored here. This must be
389 * freed later using free_fingerprint.
390 * \param line_begin the start of the string
391 * \param line_end the end of the string
393 static void get_fingerprint(struct fingerprint
*result
,
394 const char *line_begin
,
395 const char *line_end
)
397 unsigned int hash
, c0
= 0, c1
;
399 int max_map_entry_count
= 1 + line_end
- line_begin
;
400 struct fingerprint_entry
*entry
= xcalloc(max_map_entry_count
,
401 sizeof(struct fingerprint_entry
));
402 struct fingerprint_entry
*found_entry
;
404 hashmap_init(&result
->map
, NULL
, NULL
, max_map_entry_count
);
405 result
->entries
= entry
;
406 for (p
= line_begin
; p
<= line_end
; ++p
, c0
= c1
) {
407 /* Always terminate the string with whitespace.
408 * Normalise whitespace to 0, and normalise letters to
409 * lower case. This won't work for multibyte characters but at
410 * worst will match some unrelated characters.
412 if ((p
== line_end
) || isspace(*p
))
416 hash
= c0
| (c1
<< 8);
417 /* Ignore whitespace pairs */
420 hashmap_entry_init(entry
, hash
);
422 found_entry
= hashmap_get(&result
->map
, entry
, NULL
);
424 found_entry
->count
+= 1;
427 hashmap_add(&result
->map
, entry
);
433 static void free_fingerprint(struct fingerprint
*f
)
435 hashmap_free(&f
->map
, 0);
439 /* Calculates the similarity between two fingerprints as the size of the
440 * intersection of their multisets, including repeated elements. See
441 * `struct fingerprint` for an explanation of the fingerprint representation.
442 * The similarity between "cat mat" and "father rather" is 2 because "at" is
443 * present twice in both strings while the similarity between "tim" and "mit"
446 static int fingerprint_similarity(struct fingerprint
*a
, struct fingerprint
*b
)
448 int intersection
= 0;
449 struct hashmap_iter iter
;
450 const struct fingerprint_entry
*entry_a
, *entry_b
;
452 hashmap_iter_init(&b
->map
, &iter
);
454 while ((entry_b
= hashmap_iter_next(&iter
))) {
455 if ((entry_a
= hashmap_get(&a
->map
, entry_b
, NULL
))) {
456 intersection
+= entry_a
->count
< entry_b
->count
?
457 entry_a
->count
: entry_b
->count
;
463 /* Subtracts byte-pair elements in B from A, modifying A in place.
465 static void fingerprint_subtract(struct fingerprint
*a
, struct fingerprint
*b
)
467 struct hashmap_iter iter
;
468 struct fingerprint_entry
*entry_a
;
469 const struct fingerprint_entry
*entry_b
;
471 hashmap_iter_init(&b
->map
, &iter
);
473 while ((entry_b
= hashmap_iter_next(&iter
))) {
474 if ((entry_a
= hashmap_get(&a
->map
, entry_b
, NULL
))) {
475 if (entry_a
->count
<= entry_b
->count
)
476 hashmap_remove(&a
->map
, entry_b
, NULL
);
478 entry_a
->count
-= entry_b
->count
;
483 /* Calculate fingerprints for a series of lines.
484 * Puts the fingerprints in the fingerprints array, which must have been
485 * preallocated to allow storing line_count elements.
487 static void get_line_fingerprints(struct fingerprint
*fingerprints
,
488 const char *content
, const int *line_starts
,
489 long first_line
, long line_count
)
492 const char *linestart
, *lineend
;
494 line_starts
+= first_line
;
495 for (i
= 0; i
< line_count
; ++i
) {
496 linestart
= content
+ line_starts
[i
];
497 lineend
= content
+ line_starts
[i
+ 1];
498 get_fingerprint(fingerprints
+ i
, linestart
, lineend
);
502 static void free_line_fingerprints(struct fingerprint
*fingerprints
,
507 for (i
= 0; i
< nr_fingerprints
; i
++)
508 free_fingerprint(&fingerprints
[i
]);
511 /* This contains the data necessary to linearly map a line number in one half
512 * of a diff chunk to the line in the other half of the diff chunk that is
513 * closest in terms of its position as a fraction of the length of the chunk.
515 struct line_number_mapping
{
516 int destination_start
, destination_length
,
517 source_start
, source_length
;
520 /* Given a line number in one range, offset and scale it to map it onto the
522 * Essentially this mapping is a simple linear equation but the calculation is
523 * more complicated to allow performing it with integer operations.
524 * Another complication is that if a line could map onto many lines in the
525 * destination range then we want to choose the line at the center of those
527 * Example: if the chunk is 2 lines long in A and 10 lines long in B then the
528 * first 5 lines in B will map onto the first line in the A chunk, while the
529 * last 5 lines will all map onto the second line in the A chunk.
530 * Example: if the chunk is 10 lines long in A and 2 lines long in B then line
531 * 0 in B will map onto line 2 in A, and line 1 in B will map onto line 7 in A.
533 static int map_line_number(int line_number
,
534 const struct line_number_mapping
*mapping
)
536 return ((line_number
- mapping
->source_start
) * 2 + 1) *
537 mapping
->destination_length
/
538 (mapping
->source_length
* 2) +
539 mapping
->destination_start
;
542 /* Get a pointer to the element storing the similarity between a line in A
545 * The similarities are stored in a 2-dimensional array. Each "row" in the
546 * array contains the similarities for a line in B. The similarities stored in
547 * a row are the similarities between the line in B and the nearby lines in A.
548 * To keep the length of each row the same, it is padded out with values of -1
549 * where the search range extends beyond the lines in A.
550 * For example, if max_search_distance_a is 2 and the two sides of a diff chunk
557 * Then the similarity array will contain:
558 * [-1, -1, am, bm, cm,
559 * -1, an, bn, cn, dn,
560 * ao, bo, co, do, eo,
561 * bp, cp, dp, ep, -1,
562 * cq, dq, eq, -1, -1]
563 * Where similarities are denoted either by -1 for invalid, or the
564 * concatenation of the two lines in the diff being compared.
566 * \param similarities array of similarities between lines in A and B
567 * \param line_a the index of the line in A, in the same frame of reference as
569 * \param local_line_b the index of the line in B, relative to the first line
570 * in B that similarities represents.
571 * \param closest_line_a the index of the line in A that is deemed to be
572 * closest to local_line_b. This must be in the same
573 * frame of reference as line_a. This value defines
574 * where similarities is centered for the line in B.
575 * \param max_search_distance_a maximum distance in lines from the closest line
576 * in A for other lines in A for which
577 * similarities may be calculated.
579 static int *get_similarity(int *similarities
,
580 int line_a
, int local_line_b
,
581 int closest_line_a
, int max_search_distance_a
)
583 assert(abs(line_a
- closest_line_a
) <=
584 max_search_distance_a
);
585 return similarities
+ line_a
- closest_line_a
+
586 max_search_distance_a
+
587 local_line_b
* (max_search_distance_a
* 2 + 1);
590 #define CERTAIN_NOTHING_MATCHES -2
591 #define CERTAINTY_NOT_CALCULATED -1
593 /* Given a line in B, first calculate its similarities with nearby lines in A
594 * if not already calculated, then identify the most similar and second most
595 * similar lines. The "certainty" is calculated based on those two
598 * \param start_a the index of the first line of the chunk in A
599 * \param length_a the length in lines of the chunk in A
600 * \param local_line_b the index of the line in B, relative to the first line
602 * \param fingerprints_a array of fingerprints for the chunk in A
603 * \param fingerprints_b array of fingerprints for the chunk in B
604 * \param similarities 2-dimensional array of similarities between lines in A
605 * and B. See get_similarity() for more details.
606 * \param certainties array of values indicating how strongly a line in B is
607 * matched with some line in A.
608 * \param second_best_result array of absolute indices in A for the second
609 * closest match of a line in B.
610 * \param result array of absolute indices in A for the closest match of a line
612 * \param max_search_distance_a maximum distance in lines from the closest line
613 * in A for other lines in A for which
614 * similarities may be calculated.
615 * \param map_line_number_in_b_to_a parameter to map_line_number().
617 static void find_best_line_matches(
622 struct fingerprint
*fingerprints_a
,
623 struct fingerprint
*fingerprints_b
,
626 int *second_best_result
,
628 const int max_search_distance_a
,
629 const struct line_number_mapping
*map_line_number_in_b_to_a
)
632 int i
, search_start
, search_end
, closest_local_line_a
, *similarity
,
633 best_similarity
= 0, second_best_similarity
= 0,
634 best_similarity_index
= 0, second_best_similarity_index
= 0;
636 /* certainty has already been calculated so no need to redo the work */
637 if (certainties
[local_line_b
] != CERTAINTY_NOT_CALCULATED
)
640 closest_local_line_a
= map_line_number(
641 local_line_b
+ start_b
, map_line_number_in_b_to_a
) - start_a
;
643 search_start
= closest_local_line_a
- max_search_distance_a
;
644 if (search_start
< 0)
647 search_end
= closest_local_line_a
+ max_search_distance_a
+ 1;
648 if (search_end
> length_a
)
649 search_end
= length_a
;
651 for (i
= search_start
; i
< search_end
; ++i
) {
652 similarity
= get_similarity(similarities
,
654 closest_local_line_a
,
655 max_search_distance_a
);
656 if (*similarity
== -1) {
657 /* This value will never exceed 10 but assert just in
660 assert(abs(i
- closest_local_line_a
) < 1000);
661 /* scale the similarity by (1000 - distance from
662 * closest line) to act as a tie break between lines
663 * that otherwise are equally similar.
665 *similarity
= fingerprint_similarity(
666 fingerprints_b
+ local_line_b
,
667 fingerprints_a
+ i
) *
668 (1000 - abs(i
- closest_local_line_a
));
670 if (*similarity
> best_similarity
) {
671 second_best_similarity
= best_similarity
;
672 second_best_similarity_index
= best_similarity_index
;
673 best_similarity
= *similarity
;
674 best_similarity_index
= i
;
675 } else if (*similarity
> second_best_similarity
) {
676 second_best_similarity
= *similarity
;
677 second_best_similarity_index
= i
;
681 if (best_similarity
== 0) {
682 /* this line definitely doesn't match with anything. Mark it
683 * with this special value so it doesn't get invalidated and
684 * won't be recalculated.
686 certainties
[local_line_b
] = CERTAIN_NOTHING_MATCHES
;
687 result
[local_line_b
] = -1;
689 /* Calculate the certainty with which this line matches.
690 * If the line matches well with two lines then that reduces
691 * the certainty. However we still want to prioritise matching
692 * a line that matches very well with two lines over matching a
693 * line that matches poorly with one line, hence doubling
695 * This means that if we have
696 * line X that matches only one line with a score of 3,
697 * line Y that matches two lines equally with a score of 5,
698 * and line Z that matches only one line with a score or 2,
699 * then the lines in order of certainty are X, Y, Z.
701 certainties
[local_line_b
] = best_similarity
* 2 -
702 second_best_similarity
;
704 /* We keep both the best and second best results to allow us to
705 * check at a later stage of the matching process whether the
706 * result needs to be invalidated.
708 result
[local_line_b
] = start_a
+ best_similarity_index
;
709 second_best_result
[local_line_b
] =
710 start_a
+ second_best_similarity_index
;
715 * This finds the line that we can match with the most confidence, and
716 * uses it as a partition. It then calls itself on the lines on either side of
717 * that partition. In this way we avoid lines appearing out of order, and
718 * retain a sensible line ordering.
719 * \param start_a index of the first line in A with which lines in B may be
721 * \param start_b index of the first line in B for which matching should be
723 * \param length_a number of lines in A with which lines in B may be compared.
724 * \param length_b number of lines in B for which matching should be done.
725 * \param fingerprints_a mutable array of fingerprints in A. The first element
726 * corresponds to the line at start_a.
727 * \param fingerprints_b array of fingerprints in B. The first element
728 * corresponds to the line at start_b.
729 * \param similarities 2-dimensional array of similarities between lines in A
730 * and B. See get_similarity() for more details.
731 * \param certainties array of values indicating how strongly a line in B is
732 * matched with some line in A.
733 * \param second_best_result array of absolute indices in A for the second
734 * closest match of a line in B.
735 * \param result array of absolute indices in A for the closest match of a line
737 * \param max_search_distance_a maximum distance in lines from the closest line
738 * in A for other lines in A for which
739 * similarities may be calculated.
740 * \param max_search_distance_b an upper bound on the greatest possible
741 * distance between lines in B such that they will
742 * both be compared with the same line in A
743 * according to max_search_distance_a.
744 * \param map_line_number_in_b_to_a parameter to map_line_number().
746 static void fuzzy_find_matching_lines_recurse(
747 int start_a
, int start_b
,
748 int length_a
, int length_b
,
749 struct fingerprint
*fingerprints_a
,
750 struct fingerprint
*fingerprints_b
,
753 int *second_best_result
,
755 int max_search_distance_a
,
756 int max_search_distance_b
,
757 const struct line_number_mapping
*map_line_number_in_b_to_a
)
759 int i
, invalidate_min
, invalidate_max
, offset_b
,
760 second_half_start_a
, second_half_start_b
,
761 second_half_length_a
, second_half_length_b
,
762 most_certain_line_a
, most_certain_local_line_b
= -1,
763 most_certain_line_certainty
= -1,
764 closest_local_line_a
;
766 for (i
= 0; i
< length_b
; ++i
) {
767 find_best_line_matches(start_a
,
777 max_search_distance_a
,
778 map_line_number_in_b_to_a
);
780 if (certainties
[i
] > most_certain_line_certainty
) {
781 most_certain_line_certainty
= certainties
[i
];
782 most_certain_local_line_b
= i
;
787 if (most_certain_local_line_b
== -1)
790 most_certain_line_a
= result
[most_certain_local_line_b
];
793 * Subtract the most certain line's fingerprint in B from the matched
794 * fingerprint in A. This means that other lines in B can't also match
795 * the same parts of the line in A.
797 fingerprint_subtract(fingerprints_a
+ most_certain_line_a
- start_a
,
798 fingerprints_b
+ most_certain_local_line_b
);
800 /* Invalidate results that may be affected by the choice of most
803 invalidate_min
= most_certain_local_line_b
- max_search_distance_b
;
804 invalidate_max
= most_certain_local_line_b
+ max_search_distance_b
+ 1;
805 if (invalidate_min
< 0)
807 if (invalidate_max
> length_b
)
808 invalidate_max
= length_b
;
810 /* As the fingerprint in A has changed, discard previously calculated
811 * similarity values with that fingerprint.
813 for (i
= invalidate_min
; i
< invalidate_max
; ++i
) {
814 closest_local_line_a
= map_line_number(
815 i
+ start_b
, map_line_number_in_b_to_a
) - start_a
;
817 /* Check that the lines in A and B are close enough that there
818 * is a similarity value for them.
820 if (abs(most_certain_line_a
- start_a
- closest_local_line_a
) >
821 max_search_distance_a
) {
825 *get_similarity(similarities
, most_certain_line_a
- start_a
,
826 i
, closest_local_line_a
,
827 max_search_distance_a
) = -1;
830 /* More invalidating of results that may be affected by the choice of
832 * Discard the matches for lines in B that are currently matched with a
833 * line in A such that their ordering contradicts the ordering imposed
834 * by the choice of most certain line.
836 for (i
= most_certain_local_line_b
- 1; i
>= invalidate_min
; --i
) {
837 /* In this loop we discard results for lines in B that are
838 * before most-certain-line-B but are matched with a line in A
839 * that is after most-certain-line-A.
841 if (certainties
[i
] >= 0 &&
842 (result
[i
] >= most_certain_line_a
||
843 second_best_result
[i
] >= most_certain_line_a
)) {
844 certainties
[i
] = CERTAINTY_NOT_CALCULATED
;
847 for (i
= most_certain_local_line_b
+ 1; i
< invalidate_max
; ++i
) {
848 /* In this loop we discard results for lines in B that are
849 * after most-certain-line-B but are matched with a line in A
850 * that is before most-certain-line-A.
852 if (certainties
[i
] >= 0 &&
853 (result
[i
] <= most_certain_line_a
||
854 second_best_result
[i
] <= most_certain_line_a
)) {
855 certainties
[i
] = CERTAINTY_NOT_CALCULATED
;
859 /* Repeat the matching process for lines before the most certain line.
861 if (most_certain_local_line_b
> 0) {
862 fuzzy_find_matching_lines_recurse(
864 most_certain_line_a
+ 1 - start_a
,
865 most_certain_local_line_b
,
866 fingerprints_a
, fingerprints_b
, similarities
,
867 certainties
, second_best_result
, result
,
868 max_search_distance_a
,
869 max_search_distance_b
,
870 map_line_number_in_b_to_a
);
872 /* Repeat the matching process for lines after the most certain line.
874 if (most_certain_local_line_b
+ 1 < length_b
) {
875 second_half_start_a
= most_certain_line_a
;
876 offset_b
= most_certain_local_line_b
+ 1;
877 second_half_start_b
= start_b
+ offset_b
;
878 second_half_length_a
=
879 length_a
+ start_a
- second_half_start_a
;
880 second_half_length_b
=
881 length_b
+ start_b
- second_half_start_b
;
882 fuzzy_find_matching_lines_recurse(
883 second_half_start_a
, second_half_start_b
,
884 second_half_length_a
, second_half_length_b
,
885 fingerprints_a
+ second_half_start_a
- start_a
,
886 fingerprints_b
+ offset_b
,
888 offset_b
* (max_search_distance_a
* 2 + 1),
889 certainties
+ offset_b
,
890 second_best_result
+ offset_b
, result
+ offset_b
,
891 max_search_distance_a
,
892 max_search_distance_b
,
893 map_line_number_in_b_to_a
);
897 /* Find the lines in the parent line range that most closely match the lines in
898 * the target line range. This is accomplished by matching fingerprints in each
899 * blame_origin, and choosing the best matches that preserve the line ordering.
900 * See struct fingerprint for details of fingerprint matching, and
901 * fuzzy_find_matching_lines_recurse for details of preserving line ordering.
903 * The performance is believed to be O(n log n) in the typical case and O(n^2)
904 * in a pathological case, where n is the number of lines in the target range.
906 static int *fuzzy_find_matching_lines(struct blame_origin
*parent
,
907 struct blame_origin
*target
,
908 int tlno
, int parent_slno
, int same
,
911 /* We use the terminology "A" for the left hand side of the diff AKA
912 * parent, and "B" for the right hand side of the diff AKA target. */
913 int start_a
= parent_slno
;
914 int length_a
= parent_len
;
916 int length_b
= same
- tlno
;
918 struct line_number_mapping map_line_number_in_b_to_a
= {
919 start_a
, length_a
, start_b
, length_b
922 struct fingerprint
*fingerprints_a
= parent
->fingerprints
;
923 struct fingerprint
*fingerprints_b
= target
->fingerprints
;
925 int i
, *result
, *second_best_result
,
926 *certainties
, *similarities
, similarity_count
;
929 * max_search_distance_a means that given a line in B, compare it to
930 * the line in A that is closest to its position, and the lines in A
931 * that are no greater than max_search_distance_a lines away from the
934 * max_search_distance_b is an upper bound on the greatest possible
935 * distance between lines in B such that they will both be compared
936 * with the same line in A according to max_search_distance_a.
938 int max_search_distance_a
= 10, max_search_distance_b
;
943 if (max_search_distance_a
>= length_a
)
944 max_search_distance_a
= length_a
? length_a
- 1 : 0;
946 max_search_distance_b
= ((2 * max_search_distance_a
+ 1) * length_b
949 result
= xcalloc(sizeof(int), length_b
);
950 second_best_result
= xcalloc(sizeof(int), length_b
);
951 certainties
= xcalloc(sizeof(int), length_b
);
953 /* See get_similarity() for details of similarities. */
954 similarity_count
= length_b
* (max_search_distance_a
* 2 + 1);
955 similarities
= xcalloc(sizeof(int), similarity_count
);
957 for (i
= 0; i
< length_b
; ++i
) {
959 second_best_result
[i
] = -1;
960 certainties
[i
] = CERTAINTY_NOT_CALCULATED
;
963 for (i
= 0; i
< similarity_count
; ++i
)
964 similarities
[i
] = -1;
966 fuzzy_find_matching_lines_recurse(start_a
, start_b
,
968 fingerprints_a
+ start_a
,
969 fingerprints_b
+ start_b
,
974 max_search_distance_a
,
975 max_search_distance_b
,
976 &map_line_number_in_b_to_a
);
980 free(second_best_result
);
985 static void fill_origin_fingerprints(struct blame_origin
*o
)
991 o
->num_lines
= find_line_starts(&line_starts
, o
->file
.ptr
,
993 o
->fingerprints
= xcalloc(sizeof(struct fingerprint
), o
->num_lines
);
994 get_line_fingerprints(o
->fingerprints
, o
->file
.ptr
, line_starts
,
999 static void drop_origin_fingerprints(struct blame_origin
*o
)
1001 if (o
->fingerprints
) {
1002 free_line_fingerprints(o
->fingerprints
, o
->num_lines
);
1004 FREE_AND_NULL(o
->fingerprints
);
1009 * Given an origin, prepare mmfile_t structure to be used by the
1012 static void fill_origin_blob(struct diff_options
*opt
,
1013 struct blame_origin
*o
, mmfile_t
*file
,
1014 int *num_read_blob
, int fill_fingerprints
)
1017 enum object_type type
;
1018 unsigned long file_size
;
1021 if (opt
->flags
.allow_textconv
&&
1022 textconv_object(opt
->repo
, o
->path
, o
->mode
,
1023 &o
->blob_oid
, 1, &file
->ptr
, &file_size
))
1026 file
->ptr
= read_object_file(&o
->blob_oid
, &type
,
1028 file
->size
= file_size
;
1031 die("Cannot read blob %s for path %s",
1032 oid_to_hex(&o
->blob_oid
),
1038 if (fill_fingerprints
)
1039 fill_origin_fingerprints(o
);
1042 static void drop_origin_blob(struct blame_origin
*o
)
1044 FREE_AND_NULL(o
->file
.ptr
);
1045 drop_origin_fingerprints(o
);
1049 * Any merge of blames happens on lists of blames that arrived via
1050 * different parents in a single suspect. In this case, we want to
1051 * sort according to the suspect line numbers as opposed to the final
1052 * image line numbers. The function body is somewhat longish because
1053 * it avoids unnecessary writes.
1056 static struct blame_entry
*blame_merge(struct blame_entry
*list1
,
1057 struct blame_entry
*list2
)
1059 struct blame_entry
*p1
= list1
, *p2
= list2
,
1067 if (p1
->s_lno
<= p2
->s_lno
) {
1070 if ((p1
= *tail
) == NULL
) {
1074 } while (p1
->s_lno
<= p2
->s_lno
);
1080 if ((p2
= *tail
) == NULL
) {
1084 } while (p1
->s_lno
> p2
->s_lno
);
1088 if ((p1
= *tail
) == NULL
) {
1092 } while (p1
->s_lno
<= p2
->s_lno
);
1096 static void *get_next_blame(const void *p
)
1098 return ((struct blame_entry
*)p
)->next
;
1101 static void set_next_blame(void *p1
, void *p2
)
1103 ((struct blame_entry
*)p1
)->next
= p2
;
1107 * Final image line numbers are all different, so we don't need a
1108 * three-way comparison here.
1111 static int compare_blame_final(const void *p1
, const void *p2
)
1113 return ((struct blame_entry
*)p1
)->lno
> ((struct blame_entry
*)p2
)->lno
1117 static int compare_blame_suspect(const void *p1
, const void *p2
)
1119 const struct blame_entry
*s1
= p1
, *s2
= p2
;
1121 * to allow for collating suspects, we sort according to the
1122 * respective pointer value as the primary sorting criterion.
1123 * The actual relation is pretty unimportant as long as it
1124 * establishes a total order. Comparing as integers gives us
1127 if (s1
->suspect
!= s2
->suspect
)
1128 return (intptr_t)s1
->suspect
> (intptr_t)s2
->suspect
? 1 : -1;
1129 if (s1
->s_lno
== s2
->s_lno
)
1131 return s1
->s_lno
> s2
->s_lno
? 1 : -1;
1134 void blame_sort_final(struct blame_scoreboard
*sb
)
1136 sb
->ent
= llist_mergesort(sb
->ent
, get_next_blame
, set_next_blame
,
1137 compare_blame_final
);
1140 static int compare_commits_by_reverse_commit_date(const void *a
,
1144 return -compare_commits_by_commit_date(a
, b
, c
);
1148 * For debugging -- origin is refcounted, and this asserts that
1149 * we do not underflow.
1151 static void sanity_check_refcnt(struct blame_scoreboard
*sb
)
1154 struct blame_entry
*ent
;
1156 for (ent
= sb
->ent
; ent
; ent
= ent
->next
) {
1157 /* Nobody should have zero or negative refcnt */
1158 if (ent
->suspect
->refcnt
<= 0) {
1159 fprintf(stderr
, "%s in %s has negative refcnt %d\n",
1161 oid_to_hex(&ent
->suspect
->commit
->object
.oid
),
1162 ent
->suspect
->refcnt
);
1167 sb
->on_sanity_fail(sb
, baa
);
1171 * If two blame entries that are next to each other came from
1172 * contiguous lines in the same origin (i.e. <commit, path> pair),
1173 * merge them together.
1175 void blame_coalesce(struct blame_scoreboard
*sb
)
1177 struct blame_entry
*ent
, *next
;
1179 for (ent
= sb
->ent
; ent
&& (next
= ent
->next
); ent
= next
) {
1180 if (ent
->suspect
== next
->suspect
&&
1181 ent
->s_lno
+ ent
->num_lines
== next
->s_lno
&&
1182 ent
->ignored
== next
->ignored
&&
1183 ent
->unblamable
== next
->unblamable
) {
1184 ent
->num_lines
+= next
->num_lines
;
1185 ent
->next
= next
->next
;
1186 blame_origin_decref(next
->suspect
);
1189 next
= ent
; /* again */
1193 if (sb
->debug
) /* sanity */
1194 sanity_check_refcnt(sb
);
1198 * Merge the given sorted list of blames into a preexisting origin.
1199 * If there were no previous blames to that commit, it is entered into
1200 * the commit priority queue of the score board.
1203 static void queue_blames(struct blame_scoreboard
*sb
, struct blame_origin
*porigin
,
1204 struct blame_entry
*sorted
)
1206 if (porigin
->suspects
)
1207 porigin
->suspects
= blame_merge(porigin
->suspects
, sorted
);
1209 struct blame_origin
*o
;
1210 for (o
= get_blame_suspects(porigin
->commit
); o
; o
= o
->next
) {
1212 porigin
->suspects
= sorted
;
1216 porigin
->suspects
= sorted
;
1217 prio_queue_put(&sb
->commits
, porigin
->commit
);
1222 * Fill the blob_sha1 field of an origin if it hasn't, so that later
1223 * call to fill_origin_blob() can use it to locate the data. blob_sha1
1224 * for an origin is also used to pass the blame for the entire file to
1225 * the parent to detect the case where a child's blob is identical to
1226 * that of its parent's.
1228 * This also fills origin->mode for corresponding tree path.
1230 static int fill_blob_sha1_and_mode(struct repository
*r
,
1231 struct blame_origin
*origin
)
1233 if (!is_null_oid(&origin
->blob_oid
))
1235 if (get_tree_entry(r
, &origin
->commit
->object
.oid
, origin
->path
, &origin
->blob_oid
, &origin
->mode
))
1237 if (oid_object_info(r
, &origin
->blob_oid
, NULL
) != OBJ_BLOB
)
1241 oidclr(&origin
->blob_oid
);
1242 origin
->mode
= S_IFINVALID
;
1247 * We have an origin -- check if the same path exists in the
1248 * parent and return an origin structure to represent it.
1250 static struct blame_origin
*find_origin(struct repository
*r
,
1251 struct commit
*parent
,
1252 struct blame_origin
*origin
)
1254 struct blame_origin
*porigin
;
1255 struct diff_options diff_opts
;
1256 const char *paths
[2];
1258 /* First check any existing origins */
1259 for (porigin
= get_blame_suspects(parent
); porigin
; porigin
= porigin
->next
)
1260 if (!strcmp(porigin
->path
, origin
->path
)) {
1262 * The same path between origin and its parent
1263 * without renaming -- the most common case.
1265 return blame_origin_incref (porigin
);
1268 /* See if the origin->path is different between parent
1269 * and origin first. Most of the time they are the
1270 * same and diff-tree is fairly efficient about this.
1272 repo_diff_setup(r
, &diff_opts
);
1273 diff_opts
.flags
.recursive
= 1;
1274 diff_opts
.detect_rename
= 0;
1275 diff_opts
.output_format
= DIFF_FORMAT_NO_OUTPUT
;
1276 paths
[0] = origin
->path
;
1279 parse_pathspec(&diff_opts
.pathspec
,
1280 PATHSPEC_ALL_MAGIC
& ~PATHSPEC_LITERAL
,
1281 PATHSPEC_LITERAL_PATH
, "", paths
);
1282 diff_setup_done(&diff_opts
);
1284 if (is_null_oid(&origin
->commit
->object
.oid
))
1285 do_diff_cache(get_commit_tree_oid(parent
), &diff_opts
);
1287 diff_tree_oid(get_commit_tree_oid(parent
),
1288 get_commit_tree_oid(origin
->commit
),
1290 diffcore_std(&diff_opts
);
1292 if (!diff_queued_diff
.nr
) {
1293 /* The path is the same as parent */
1294 porigin
= get_origin(parent
, origin
->path
);
1295 oidcpy(&porigin
->blob_oid
, &origin
->blob_oid
);
1296 porigin
->mode
= origin
->mode
;
1299 * Since origin->path is a pathspec, if the parent
1300 * commit had it as a directory, we will see a whole
1301 * bunch of deletion of files in the directory that we
1302 * do not care about.
1305 struct diff_filepair
*p
= NULL
;
1306 for (i
= 0; i
< diff_queued_diff
.nr
; i
++) {
1308 p
= diff_queued_diff
.queue
[i
];
1309 name
= p
->one
->path
? p
->one
->path
: p
->two
->path
;
1310 if (!strcmp(name
, origin
->path
))
1314 die("internal error in blame::find_origin");
1315 switch (p
->status
) {
1317 die("internal error in blame::find_origin (%c)",
1320 porigin
= get_origin(parent
, origin
->path
);
1321 oidcpy(&porigin
->blob_oid
, &p
->one
->oid
);
1322 porigin
->mode
= p
->one
->mode
;
1326 /* Did not exist in parent, or type changed */
1330 diff_flush(&diff_opts
);
1331 clear_pathspec(&diff_opts
.pathspec
);
1336 * We have an origin -- find the path that corresponds to it in its
1337 * parent and return an origin structure to represent it.
1339 static struct blame_origin
*find_rename(struct repository
*r
,
1340 struct commit
*parent
,
1341 struct blame_origin
*origin
)
1343 struct blame_origin
*porigin
= NULL
;
1344 struct diff_options diff_opts
;
1347 repo_diff_setup(r
, &diff_opts
);
1348 diff_opts
.flags
.recursive
= 1;
1349 diff_opts
.detect_rename
= DIFF_DETECT_RENAME
;
1350 diff_opts
.output_format
= DIFF_FORMAT_NO_OUTPUT
;
1351 diff_opts
.single_follow
= origin
->path
;
1352 diff_setup_done(&diff_opts
);
1354 if (is_null_oid(&origin
->commit
->object
.oid
))
1355 do_diff_cache(get_commit_tree_oid(parent
), &diff_opts
);
1357 diff_tree_oid(get_commit_tree_oid(parent
),
1358 get_commit_tree_oid(origin
->commit
),
1360 diffcore_std(&diff_opts
);
1362 for (i
= 0; i
< diff_queued_diff
.nr
; i
++) {
1363 struct diff_filepair
*p
= diff_queued_diff
.queue
[i
];
1364 if ((p
->status
== 'R' || p
->status
== 'C') &&
1365 !strcmp(p
->two
->path
, origin
->path
)) {
1366 porigin
= get_origin(parent
, p
->one
->path
);
1367 oidcpy(&porigin
->blob_oid
, &p
->one
->oid
);
1368 porigin
->mode
= p
->one
->mode
;
1372 diff_flush(&diff_opts
);
1373 clear_pathspec(&diff_opts
.pathspec
);
1378 * Append a new blame entry to a given output queue.
1380 static void add_blame_entry(struct blame_entry
***queue
,
1381 const struct blame_entry
*src
)
1383 struct blame_entry
*e
= xmalloc(sizeof(*e
));
1384 memcpy(e
, src
, sizeof(*e
));
1385 blame_origin_incref(e
->suspect
);
1393 * src typically is on-stack; we want to copy the information in it to
1394 * a malloced blame_entry that gets added to the given queue. The
1395 * origin of dst loses a refcnt.
1397 static void dup_entry(struct blame_entry
***queue
,
1398 struct blame_entry
*dst
, struct blame_entry
*src
)
1400 blame_origin_incref(src
->suspect
);
1401 blame_origin_decref(dst
->suspect
);
1402 memcpy(dst
, src
, sizeof(*src
));
1403 dst
->next
= **queue
;
1405 *queue
= &dst
->next
;
1408 const char *blame_nth_line(struct blame_scoreboard
*sb
, long lno
)
1410 return sb
->final_buf
+ sb
->lineno
[lno
];
1414 * It is known that lines between tlno to same came from parent, and e
1415 * has an overlap with that range. it also is known that parent's
1416 * line plno corresponds to e's line tlno.
1422 * <------------------>
1424 * Split e into potentially three parts; before this chunk, the chunk
1425 * to be blamed for the parent, and after that portion.
1427 static void split_overlap(struct blame_entry
*split
,
1428 struct blame_entry
*e
,
1429 int tlno
, int plno
, int same
,
1430 struct blame_origin
*parent
)
1434 memset(split
, 0, sizeof(struct blame_entry
[3]));
1436 for (i
= 0; i
< 3; i
++) {
1437 split
[i
].ignored
= e
->ignored
;
1438 split
[i
].unblamable
= e
->unblamable
;
1441 if (e
->s_lno
< tlno
) {
1442 /* there is a pre-chunk part not blamed on parent */
1443 split
[0].suspect
= blame_origin_incref(e
->suspect
);
1444 split
[0].lno
= e
->lno
;
1445 split
[0].s_lno
= e
->s_lno
;
1446 split
[0].num_lines
= tlno
- e
->s_lno
;
1447 split
[1].lno
= e
->lno
+ tlno
- e
->s_lno
;
1448 split
[1].s_lno
= plno
;
1451 split
[1].lno
= e
->lno
;
1452 split
[1].s_lno
= plno
+ (e
->s_lno
- tlno
);
1455 if (same
< e
->s_lno
+ e
->num_lines
) {
1456 /* there is a post-chunk part not blamed on parent */
1457 split
[2].suspect
= blame_origin_incref(e
->suspect
);
1458 split
[2].lno
= e
->lno
+ (same
- e
->s_lno
);
1459 split
[2].s_lno
= e
->s_lno
+ (same
- e
->s_lno
);
1460 split
[2].num_lines
= e
->s_lno
+ e
->num_lines
- same
;
1461 chunk_end_lno
= split
[2].lno
;
1464 chunk_end_lno
= e
->lno
+ e
->num_lines
;
1465 split
[1].num_lines
= chunk_end_lno
- split
[1].lno
;
1468 * if it turns out there is nothing to blame the parent for,
1469 * forget about the splitting. !split[1].suspect signals this.
1471 if (split
[1].num_lines
< 1)
1473 split
[1].suspect
= blame_origin_incref(parent
);
1477 * split_overlap() divided an existing blame e into up to three parts
1478 * in split. Any assigned blame is moved to queue to
1479 * reflect the split.
1481 static void split_blame(struct blame_entry
***blamed
,
1482 struct blame_entry
***unblamed
,
1483 struct blame_entry
*split
,
1484 struct blame_entry
*e
)
1486 if (split
[0].suspect
&& split
[2].suspect
) {
1487 /* The first part (reuse storage for the existing entry e) */
1488 dup_entry(unblamed
, e
, &split
[0]);
1490 /* The last part -- me */
1491 add_blame_entry(unblamed
, &split
[2]);
1493 /* ... and the middle part -- parent */
1494 add_blame_entry(blamed
, &split
[1]);
1496 else if (!split
[0].suspect
&& !split
[2].suspect
)
1498 * The parent covers the entire area; reuse storage for
1499 * e and replace it with the parent.
1501 dup_entry(blamed
, e
, &split
[1]);
1502 else if (split
[0].suspect
) {
1503 /* me and then parent */
1504 dup_entry(unblamed
, e
, &split
[0]);
1505 add_blame_entry(blamed
, &split
[1]);
1508 /* parent and then me */
1509 dup_entry(blamed
, e
, &split
[1]);
1510 add_blame_entry(unblamed
, &split
[2]);
1515 * After splitting the blame, the origins used by the
1516 * on-stack blame_entry should lose one refcnt each.
1518 static void decref_split(struct blame_entry
*split
)
1522 for (i
= 0; i
< 3; i
++)
1523 blame_origin_decref(split
[i
].suspect
);
1527 * reverse_blame reverses the list given in head, appending tail.
1528 * That allows us to build lists in reverse order, then reverse them
1529 * afterwards. This can be faster than building the list in proper
1530 * order right away. The reason is that building in proper order
1531 * requires writing a link in the _previous_ element, while building
1532 * in reverse order just requires placing the list head into the
1533 * _current_ element.
1536 static struct blame_entry
*reverse_blame(struct blame_entry
*head
,
1537 struct blame_entry
*tail
)
1540 struct blame_entry
*next
= head
->next
;
1549 * Splits a blame entry into two entries at 'len' lines. The original 'e'
1550 * consists of len lines, i.e. [e->lno, e->lno + len), and the second part,
1551 * which is returned, consists of the remainder: [e->lno + len, e->lno +
1552 * e->num_lines). The caller needs to sort out the reference counting for the
1553 * new entry's suspect.
1555 static struct blame_entry
*split_blame_at(struct blame_entry
*e
, int len
,
1556 struct blame_origin
*new_suspect
)
1558 struct blame_entry
*n
= xcalloc(1, sizeof(struct blame_entry
));
1560 n
->suspect
= new_suspect
;
1561 n
->ignored
= e
->ignored
;
1562 n
->unblamable
= e
->unblamable
;
1563 n
->lno
= e
->lno
+ len
;
1564 n
->s_lno
= e
->s_lno
+ len
;
1565 n
->num_lines
= e
->num_lines
- len
;
1571 struct blame_line_tracker
{
1576 static int are_lines_adjacent(struct blame_line_tracker
*first
,
1577 struct blame_line_tracker
*second
)
1579 return first
->is_parent
== second
->is_parent
&&
1580 first
->s_lno
+ 1 == second
->s_lno
;
1583 static int scan_parent_range(struct fingerprint
*p_fps
,
1584 struct fingerprint
*t_fps
, int t_idx
,
1585 int from
, int nr_lines
)
1588 #define FINGERPRINT_FILE_THRESHOLD 10
1589 int best_sim_val
= FINGERPRINT_FILE_THRESHOLD
;
1590 int best_sim_idx
= -1;
1592 for (p_idx
= from
; p_idx
< from
+ nr_lines
; p_idx
++) {
1593 sim
= fingerprint_similarity(&t_fps
[t_idx
], &p_fps
[p_idx
]);
1594 if (sim
< best_sim_val
)
1596 /* Break ties with the closest-to-target line number */
1597 if (sim
== best_sim_val
&& best_sim_idx
!= -1 &&
1598 abs(best_sim_idx
- t_idx
) < abs(p_idx
- t_idx
))
1601 best_sim_idx
= p_idx
;
1603 return best_sim_idx
;
1607 * The first pass checks the blame entry (from the target) against the parent's
1608 * diff chunk. If that fails for a line, the second pass tries to match that
1609 * line to any part of parent file. That catches cases where a change was
1610 * broken into two chunks by 'context.'
1612 static void guess_line_blames(struct blame_origin
*parent
,
1613 struct blame_origin
*target
,
1614 int tlno
, int offset
, int same
, int parent_len
,
1615 struct blame_line_tracker
*line_blames
)
1617 int i
, best_idx
, target_idx
;
1618 int parent_slno
= tlno
+ offset
;
1621 fuzzy_matches
= fuzzy_find_matching_lines(parent
, target
,
1622 tlno
, parent_slno
, same
,
1624 for (i
= 0; i
< same
- tlno
; i
++) {
1625 target_idx
= tlno
+ i
;
1626 if (fuzzy_matches
&& fuzzy_matches
[i
] >= 0) {
1627 best_idx
= fuzzy_matches
[i
];
1629 best_idx
= scan_parent_range(parent
->fingerprints
,
1630 target
->fingerprints
,
1634 if (best_idx
>= 0) {
1635 line_blames
[i
].is_parent
= 1;
1636 line_blames
[i
].s_lno
= best_idx
;
1638 line_blames
[i
].is_parent
= 0;
1639 line_blames
[i
].s_lno
= target_idx
;
1642 free(fuzzy_matches
);
1646 * This decides which parts of a blame entry go to the parent (added to the
1647 * ignoredp list) and which stay with the target (added to the diffp list). The
1648 * actual decision was made in a separate heuristic function, and those answers
1649 * for the lines in 'e' are in line_blames. This consumes e, essentially
1650 * putting it on a list.
1652 * Note that the blame entries on the ignoredp list are not necessarily sorted
1653 * with respect to the parent's line numbers yet.
1655 static void ignore_blame_entry(struct blame_entry
*e
,
1656 struct blame_origin
*parent
,
1657 struct blame_entry
**diffp
,
1658 struct blame_entry
**ignoredp
,
1659 struct blame_line_tracker
*line_blames
)
1661 int entry_len
, nr_lines
, i
;
1664 * We carve new entries off the front of e. Each entry comes from a
1665 * contiguous chunk of lines: adjacent lines from the same origin
1666 * (either the parent or the target).
1669 nr_lines
= e
->num_lines
; /* e changes in the loop */
1670 for (i
= 0; i
< nr_lines
; i
++) {
1671 struct blame_entry
*next
= NULL
;
1674 * We are often adjacent to the next line - only split the blame
1675 * entry when we have to.
1677 if (i
+ 1 < nr_lines
) {
1678 if (are_lines_adjacent(&line_blames
[i
],
1679 &line_blames
[i
+ 1])) {
1683 next
= split_blame_at(e
, entry_len
,
1684 blame_origin_incref(e
->suspect
));
1686 if (line_blames
[i
].is_parent
) {
1688 blame_origin_decref(e
->suspect
);
1689 e
->suspect
= blame_origin_incref(parent
);
1690 e
->s_lno
= line_blames
[i
- entry_len
+ 1].s_lno
;
1691 e
->next
= *ignoredp
;
1695 /* e->s_lno is already in the target's address space. */
1699 assert(e
->num_lines
== entry_len
);
1707 * Process one hunk from the patch between the current suspect for
1708 * blame_entry e and its parent. This first blames any unfinished
1709 * entries before the chunk (which is where target and parent start
1710 * differing) on the parent, and then splits blame entries at the
1711 * start and at the end of the difference region. Since use of -M and
1712 * -C options may lead to overlapping/duplicate source line number
1713 * ranges, all we can rely on from sorting/merging is the order of the
1714 * first suspect line number.
1716 * tlno: line number in the target where this chunk begins
1717 * same: line number in the target where this chunk ends
1718 * offset: add to tlno to get the chunk starting point in the parent
1719 * parent_len: number of lines in the parent chunk
1721 static void blame_chunk(struct blame_entry
***dstq
, struct blame_entry
***srcq
,
1722 int tlno
, int offset
, int same
, int parent_len
,
1723 struct blame_origin
*parent
,
1724 struct blame_origin
*target
, int ignore_diffs
)
1726 struct blame_entry
*e
= **srcq
;
1727 struct blame_entry
*samep
= NULL
, *diffp
= NULL
, *ignoredp
= NULL
;
1728 struct blame_line_tracker
*line_blames
= NULL
;
1730 while (e
&& e
->s_lno
< tlno
) {
1731 struct blame_entry
*next
= e
->next
;
1733 * current record starts before differing portion. If
1734 * it reaches into it, we need to split it up and
1735 * examine the second part separately.
1737 if (e
->s_lno
+ e
->num_lines
> tlno
) {
1738 /* Move second half to a new record */
1739 struct blame_entry
*n
;
1741 n
= split_blame_at(e
, tlno
- e
->s_lno
, e
->suspect
);
1742 /* Push new record to diffp */
1746 blame_origin_decref(e
->suspect
);
1747 /* Pass blame for everything before the differing
1748 * chunk to the parent */
1749 e
->suspect
= blame_origin_incref(parent
);
1756 * As we don't know how much of a common stretch after this
1757 * diff will occur, the currently blamed parts are all that we
1758 * can assign to the parent for now.
1762 **dstq
= reverse_blame(samep
, **dstq
);
1763 *dstq
= &samep
->next
;
1766 * Prepend the split off portions: everything after e starts
1767 * after the blameable portion.
1769 e
= reverse_blame(diffp
, e
);
1772 * Now retain records on the target while parts are different
1778 if (ignore_diffs
&& same
- tlno
> 0) {
1779 line_blames
= xcalloc(sizeof(struct blame_line_tracker
),
1781 guess_line_blames(parent
, target
, tlno
, offset
, same
,
1782 parent_len
, line_blames
);
1785 while (e
&& e
->s_lno
< same
) {
1786 struct blame_entry
*next
= e
->next
;
1789 * If current record extends into sameness, need to split.
1791 if (e
->s_lno
+ e
->num_lines
> same
) {
1793 * Move second half to a new record to be
1794 * processed by later chunks
1796 struct blame_entry
*n
;
1798 n
= split_blame_at(e
, same
- e
->s_lno
,
1799 blame_origin_incref(e
->suspect
));
1800 /* Push new record to samep */
1805 ignore_blame_entry(e
, parent
, &diffp
, &ignoredp
,
1806 line_blames
+ e
->s_lno
- tlno
);
1816 * Note ignoredp is not sorted yet, and thus neither is dstq.
1817 * That list must be sorted before we queue_blames(). We defer
1818 * sorting until after all diff hunks are processed, so that
1819 * guess_line_blames() can pick *any* line in the parent. The
1820 * slight drawback is that we end up sorting all blame entries
1821 * passed to the parent, including those that are unrelated to
1822 * changes made by the ignored commit.
1824 **dstq
= reverse_blame(ignoredp
, **dstq
);
1825 *dstq
= &ignoredp
->next
;
1827 **srcq
= reverse_blame(diffp
, reverse_blame(samep
, e
));
1828 /* Move across elements that are in the unblamable portion */
1830 *srcq
= &diffp
->next
;
1833 struct blame_chunk_cb_data
{
1834 struct blame_origin
*parent
;
1835 struct blame_origin
*target
;
1838 struct blame_entry
**dstq
;
1839 struct blame_entry
**srcq
;
1842 /* diff chunks are from parent to target */
1843 static int blame_chunk_cb(long start_a
, long count_a
,
1844 long start_b
, long count_b
, void *data
)
1846 struct blame_chunk_cb_data
*d
= data
;
1847 if (start_a
- start_b
!= d
->offset
)
1848 die("internal error in blame::blame_chunk_cb");
1849 blame_chunk(&d
->dstq
, &d
->srcq
, start_b
, start_a
- start_b
,
1850 start_b
+ count_b
, count_a
, d
->parent
, d
->target
,
1852 d
->offset
= start_a
+ count_a
- (start_b
+ count_b
);
1857 * We are looking at the origin 'target' and aiming to pass blame
1858 * for the lines it is suspected to its parent. Run diff to find
1859 * which lines came from parent and pass blame for them.
1861 static void pass_blame_to_parent(struct blame_scoreboard
*sb
,
1862 struct blame_origin
*target
,
1863 struct blame_origin
*parent
, int ignore_diffs
)
1865 mmfile_t file_p
, file_o
;
1866 struct blame_chunk_cb_data d
;
1867 struct blame_entry
*newdest
= NULL
;
1869 if (!target
->suspects
)
1870 return; /* nothing remains for this target */
1875 d
.ignore_diffs
= ignore_diffs
;
1876 d
.dstq
= &newdest
; d
.srcq
= &target
->suspects
;
1878 fill_origin_blob(&sb
->revs
->diffopt
, parent
, &file_p
,
1879 &sb
->num_read_blob
, ignore_diffs
);
1880 fill_origin_blob(&sb
->revs
->diffopt
, target
, &file_o
,
1881 &sb
->num_read_blob
, ignore_diffs
);
1882 sb
->num_get_patch
++;
1884 if (diff_hunks(&file_p
, &file_o
, blame_chunk_cb
, &d
, sb
->xdl_opts
))
1885 die("unable to generate diff (%s -> %s)",
1886 oid_to_hex(&parent
->commit
->object
.oid
),
1887 oid_to_hex(&target
->commit
->object
.oid
));
1888 /* The rest are the same as the parent */
1889 blame_chunk(&d
.dstq
, &d
.srcq
, INT_MAX
, d
.offset
, INT_MAX
, 0,
1893 newdest
= llist_mergesort(newdest
, get_next_blame
,
1895 compare_blame_suspect
);
1896 queue_blames(sb
, parent
, newdest
);
1902 * The lines in blame_entry after splitting blames many times can become
1903 * very small and trivial, and at some point it becomes pointless to
1904 * blame the parents. E.g. "\t\t}\n\t}\n\n" appears everywhere in any
1905 * ordinary C program, and it is not worth to say it was copied from
1906 * totally unrelated file in the parent.
1908 * Compute how trivial the lines in the blame_entry are.
1910 unsigned blame_entry_score(struct blame_scoreboard
*sb
, struct blame_entry
*e
)
1913 const char *cp
, *ep
;
1919 cp
= blame_nth_line(sb
, e
->lno
);
1920 ep
= blame_nth_line(sb
, e
->lno
+ e
->num_lines
);
1922 unsigned ch
= *((unsigned char *)cp
);
1932 * best_so_far[] and potential[] are both a split of an existing blame_entry
1933 * that passes blame to the parent. Maintain best_so_far the best split so
1934 * far, by comparing potential and best_so_far and copying potential into
1935 * bst_so_far as needed.
1937 static void copy_split_if_better(struct blame_scoreboard
*sb
,
1938 struct blame_entry
*best_so_far
,
1939 struct blame_entry
*potential
)
1943 if (!potential
[1].suspect
)
1945 if (best_so_far
[1].suspect
) {
1946 if (blame_entry_score(sb
, &potential
[1]) <
1947 blame_entry_score(sb
, &best_so_far
[1]))
1951 for (i
= 0; i
< 3; i
++)
1952 blame_origin_incref(potential
[i
].suspect
);
1953 decref_split(best_so_far
);
1954 memcpy(best_so_far
, potential
, sizeof(struct blame_entry
[3]));
1958 * We are looking at a part of the final image represented by
1959 * ent (tlno and same are offset by ent->s_lno).
1960 * tlno is where we are looking at in the final image.
1961 * up to (but not including) same match preimage.
1962 * plno is where we are looking at in the preimage.
1964 * <-------------- final image ---------------------->
1967 * <---------preimage----->
1970 * All line numbers are 0-based.
1972 static void handle_split(struct blame_scoreboard
*sb
,
1973 struct blame_entry
*ent
,
1974 int tlno
, int plno
, int same
,
1975 struct blame_origin
*parent
,
1976 struct blame_entry
*split
)
1978 if (ent
->num_lines
<= tlno
)
1981 struct blame_entry potential
[3];
1984 split_overlap(potential
, ent
, tlno
, plno
, same
, parent
);
1985 copy_split_if_better(sb
, split
, potential
);
1986 decref_split(potential
);
1990 struct handle_split_cb_data
{
1991 struct blame_scoreboard
*sb
;
1992 struct blame_entry
*ent
;
1993 struct blame_origin
*parent
;
1994 struct blame_entry
*split
;
1999 static int handle_split_cb(long start_a
, long count_a
,
2000 long start_b
, long count_b
, void *data
)
2002 struct handle_split_cb_data
*d
= data
;
2003 handle_split(d
->sb
, d
->ent
, d
->tlno
, d
->plno
, start_b
, d
->parent
,
2005 d
->plno
= start_a
+ count_a
;
2006 d
->tlno
= start_b
+ count_b
;
2011 * Find the lines from parent that are the same as ent so that
2012 * we can pass blames to it. file_p has the blob contents for
2015 static void find_copy_in_blob(struct blame_scoreboard
*sb
,
2016 struct blame_entry
*ent
,
2017 struct blame_origin
*parent
,
2018 struct blame_entry
*split
,
2023 struct handle_split_cb_data d
;
2025 memset(&d
, 0, sizeof(d
));
2026 d
.sb
= sb
; d
.ent
= ent
; d
.parent
= parent
; d
.split
= split
;
2028 * Prepare mmfile that contains only the lines in ent.
2030 cp
= blame_nth_line(sb
, ent
->lno
);
2031 file_o
.ptr
= (char *) cp
;
2032 file_o
.size
= blame_nth_line(sb
, ent
->lno
+ ent
->num_lines
) - cp
;
2035 * file_o is a part of final image we are annotating.
2036 * file_p partially may match that image.
2038 memset(split
, 0, sizeof(struct blame_entry
[3]));
2039 if (diff_hunks(file_p
, &file_o
, handle_split_cb
, &d
, sb
->xdl_opts
))
2040 die("unable to generate diff (%s)",
2041 oid_to_hex(&parent
->commit
->object
.oid
));
2042 /* remainder, if any, all match the preimage */
2043 handle_split(sb
, ent
, d
.tlno
, d
.plno
, ent
->num_lines
, parent
, split
);
2046 /* Move all blame entries from list *source that have a score smaller
2047 * than score_min to the front of list *small.
2048 * Returns a pointer to the link pointing to the old head of the small list.
2051 static struct blame_entry
**filter_small(struct blame_scoreboard
*sb
,
2052 struct blame_entry
**small
,
2053 struct blame_entry
**source
,
2056 struct blame_entry
*p
= *source
;
2057 struct blame_entry
*oldsmall
= *small
;
2059 if (blame_entry_score(sb
, p
) <= score_min
) {
2075 * See if lines currently target is suspected for can be attributed to
2078 static void find_move_in_parent(struct blame_scoreboard
*sb
,
2079 struct blame_entry
***blamed
,
2080 struct blame_entry
**toosmall
,
2081 struct blame_origin
*target
,
2082 struct blame_origin
*parent
)
2084 struct blame_entry
*e
, split
[3];
2085 struct blame_entry
*unblamed
= target
->suspects
;
2086 struct blame_entry
*leftover
= NULL
;
2090 return; /* nothing remains for this target */
2092 fill_origin_blob(&sb
->revs
->diffopt
, parent
, &file_p
,
2093 &sb
->num_read_blob
, 0);
2097 /* At each iteration, unblamed has a NULL-terminated list of
2098 * entries that have not yet been tested for blame. leftover
2099 * contains the reversed list of entries that have been tested
2100 * without being assignable to the parent.
2103 struct blame_entry
**unblamedtail
= &unblamed
;
2104 struct blame_entry
*next
;
2105 for (e
= unblamed
; e
; e
= next
) {
2107 find_copy_in_blob(sb
, e
, parent
, split
, &file_p
);
2108 if (split
[1].suspect
&&
2109 sb
->move_score
< blame_entry_score(sb
, &split
[1])) {
2110 split_blame(blamed
, &unblamedtail
, split
, e
);
2115 decref_split(split
);
2117 *unblamedtail
= NULL
;
2118 toosmall
= filter_small(sb
, toosmall
, &unblamed
, sb
->move_score
);
2120 target
->suspects
= reverse_blame(leftover
, NULL
);
2124 struct blame_entry
*ent
;
2125 struct blame_entry split
[3];
2129 * Count the number of entries the target is suspected for,
2130 * and prepare a list of entry and the best split.
2132 static struct blame_list
*setup_blame_list(struct blame_entry
*unblamed
,
2135 struct blame_entry
*e
;
2137 struct blame_list
*blame_list
= NULL
;
2139 for (e
= unblamed
, num_ents
= 0; e
; e
= e
->next
)
2142 blame_list
= xcalloc(num_ents
, sizeof(struct blame_list
));
2143 for (e
= unblamed
, i
= 0; e
; e
= e
->next
)
2144 blame_list
[i
++].ent
= e
;
2146 *num_ents_p
= num_ents
;
2151 * For lines target is suspected for, see if we can find code movement
2152 * across file boundary from the parent commit. porigin is the path
2153 * in the parent we already tried.
2155 static void find_copy_in_parent(struct blame_scoreboard
*sb
,
2156 struct blame_entry
***blamed
,
2157 struct blame_entry
**toosmall
,
2158 struct blame_origin
*target
,
2159 struct commit
*parent
,
2160 struct blame_origin
*porigin
,
2163 struct diff_options diff_opts
;
2165 struct blame_list
*blame_list
;
2167 struct blame_entry
*unblamed
= target
->suspects
;
2168 struct blame_entry
*leftover
= NULL
;
2171 return; /* nothing remains for this target */
2173 repo_diff_setup(sb
->repo
, &diff_opts
);
2174 diff_opts
.flags
.recursive
= 1;
2175 diff_opts
.output_format
= DIFF_FORMAT_NO_OUTPUT
;
2177 diff_setup_done(&diff_opts
);
2179 /* Try "find copies harder" on new path if requested;
2180 * we do not want to use diffcore_rename() actually to
2181 * match things up; find_copies_harder is set only to
2182 * force diff_tree_oid() to feed all filepairs to diff_queue,
2183 * and this code needs to be after diff_setup_done(), which
2184 * usually makes find-copies-harder imply copy detection.
2186 if ((opt
& PICKAXE_BLAME_COPY_HARDEST
)
2187 || ((opt
& PICKAXE_BLAME_COPY_HARDER
)
2188 && (!porigin
|| strcmp(target
->path
, porigin
->path
))))
2189 diff_opts
.flags
.find_copies_harder
= 1;
2191 if (is_null_oid(&target
->commit
->object
.oid
))
2192 do_diff_cache(get_commit_tree_oid(parent
), &diff_opts
);
2194 diff_tree_oid(get_commit_tree_oid(parent
),
2195 get_commit_tree_oid(target
->commit
),
2198 if (!diff_opts
.flags
.find_copies_harder
)
2199 diffcore_std(&diff_opts
);
2202 struct blame_entry
**unblamedtail
= &unblamed
;
2203 blame_list
= setup_blame_list(unblamed
, &num_ents
);
2205 for (i
= 0; i
< diff_queued_diff
.nr
; i
++) {
2206 struct diff_filepair
*p
= diff_queued_diff
.queue
[i
];
2207 struct blame_origin
*norigin
;
2209 struct blame_entry potential
[3];
2211 if (!DIFF_FILE_VALID(p
->one
))
2212 continue; /* does not exist in parent */
2213 if (S_ISGITLINK(p
->one
->mode
))
2214 continue; /* ignore git links */
2215 if (porigin
&& !strcmp(p
->one
->path
, porigin
->path
))
2216 /* find_move already dealt with this path */
2219 norigin
= get_origin(parent
, p
->one
->path
);
2220 oidcpy(&norigin
->blob_oid
, &p
->one
->oid
);
2221 norigin
->mode
= p
->one
->mode
;
2222 fill_origin_blob(&sb
->revs
->diffopt
, norigin
, &file_p
,
2223 &sb
->num_read_blob
, 0);
2227 for (j
= 0; j
< num_ents
; j
++) {
2228 find_copy_in_blob(sb
, blame_list
[j
].ent
,
2229 norigin
, potential
, &file_p
);
2230 copy_split_if_better(sb
, blame_list
[j
].split
,
2232 decref_split(potential
);
2234 blame_origin_decref(norigin
);
2237 for (j
= 0; j
< num_ents
; j
++) {
2238 struct blame_entry
*split
= blame_list
[j
].split
;
2239 if (split
[1].suspect
&&
2240 sb
->copy_score
< blame_entry_score(sb
, &split
[1])) {
2241 split_blame(blamed
, &unblamedtail
, split
,
2244 blame_list
[j
].ent
->next
= leftover
;
2245 leftover
= blame_list
[j
].ent
;
2247 decref_split(split
);
2250 *unblamedtail
= NULL
;
2251 toosmall
= filter_small(sb
, toosmall
, &unblamed
, sb
->copy_score
);
2253 target
->suspects
= reverse_blame(leftover
, NULL
);
2254 diff_flush(&diff_opts
);
2255 clear_pathspec(&diff_opts
.pathspec
);
2259 * The blobs of origin and porigin exactly match, so everything
2260 * origin is suspected for can be blamed on the parent.
2262 static void pass_whole_blame(struct blame_scoreboard
*sb
,
2263 struct blame_origin
*origin
, struct blame_origin
*porigin
)
2265 struct blame_entry
*e
, *suspects
;
2267 if (!porigin
->file
.ptr
&& origin
->file
.ptr
) {
2268 /* Steal its file */
2269 porigin
->file
= origin
->file
;
2270 origin
->file
.ptr
= NULL
;
2272 suspects
= origin
->suspects
;
2273 origin
->suspects
= NULL
;
2274 for (e
= suspects
; e
; e
= e
->next
) {
2275 blame_origin_incref(porigin
);
2276 blame_origin_decref(e
->suspect
);
2277 e
->suspect
= porigin
;
2279 queue_blames(sb
, porigin
, suspects
);
2283 * We pass blame from the current commit to its parents. We keep saying
2284 * "parent" (and "porigin"), but what we mean is to find scapegoat to
2285 * exonerate ourselves.
2287 static struct commit_list
*first_scapegoat(struct rev_info
*revs
, struct commit
*commit
,
2291 if (revs
->first_parent_only
&&
2293 commit
->parents
->next
) {
2294 free_commit_list(commit
->parents
->next
);
2295 commit
->parents
->next
= NULL
;
2297 return commit
->parents
;
2299 return lookup_decoration(&revs
->children
, &commit
->object
);
2302 static int num_scapegoats(struct rev_info
*revs
, struct commit
*commit
, int reverse
)
2304 struct commit_list
*l
= first_scapegoat(revs
, commit
, reverse
);
2305 return commit_list_count(l
);
2308 /* Distribute collected unsorted blames to the respected sorted lists
2309 * in the various origins.
2311 static void distribute_blame(struct blame_scoreboard
*sb
, struct blame_entry
*blamed
)
2313 blamed
= llist_mergesort(blamed
, get_next_blame
, set_next_blame
,
2314 compare_blame_suspect
);
2317 struct blame_origin
*porigin
= blamed
->suspect
;
2318 struct blame_entry
*suspects
= NULL
;
2320 struct blame_entry
*next
= blamed
->next
;
2321 blamed
->next
= suspects
;
2324 } while (blamed
&& blamed
->suspect
== porigin
);
2325 suspects
= reverse_blame(suspects
, NULL
);
2326 queue_blames(sb
, porigin
, suspects
);
2332 static void pass_blame(struct blame_scoreboard
*sb
, struct blame_origin
*origin
, int opt
)
2334 struct rev_info
*revs
= sb
->revs
;
2335 int i
, pass
, num_sg
;
2336 struct commit
*commit
= origin
->commit
;
2337 struct commit_list
*sg
;
2338 struct blame_origin
*sg_buf
[MAXSG
];
2339 struct blame_origin
*porigin
, **sg_origin
= sg_buf
;
2340 struct blame_entry
*toosmall
= NULL
;
2341 struct blame_entry
*blames
, **blametail
= &blames
;
2343 num_sg
= num_scapegoats(revs
, commit
, sb
->reverse
);
2346 else if (num_sg
< ARRAY_SIZE(sg_buf
))
2347 memset(sg_buf
, 0, sizeof(sg_buf
));
2349 sg_origin
= xcalloc(num_sg
, sizeof(*sg_origin
));
2352 * The first pass looks for unrenamed path to optimize for
2353 * common cases, then we look for renames in the second pass.
2355 for (pass
= 0; pass
< 2 - sb
->no_whole_file_rename
; pass
++) {
2356 struct blame_origin
*(*find
)(struct repository
*, struct commit
*, struct blame_origin
*);
2357 find
= pass
? find_rename
: find_origin
;
2359 for (i
= 0, sg
= first_scapegoat(revs
, commit
, sb
->reverse
);
2361 sg
= sg
->next
, i
++) {
2362 struct commit
*p
= sg
->item
;
2367 if (parse_commit(p
))
2369 porigin
= find(sb
->repo
, p
, origin
);
2372 if (oideq(&porigin
->blob_oid
, &origin
->blob_oid
)) {
2373 pass_whole_blame(sb
, origin
, porigin
);
2374 blame_origin_decref(porigin
);
2377 for (j
= same
= 0; j
< i
; j
++)
2379 oideq(&sg_origin
[j
]->blob_oid
, &porigin
->blob_oid
)) {
2384 sg_origin
[i
] = porigin
;
2386 blame_origin_decref(porigin
);
2391 for (i
= 0, sg
= first_scapegoat(revs
, commit
, sb
->reverse
);
2393 sg
= sg
->next
, i
++) {
2394 struct blame_origin
*porigin
= sg_origin
[i
];
2397 if (!origin
->previous
) {
2398 blame_origin_incref(porigin
);
2399 origin
->previous
= porigin
;
2401 pass_blame_to_parent(sb
, origin
, porigin
, 0);
2402 if (!origin
->suspects
)
2407 * Pass remaining suspects for ignored commits to their parents.
2409 if (oidset_contains(&sb
->ignore_list
, &commit
->object
.oid
)) {
2410 for (i
= 0, sg
= first_scapegoat(revs
, commit
, sb
->reverse
);
2412 sg
= sg
->next
, i
++) {
2413 struct blame_origin
*porigin
= sg_origin
[i
];
2417 pass_blame_to_parent(sb
, origin
, porigin
, 1);
2419 * Preemptively drop porigin so we can refresh the
2420 * fingerprints if we use the parent again, which can
2421 * occur if you ignore back-to-back commits.
2423 drop_origin_blob(porigin
);
2424 if (!origin
->suspects
)
2430 * Optionally find moves in parents' files.
2432 if (opt
& PICKAXE_BLAME_MOVE
) {
2433 filter_small(sb
, &toosmall
, &origin
->suspects
, sb
->move_score
);
2434 if (origin
->suspects
) {
2435 for (i
= 0, sg
= first_scapegoat(revs
, commit
, sb
->reverse
);
2437 sg
= sg
->next
, i
++) {
2438 struct blame_origin
*porigin
= sg_origin
[i
];
2441 find_move_in_parent(sb
, &blametail
, &toosmall
, origin
, porigin
);
2442 if (!origin
->suspects
)
2449 * Optionally find copies from parents' files.
2451 if (opt
& PICKAXE_BLAME_COPY
) {
2452 if (sb
->copy_score
> sb
->move_score
)
2453 filter_small(sb
, &toosmall
, &origin
->suspects
, sb
->copy_score
);
2454 else if (sb
->copy_score
< sb
->move_score
) {
2455 origin
->suspects
= blame_merge(origin
->suspects
, toosmall
);
2457 filter_small(sb
, &toosmall
, &origin
->suspects
, sb
->copy_score
);
2459 if (!origin
->suspects
)
2462 for (i
= 0, sg
= first_scapegoat(revs
, commit
, sb
->reverse
);
2464 sg
= sg
->next
, i
++) {
2465 struct blame_origin
*porigin
= sg_origin
[i
];
2466 find_copy_in_parent(sb
, &blametail
, &toosmall
,
2467 origin
, sg
->item
, porigin
, opt
);
2468 if (!origin
->suspects
)
2475 distribute_blame(sb
, blames
);
2477 * prepend toosmall to origin->suspects
2479 * There is no point in sorting: this ends up on a big
2480 * unsorted list in the caller anyway.
2483 struct blame_entry
**tail
= &toosmall
;
2485 tail
= &(*tail
)->next
;
2486 *tail
= origin
->suspects
;
2487 origin
->suspects
= toosmall
;
2489 for (i
= 0; i
< num_sg
; i
++) {
2491 if (!sg_origin
[i
]->suspects
)
2492 drop_origin_blob(sg_origin
[i
]);
2493 blame_origin_decref(sg_origin
[i
]);
2496 drop_origin_blob(origin
);
2497 if (sg_buf
!= sg_origin
)
2502 * The main loop -- while we have blobs with lines whose true origin
2503 * is still unknown, pick one blob, and allow its lines to pass blames
2504 * to its parents. */
2505 void assign_blame(struct blame_scoreboard
*sb
, int opt
)
2507 struct rev_info
*revs
= sb
->revs
;
2508 struct commit
*commit
= prio_queue_get(&sb
->commits
);
2511 struct blame_entry
*ent
;
2512 struct blame_origin
*suspect
= get_blame_suspects(commit
);
2514 /* find one suspect to break down */
2515 while (suspect
&& !suspect
->suspects
)
2516 suspect
= suspect
->next
;
2519 commit
= prio_queue_get(&sb
->commits
);
2523 assert(commit
== suspect
->commit
);
2526 * We will use this suspect later in the loop,
2527 * so hold onto it in the meantime.
2529 blame_origin_incref(suspect
);
2530 parse_commit(commit
);
2532 (!(commit
->object
.flags
& UNINTERESTING
) &&
2533 !(revs
->max_age
!= -1 && commit
->date
< revs
->max_age
)))
2534 pass_blame(sb
, suspect
, opt
);
2536 commit
->object
.flags
|= UNINTERESTING
;
2537 if (commit
->object
.parsed
)
2538 mark_parents_uninteresting(commit
);
2540 /* treat root commit as boundary */
2541 if (!commit
->parents
&& !sb
->show_root
)
2542 commit
->object
.flags
|= UNINTERESTING
;
2544 /* Take responsibility for the remaining entries */
2545 ent
= suspect
->suspects
;
2547 suspect
->guilty
= 1;
2549 struct blame_entry
*next
= ent
->next
;
2550 if (sb
->found_guilty_entry
)
2551 sb
->found_guilty_entry(ent
, sb
->found_guilty_entry_data
);
2556 ent
->next
= sb
->ent
;
2557 sb
->ent
= suspect
->suspects
;
2558 suspect
->suspects
= NULL
;
2562 blame_origin_decref(suspect
);
2564 if (sb
->debug
) /* sanity */
2565 sanity_check_refcnt(sb
);
2570 * To allow quick access to the contents of nth line in the
2571 * final image, prepare an index in the scoreboard.
2573 static int prepare_lines(struct blame_scoreboard
*sb
)
2575 sb
->num_lines
= find_line_starts(&sb
->lineno
, sb
->final_buf
,
2576 sb
->final_buf_size
);
2577 return sb
->num_lines
;
2580 static struct commit
*find_single_final(struct rev_info
*revs
,
2581 const char **name_p
)
2584 struct commit
*found
= NULL
;
2585 const char *name
= NULL
;
2587 for (i
= 0; i
< revs
->pending
.nr
; i
++) {
2588 struct object
*obj
= revs
->pending
.objects
[i
].item
;
2589 if (obj
->flags
& UNINTERESTING
)
2591 obj
= deref_tag(revs
->repo
, obj
, NULL
, 0);
2592 if (obj
->type
!= OBJ_COMMIT
)
2593 die("Non commit %s?", revs
->pending
.objects
[i
].name
);
2595 die("More than one commit to dig from %s and %s?",
2596 revs
->pending
.objects
[i
].name
, name
);
2597 found
= (struct commit
*)obj
;
2598 name
= revs
->pending
.objects
[i
].name
;
2601 *name_p
= xstrdup_or_null(name
);
2605 static struct commit
*dwim_reverse_initial(struct rev_info
*revs
,
2606 const char **name_p
)
2609 * DWIM "git blame --reverse ONE -- PATH" as
2610 * "git blame --reverse ONE..HEAD -- PATH" but only do so
2611 * when it makes sense.
2614 struct commit
*head_commit
;
2615 struct object_id head_oid
;
2617 if (revs
->pending
.nr
!= 1)
2620 /* Is that sole rev a committish? */
2621 obj
= revs
->pending
.objects
[0].item
;
2622 obj
= deref_tag(revs
->repo
, obj
, NULL
, 0);
2623 if (obj
->type
!= OBJ_COMMIT
)
2626 /* Do we have HEAD? */
2627 if (!resolve_ref_unsafe("HEAD", RESOLVE_REF_READING
, &head_oid
, NULL
))
2629 head_commit
= lookup_commit_reference_gently(revs
->repo
,
2634 /* Turn "ONE" into "ONE..HEAD" then */
2635 obj
->flags
|= UNINTERESTING
;
2636 add_pending_object(revs
, &head_commit
->object
, "HEAD");
2639 *name_p
= revs
->pending
.objects
[0].name
;
2640 return (struct commit
*)obj
;
2643 static struct commit
*find_single_initial(struct rev_info
*revs
,
2644 const char **name_p
)
2647 struct commit
*found
= NULL
;
2648 const char *name
= NULL
;
2651 * There must be one and only one negative commit, and it must be
2654 for (i
= 0; i
< revs
->pending
.nr
; i
++) {
2655 struct object
*obj
= revs
->pending
.objects
[i
].item
;
2656 if (!(obj
->flags
& UNINTERESTING
))
2658 obj
= deref_tag(revs
->repo
, obj
, NULL
, 0);
2659 if (obj
->type
!= OBJ_COMMIT
)
2660 die("Non commit %s?", revs
->pending
.objects
[i
].name
);
2662 die("More than one commit to dig up from, %s and %s?",
2663 revs
->pending
.objects
[i
].name
, name
);
2664 found
= (struct commit
*) obj
;
2665 name
= revs
->pending
.objects
[i
].name
;
2669 found
= dwim_reverse_initial(revs
, &name
);
2671 die("No commit to dig up from?");
2674 *name_p
= xstrdup(name
);
2678 void init_scoreboard(struct blame_scoreboard
*sb
)
2680 memset(sb
, 0, sizeof(struct blame_scoreboard
));
2681 sb
->move_score
= BLAME_DEFAULT_MOVE_SCORE
;
2682 sb
->copy_score
= BLAME_DEFAULT_COPY_SCORE
;
2685 void setup_scoreboard(struct blame_scoreboard
*sb
,
2687 struct blame_origin
**orig
)
2689 const char *final_commit_name
= NULL
;
2690 struct blame_origin
*o
;
2691 struct commit
*final_commit
= NULL
;
2692 enum object_type type
;
2694 init_blame_suspects(&blame_suspects
);
2696 if (sb
->reverse
&& sb
->contents_from
)
2697 die(_("--contents and --reverse do not blend well."));
2700 BUG("repo is NULL");
2703 sb
->final
= find_single_final(sb
->revs
, &final_commit_name
);
2704 sb
->commits
.compare
= compare_commits_by_commit_date
;
2706 sb
->final
= find_single_initial(sb
->revs
, &final_commit_name
);
2707 sb
->commits
.compare
= compare_commits_by_reverse_commit_date
;
2710 if (sb
->final
&& sb
->contents_from
)
2711 die(_("cannot use --contents with final commit object name"));
2713 if (sb
->reverse
&& sb
->revs
->first_parent_only
)
2714 sb
->revs
->children
.name
= NULL
;
2718 * "--not A B -- path" without anything positive;
2719 * do not default to HEAD, but use the working tree
2723 sb
->final
= fake_working_tree_commit(sb
->repo
,
2725 path
, sb
->contents_from
);
2726 add_pending_object(sb
->revs
, &(sb
->final
->object
), ":");
2729 if (sb
->reverse
&& sb
->revs
->first_parent_only
) {
2730 final_commit
= find_single_final(sb
->revs
, NULL
);
2732 die(_("--reverse and --first-parent together require specified latest commit"));
2736 * If we have bottom, this will mark the ancestors of the
2737 * bottom commits we would reach while traversing as
2740 if (prepare_revision_walk(sb
->revs
))
2741 die(_("revision walk setup failed"));
2743 if (sb
->reverse
&& sb
->revs
->first_parent_only
) {
2744 struct commit
*c
= final_commit
;
2746 sb
->revs
->children
.name
= "children";
2747 while (c
->parents
&&
2748 !oideq(&c
->object
.oid
, &sb
->final
->object
.oid
)) {
2749 struct commit_list
*l
= xcalloc(1, sizeof(*l
));
2752 if (add_decoration(&sb
->revs
->children
,
2753 &c
->parents
->item
->object
, l
))
2754 BUG("not unique item in first-parent chain");
2755 c
= c
->parents
->item
;
2758 if (!oideq(&c
->object
.oid
, &sb
->final
->object
.oid
))
2759 die(_("--reverse --first-parent together require range along first-parent chain"));
2762 if (is_null_oid(&sb
->final
->object
.oid
)) {
2763 o
= get_blame_suspects(sb
->final
);
2764 sb
->final_buf
= xmemdupz(o
->file
.ptr
, o
->file
.size
);
2765 sb
->final_buf_size
= o
->file
.size
;
2768 o
= get_origin(sb
->final
, path
);
2769 if (fill_blob_sha1_and_mode(sb
->repo
, o
))
2770 die(_("no such path %s in %s"), path
, final_commit_name
);
2772 if (sb
->revs
->diffopt
.flags
.allow_textconv
&&
2773 textconv_object(sb
->repo
, path
, o
->mode
, &o
->blob_oid
, 1, (char **) &sb
->final_buf
,
2774 &sb
->final_buf_size
))
2777 sb
->final_buf
= read_object_file(&o
->blob_oid
, &type
,
2778 &sb
->final_buf_size
);
2781 die(_("cannot read blob %s for path %s"),
2782 oid_to_hex(&o
->blob_oid
),
2785 sb
->num_read_blob
++;
2791 free((char *)final_commit_name
);
2796 struct blame_entry
*blame_entry_prepend(struct blame_entry
*head
,
2797 long start
, long end
,
2798 struct blame_origin
*o
)
2800 struct blame_entry
*new_head
= xcalloc(1, sizeof(struct blame_entry
));
2801 new_head
->lno
= start
;
2802 new_head
->num_lines
= end
- start
;
2803 new_head
->suspect
= o
;
2804 new_head
->s_lno
= start
;
2805 new_head
->next
= head
;
2806 blame_origin_incref(o
);