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