]>
git.ipfire.org Git - thirdparty/git.git/blob - blame.h
6 #include "xdiff-interface.h"
8 #include "prio-queue.h"
11 #define PICKAXE_BLAME_MOVE 01
12 #define PICKAXE_BLAME_COPY 02
13 #define PICKAXE_BLAME_COPY_HARDER 04
14 #define PICKAXE_BLAME_COPY_HARDEST 010
16 #define BLAME_DEFAULT_MOVE_SCORE 20
17 #define BLAME_DEFAULT_COPY_SCORE 40
22 * One blob in a commit that is being suspected
26 /* Record preceding blame record for this blob */
27 struct blame_origin
*previous
;
28 /* origins are put in a list linked via `next' hanging off the
29 * corresponding commit's util field in order to make finding
30 * them fast. The presence in this chain does not count
31 * towards the origin's reference count. It is tempting to
32 * let it count as long as the commit is pending examination,
33 * but even under circumstances where the commit will be
34 * present multiple times in the priority queue of unexamined
35 * commits, processing the first instance will not leave any
36 * work requiring the origin data for the second instance. An
37 * interspersed commit changing that would have to be
38 * preexisting with a different ancestry and with the same
39 * commit date in order to wedge itself between two instances
40 * of the same commit in the priority queue _and_ produce
41 * blame entries relevant for it. While we don't want to let
42 * us get tripped up by this case, it certainly does not seem
43 * worth optimizing for.
45 struct blame_origin
*next
;
46 struct commit
*commit
;
47 /* `suspects' contains blame entries that may be attributed to
48 * this origin's commit or to parent commits. When a commit
49 * is being processed, all suspects will be moved, either by
50 * assigning them to an origin in a different commit, or by
51 * shipping them to the scoreboard's ent list because they
52 * cannot be attributed to a different commit.
54 struct blame_entry
*suspects
;
57 struct fingerprint
*fingerprints
;
58 struct object_id blob_oid
;
60 /* guilty gets set when shipping any suspects to the final
61 * blame list instead of other commits
64 char path
[FLEX_ARRAY
];
68 * Each group of lines is described by a blame_entry; it can be split
69 * as we pass blame to the parents. They are arranged in linked lists
70 * kept as `suspects' of some unprocessed origin, or entered (when the
71 * blame origin has been finalized) into the scoreboard structure.
72 * While the scoreboard structure is only sorted at the end of
73 * processing (according to final image line number), the lists
74 * attached to an origin are sorted by the target line number.
77 struct blame_entry
*next
;
79 /* the first line of this group in the final image;
80 * internally all line numbers are 0 based.
84 /* how many lines this group has */
87 /* the commit that introduced this group into the final image */
88 struct blame_origin
*suspect
;
90 /* the line number of the first line of this group in the
91 * suspect's file; internally all line numbers are 0 based.
95 /* how significant this entry is -- cached to avoid
96 * scanning the lines over and over.
103 struct blame_bloom_data
;
106 * The current state of the blame assignment.
108 struct blame_scoreboard
{
109 /* the final commit (i.e. where we started digging from) */
110 struct commit
*final
;
111 /* Priority queue for commits with unassigned blame records */
112 struct prio_queue commits
;
113 struct repository
*repo
;
114 struct rev_info
*revs
;
118 * The contents in the final image.
119 * Used by many functions to obtain contents of the nth line,
120 * indexed with scoreboard.lineno[blame_entry.lno].
122 const char *final_buf
;
123 unsigned long final_buf_size
;
125 /* linked list of blames */
126 struct blame_entry
*ent
;
128 struct oidset ignore_list
;
130 /* look-up a line in the final buffer */
140 * blame for a blame_entry with score lower than these thresholds
141 * is not passed to the parent using move/copy logic.
146 /* use this file's contents as the final image */
147 const char *contents_from
;
153 int no_whole_file_rename
;
157 void(*on_sanity_fail
)(struct blame_scoreboard
*, int);
158 void(*found_guilty_entry
)(struct blame_entry
*, void *);
160 void *found_guilty_entry_data
;
161 struct blame_bloom_data
*bloom_data
;
165 * Origin is refcounted and usually we keep the blob contents to be
168 static inline struct blame_origin
*blame_origin_incref(struct blame_origin
*o
)
174 void blame_origin_decref(struct blame_origin
*o
);
176 void blame_coalesce(struct blame_scoreboard
*sb
);
177 void blame_sort_final(struct blame_scoreboard
*sb
);
178 unsigned blame_entry_score(struct blame_scoreboard
*sb
, struct blame_entry
*e
);
179 void assign_blame(struct blame_scoreboard
*sb
, int opt
);
180 const char *blame_nth_line(struct blame_scoreboard
*sb
, long lno
);
182 void init_scoreboard(struct blame_scoreboard
*sb
);
183 void setup_scoreboard(struct blame_scoreboard
*sb
,
184 struct blame_origin
**orig
);
185 void setup_blame_bloom_data(struct blame_scoreboard
*sb
);
186 void cleanup_scoreboard(struct blame_scoreboard
*sb
);
188 struct blame_entry
*blame_entry_prepend(struct blame_entry
*head
,
189 long start
, long end
,
190 struct blame_origin
*o
);
192 struct blame_origin
*get_blame_suspects(struct commit
*commit
);