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