Junio C Hamano | 8f1d2e6 | 2006-01-07 01:33:54 -0800 | [diff] [blame] | 1 | #include "cache.h" |
Linus Torvalds | 961784e | 2005-05-18 16:14:22 -0700 | [diff] [blame] | 2 | #include "tag.h" |
Daniel Barkalow | 175785e | 2005-04-18 11:39:48 -0700 | [diff] [blame] | 3 | #include "commit.h" |
Johannes Schindelin | ed09aef | 2006-10-30 20:09:06 +0100 | [diff] [blame] | 4 | #include "pkt-line.h" |
Junio C Hamano | 52883fb | 2006-12-25 11:48:35 -0800 | [diff] [blame] | 5 | #include "utf8.h" |
Johannes Schindelin | e52a5de | 2007-02-23 01:35:03 +0100 | [diff] [blame] | 6 | #include "interpolate.h" |
Junio C Hamano | 199c45b | 2007-04-09 02:34:05 -0700 | [diff] [blame] | 7 | #include "diff.h" |
| 8 | #include "revision.h" |
Daniel Barkalow | 175785e | 2005-04-18 11:39:48 -0700 | [diff] [blame] | 9 | |
Linus Torvalds | 60ab26d | 2005-09-15 14:43:17 -0700 | [diff] [blame] | 10 | int save_commit_buffer = 1; |
| 11 | |
Jon Seymour | ab580ac | 2005-07-07 02:39:34 +1000 | [diff] [blame] | 12 | struct sort_node |
| 13 | { |
| 14 | /* |
Tilman Sauerbeck | 55c3eb4 | 2006-08-17 20:44:16 +0200 | [diff] [blame] | 15 | * the number of children of the associated commit |
| 16 | * that also occur in the list being sorted. |
| 17 | */ |
Jon Seymour | ab580ac | 2005-07-07 02:39:34 +1000 | [diff] [blame] | 18 | unsigned int indegree; |
| 19 | |
| 20 | /* |
Tilman Sauerbeck | 55c3eb4 | 2006-08-17 20:44:16 +0200 | [diff] [blame] | 21 | * reference to original list item that we will re-use |
| 22 | * on output. |
| 23 | */ |
Jon Seymour | ab580ac | 2005-07-07 02:39:34 +1000 | [diff] [blame] | 24 | struct commit_list * list_item; |
| 25 | |
| 26 | }; |
| 27 | |
Daniel Barkalow | 175785e | 2005-04-18 11:39:48 -0700 | [diff] [blame] | 28 | const char *commit_type = "commit"; |
| 29 | |
Junio C Hamano | 4175e9e | 2007-06-13 01:42:05 -0700 | [diff] [blame] | 30 | static struct cmt_fmt_map { |
Eric Wong | 6cdfd17 | 2006-05-14 17:20:46 -0700 | [diff] [blame] | 31 | const char *n; |
| 32 | size_t cmp_len; |
| 33 | enum cmit_fmt v; |
| 34 | } cmt_fmts[] = { |
| 35 | { "raw", 1, CMIT_FMT_RAW }, |
| 36 | { "medium", 1, CMIT_FMT_MEDIUM }, |
| 37 | { "short", 1, CMIT_FMT_SHORT }, |
Junio C Hamano | 328b710 | 2006-05-21 01:34:54 -0700 | [diff] [blame] | 38 | { "email", 1, CMIT_FMT_EMAIL }, |
Eric Wong | 6cdfd17 | 2006-05-14 17:20:46 -0700 | [diff] [blame] | 39 | { "full", 5, CMIT_FMT_FULL }, |
| 40 | { "fuller", 5, CMIT_FMT_FULLER }, |
| 41 | { "oneline", 1, CMIT_FMT_ONELINE }, |
Johannes Schindelin | e52a5de | 2007-02-23 01:35:03 +0100 | [diff] [blame] | 42 | { "format:", 7, CMIT_FMT_USERFORMAT}, |
Eric Wong | 6cdfd17 | 2006-05-14 17:20:46 -0700 | [diff] [blame] | 43 | }; |
| 44 | |
Johannes Schindelin | e52a5de | 2007-02-23 01:35:03 +0100 | [diff] [blame] | 45 | static char *user_format; |
| 46 | |
Linus Torvalds | 9b66ec0 | 2005-06-26 17:50:46 -0700 | [diff] [blame] | 47 | enum cmit_fmt get_commit_format(const char *arg) |
| 48 | { |
Eric Wong | 6cdfd17 | 2006-05-14 17:20:46 -0700 | [diff] [blame] | 49 | int i; |
| 50 | |
| 51 | if (!arg || !*arg) |
Linus Torvalds | 9b66ec0 | 2005-06-26 17:50:46 -0700 | [diff] [blame] | 52 | return CMIT_FMT_DEFAULT; |
Eric Wong | 6cdfd17 | 2006-05-14 17:20:46 -0700 | [diff] [blame] | 53 | if (*arg == '=') |
| 54 | arg++; |
Johannes Schindelin | e52a5de | 2007-02-23 01:35:03 +0100 | [diff] [blame] | 55 | if (!prefixcmp(arg, "format:")) { |
| 56 | if (user_format) |
| 57 | free(user_format); |
| 58 | user_format = xstrdup(arg + 7); |
| 59 | return CMIT_FMT_USERFORMAT; |
| 60 | } |
Eric Wong | 6cdfd17 | 2006-05-14 17:20:46 -0700 | [diff] [blame] | 61 | for (i = 0; i < ARRAY_SIZE(cmt_fmts); i++) { |
Eric Wong | b693620 | 2007-02-02 05:10:25 -0800 | [diff] [blame] | 62 | if (!strncmp(arg, cmt_fmts[i].n, cmt_fmts[i].cmp_len) && |
| 63 | !strncmp(arg, cmt_fmts[i].n, strlen(arg))) |
Eric Wong | 6cdfd17 | 2006-05-14 17:20:46 -0700 | [diff] [blame] | 64 | return cmt_fmts[i].v; |
| 65 | } |
| 66 | |
| 67 | die("invalid --pretty format: %s", arg); |
Linus Torvalds | 9b66ec0 | 2005-06-26 17:50:46 -0700 | [diff] [blame] | 68 | } |
| 69 | |
Junio C Hamano | f76412e | 2005-08-21 02:51:10 -0700 | [diff] [blame] | 70 | static struct commit *check_commit(struct object *obj, |
| 71 | const unsigned char *sha1, |
| 72 | int quiet) |
Linus Torvalds | 961784e | 2005-05-18 16:14:22 -0700 | [diff] [blame] | 73 | { |
Linus Torvalds | 1974632 | 2006-07-11 20:45:31 -0700 | [diff] [blame] | 74 | if (obj->type != OBJ_COMMIT) { |
Junio C Hamano | f76412e | 2005-08-21 02:51:10 -0700 | [diff] [blame] | 75 | if (!quiet) |
| 76 | error("Object %s is a %s, not a commit", |
Linus Torvalds | 885a86a | 2006-06-14 16:45:13 -0700 | [diff] [blame] | 77 | sha1_to_hex(sha1), typename(obj->type)); |
Linus Torvalds | 961784e | 2005-05-18 16:14:22 -0700 | [diff] [blame] | 78 | return NULL; |
| 79 | } |
| 80 | return (struct commit *) obj; |
| 81 | } |
| 82 | |
Junio C Hamano | f76412e | 2005-08-21 02:51:10 -0700 | [diff] [blame] | 83 | struct commit *lookup_commit_reference_gently(const unsigned char *sha1, |
| 84 | int quiet) |
Linus Torvalds | 961784e | 2005-05-18 16:14:22 -0700 | [diff] [blame] | 85 | { |
Junio C Hamano | 9534f40 | 2005-11-02 15:19:13 -0800 | [diff] [blame] | 86 | struct object *obj = deref_tag(parse_object(sha1), NULL, 0); |
Linus Torvalds | 961784e | 2005-05-18 16:14:22 -0700 | [diff] [blame] | 87 | |
| 88 | if (!obj) |
| 89 | return NULL; |
Junio C Hamano | f76412e | 2005-08-21 02:51:10 -0700 | [diff] [blame] | 90 | return check_commit(obj, sha1, quiet); |
| 91 | } |
| 92 | |
| 93 | struct commit *lookup_commit_reference(const unsigned char *sha1) |
| 94 | { |
| 95 | return lookup_commit_reference_gently(sha1, 0); |
Linus Torvalds | 961784e | 2005-05-18 16:14:22 -0700 | [diff] [blame] | 96 | } |
| 97 | |
Jason McMullan | 5d6ccf5 | 2005-06-03 11:05:39 -0400 | [diff] [blame] | 98 | struct commit *lookup_commit(const unsigned char *sha1) |
Daniel Barkalow | 175785e | 2005-04-18 11:39:48 -0700 | [diff] [blame] | 99 | { |
| 100 | struct object *obj = lookup_object(sha1); |
Linus Torvalds | 100c5f3 | 2007-04-16 22:11:43 -0700 | [diff] [blame] | 101 | if (!obj) |
| 102 | return create_object(sha1, OBJ_COMMIT, alloc_commit_node()); |
Nicolas Pitre | d1af002 | 2005-05-20 16:59:17 -0400 | [diff] [blame] | 103 | if (!obj->type) |
Linus Torvalds | 1974632 | 2006-07-11 20:45:31 -0700 | [diff] [blame] | 104 | obj->type = OBJ_COMMIT; |
Junio C Hamano | f76412e | 2005-08-21 02:51:10 -0700 | [diff] [blame] | 105 | return check_commit(obj, sha1, 0); |
Daniel Barkalow | 175785e | 2005-04-18 11:39:48 -0700 | [diff] [blame] | 106 | } |
| 107 | |
| 108 | static unsigned long parse_commit_date(const char *buf) |
| 109 | { |
| 110 | unsigned long date; |
| 111 | |
| 112 | if (memcmp(buf, "author", 6)) |
| 113 | return 0; |
| 114 | while (*buf++ != '\n') |
| 115 | /* nada */; |
| 116 | if (memcmp(buf, "committer", 9)) |
| 117 | return 0; |
| 118 | while (*buf++ != '>') |
| 119 | /* nada */; |
| 120 | date = strtoul(buf, NULL, 10); |
| 121 | if (date == ULONG_MAX) |
| 122 | date = 0; |
| 123 | return date; |
| 124 | } |
| 125 | |
Junio C Hamano | 5040f17 | 2006-04-06 23:58:51 -0700 | [diff] [blame] | 126 | static struct commit_graft **commit_graft; |
Junio C Hamano | 5da5c8f | 2005-07-30 00:58:28 -0700 | [diff] [blame] | 127 | static int commit_graft_alloc, commit_graft_nr; |
| 128 | |
| 129 | static int commit_graft_pos(const unsigned char *sha1) |
| 130 | { |
| 131 | int lo, hi; |
| 132 | lo = 0; |
| 133 | hi = commit_graft_nr; |
| 134 | while (lo < hi) { |
| 135 | int mi = (lo + hi) / 2; |
| 136 | struct commit_graft *graft = commit_graft[mi]; |
David Rientjes | a89fccd | 2006-08-17 11:54:57 -0700 | [diff] [blame] | 137 | int cmp = hashcmp(sha1, graft->sha1); |
Junio C Hamano | 5da5c8f | 2005-07-30 00:58:28 -0700 | [diff] [blame] | 138 | if (!cmp) |
| 139 | return mi; |
| 140 | if (cmp < 0) |
| 141 | hi = mi; |
| 142 | else |
| 143 | lo = mi + 1; |
| 144 | } |
| 145 | return -lo - 1; |
| 146 | } |
| 147 | |
Junio C Hamano | 5040f17 | 2006-04-06 23:58:51 -0700 | [diff] [blame] | 148 | int register_commit_graft(struct commit_graft *graft, int ignore_dups) |
Junio C Hamano | 5da5c8f | 2005-07-30 00:58:28 -0700 | [diff] [blame] | 149 | { |
Junio C Hamano | 5040f17 | 2006-04-06 23:58:51 -0700 | [diff] [blame] | 150 | int pos = commit_graft_pos(graft->sha1); |
Junio C Hamano | a6080a0 | 2007-06-07 00:04:01 -0700 | [diff] [blame] | 151 | |
Junio C Hamano | 5040f17 | 2006-04-06 23:58:51 -0700 | [diff] [blame] | 152 | if (0 <= pos) { |
| 153 | if (ignore_dups) |
| 154 | free(graft); |
| 155 | else { |
| 156 | free(commit_graft[pos]); |
| 157 | commit_graft[pos] = graft; |
| 158 | } |
| 159 | return 1; |
| 160 | } |
| 161 | pos = -pos - 1; |
| 162 | if (commit_graft_alloc <= ++commit_graft_nr) { |
| 163 | commit_graft_alloc = alloc_nr(commit_graft_alloc); |
| 164 | commit_graft = xrealloc(commit_graft, |
| 165 | sizeof(*commit_graft) * |
| 166 | commit_graft_alloc); |
| 167 | } |
| 168 | if (pos < commit_graft_nr) |
| 169 | memmove(commit_graft + pos + 1, |
| 170 | commit_graft + pos, |
| 171 | (commit_graft_nr - pos - 1) * |
| 172 | sizeof(*commit_graft)); |
| 173 | commit_graft[pos] = graft; |
| 174 | return 0; |
| 175 | } |
| 176 | |
| 177 | struct commit_graft *read_graft_line(char *buf, int len) |
| 178 | { |
| 179 | /* The format is just "Commit Parent1 Parent2 ...\n" */ |
| 180 | int i; |
| 181 | struct commit_graft *graft = NULL; |
| 182 | |
| 183 | if (buf[len-1] == '\n') |
| 184 | buf[--len] = 0; |
Yann Dirson | 360204c | 2006-04-17 13:41:49 +0200 | [diff] [blame] | 185 | if (buf[0] == '#' || buf[0] == '\0') |
Junio C Hamano | 5bc4ce5 | 2006-04-16 14:24:56 -0700 | [diff] [blame] | 186 | return NULL; |
Junio C Hamano | 5040f17 | 2006-04-06 23:58:51 -0700 | [diff] [blame] | 187 | if ((len + 1) % 41) { |
| 188 | bad_graft_data: |
| 189 | error("bad graft data: %s", buf); |
| 190 | free(graft); |
| 191 | return NULL; |
| 192 | } |
| 193 | i = (len + 1) / 41 - 1; |
| 194 | graft = xmalloc(sizeof(*graft) + 20 * i); |
| 195 | graft->nr_parent = i; |
| 196 | if (get_sha1_hex(buf, graft->sha1)) |
| 197 | goto bad_graft_data; |
| 198 | for (i = 40; i < len; i += 41) { |
| 199 | if (buf[i] != ' ') |
| 200 | goto bad_graft_data; |
| 201 | if (get_sha1_hex(buf + i + 1, graft->parent[i/41])) |
| 202 | goto bad_graft_data; |
| 203 | } |
| 204 | return graft; |
| 205 | } |
| 206 | |
| 207 | int read_graft_file(const char *graft_file) |
| 208 | { |
Junio C Hamano | 5da5c8f | 2005-07-30 00:58:28 -0700 | [diff] [blame] | 209 | FILE *fp = fopen(graft_file, "r"); |
| 210 | char buf[1024]; |
Junio C Hamano | 5040f17 | 2006-04-06 23:58:51 -0700 | [diff] [blame] | 211 | if (!fp) |
| 212 | return -1; |
Junio C Hamano | 5da5c8f | 2005-07-30 00:58:28 -0700 | [diff] [blame] | 213 | while (fgets(buf, sizeof(buf), fp)) { |
| 214 | /* The format is just "Commit Parent1 Parent2 ...\n" */ |
| 215 | int len = strlen(buf); |
Junio C Hamano | 5040f17 | 2006-04-06 23:58:51 -0700 | [diff] [blame] | 216 | struct commit_graft *graft = read_graft_line(buf, len); |
Junio C Hamano | 5bc4ce5 | 2006-04-16 14:24:56 -0700 | [diff] [blame] | 217 | if (!graft) |
| 218 | continue; |
Junio C Hamano | 5040f17 | 2006-04-06 23:58:51 -0700 | [diff] [blame] | 219 | if (register_commit_graft(graft, 1)) |
Junio C Hamano | 5da5c8f | 2005-07-30 00:58:28 -0700 | [diff] [blame] | 220 | error("duplicate graft data: %s", buf); |
Junio C Hamano | 5da5c8f | 2005-07-30 00:58:28 -0700 | [diff] [blame] | 221 | } |
| 222 | fclose(fp); |
Junio C Hamano | 5040f17 | 2006-04-06 23:58:51 -0700 | [diff] [blame] | 223 | return 0; |
| 224 | } |
| 225 | |
| 226 | static void prepare_commit_graft(void) |
| 227 | { |
| 228 | static int commit_graft_prepared; |
| 229 | char *graft_file; |
| 230 | |
| 231 | if (commit_graft_prepared) |
| 232 | return; |
| 233 | graft_file = get_graft_file(); |
| 234 | read_graft_file(graft_file); |
Johannes Schindelin | ed09aef | 2006-10-30 20:09:06 +0100 | [diff] [blame] | 235 | /* make sure shallows are read */ |
| 236 | is_repository_shallow(); |
Junio C Hamano | 5040f17 | 2006-04-06 23:58:51 -0700 | [diff] [blame] | 237 | commit_graft_prepared = 1; |
Junio C Hamano | 5da5c8f | 2005-07-30 00:58:28 -0700 | [diff] [blame] | 238 | } |
| 239 | |
| 240 | static struct commit_graft *lookup_commit_graft(const unsigned char *sha1) |
| 241 | { |
| 242 | int pos; |
Junio C Hamano | 5040f17 | 2006-04-06 23:58:51 -0700 | [diff] [blame] | 243 | prepare_commit_graft(); |
Junio C Hamano | 5da5c8f | 2005-07-30 00:58:28 -0700 | [diff] [blame] | 244 | pos = commit_graft_pos(sha1); |
| 245 | if (pos < 0) |
| 246 | return NULL; |
| 247 | return commit_graft[pos]; |
| 248 | } |
| 249 | |
Johannes Schindelin | ed09aef | 2006-10-30 20:09:06 +0100 | [diff] [blame] | 250 | int write_shallow_commits(int fd, int use_pack_protocol) |
| 251 | { |
| 252 | int i, count = 0; |
| 253 | for (i = 0; i < commit_graft_nr; i++) |
| 254 | if (commit_graft[i]->nr_parent < 0) { |
| 255 | const char *hex = |
| 256 | sha1_to_hex(commit_graft[i]->sha1); |
| 257 | count++; |
| 258 | if (use_pack_protocol) |
| 259 | packet_write(fd, "shallow %s", hex); |
| 260 | else { |
Andy Whitcroft | 93822c2 | 2007-01-08 15:58:23 +0000 | [diff] [blame] | 261 | if (write_in_full(fd, hex, 40) != 40) |
| 262 | break; |
| 263 | if (write_in_full(fd, "\n", 1) != 1) |
| 264 | break; |
Johannes Schindelin | ed09aef | 2006-10-30 20:09:06 +0100 | [diff] [blame] | 265 | } |
| 266 | } |
| 267 | return count; |
| 268 | } |
| 269 | |
Johannes Schindelin | f53514b | 2006-10-30 20:09:53 +0100 | [diff] [blame] | 270 | int unregister_shallow(const unsigned char *sha1) |
| 271 | { |
| 272 | int pos = commit_graft_pos(sha1); |
| 273 | if (pos < 0) |
| 274 | return -1; |
| 275 | if (pos + 1 < commit_graft_nr) |
| 276 | memcpy(commit_graft + pos, commit_graft + pos + 1, |
| 277 | sizeof(struct commit_graft *) |
| 278 | * (commit_graft_nr - pos - 1)); |
| 279 | commit_graft_nr--; |
| 280 | return 0; |
| 281 | } |
| 282 | |
Nicolas Pitre | bd2c39f | 2005-05-06 13:48:34 -0400 | [diff] [blame] | 283 | int parse_commit_buffer(struct commit *item, void *buffer, unsigned long size) |
Daniel Barkalow | 175785e | 2005-04-18 11:39:48 -0700 | [diff] [blame] | 284 | { |
Junio C Hamano | 3b44f15 | 2006-06-28 03:51:00 -0700 | [diff] [blame] | 285 | char *tail = buffer; |
Linus Torvalds | f7cc77d | 2005-07-27 15:12:48 -0700 | [diff] [blame] | 286 | char *bufptr = buffer; |
Daniel Barkalow | 175785e | 2005-04-18 11:39:48 -0700 | [diff] [blame] | 287 | unsigned char parent[20]; |
Linus Torvalds | 6c88be1 | 2005-06-20 20:26:03 -0700 | [diff] [blame] | 288 | struct commit_list **pptr; |
Junio C Hamano | 5da5c8f | 2005-07-30 00:58:28 -0700 | [diff] [blame] | 289 | struct commit_graft *graft; |
Junio C Hamano | 27dedf0 | 2005-11-16 21:32:44 -0800 | [diff] [blame] | 290 | unsigned n_refs = 0; |
Nicolas Pitre | bd2c39f | 2005-05-06 13:48:34 -0400 | [diff] [blame] | 291 | |
Daniel Barkalow | 175785e | 2005-04-18 11:39:48 -0700 | [diff] [blame] | 292 | if (item->object.parsed) |
| 293 | return 0; |
| 294 | item->object.parsed = 1; |
Junio C Hamano | 3b44f15 | 2006-06-28 03:51:00 -0700 | [diff] [blame] | 295 | tail += size; |
| 296 | if (tail <= bufptr + 5 || memcmp(bufptr, "tree ", 5)) |
Linus Torvalds | f7cc77d | 2005-07-27 15:12:48 -0700 | [diff] [blame] | 297 | return error("bogus commit object %s", sha1_to_hex(item->object.sha1)); |
Junio C Hamano | 3b44f15 | 2006-06-28 03:51:00 -0700 | [diff] [blame] | 298 | if (tail <= bufptr + 45 || get_sha1_hex(bufptr + 5, parent) < 0) |
Junio C Hamano | bd2afde | 2006-02-22 17:47:10 -0800 | [diff] [blame] | 299 | return error("bad tree pointer in commit %s", |
| 300 | sha1_to_hex(item->object.sha1)); |
Daniel Barkalow | 175785e | 2005-04-18 11:39:48 -0700 | [diff] [blame] | 301 | item->tree = lookup_tree(parent); |
Linus Torvalds | 235ac40 | 2005-04-24 14:31:57 -0700 | [diff] [blame] | 302 | if (item->tree) |
Junio C Hamano | 27dedf0 | 2005-11-16 21:32:44 -0800 | [diff] [blame] | 303 | n_refs++; |
Daniel Barkalow | 175785e | 2005-04-18 11:39:48 -0700 | [diff] [blame] | 304 | bufptr += 46; /* "tree " + "hex sha1" + "\n" */ |
Linus Torvalds | 6c88be1 | 2005-06-20 20:26:03 -0700 | [diff] [blame] | 305 | pptr = &item->parents; |
Junio C Hamano | 5da5c8f | 2005-07-30 00:58:28 -0700 | [diff] [blame] | 306 | |
| 307 | graft = lookup_commit_graft(item->object.sha1); |
Junio C Hamano | 3b44f15 | 2006-06-28 03:51:00 -0700 | [diff] [blame] | 308 | while (bufptr + 48 < tail && !memcmp(bufptr, "parent ", 7)) { |
Linus Torvalds | f7cc77d | 2005-07-27 15:12:48 -0700 | [diff] [blame] | 309 | struct commit *new_parent; |
| 310 | |
Junio C Hamano | 3b44f15 | 2006-06-28 03:51:00 -0700 | [diff] [blame] | 311 | if (tail <= bufptr + 48 || |
| 312 | get_sha1_hex(bufptr + 7, parent) || |
| 313 | bufptr[47] != '\n') |
Linus Torvalds | f7cc77d | 2005-07-27 15:12:48 -0700 | [diff] [blame] | 314 | return error("bad parents in commit %s", sha1_to_hex(item->object.sha1)); |
Junio C Hamano | 5da5c8f | 2005-07-30 00:58:28 -0700 | [diff] [blame] | 315 | bufptr += 48; |
| 316 | if (graft) |
| 317 | continue; |
Linus Torvalds | f7cc77d | 2005-07-27 15:12:48 -0700 | [diff] [blame] | 318 | new_parent = lookup_commit(parent); |
Linus Torvalds | 235ac40 | 2005-04-24 14:31:57 -0700 | [diff] [blame] | 319 | if (new_parent) { |
Linus Torvalds | 6c88be1 | 2005-06-20 20:26:03 -0700 | [diff] [blame] | 320 | pptr = &commit_list_insert(new_parent, pptr)->next; |
Junio C Hamano | 27dedf0 | 2005-11-16 21:32:44 -0800 | [diff] [blame] | 321 | n_refs++; |
Linus Torvalds | 235ac40 | 2005-04-24 14:31:57 -0700 | [diff] [blame] | 322 | } |
Junio C Hamano | 5da5c8f | 2005-07-30 00:58:28 -0700 | [diff] [blame] | 323 | } |
| 324 | if (graft) { |
| 325 | int i; |
| 326 | struct commit *new_parent; |
| 327 | for (i = 0; i < graft->nr_parent; i++) { |
| 328 | new_parent = lookup_commit(graft->parent[i]); |
| 329 | if (!new_parent) |
| 330 | continue; |
| 331 | pptr = &commit_list_insert(new_parent, pptr)->next; |
Junio C Hamano | 27dedf0 | 2005-11-16 21:32:44 -0800 | [diff] [blame] | 332 | n_refs++; |
Junio C Hamano | 5da5c8f | 2005-07-30 00:58:28 -0700 | [diff] [blame] | 333 | } |
Daniel Barkalow | 175785e | 2005-04-18 11:39:48 -0700 | [diff] [blame] | 334 | } |
| 335 | item->date = parse_commit_date(bufptr); |
Junio C Hamano | 27dedf0 | 2005-11-16 21:32:44 -0800 | [diff] [blame] | 336 | |
| 337 | if (track_object_refs) { |
| 338 | unsigned i = 0; |
| 339 | struct commit_list *p; |
| 340 | struct object_refs *refs = alloc_object_refs(n_refs); |
| 341 | if (item->tree) |
| 342 | refs->ref[i++] = &item->tree->object; |
| 343 | for (p = item->parents; p; p = p->next) |
| 344 | refs->ref[i++] = &p->item->object; |
| 345 | set_object_refs(&item->object, refs); |
| 346 | } |
| 347 | |
Daniel Barkalow | 175785e | 2005-04-18 11:39:48 -0700 | [diff] [blame] | 348 | return 0; |
| 349 | } |
| 350 | |
Nicolas Pitre | bd2c39f | 2005-05-06 13:48:34 -0400 | [diff] [blame] | 351 | int parse_commit(struct commit *item) |
| 352 | { |
Nicolas Pitre | 21666f1 | 2007-02-26 14:55:59 -0500 | [diff] [blame] | 353 | enum object_type type; |
Nicolas Pitre | bd2c39f | 2005-05-06 13:48:34 -0400 | [diff] [blame] | 354 | void *buffer; |
| 355 | unsigned long size; |
| 356 | int ret; |
| 357 | |
| 358 | if (item->object.parsed) |
| 359 | return 0; |
Nicolas Pitre | 21666f1 | 2007-02-26 14:55:59 -0500 | [diff] [blame] | 360 | buffer = read_sha1_file(item->object.sha1, &type, &size); |
Nicolas Pitre | bd2c39f | 2005-05-06 13:48:34 -0400 | [diff] [blame] | 361 | if (!buffer) |
| 362 | return error("Could not read %s", |
| 363 | sha1_to_hex(item->object.sha1)); |
Nicolas Pitre | 21666f1 | 2007-02-26 14:55:59 -0500 | [diff] [blame] | 364 | if (type != OBJ_COMMIT) { |
Nicolas Pitre | bd2c39f | 2005-05-06 13:48:34 -0400 | [diff] [blame] | 365 | free(buffer); |
| 366 | return error("Object %s not a commit", |
| 367 | sha1_to_hex(item->object.sha1)); |
| 368 | } |
| 369 | ret = parse_commit_buffer(item, buffer, size); |
Linus Torvalds | 60ab26d | 2005-09-15 14:43:17 -0700 | [diff] [blame] | 370 | if (save_commit_buffer && !ret) { |
Linus Torvalds | 3ff1fbb | 2005-05-25 18:27:14 -0700 | [diff] [blame] | 371 | item->buffer = buffer; |
| 372 | return 0; |
| 373 | } |
Nicolas Pitre | bd2c39f | 2005-05-06 13:48:34 -0400 | [diff] [blame] | 374 | free(buffer); |
| 375 | return ret; |
| 376 | } |
| 377 | |
Linus Torvalds | ac5155e | 2005-05-30 18:44:02 -0700 | [diff] [blame] | 378 | struct commit_list *commit_list_insert(struct commit *item, struct commit_list **list_p) |
Daniel Barkalow | dd97f85 | 2005-04-23 18:47:23 -0700 | [diff] [blame] | 379 | { |
Christopher Li | 812666c | 2005-04-26 12:00:58 -0700 | [diff] [blame] | 380 | struct commit_list *new_list = xmalloc(sizeof(struct commit_list)); |
Daniel Barkalow | dd97f85 | 2005-04-23 18:47:23 -0700 | [diff] [blame] | 381 | new_list->item = item; |
| 382 | new_list->next = *list_p; |
| 383 | *list_p = new_list; |
Linus Torvalds | ac5155e | 2005-05-30 18:44:02 -0700 | [diff] [blame] | 384 | return new_list; |
Daniel Barkalow | dd97f85 | 2005-04-23 18:47:23 -0700 | [diff] [blame] | 385 | } |
| 386 | |
Daniel Barkalow | 175785e | 2005-04-18 11:39:48 -0700 | [diff] [blame] | 387 | void free_commit_list(struct commit_list *list) |
| 388 | { |
| 389 | while (list) { |
| 390 | struct commit_list *temp = list; |
| 391 | list = temp->next; |
| 392 | free(temp); |
| 393 | } |
| 394 | } |
Daniel Barkalow | dd97f85 | 2005-04-23 18:47:23 -0700 | [diff] [blame] | 395 | |
Linus Torvalds | f755494 | 2005-07-06 09:31:17 -0700 | [diff] [blame] | 396 | struct commit_list * insert_by_date(struct commit *item, struct commit_list **list) |
Daniel Barkalow | dd97f85 | 2005-04-23 18:47:23 -0700 | [diff] [blame] | 397 | { |
| 398 | struct commit_list **pp = list; |
| 399 | struct commit_list *p; |
| 400 | while ((p = *pp) != NULL) { |
| 401 | if (p->item->date < item->date) { |
| 402 | break; |
| 403 | } |
| 404 | pp = &p->next; |
| 405 | } |
Linus Torvalds | f755494 | 2005-07-06 09:31:17 -0700 | [diff] [blame] | 406 | return commit_list_insert(item, pp); |
Daniel Barkalow | dd97f85 | 2005-04-23 18:47:23 -0700 | [diff] [blame] | 407 | } |
| 408 | |
Junio C Hamano | a6080a0 | 2007-06-07 00:04:01 -0700 | [diff] [blame] | 409 | |
Daniel Barkalow | dd97f85 | 2005-04-23 18:47:23 -0700 | [diff] [blame] | 410 | void sort_by_date(struct commit_list **list) |
| 411 | { |
| 412 | struct commit_list *ret = NULL; |
| 413 | while (*list) { |
Linus Torvalds | f755494 | 2005-07-06 09:31:17 -0700 | [diff] [blame] | 414 | insert_by_date((*list)->item, &ret); |
Daniel Barkalow | dd97f85 | 2005-04-23 18:47:23 -0700 | [diff] [blame] | 415 | *list = (*list)->next; |
| 416 | } |
| 417 | *list = ret; |
| 418 | } |
| 419 | |
Daniel Barkalow | 58e28af | 2005-04-23 20:29:22 -0700 | [diff] [blame] | 420 | struct commit *pop_most_recent_commit(struct commit_list **list, |
| 421 | unsigned int mark) |
Daniel Barkalow | dd97f85 | 2005-04-23 18:47:23 -0700 | [diff] [blame] | 422 | { |
| 423 | struct commit *ret = (*list)->item; |
| 424 | struct commit_list *parents = ret->parents; |
| 425 | struct commit_list *old = *list; |
| 426 | |
| 427 | *list = (*list)->next; |
| 428 | free(old); |
| 429 | |
| 430 | while (parents) { |
Linus Torvalds | 4056c09 | 2005-04-23 19:21:28 -0700 | [diff] [blame] | 431 | struct commit *commit = parents->item; |
Daniel Barkalow | 58e28af | 2005-04-23 20:29:22 -0700 | [diff] [blame] | 432 | parse_commit(commit); |
| 433 | if (!(commit->object.flags & mark)) { |
| 434 | commit->object.flags |= mark; |
Linus Torvalds | f755494 | 2005-07-06 09:31:17 -0700 | [diff] [blame] | 435 | insert_by_date(commit, list); |
Linus Torvalds | 4056c09 | 2005-04-23 19:21:28 -0700 | [diff] [blame] | 436 | } |
Daniel Barkalow | dd97f85 | 2005-04-23 18:47:23 -0700 | [diff] [blame] | 437 | parents = parents->next; |
| 438 | } |
| 439 | return ret; |
| 440 | } |
Linus Torvalds | e3bc7a3 | 2005-06-01 08:34:23 -0700 | [diff] [blame] | 441 | |
Junio C Hamano | f8f9c73 | 2006-01-07 18:52:42 -0800 | [diff] [blame] | 442 | void clear_commit_marks(struct commit *commit, unsigned int mark) |
| 443 | { |
Johannes Schindelin | 60fcc2e | 2007-10-10 23:14:35 +0100 | [diff] [blame] | 444 | while (commit) { |
| 445 | struct commit_list *parents; |
Junio C Hamano | f8f9c73 | 2006-01-07 18:52:42 -0800 | [diff] [blame] | 446 | |
Johannes Schindelin | 60fcc2e | 2007-10-10 23:14:35 +0100 | [diff] [blame] | 447 | if (!(mark & commit->object.flags)) |
| 448 | return; |
Junio C Hamano | 58ecf5c | 2006-07-04 17:45:22 -0700 | [diff] [blame] | 449 | |
Johannes Schindelin | 60fcc2e | 2007-10-10 23:14:35 +0100 | [diff] [blame] | 450 | commit->object.flags &= ~mark; |
| 451 | |
| 452 | parents = commit->parents; |
| 453 | if (!parents) |
| 454 | return; |
| 455 | |
| 456 | while ((parents = parents->next)) |
| 457 | clear_commit_marks(parents->item, mark); |
| 458 | |
| 459 | commit = commit->parents->item; |
Junio C Hamano | f8f9c73 | 2006-01-07 18:52:42 -0800 | [diff] [blame] | 460 | } |
| 461 | } |
| 462 | |
Linus Torvalds | e3bc7a3 | 2005-06-01 08:34:23 -0700 | [diff] [blame] | 463 | /* |
| 464 | * Generic support for pretty-printing the header |
| 465 | */ |
Pierre Habouzit | 674d172 | 2007-09-10 12:35:06 +0200 | [diff] [blame] | 466 | static int get_one_line(const char *msg) |
Linus Torvalds | e3bc7a3 | 2005-06-01 08:34:23 -0700 | [diff] [blame] | 467 | { |
| 468 | int ret = 0; |
| 469 | |
Pierre Habouzit | 674d172 | 2007-09-10 12:35:06 +0200 | [diff] [blame] | 470 | for (;;) { |
Linus Torvalds | e3bc7a3 | 2005-06-01 08:34:23 -0700 | [diff] [blame] | 471 | char c = *msg++; |
Linus Torvalds | 684958a | 2006-04-12 11:31:23 -0700 | [diff] [blame] | 472 | if (!c) |
| 473 | break; |
Linus Torvalds | e3bc7a3 | 2005-06-01 08:34:23 -0700 | [diff] [blame] | 474 | ret++; |
| 475 | if (c == '\n') |
| 476 | break; |
Linus Torvalds | e3bc7a3 | 2005-06-01 08:34:23 -0700 | [diff] [blame] | 477 | } |
| 478 | return ret; |
| 479 | } |
| 480 | |
Junio C Hamano | f7e68b2 | 2007-01-12 17:32:38 -0800 | [diff] [blame] | 481 | /* High bit set, or ISO-2022-INT */ |
| 482 | static int non_ascii(int ch) |
Junio C Hamano | cdd406e | 2006-05-16 02:29:42 -0700 | [diff] [blame] | 483 | { |
Junio C Hamano | f7e68b2 | 2007-01-12 17:32:38 -0800 | [diff] [blame] | 484 | ch = (ch & 0xff); |
| 485 | return ((ch & 0x80) || (ch == 0x1b)); |
Junio C Hamano | cdd406e | 2006-05-16 02:29:42 -0700 | [diff] [blame] | 486 | } |
| 487 | |
Junio C Hamano | f7e68b2 | 2007-01-12 17:32:38 -0800 | [diff] [blame] | 488 | static int is_rfc2047_special(char ch) |
| 489 | { |
| 490 | return (non_ascii(ch) || (ch == '=') || (ch == '?') || (ch == '_')); |
| 491 | } |
| 492 | |
Pierre Habouzit | 674d172 | 2007-09-10 12:35:06 +0200 | [diff] [blame] | 493 | static void add_rfc2047(struct strbuf *sb, const char *line, int len, |
Junio C Hamano | f7e68b2 | 2007-01-12 17:32:38 -0800 | [diff] [blame] | 494 | const char *encoding) |
Junio C Hamano | cdd406e | 2006-05-16 02:29:42 -0700 | [diff] [blame] | 495 | { |
Pierre Habouzit | 674d172 | 2007-09-10 12:35:06 +0200 | [diff] [blame] | 496 | int i, last; |
Junio C Hamano | cdd406e | 2006-05-16 02:29:42 -0700 | [diff] [blame] | 497 | |
Pierre Habouzit | 674d172 | 2007-09-10 12:35:06 +0200 | [diff] [blame] | 498 | for (i = 0; i < len; i++) { |
Junio C Hamano | f7e68b2 | 2007-01-12 17:32:38 -0800 | [diff] [blame] | 499 | int ch = line[i]; |
| 500 | if (non_ascii(ch)) |
Pierre Habouzit | 674d172 | 2007-09-10 12:35:06 +0200 | [diff] [blame] | 501 | goto needquote; |
| 502 | if ((i + 1 < len) && (ch == '=' && line[i+1] == '?')) |
| 503 | goto needquote; |
Junio C Hamano | cdd406e | 2006-05-16 02:29:42 -0700 | [diff] [blame] | 504 | } |
Pierre Habouzit | 674d172 | 2007-09-10 12:35:06 +0200 | [diff] [blame] | 505 | strbuf_add(sb, line, len); |
| 506 | return; |
Junio C Hamano | cdd406e | 2006-05-16 02:29:42 -0700 | [diff] [blame] | 507 | |
Pierre Habouzit | 674d172 | 2007-09-10 12:35:06 +0200 | [diff] [blame] | 508 | needquote: |
Pierre Habouzit | 8b6087f | 2007-09-16 10:19:01 +0200 | [diff] [blame] | 509 | strbuf_grow(sb, len * 3 + strlen(encoding) + 100); |
Pierre Habouzit | 674d172 | 2007-09-10 12:35:06 +0200 | [diff] [blame] | 510 | strbuf_addf(sb, "=?%s?q?", encoding); |
| 511 | for (i = last = 0; i < len; i++) { |
Junio C Hamano | 0da4677 | 2006-06-19 15:00:17 -0700 | [diff] [blame] | 512 | unsigned ch = line[i] & 0xFF; |
Kristian Høgsberg | 996e2d6 | 2007-06-01 17:08:12 -0400 | [diff] [blame] | 513 | /* |
| 514 | * We encode ' ' using '=20' even though rfc2047 |
| 515 | * allows using '_' for readability. Unfortunately, |
| 516 | * many programs do not understand this and just |
| 517 | * leave the underscore in place. |
| 518 | */ |
| 519 | if (is_rfc2047_special(ch) || ch == ' ') { |
Pierre Habouzit | 674d172 | 2007-09-10 12:35:06 +0200 | [diff] [blame] | 520 | strbuf_add(sb, line + last, i - last); |
| 521 | strbuf_addf(sb, "=%02X", ch); |
| 522 | last = i + 1; |
Junio C Hamano | cdd406e | 2006-05-16 02:29:42 -0700 | [diff] [blame] | 523 | } |
Junio C Hamano | cdd406e | 2006-05-16 02:29:42 -0700 | [diff] [blame] | 524 | } |
Pierre Habouzit | 674d172 | 2007-09-10 12:35:06 +0200 | [diff] [blame] | 525 | strbuf_add(sb, line + last, len - last); |
| 526 | strbuf_addstr(sb, "?="); |
Junio C Hamano | cdd406e | 2006-05-16 02:29:42 -0700 | [diff] [blame] | 527 | } |
| 528 | |
Pierre Habouzit | 674d172 | 2007-09-10 12:35:06 +0200 | [diff] [blame] | 529 | static void add_user_info(const char *what, enum cmit_fmt fmt, struct strbuf *sb, |
Junio C Hamano | a7b02cc | 2007-04-24 23:36:22 -0700 | [diff] [blame] | 530 | const char *line, enum date_mode dmode, |
Junio C Hamano | f7e68b2 | 2007-01-12 17:32:38 -0800 | [diff] [blame] | 531 | const char *encoding) |
Linus Torvalds | e3bc7a3 | 2005-06-01 08:34:23 -0700 | [diff] [blame] | 532 | { |
| 533 | char *date; |
Junio C Hamano | 5de36bf | 2005-08-29 21:17:21 -0700 | [diff] [blame] | 534 | int namelen; |
Linus Torvalds | e3bc7a3 | 2005-06-01 08:34:23 -0700 | [diff] [blame] | 535 | unsigned long time; |
Pierre Habouzit | 674d172 | 2007-09-10 12:35:06 +0200 | [diff] [blame] | 536 | int tz; |
Junio C Hamano | ff56fe1 | 2005-11-09 22:15:27 -0800 | [diff] [blame] | 537 | const char *filler = " "; |
Linus Torvalds | e3bc7a3 | 2005-06-01 08:34:23 -0700 | [diff] [blame] | 538 | |
Junio C Hamano | d87449c | 2005-08-08 22:15:40 -0700 | [diff] [blame] | 539 | if (fmt == CMIT_FMT_ONELINE) |
Pierre Habouzit | 674d172 | 2007-09-10 12:35:06 +0200 | [diff] [blame] | 540 | return; |
Linus Torvalds | e3bc7a3 | 2005-06-01 08:34:23 -0700 | [diff] [blame] | 541 | date = strchr(line, '>'); |
| 542 | if (!date) |
Pierre Habouzit | 674d172 | 2007-09-10 12:35:06 +0200 | [diff] [blame] | 543 | return; |
Linus Torvalds | e3bc7a3 | 2005-06-01 08:34:23 -0700 | [diff] [blame] | 544 | namelen = ++date - line; |
| 545 | time = strtoul(date, &date, 10); |
| 546 | tz = strtol(date, NULL, 10); |
| 547 | |
Junio C Hamano | 3eefc18 | 2006-04-18 16:45:27 -0700 | [diff] [blame] | 548 | if (fmt == CMIT_FMT_EMAIL) { |
Junio C Hamano | cdd406e | 2006-05-16 02:29:42 -0700 | [diff] [blame] | 549 | char *name_tail = strchr(line, '<'); |
| 550 | int display_name_length; |
| 551 | if (!name_tail) |
Pierre Habouzit | 674d172 | 2007-09-10 12:35:06 +0200 | [diff] [blame] | 552 | return; |
Junio C Hamano | cdd406e | 2006-05-16 02:29:42 -0700 | [diff] [blame] | 553 | while (line < name_tail && isspace(name_tail[-1])) |
| 554 | name_tail--; |
| 555 | display_name_length = name_tail - line; |
Junio C Hamano | 3eefc18 | 2006-04-18 16:45:27 -0700 | [diff] [blame] | 556 | filler = ""; |
Pierre Habouzit | 674d172 | 2007-09-10 12:35:06 +0200 | [diff] [blame] | 557 | strbuf_addstr(sb, "From: "); |
| 558 | add_rfc2047(sb, line, display_name_length, encoding); |
| 559 | strbuf_add(sb, name_tail, namelen - display_name_length); |
| 560 | strbuf_addch(sb, '\n'); |
Pierre Habouzit | 8b6087f | 2007-09-16 10:19:01 +0200 | [diff] [blame] | 561 | } else { |
Pierre Habouzit | 674d172 | 2007-09-10 12:35:06 +0200 | [diff] [blame] | 562 | strbuf_addf(sb, "%s: %.*s%.*s\n", what, |
Junio C Hamano | cdd406e | 2006-05-16 02:29:42 -0700 | [diff] [blame] | 563 | (fmt == CMIT_FMT_FULLER) ? 4 : 0, |
| 564 | filler, namelen, line); |
| 565 | } |
Junio C Hamano | ff56fe1 | 2005-11-09 22:15:27 -0800 | [diff] [blame] | 566 | switch (fmt) { |
| 567 | case CMIT_FMT_MEDIUM: |
Pierre Habouzit | 674d172 | 2007-09-10 12:35:06 +0200 | [diff] [blame] | 568 | strbuf_addf(sb, "Date: %s\n", show_date(time, tz, dmode)); |
Junio C Hamano | ff56fe1 | 2005-11-09 22:15:27 -0800 | [diff] [blame] | 569 | break; |
Junio C Hamano | 3eefc18 | 2006-04-18 16:45:27 -0700 | [diff] [blame] | 570 | case CMIT_FMT_EMAIL: |
Pierre Habouzit | 674d172 | 2007-09-10 12:35:06 +0200 | [diff] [blame] | 571 | strbuf_addf(sb, "Date: %s\n", show_date(time, tz, DATE_RFC2822)); |
Junio C Hamano | 3eefc18 | 2006-04-18 16:45:27 -0700 | [diff] [blame] | 572 | break; |
Junio C Hamano | ff56fe1 | 2005-11-09 22:15:27 -0800 | [diff] [blame] | 573 | case CMIT_FMT_FULLER: |
Pierre Habouzit | 674d172 | 2007-09-10 12:35:06 +0200 | [diff] [blame] | 574 | strbuf_addf(sb, "%sDate: %s\n", what, show_date(time, tz, dmode)); |
Junio C Hamano | ff56fe1 | 2005-11-09 22:15:27 -0800 | [diff] [blame] | 575 | break; |
| 576 | default: |
| 577 | /* notin' */ |
| 578 | break; |
| 579 | } |
Linus Torvalds | e3bc7a3 | 2005-06-01 08:34:23 -0700 | [diff] [blame] | 580 | } |
| 581 | |
Junio C Hamano | 3eefc18 | 2006-04-18 16:45:27 -0700 | [diff] [blame] | 582 | static int is_empty_line(const char *line, int *len_p) |
Linus Torvalds | e3bc7a3 | 2005-06-01 08:34:23 -0700 | [diff] [blame] | 583 | { |
Junio C Hamano | 3eefc18 | 2006-04-18 16:45:27 -0700 | [diff] [blame] | 584 | int len = *len_p; |
Linus Torvalds | 000182e | 2005-06-05 09:02:03 -0700 | [diff] [blame] | 585 | while (len && isspace(line[len-1])) |
| 586 | len--; |
Junio C Hamano | 3eefc18 | 2006-04-18 16:45:27 -0700 | [diff] [blame] | 587 | *len_p = len; |
Linus Torvalds | 000182e | 2005-06-05 09:02:03 -0700 | [diff] [blame] | 588 | return !len; |
| 589 | } |
| 590 | |
Pierre Habouzit | 674d172 | 2007-09-10 12:35:06 +0200 | [diff] [blame] | 591 | static void add_merge_info(enum cmit_fmt fmt, struct strbuf *sb, |
| 592 | const struct commit *commit, int abbrev) |
Linus Torvalds | 28342a5 | 2005-06-18 13:52:05 -0700 | [diff] [blame] | 593 | { |
Junio C Hamano | f2d4227 | 2006-01-27 02:17:19 -0800 | [diff] [blame] | 594 | struct commit_list *parent = commit->parents; |
Junio C Hamano | d87449c | 2005-08-08 22:15:40 -0700 | [diff] [blame] | 595 | |
Junio C Hamano | 3eefc18 | 2006-04-18 16:45:27 -0700 | [diff] [blame] | 596 | if ((fmt == CMIT_FMT_ONELINE) || (fmt == CMIT_FMT_EMAIL) || |
| 597 | !parent || !parent->next) |
Pierre Habouzit | 674d172 | 2007-09-10 12:35:06 +0200 | [diff] [blame] | 598 | return; |
Junio C Hamano | f2d4227 | 2006-01-27 02:17:19 -0800 | [diff] [blame] | 599 | |
Pierre Habouzit | 674d172 | 2007-09-10 12:35:06 +0200 | [diff] [blame] | 600 | strbuf_addstr(sb, "Merge:"); |
Junio C Hamano | f2d4227 | 2006-01-27 02:17:19 -0800 | [diff] [blame] | 601 | |
| 602 | while (parent) { |
| 603 | struct commit *p = parent->item; |
Eric Wong | 14763e7 | 2006-10-11 16:16:02 -0700 | [diff] [blame] | 604 | const char *hex = NULL; |
| 605 | const char *dots; |
| 606 | if (abbrev) |
| 607 | hex = find_unique_abbrev(p->object.sha1, abbrev); |
| 608 | if (!hex) |
| 609 | hex = sha1_to_hex(p->object.sha1); |
| 610 | dots = (abbrev && strlen(hex) != 40) ? "..." : ""; |
Junio C Hamano | f2d4227 | 2006-01-27 02:17:19 -0800 | [diff] [blame] | 611 | parent = parent->next; |
| 612 | |
Pierre Habouzit | 674d172 | 2007-09-10 12:35:06 +0200 | [diff] [blame] | 613 | strbuf_addf(sb, " %s%s", hex, dots); |
Linus Torvalds | 28342a5 | 2005-06-18 13:52:05 -0700 | [diff] [blame] | 614 | } |
Pierre Habouzit | 674d172 | 2007-09-10 12:35:06 +0200 | [diff] [blame] | 615 | strbuf_addch(sb, '\n'); |
Linus Torvalds | 28342a5 | 2005-06-18 13:52:05 -0700 | [diff] [blame] | 616 | } |
| 617 | |
Junio C Hamano | 52883fb | 2006-12-25 11:48:35 -0800 | [diff] [blame] | 618 | static char *get_header(const struct commit *commit, const char *key) |
| 619 | { |
| 620 | int key_len = strlen(key); |
| 621 | const char *line = commit->buffer; |
| 622 | |
| 623 | for (;;) { |
| 624 | const char *eol = strchr(line, '\n'), *next; |
| 625 | |
| 626 | if (line == eol) |
| 627 | return NULL; |
| 628 | if (!eol) { |
| 629 | eol = line + strlen(line); |
| 630 | next = NULL; |
| 631 | } else |
| 632 | next = eol + 1; |
Alex Riesen | e102d43 | 2007-05-04 23:51:32 +0200 | [diff] [blame] | 633 | if (eol - line > key_len && |
| 634 | !strncmp(line, key, key_len) && |
| 635 | line[key_len] == ' ') { |
Pierre Habouzit | 182af83 | 2007-09-16 00:32:36 +0200 | [diff] [blame] | 636 | return xmemdupz(line + key_len + 1, eol - line - key_len - 1); |
Junio C Hamano | 52883fb | 2006-12-25 11:48:35 -0800 | [diff] [blame] | 637 | } |
| 638 | line = next; |
| 639 | } |
| 640 | } |
| 641 | |
Shawn O. Pearce | 3a55602 | 2007-03-06 20:44:17 -0500 | [diff] [blame] | 642 | static char *replace_encoding_header(char *buf, const char *encoding) |
Junio C Hamano | 53af981 | 2006-12-30 15:49:32 -0800 | [diff] [blame] | 643 | { |
Pierre Habouzit | a08f23a | 2007-09-15 23:50:12 +0200 | [diff] [blame] | 644 | struct strbuf tmp; |
| 645 | size_t start, len; |
| 646 | char *cp = buf; |
Junio C Hamano | 53af981 | 2006-12-30 15:49:32 -0800 | [diff] [blame] | 647 | |
Pierre Habouzit | a08f23a | 2007-09-15 23:50:12 +0200 | [diff] [blame] | 648 | /* guess if there is an encoding header before a \n\n */ |
| 649 | while (strncmp(cp, "encoding ", strlen("encoding "))) { |
| 650 | cp = strchr(cp, '\n'); |
| 651 | if (!cp || *++cp == '\n') |
| 652 | return buf; |
| 653 | } |
| 654 | start = cp - buf; |
| 655 | cp = strchr(cp, '\n'); |
| 656 | if (!cp) |
Junio C Hamano | 53af981 | 2006-12-30 15:49:32 -0800 | [diff] [blame] | 657 | return buf; /* should not happen but be defensive */ |
Pierre Habouzit | a08f23a | 2007-09-15 23:50:12 +0200 | [diff] [blame] | 658 | len = cp + 1 - (buf + start); |
Junio C Hamano | 53af981 | 2006-12-30 15:49:32 -0800 | [diff] [blame] | 659 | |
Pierre Habouzit | a08f23a | 2007-09-15 23:50:12 +0200 | [diff] [blame] | 660 | strbuf_init(&tmp, 0); |
| 661 | strbuf_attach(&tmp, buf, strlen(buf), strlen(buf) + 1); |
Junio C Hamano | 53af981 | 2006-12-30 15:49:32 -0800 | [diff] [blame] | 662 | if (is_encoding_utf8(encoding)) { |
| 663 | /* we have re-coded to UTF-8; drop the header */ |
Pierre Habouzit | c76689d | 2007-09-20 00:42:12 +0200 | [diff] [blame] | 664 | strbuf_remove(&tmp, start, len); |
Pierre Habouzit | a08f23a | 2007-09-15 23:50:12 +0200 | [diff] [blame] | 665 | } else { |
| 666 | /* just replaces XXXX in 'encoding XXXX\n' */ |
| 667 | strbuf_splice(&tmp, start + strlen("encoding "), |
| 668 | len - strlen("encoding \n"), |
| 669 | encoding, strlen(encoding)); |
Junio C Hamano | 53af981 | 2006-12-30 15:49:32 -0800 | [diff] [blame] | 670 | } |
Pierre Habouzit | b315c5c | 2007-09-27 12:58:23 +0200 | [diff] [blame] | 671 | return strbuf_detach(&tmp, NULL); |
Junio C Hamano | 53af981 | 2006-12-30 15:49:32 -0800 | [diff] [blame] | 672 | } |
| 673 | |
Junio C Hamano | f7e68b2 | 2007-01-12 17:32:38 -0800 | [diff] [blame] | 674 | static char *logmsg_reencode(const struct commit *commit, |
Shawn O. Pearce | 3a55602 | 2007-03-06 20:44:17 -0500 | [diff] [blame] | 675 | const char *output_encoding) |
Junio C Hamano | 52883fb | 2006-12-25 11:48:35 -0800 | [diff] [blame] | 676 | { |
Shawn O. Pearce | 3a55602 | 2007-03-06 20:44:17 -0500 | [diff] [blame] | 677 | static const char *utf8 = "utf-8"; |
| 678 | const char *use_encoding; |
Junio C Hamano | d2c11a3 | 2006-12-27 16:41:33 -0800 | [diff] [blame] | 679 | char *encoding; |
Junio C Hamano | 52883fb | 2006-12-25 11:48:35 -0800 | [diff] [blame] | 680 | char *out; |
| 681 | |
Junio C Hamano | f7e68b2 | 2007-01-12 17:32:38 -0800 | [diff] [blame] | 682 | if (!*output_encoding) |
Junio C Hamano | 52883fb | 2006-12-25 11:48:35 -0800 | [diff] [blame] | 683 | return NULL; |
Junio C Hamano | d2c11a3 | 2006-12-27 16:41:33 -0800 | [diff] [blame] | 684 | encoding = get_header(commit, "encoding"); |
Shawn O. Pearce | 3a55602 | 2007-03-06 20:44:17 -0500 | [diff] [blame] | 685 | use_encoding = encoding ? encoding : utf8; |
| 686 | if (!strcmp(use_encoding, output_encoding)) |
Marco Costalba | c4640fe | 2007-07-22 10:23:05 +0200 | [diff] [blame] | 687 | if (encoding) /* we'll strip encoding header later */ |
| 688 | out = xstrdup(commit->buffer); |
| 689 | else |
| 690 | return NULL; /* nothing to do */ |
Junio C Hamano | e90068a | 2006-12-31 18:18:23 -0800 | [diff] [blame] | 691 | else |
| 692 | out = reencode_string(commit->buffer, |
Shawn O. Pearce | 3a55602 | 2007-03-06 20:44:17 -0500 | [diff] [blame] | 693 | output_encoding, use_encoding); |
Junio C Hamano | 53af981 | 2006-12-30 15:49:32 -0800 | [diff] [blame] | 694 | if (out) |
| 695 | out = replace_encoding_header(out, output_encoding); |
| 696 | |
Shawn O. Pearce | 3a55602 | 2007-03-06 20:44:17 -0500 | [diff] [blame] | 697 | free(encoding); |
Junio C Hamano | 52883fb | 2006-12-25 11:48:35 -0800 | [diff] [blame] | 698 | return out; |
| 699 | } |
| 700 | |
Johannes Schindelin | e52a5de | 2007-02-23 01:35:03 +0100 | [diff] [blame] | 701 | static void fill_person(struct interp *table, const char *msg, int len) |
| 702 | { |
| 703 | int start, end, tz = 0; |
| 704 | unsigned long date; |
| 705 | char *ep; |
| 706 | |
| 707 | /* parse name */ |
| 708 | for (end = 0; end < len && msg[end] != '<'; end++) |
| 709 | ; /* do nothing */ |
| 710 | start = end + 1; |
| 711 | while (end > 0 && isspace(msg[end - 1])) |
| 712 | end--; |
Pierre Habouzit | 182af83 | 2007-09-16 00:32:36 +0200 | [diff] [blame] | 713 | table[0].value = xmemdupz(msg, end); |
Johannes Schindelin | e52a5de | 2007-02-23 01:35:03 +0100 | [diff] [blame] | 714 | |
| 715 | if (start >= len) |
| 716 | return; |
| 717 | |
| 718 | /* parse email */ |
| 719 | for (end = start + 1; end < len && msg[end] != '>'; end++) |
| 720 | ; /* do nothing */ |
| 721 | |
| 722 | if (end >= len) |
| 723 | return; |
| 724 | |
Pierre Habouzit | 182af83 | 2007-09-16 00:32:36 +0200 | [diff] [blame] | 725 | table[1].value = xmemdupz(msg + start, end - start); |
Johannes Schindelin | e52a5de | 2007-02-23 01:35:03 +0100 | [diff] [blame] | 726 | |
| 727 | /* parse date */ |
| 728 | for (start = end + 1; start < len && isspace(msg[start]); start++) |
| 729 | ; /* do nothing */ |
| 730 | if (start >= len) |
| 731 | return; |
| 732 | date = strtoul(msg + start, &ep, 10); |
| 733 | if (msg + start == ep) |
| 734 | return; |
| 735 | |
Pierre Habouzit | 182af83 | 2007-09-16 00:32:36 +0200 | [diff] [blame] | 736 | table[5].value = xmemdupz(msg + start, ep - (msg + start)); |
Johannes Schindelin | e52a5de | 2007-02-23 01:35:03 +0100 | [diff] [blame] | 737 | |
| 738 | /* parse tz */ |
| 739 | for (start = ep - msg + 1; start < len && isspace(msg[start]); start++) |
| 740 | ; /* do nothing */ |
| 741 | if (start + 1 < len) { |
| 742 | tz = strtoul(msg + start + 1, NULL, 10); |
| 743 | if (msg[start] == '-') |
| 744 | tz = -tz; |
| 745 | } |
| 746 | |
Junio C Hamano | 73013af | 2007-07-13 23:14:52 -0700 | [diff] [blame] | 747 | interp_set_entry(table, 2, show_date(date, tz, DATE_NORMAL)); |
| 748 | interp_set_entry(table, 3, show_date(date, tz, DATE_RFC2822)); |
| 749 | interp_set_entry(table, 4, show_date(date, tz, DATE_RELATIVE)); |
Robin Rosenberg | ee8f838 | 2007-07-14 01:00:42 +0200 | [diff] [blame] | 750 | interp_set_entry(table, 6, show_date(date, tz, DATE_ISO8601)); |
Johannes Schindelin | e52a5de | 2007-02-23 01:35:03 +0100 | [diff] [blame] | 751 | } |
| 752 | |
Pierre Habouzit | 674d172 | 2007-09-10 12:35:06 +0200 | [diff] [blame] | 753 | void format_commit_message(const struct commit *commit, |
| 754 | const void *format, struct strbuf *sb) |
Johannes Schindelin | e52a5de | 2007-02-23 01:35:03 +0100 | [diff] [blame] | 755 | { |
| 756 | struct interp table[] = { |
| 757 | { "%H" }, /* commit hash */ |
| 758 | { "%h" }, /* abbreviated commit hash */ |
| 759 | { "%T" }, /* tree hash */ |
| 760 | { "%t" }, /* abbreviated tree hash */ |
| 761 | { "%P" }, /* parent hashes */ |
| 762 | { "%p" }, /* abbreviated parent hashes */ |
| 763 | { "%an" }, /* author name */ |
| 764 | { "%ae" }, /* author email */ |
| 765 | { "%ad" }, /* author date */ |
| 766 | { "%aD" }, /* author date, RFC2822 style */ |
| 767 | { "%ar" }, /* author date, relative */ |
| 768 | { "%at" }, /* author date, UNIX timestamp */ |
Robin Rosenberg | ee8f838 | 2007-07-14 01:00:42 +0200 | [diff] [blame] | 769 | { "%ai" }, /* author date, ISO 8601 */ |
Johannes Schindelin | e52a5de | 2007-02-23 01:35:03 +0100 | [diff] [blame] | 770 | { "%cn" }, /* committer name */ |
| 771 | { "%ce" }, /* committer email */ |
| 772 | { "%cd" }, /* committer date */ |
| 773 | { "%cD" }, /* committer date, RFC2822 style */ |
| 774 | { "%cr" }, /* committer date, relative */ |
| 775 | { "%ct" }, /* committer date, UNIX timestamp */ |
Robin Rosenberg | ee8f838 | 2007-07-14 01:00:42 +0200 | [diff] [blame] | 776 | { "%ci" }, /* committer date, ISO 8601 */ |
Johannes Schindelin | e52a5de | 2007-02-23 01:35:03 +0100 | [diff] [blame] | 777 | { "%e" }, /* encoding */ |
| 778 | { "%s" }, /* subject */ |
| 779 | { "%b" }, /* body */ |
| 780 | { "%Cred" }, /* red */ |
| 781 | { "%Cgreen" }, /* green */ |
| 782 | { "%Cblue" }, /* blue */ |
| 783 | { "%Creset" }, /* reset color */ |
Junio C Hamano | 199c45b | 2007-04-09 02:34:05 -0700 | [diff] [blame] | 784 | { "%n" }, /* newline */ |
| 785 | { "%m" }, /* left/right/bottom */ |
Johannes Schindelin | e52a5de | 2007-02-23 01:35:03 +0100 | [diff] [blame] | 786 | }; |
| 787 | enum interp_index { |
| 788 | IHASH = 0, IHASH_ABBREV, |
| 789 | ITREE, ITREE_ABBREV, |
| 790 | IPARENTS, IPARENTS_ABBREV, |
| 791 | IAUTHOR_NAME, IAUTHOR_EMAIL, |
| 792 | IAUTHOR_DATE, IAUTHOR_DATE_RFC2822, IAUTHOR_DATE_RELATIVE, |
Robin Rosenberg | ee8f838 | 2007-07-14 01:00:42 +0200 | [diff] [blame] | 793 | IAUTHOR_TIMESTAMP, IAUTHOR_ISO8601, |
Johannes Schindelin | e52a5de | 2007-02-23 01:35:03 +0100 | [diff] [blame] | 794 | ICOMMITTER_NAME, ICOMMITTER_EMAIL, |
| 795 | ICOMMITTER_DATE, ICOMMITTER_DATE_RFC2822, |
| 796 | ICOMMITTER_DATE_RELATIVE, ICOMMITTER_TIMESTAMP, |
Robin Rosenberg | ee8f838 | 2007-07-14 01:00:42 +0200 | [diff] [blame] | 797 | ICOMMITTER_ISO8601, |
Johannes Schindelin | e52a5de | 2007-02-23 01:35:03 +0100 | [diff] [blame] | 798 | IENCODING, |
| 799 | ISUBJECT, |
| 800 | IBODY, |
| 801 | IRED, IGREEN, IBLUE, IRESET_COLOR, |
Junio C Hamano | 199c45b | 2007-04-09 02:34:05 -0700 | [diff] [blame] | 802 | INEWLINE, |
| 803 | ILEFT_RIGHT, |
Johannes Schindelin | e52a5de | 2007-02-23 01:35:03 +0100 | [diff] [blame] | 804 | }; |
| 805 | struct commit_list *p; |
| 806 | char parents[1024]; |
Pierre Habouzit | 674d172 | 2007-09-10 12:35:06 +0200 | [diff] [blame] | 807 | unsigned long len; |
Johannes Schindelin | e52a5de | 2007-02-23 01:35:03 +0100 | [diff] [blame] | 808 | int i; |
| 809 | enum { HEADER, SUBJECT, BODY } state; |
Ren,bi(B Scharfe | 7b95089 | 2007-09-03 20:06:36 +0200 | [diff] [blame] | 810 | const char *msg = commit->buffer; |
Johannes Schindelin | e52a5de | 2007-02-23 01:35:03 +0100 | [diff] [blame] | 811 | |
Junio C Hamano | 199c45b | 2007-04-09 02:34:05 -0700 | [diff] [blame] | 812 | if (ILEFT_RIGHT + 1 != ARRAY_SIZE(table)) |
Johannes Schindelin | e52a5de | 2007-02-23 01:35:03 +0100 | [diff] [blame] | 813 | die("invalid interp table!"); |
| 814 | |
| 815 | /* these are independent of the commit */ |
| 816 | interp_set_entry(table, IRED, "\033[31m"); |
| 817 | interp_set_entry(table, IGREEN, "\033[32m"); |
| 818 | interp_set_entry(table, IBLUE, "\033[34m"); |
| 819 | interp_set_entry(table, IRESET_COLOR, "\033[m"); |
| 820 | interp_set_entry(table, INEWLINE, "\n"); |
| 821 | |
| 822 | /* these depend on the commit */ |
| 823 | if (!commit->object.parsed) |
| 824 | parse_object(commit->object.sha1); |
| 825 | interp_set_entry(table, IHASH, sha1_to_hex(commit->object.sha1)); |
| 826 | interp_set_entry(table, IHASH_ABBREV, |
| 827 | find_unique_abbrev(commit->object.sha1, |
| 828 | DEFAULT_ABBREV)); |
| 829 | interp_set_entry(table, ITREE, sha1_to_hex(commit->tree->object.sha1)); |
| 830 | interp_set_entry(table, ITREE_ABBREV, |
| 831 | find_unique_abbrev(commit->tree->object.sha1, |
| 832 | DEFAULT_ABBREV)); |
Junio C Hamano | 199c45b | 2007-04-09 02:34:05 -0700 | [diff] [blame] | 833 | interp_set_entry(table, ILEFT_RIGHT, |
| 834 | (commit->object.flags & BOUNDARY) |
| 835 | ? "-" |
| 836 | : (commit->object.flags & SYMMETRIC_LEFT) |
| 837 | ? "<" |
| 838 | : ">"); |
Junio C Hamano | 542e165 | 2007-03-28 13:33:37 -0700 | [diff] [blame] | 839 | |
| 840 | parents[1] = 0; |
Johannes Schindelin | e52a5de | 2007-02-23 01:35:03 +0100 | [diff] [blame] | 841 | for (i = 0, p = commit->parents; |
| 842 | p && i < sizeof(parents) - 1; |
| 843 | p = p->next) |
Junio C Hamano | 542e165 | 2007-03-28 13:33:37 -0700 | [diff] [blame] | 844 | i += snprintf(parents + i, sizeof(parents) - i - 1, " %s", |
Johannes Schindelin | e52a5de | 2007-02-23 01:35:03 +0100 | [diff] [blame] | 845 | sha1_to_hex(p->item->object.sha1)); |
Junio C Hamano | 542e165 | 2007-03-28 13:33:37 -0700 | [diff] [blame] | 846 | interp_set_entry(table, IPARENTS, parents + 1); |
| 847 | |
| 848 | parents[1] = 0; |
Johannes Schindelin | e52a5de | 2007-02-23 01:35:03 +0100 | [diff] [blame] | 849 | for (i = 0, p = commit->parents; |
| 850 | p && i < sizeof(parents) - 1; |
| 851 | p = p->next) |
Junio C Hamano | 542e165 | 2007-03-28 13:33:37 -0700 | [diff] [blame] | 852 | i += snprintf(parents + i, sizeof(parents) - i - 1, " %s", |
Johannes Schindelin | e52a5de | 2007-02-23 01:35:03 +0100 | [diff] [blame] | 853 | find_unique_abbrev(p->item->object.sha1, |
| 854 | DEFAULT_ABBREV)); |
Junio C Hamano | 542e165 | 2007-03-28 13:33:37 -0700 | [diff] [blame] | 855 | interp_set_entry(table, IPARENTS_ABBREV, parents + 1); |
Johannes Schindelin | e52a5de | 2007-02-23 01:35:03 +0100 | [diff] [blame] | 856 | |
| 857 | for (i = 0, state = HEADER; msg[i] && state < BODY; i++) { |
| 858 | int eol; |
| 859 | for (eol = i; msg[eol] && msg[eol] != '\n'; eol++) |
| 860 | ; /* do nothing */ |
| 861 | |
| 862 | if (state == SUBJECT) { |
Pierre Habouzit | 182af83 | 2007-09-16 00:32:36 +0200 | [diff] [blame] | 863 | table[ISUBJECT].value = xmemdupz(msg + i, eol - i); |
Johannes Schindelin | e52a5de | 2007-02-23 01:35:03 +0100 | [diff] [blame] | 864 | i = eol; |
| 865 | } |
| 866 | if (i == eol) { |
| 867 | state++; |
| 868 | /* strip empty lines */ |
| 869 | while (msg[eol + 1] == '\n') |
| 870 | eol++; |
| 871 | } else if (!prefixcmp(msg + i, "author ")) |
| 872 | fill_person(table + IAUTHOR_NAME, |
| 873 | msg + i + 7, eol - i - 7); |
| 874 | else if (!prefixcmp(msg + i, "committer ")) |
| 875 | fill_person(table + ICOMMITTER_NAME, |
| 876 | msg + i + 10, eol - i - 10); |
| 877 | else if (!prefixcmp(msg + i, "encoding ")) |
Jeff King | 6a5ea2d | 2007-03-28 17:09:05 -0400 | [diff] [blame] | 878 | table[IENCODING].value = |
Pierre Habouzit | 182af83 | 2007-09-16 00:32:36 +0200 | [diff] [blame] | 879 | xmemdupz(msg + i + 9, eol - i - 9); |
Johannes Schindelin | e52a5de | 2007-02-23 01:35:03 +0100 | [diff] [blame] | 880 | i = eol; |
| 881 | } |
| 882 | if (msg[i]) |
| 883 | table[IBODY].value = xstrdup(msg + i); |
Johannes Schindelin | e52a5de | 2007-02-23 01:35:03 +0100 | [diff] [blame] | 884 | |
Pierre Habouzit | 674d172 | 2007-09-10 12:35:06 +0200 | [diff] [blame] | 885 | len = interpolate(sb->buf + sb->len, strbuf_avail(sb), |
| 886 | format, table, ARRAY_SIZE(table)); |
| 887 | if (len > strbuf_avail(sb)) { |
| 888 | strbuf_grow(sb, len); |
| 889 | interpolate(sb->buf + sb->len, strbuf_avail(sb) + 1, |
| 890 | format, table, ARRAY_SIZE(table)); |
| 891 | } |
| 892 | strbuf_setlen(sb, sb->len + len); |
Johannes Schindelin | e52a5de | 2007-02-23 01:35:03 +0100 | [diff] [blame] | 893 | interp_clear_table(table, ARRAY_SIZE(table)); |
Johannes Schindelin | e52a5de | 2007-02-23 01:35:03 +0100 | [diff] [blame] | 894 | } |
| 895 | |
Junio C Hamano | 4234a76 | 2007-06-11 22:10:55 -0700 | [diff] [blame] | 896 | static void pp_header(enum cmit_fmt fmt, |
| 897 | int abbrev, |
| 898 | enum date_mode dmode, |
| 899 | const char *encoding, |
| 900 | const struct commit *commit, |
| 901 | const char **msg_p, |
Pierre Habouzit | 674d172 | 2007-09-10 12:35:06 +0200 | [diff] [blame] | 902 | struct strbuf *sb) |
Junio C Hamano | 4234a76 | 2007-06-11 22:10:55 -0700 | [diff] [blame] | 903 | { |
| 904 | int parents_shown = 0; |
| 905 | |
| 906 | for (;;) { |
| 907 | const char *line = *msg_p; |
Pierre Habouzit | 674d172 | 2007-09-10 12:35:06 +0200 | [diff] [blame] | 908 | int linelen = get_one_line(*msg_p); |
Junio C Hamano | 4234a76 | 2007-06-11 22:10:55 -0700 | [diff] [blame] | 909 | |
| 910 | if (!linelen) |
| 911 | return; |
| 912 | *msg_p += linelen; |
Junio C Hamano | 4234a76 | 2007-06-11 22:10:55 -0700 | [diff] [blame] | 913 | |
| 914 | if (linelen == 1) |
| 915 | /* End of header */ |
| 916 | return; |
| 917 | |
Junio C Hamano | 4234a76 | 2007-06-11 22:10:55 -0700 | [diff] [blame] | 918 | if (fmt == CMIT_FMT_RAW) { |
Pierre Habouzit | 674d172 | 2007-09-10 12:35:06 +0200 | [diff] [blame] | 919 | strbuf_add(sb, line, linelen); |
Junio C Hamano | 4234a76 | 2007-06-11 22:10:55 -0700 | [diff] [blame] | 920 | continue; |
| 921 | } |
| 922 | |
| 923 | if (!memcmp(line, "parent ", 7)) { |
| 924 | if (linelen != 48) |
| 925 | die("bad parent line in commit"); |
| 926 | continue; |
| 927 | } |
| 928 | |
| 929 | if (!parents_shown) { |
| 930 | struct commit_list *parent; |
| 931 | int num; |
| 932 | for (parent = commit->parents, num = 0; |
| 933 | parent; |
| 934 | parent = parent->next, num++) |
| 935 | ; |
| 936 | /* with enough slop */ |
Pierre Habouzit | 674d172 | 2007-09-10 12:35:06 +0200 | [diff] [blame] | 937 | strbuf_grow(sb, num * 50 + 20); |
| 938 | add_merge_info(fmt, sb, commit, abbrev); |
Junio C Hamano | 4234a76 | 2007-06-11 22:10:55 -0700 | [diff] [blame] | 939 | parents_shown = 1; |
| 940 | } |
| 941 | |
| 942 | /* |
| 943 | * MEDIUM == DEFAULT shows only author with dates. |
| 944 | * FULL shows both authors but not dates. |
| 945 | * FULLER shows both authors and dates. |
| 946 | */ |
| 947 | if (!memcmp(line, "author ", 7)) { |
Pierre Habouzit | 8b6087f | 2007-09-16 10:19:01 +0200 | [diff] [blame] | 948 | strbuf_grow(sb, linelen + 80); |
Pierre Habouzit | 674d172 | 2007-09-10 12:35:06 +0200 | [diff] [blame] | 949 | add_user_info("Author", fmt, sb, line + 7, dmode, encoding); |
Junio C Hamano | 4234a76 | 2007-06-11 22:10:55 -0700 | [diff] [blame] | 950 | } |
Junio C Hamano | 4234a76 | 2007-06-11 22:10:55 -0700 | [diff] [blame] | 951 | if (!memcmp(line, "committer ", 10) && |
| 952 | (fmt == CMIT_FMT_FULL || fmt == CMIT_FMT_FULLER)) { |
Pierre Habouzit | 8b6087f | 2007-09-16 10:19:01 +0200 | [diff] [blame] | 953 | strbuf_grow(sb, linelen + 80); |
Pierre Habouzit | 674d172 | 2007-09-10 12:35:06 +0200 | [diff] [blame] | 954 | add_user_info("Commit", fmt, sb, line + 10, dmode, encoding); |
Junio C Hamano | 4234a76 | 2007-06-11 22:10:55 -0700 | [diff] [blame] | 955 | } |
| 956 | } |
| 957 | } |
| 958 | |
| 959 | static void pp_title_line(enum cmit_fmt fmt, |
| 960 | const char **msg_p, |
Pierre Habouzit | 674d172 | 2007-09-10 12:35:06 +0200 | [diff] [blame] | 961 | struct strbuf *sb, |
Junio C Hamano | 4234a76 | 2007-06-11 22:10:55 -0700 | [diff] [blame] | 962 | const char *subject, |
| 963 | const char *after_subject, |
| 964 | const char *encoding, |
| 965 | int plain_non_ascii) |
| 966 | { |
Pierre Habouzit | 674d172 | 2007-09-10 12:35:06 +0200 | [diff] [blame] | 967 | struct strbuf title; |
Junio C Hamano | 4234a76 | 2007-06-11 22:10:55 -0700 | [diff] [blame] | 968 | |
Pierre Habouzit | 674d172 | 2007-09-10 12:35:06 +0200 | [diff] [blame] | 969 | strbuf_init(&title, 80); |
| 970 | |
Junio C Hamano | 4234a76 | 2007-06-11 22:10:55 -0700 | [diff] [blame] | 971 | for (;;) { |
| 972 | const char *line = *msg_p; |
Pierre Habouzit | 674d172 | 2007-09-10 12:35:06 +0200 | [diff] [blame] | 973 | int linelen = get_one_line(line); |
Junio C Hamano | 4234a76 | 2007-06-11 22:10:55 -0700 | [diff] [blame] | 974 | |
Pierre Habouzit | 674d172 | 2007-09-10 12:35:06 +0200 | [diff] [blame] | 975 | *msg_p += linelen; |
Junio C Hamano | 4234a76 | 2007-06-11 22:10:55 -0700 | [diff] [blame] | 976 | if (!linelen || is_empty_line(line, &linelen)) |
| 977 | break; |
| 978 | |
Pierre Habouzit | 674d172 | 2007-09-10 12:35:06 +0200 | [diff] [blame] | 979 | strbuf_grow(&title, linelen + 2); |
| 980 | if (title.len) { |
Junio C Hamano | 4234a76 | 2007-06-11 22:10:55 -0700 | [diff] [blame] | 981 | if (fmt == CMIT_FMT_EMAIL) { |
Pierre Habouzit | 674d172 | 2007-09-10 12:35:06 +0200 | [diff] [blame] | 982 | strbuf_addch(&title, '\n'); |
Junio C Hamano | 4234a76 | 2007-06-11 22:10:55 -0700 | [diff] [blame] | 983 | } |
Pierre Habouzit | 674d172 | 2007-09-10 12:35:06 +0200 | [diff] [blame] | 984 | strbuf_addch(&title, ' '); |
Junio C Hamano | 4234a76 | 2007-06-11 22:10:55 -0700 | [diff] [blame] | 985 | } |
Pierre Habouzit | 674d172 | 2007-09-10 12:35:06 +0200 | [diff] [blame] | 986 | strbuf_add(&title, line, linelen); |
Junio C Hamano | 4234a76 | 2007-06-11 22:10:55 -0700 | [diff] [blame] | 987 | } |
| 988 | |
Pierre Habouzit | 8b6087f | 2007-09-16 10:19:01 +0200 | [diff] [blame] | 989 | strbuf_grow(sb, title.len + 1024); |
Junio C Hamano | 4234a76 | 2007-06-11 22:10:55 -0700 | [diff] [blame] | 990 | if (subject) { |
Pierre Habouzit | 674d172 | 2007-09-10 12:35:06 +0200 | [diff] [blame] | 991 | strbuf_addstr(sb, subject); |
| 992 | add_rfc2047(sb, title.buf, title.len, encoding); |
Junio C Hamano | 4234a76 | 2007-06-11 22:10:55 -0700 | [diff] [blame] | 993 | } else { |
Pierre Habouzit | 674d172 | 2007-09-10 12:35:06 +0200 | [diff] [blame] | 994 | strbuf_addbuf(sb, &title); |
Junio C Hamano | 4234a76 | 2007-06-11 22:10:55 -0700 | [diff] [blame] | 995 | } |
Pierre Habouzit | 674d172 | 2007-09-10 12:35:06 +0200 | [diff] [blame] | 996 | strbuf_addch(sb, '\n'); |
| 997 | |
Junio C Hamano | 4234a76 | 2007-06-11 22:10:55 -0700 | [diff] [blame] | 998 | if (plain_non_ascii) { |
| 999 | const char *header_fmt = |
| 1000 | "MIME-Version: 1.0\n" |
| 1001 | "Content-Type: text/plain; charset=%s\n" |
| 1002 | "Content-Transfer-Encoding: 8bit\n"; |
Pierre Habouzit | 674d172 | 2007-09-10 12:35:06 +0200 | [diff] [blame] | 1003 | strbuf_addf(sb, header_fmt, encoding); |
Junio C Hamano | 4234a76 | 2007-06-11 22:10:55 -0700 | [diff] [blame] | 1004 | } |
| 1005 | if (after_subject) { |
Pierre Habouzit | 674d172 | 2007-09-10 12:35:06 +0200 | [diff] [blame] | 1006 | strbuf_addstr(sb, after_subject); |
Junio C Hamano | 4234a76 | 2007-06-11 22:10:55 -0700 | [diff] [blame] | 1007 | } |
Junio C Hamano | 4234a76 | 2007-06-11 22:10:55 -0700 | [diff] [blame] | 1008 | if (fmt == CMIT_FMT_EMAIL) { |
Pierre Habouzit | 674d172 | 2007-09-10 12:35:06 +0200 | [diff] [blame] | 1009 | strbuf_addch(sb, '\n'); |
Junio C Hamano | 4234a76 | 2007-06-11 22:10:55 -0700 | [diff] [blame] | 1010 | } |
Pierre Habouzit | 674d172 | 2007-09-10 12:35:06 +0200 | [diff] [blame] | 1011 | strbuf_release(&title); |
Junio C Hamano | 4234a76 | 2007-06-11 22:10:55 -0700 | [diff] [blame] | 1012 | } |
| 1013 | |
| 1014 | static void pp_remainder(enum cmit_fmt fmt, |
| 1015 | const char **msg_p, |
Pierre Habouzit | 674d172 | 2007-09-10 12:35:06 +0200 | [diff] [blame] | 1016 | struct strbuf *sb, |
Junio C Hamano | 4234a76 | 2007-06-11 22:10:55 -0700 | [diff] [blame] | 1017 | int indent) |
| 1018 | { |
| 1019 | int first = 1; |
| 1020 | for (;;) { |
| 1021 | const char *line = *msg_p; |
Pierre Habouzit | 674d172 | 2007-09-10 12:35:06 +0200 | [diff] [blame] | 1022 | int linelen = get_one_line(line); |
Junio C Hamano | 4234a76 | 2007-06-11 22:10:55 -0700 | [diff] [blame] | 1023 | *msg_p += linelen; |
Junio C Hamano | 4234a76 | 2007-06-11 22:10:55 -0700 | [diff] [blame] | 1024 | |
| 1025 | if (!linelen) |
| 1026 | break; |
| 1027 | |
| 1028 | if (is_empty_line(line, &linelen)) { |
| 1029 | if (first) |
| 1030 | continue; |
| 1031 | if (fmt == CMIT_FMT_SHORT) |
| 1032 | break; |
| 1033 | } |
| 1034 | first = 0; |
| 1035 | |
Pierre Habouzit | 674d172 | 2007-09-10 12:35:06 +0200 | [diff] [blame] | 1036 | strbuf_grow(sb, linelen + indent + 20); |
Junio C Hamano | 4234a76 | 2007-06-11 22:10:55 -0700 | [diff] [blame] | 1037 | if (indent) { |
Pierre Habouzit | 674d172 | 2007-09-10 12:35:06 +0200 | [diff] [blame] | 1038 | memset(sb->buf + sb->len, ' ', indent); |
| 1039 | strbuf_setlen(sb, sb->len + indent); |
Junio C Hamano | 4234a76 | 2007-06-11 22:10:55 -0700 | [diff] [blame] | 1040 | } |
Pierre Habouzit | 674d172 | 2007-09-10 12:35:06 +0200 | [diff] [blame] | 1041 | strbuf_add(sb, line, linelen); |
| 1042 | strbuf_addch(sb, '\n'); |
Junio C Hamano | 4234a76 | 2007-06-11 22:10:55 -0700 | [diff] [blame] | 1043 | } |
Junio C Hamano | 52883fb | 2006-12-25 11:48:35 -0800 | [diff] [blame] | 1044 | } |
| 1045 | |
Pierre Habouzit | 674d172 | 2007-09-10 12:35:06 +0200 | [diff] [blame] | 1046 | void pretty_print_commit(enum cmit_fmt fmt, const struct commit *commit, |
| 1047 | struct strbuf *sb, int abbrev, |
| 1048 | const char *subject, const char *after_subject, |
Junio C Hamano | a7b02cc | 2007-04-24 23:36:22 -0700 | [diff] [blame] | 1049 | enum date_mode dmode) |
Linus Torvalds | 000182e | 2005-06-05 09:02:03 -0700 | [diff] [blame] | 1050 | { |
Junio C Hamano | 4234a76 | 2007-06-11 22:10:55 -0700 | [diff] [blame] | 1051 | unsigned long beginning_of_body; |
Junio C Hamano | 3eefc18 | 2006-04-18 16:45:27 -0700 | [diff] [blame] | 1052 | int indent = 4; |
Junio C Hamano | 3815f42 | 2006-01-27 01:54:59 -0800 | [diff] [blame] | 1053 | const char *msg = commit->buffer; |
Junio C Hamano | c831da6 | 2006-05-21 23:55:00 -0700 | [diff] [blame] | 1054 | int plain_non_ascii = 0; |
Junio C Hamano | f7e68b2 | 2007-01-12 17:32:38 -0800 | [diff] [blame] | 1055 | char *reencoded; |
Shawn O. Pearce | 3a55602 | 2007-03-06 20:44:17 -0500 | [diff] [blame] | 1056 | const char *encoding; |
Junio C Hamano | 52883fb | 2006-12-25 11:48:35 -0800 | [diff] [blame] | 1057 | |
Pierre Habouzit | 674d172 | 2007-09-10 12:35:06 +0200 | [diff] [blame] | 1058 | if (fmt == CMIT_FMT_USERFORMAT) { |
| 1059 | format_commit_message(commit, user_format, sb); |
| 1060 | return; |
| 1061 | } |
Johannes Schindelin | e52a5de | 2007-02-23 01:35:03 +0100 | [diff] [blame] | 1062 | |
Junio C Hamano | f7e68b2 | 2007-01-12 17:32:38 -0800 | [diff] [blame] | 1063 | encoding = (git_log_output_encoding |
| 1064 | ? git_log_output_encoding |
| 1065 | : git_commit_encoding); |
| 1066 | if (!encoding) |
| 1067 | encoding = "utf-8"; |
| 1068 | reencoded = logmsg_reencode(commit, encoding); |
Junio C Hamano | 4234a76 | 2007-06-11 22:10:55 -0700 | [diff] [blame] | 1069 | if (reencoded) { |
Junio C Hamano | d2c11a3 | 2006-12-27 16:41:33 -0800 | [diff] [blame] | 1070 | msg = reencoded; |
Junio C Hamano | 4234a76 | 2007-06-11 22:10:55 -0700 | [diff] [blame] | 1071 | } |
Junio C Hamano | 3eefc18 | 2006-04-18 16:45:27 -0700 | [diff] [blame] | 1072 | |
Junio C Hamano | 3eefc18 | 2006-04-18 16:45:27 -0700 | [diff] [blame] | 1073 | if (fmt == CMIT_FMT_ONELINE || fmt == CMIT_FMT_EMAIL) |
| 1074 | indent = 0; |
Linus Torvalds | e3bc7a3 | 2005-06-01 08:34:23 -0700 | [diff] [blame] | 1075 | |
Junio C Hamano | c831da6 | 2006-05-21 23:55:00 -0700 | [diff] [blame] | 1076 | /* After-subject is used to pass in Content-Type: multipart |
| 1077 | * MIME header; in that case we do not have to do the |
| 1078 | * plaintext content type even if the commit message has |
| 1079 | * non 7-bit ASCII character. Otherwise, check if we need |
| 1080 | * to say this is not a 7-bit ASCII. |
| 1081 | */ |
| 1082 | if (fmt == CMIT_FMT_EMAIL && !after_subject) { |
Junio C Hamano | 0da4677 | 2006-06-19 15:00:17 -0700 | [diff] [blame] | 1083 | int i, ch, in_body; |
| 1084 | |
Pierre Habouzit | 674d172 | 2007-09-10 12:35:06 +0200 | [diff] [blame] | 1085 | for (in_body = i = 0; (ch = msg[i]); i++) { |
Junio C Hamano | 0da4677 | 2006-06-19 15:00:17 -0700 | [diff] [blame] | 1086 | if (!in_body) { |
| 1087 | /* author could be non 7-bit ASCII but |
Junio C Hamano | d2c11a3 | 2006-12-27 16:41:33 -0800 | [diff] [blame] | 1088 | * the log may be so; skip over the |
Junio C Hamano | 0da4677 | 2006-06-19 15:00:17 -0700 | [diff] [blame] | 1089 | * header part first. |
| 1090 | */ |
Pierre Habouzit | 674d172 | 2007-09-10 12:35:06 +0200 | [diff] [blame] | 1091 | if (ch == '\n' && msg[i+1] == '\n') |
Junio C Hamano | 0da4677 | 2006-06-19 15:00:17 -0700 | [diff] [blame] | 1092 | in_body = 1; |
| 1093 | } |
Junio C Hamano | f7e68b2 | 2007-01-12 17:32:38 -0800 | [diff] [blame] | 1094 | else if (non_ascii(ch)) { |
Junio C Hamano | c831da6 | 2006-05-21 23:55:00 -0700 | [diff] [blame] | 1095 | plain_non_ascii = 1; |
Junio C Hamano | 0da4677 | 2006-06-19 15:00:17 -0700 | [diff] [blame] | 1096 | break; |
| 1097 | } |
| 1098 | } |
Junio C Hamano | c831da6 | 2006-05-21 23:55:00 -0700 | [diff] [blame] | 1099 | } |
| 1100 | |
Pierre Habouzit | 674d172 | 2007-09-10 12:35:06 +0200 | [diff] [blame] | 1101 | pp_header(fmt, abbrev, dmode, encoding, commit, &msg, sb); |
Junio C Hamano | 4234a76 | 2007-06-11 22:10:55 -0700 | [diff] [blame] | 1102 | if (fmt != CMIT_FMT_ONELINE && !subject) { |
Pierre Habouzit | 674d172 | 2007-09-10 12:35:06 +0200 | [diff] [blame] | 1103 | strbuf_addch(sb, '\n'); |
Junio C Hamano | 80583c0 | 2007-06-11 00:34:54 -0700 | [diff] [blame] | 1104 | } |
Linus Torvalds | e3bc7a3 | 2005-06-01 08:34:23 -0700 | [diff] [blame] | 1105 | |
Junio C Hamano | 4234a76 | 2007-06-11 22:10:55 -0700 | [diff] [blame] | 1106 | /* Skip excess blank lines at the beginning of body, if any... */ |
Linus Torvalds | e3bc7a3 | 2005-06-01 08:34:23 -0700 | [diff] [blame] | 1107 | for (;;) { |
Pierre Habouzit | 674d172 | 2007-09-10 12:35:06 +0200 | [diff] [blame] | 1108 | int linelen = get_one_line(msg); |
Junio C Hamano | 4234a76 | 2007-06-11 22:10:55 -0700 | [diff] [blame] | 1109 | int ll = linelen; |
Linus Torvalds | e3bc7a3 | 2005-06-01 08:34:23 -0700 | [diff] [blame] | 1110 | if (!linelen) |
| 1111 | break; |
Junio C Hamano | 4234a76 | 2007-06-11 22:10:55 -0700 | [diff] [blame] | 1112 | if (!is_empty_line(msg, &ll)) |
Linus Torvalds | e3bc7a3 | 2005-06-01 08:34:23 -0700 | [diff] [blame] | 1113 | break; |
Linus Torvalds | e3bc7a3 | 2005-06-01 08:34:23 -0700 | [diff] [blame] | 1114 | msg += linelen; |
Linus Torvalds | e3bc7a3 | 2005-06-01 08:34:23 -0700 | [diff] [blame] | 1115 | } |
Junio C Hamano | 4234a76 | 2007-06-11 22:10:55 -0700 | [diff] [blame] | 1116 | |
| 1117 | /* These formats treat the title line specially. */ |
Pierre Habouzit | 674d172 | 2007-09-10 12:35:06 +0200 | [diff] [blame] | 1118 | if (fmt == CMIT_FMT_ONELINE || fmt == CMIT_FMT_EMAIL) |
| 1119 | pp_title_line(fmt, &msg, sb, subject, |
| 1120 | after_subject, encoding, plain_non_ascii); |
Junio C Hamano | 4234a76 | 2007-06-11 22:10:55 -0700 | [diff] [blame] | 1121 | |
Pierre Habouzit | 674d172 | 2007-09-10 12:35:06 +0200 | [diff] [blame] | 1122 | beginning_of_body = sb->len; |
Junio C Hamano | 4234a76 | 2007-06-11 22:10:55 -0700 | [diff] [blame] | 1123 | if (fmt != CMIT_FMT_ONELINE) |
Pierre Habouzit | 674d172 | 2007-09-10 12:35:06 +0200 | [diff] [blame] | 1124 | pp_remainder(fmt, &msg, sb, indent); |
| 1125 | strbuf_rtrim(sb); |
Junio C Hamano | 4234a76 | 2007-06-11 22:10:55 -0700 | [diff] [blame] | 1126 | |
Linus Torvalds | 40c2fe0 | 2006-04-14 21:20:51 -0700 | [diff] [blame] | 1127 | /* Make sure there is an EOLN for the non-oneline case */ |
| 1128 | if (fmt != CMIT_FMT_ONELINE) |
Pierre Habouzit | 674d172 | 2007-09-10 12:35:06 +0200 | [diff] [blame] | 1129 | strbuf_addch(sb, '\n'); |
Junio C Hamano | 4234a76 | 2007-06-11 22:10:55 -0700 | [diff] [blame] | 1130 | |
Robert Shearman | 19b3bd3 | 2006-07-13 23:17:22 +0100 | [diff] [blame] | 1131 | /* |
Junio C Hamano | 4234a76 | 2007-06-11 22:10:55 -0700 | [diff] [blame] | 1132 | * The caller may append additional body text in e-mail |
| 1133 | * format. Make sure we did not strip the blank line |
| 1134 | * between the header and the body. |
Robert Shearman | 19b3bd3 | 2006-07-13 23:17:22 +0100 | [diff] [blame] | 1135 | */ |
Pierre Habouzit | 674d172 | 2007-09-10 12:35:06 +0200 | [diff] [blame] | 1136 | if (fmt == CMIT_FMT_EMAIL && sb->len <= beginning_of_body) |
| 1137 | strbuf_addch(sb, '\n'); |
Junio C Hamano | 52883fb | 2006-12-25 11:48:35 -0800 | [diff] [blame] | 1138 | free(reencoded); |
Linus Torvalds | e3bc7a3 | 2005-06-01 08:34:23 -0700 | [diff] [blame] | 1139 | } |
jon@blackcubes.dyndns.org | a3437b8 | 2005-06-06 15:39:40 +0000 | [diff] [blame] | 1140 | |
| 1141 | struct commit *pop_commit(struct commit_list **stack) |
| 1142 | { |
| 1143 | struct commit_list *top = *stack; |
| 1144 | struct commit *item = top ? top->item : NULL; |
| 1145 | |
| 1146 | if (top) { |
| 1147 | *stack = top->next; |
| 1148 | free(top); |
| 1149 | } |
| 1150 | return item; |
| 1151 | } |
| 1152 | |
Fredrik Kuivinen | 6b6dcfc | 2006-03-10 10:21:37 +0100 | [diff] [blame] | 1153 | void topo_sort_default_setter(struct commit *c, void *data) |
| 1154 | { |
Linus Torvalds | d3ff6f5 | 2006-06-17 18:26:18 -0700 | [diff] [blame] | 1155 | c->util = data; |
Fredrik Kuivinen | 6b6dcfc | 2006-03-10 10:21:37 +0100 | [diff] [blame] | 1156 | } |
| 1157 | |
| 1158 | void *topo_sort_default_getter(struct commit *c) |
| 1159 | { |
Linus Torvalds | d3ff6f5 | 2006-06-17 18:26:18 -0700 | [diff] [blame] | 1160 | return c->util; |
Fredrik Kuivinen | 6b6dcfc | 2006-03-10 10:21:37 +0100 | [diff] [blame] | 1161 | } |
| 1162 | |
Jon Seymour | ab580ac | 2005-07-07 02:39:34 +1000 | [diff] [blame] | 1163 | /* |
| 1164 | * Performs an in-place topological sort on the list supplied. |
| 1165 | */ |
Junio C Hamano | 4c8725f | 2006-02-15 22:05:33 -0800 | [diff] [blame] | 1166 | void sort_in_topological_order(struct commit_list ** list, int lifo) |
Jon Seymour | ab580ac | 2005-07-07 02:39:34 +1000 | [diff] [blame] | 1167 | { |
Fredrik Kuivinen | 6b6dcfc | 2006-03-10 10:21:37 +0100 | [diff] [blame] | 1168 | sort_in_topological_order_fn(list, lifo, topo_sort_default_setter, |
| 1169 | topo_sort_default_getter); |
| 1170 | } |
| 1171 | |
| 1172 | void sort_in_topological_order_fn(struct commit_list ** list, int lifo, |
| 1173 | topo_sort_set_fn_t setter, |
| 1174 | topo_sort_get_fn_t getter) |
| 1175 | { |
Jon Seymour | ab580ac | 2005-07-07 02:39:34 +1000 | [diff] [blame] | 1176 | struct commit_list * next = *list; |
Linus Torvalds | 2ed0288 | 2005-11-14 10:01:26 -0800 | [diff] [blame] | 1177 | struct commit_list * work = NULL, **insert; |
Jon Seymour | ab580ac | 2005-07-07 02:39:34 +1000 | [diff] [blame] | 1178 | struct commit_list ** pptr = list; |
| 1179 | struct sort_node * nodes; |
| 1180 | struct sort_node * next_nodes; |
| 1181 | int count = 0; |
| 1182 | |
| 1183 | /* determine the size of the list */ |
| 1184 | while (next) { |
| 1185 | next = next->next; |
| 1186 | count++; |
| 1187 | } |
Junio C Hamano | a6080a0 | 2007-06-07 00:04:01 -0700 | [diff] [blame] | 1188 | |
Eric Wong | 7d6fb37 | 2005-12-24 04:12:43 -0800 | [diff] [blame] | 1189 | if (!count) |
| 1190 | return; |
Jon Seymour | ab580ac | 2005-07-07 02:39:34 +1000 | [diff] [blame] | 1191 | /* allocate an array to help sort the list */ |
| 1192 | nodes = xcalloc(count, sizeof(*nodes)); |
| 1193 | /* link the list to the array */ |
| 1194 | next_nodes = nodes; |
| 1195 | next=*list; |
| 1196 | while (next) { |
| 1197 | next_nodes->list_item = next; |
Fredrik Kuivinen | 6b6dcfc | 2006-03-10 10:21:37 +0100 | [diff] [blame] | 1198 | setter(next->item, next_nodes); |
Jon Seymour | ab580ac | 2005-07-07 02:39:34 +1000 | [diff] [blame] | 1199 | next_nodes++; |
| 1200 | next = next->next; |
| 1201 | } |
| 1202 | /* update the indegree */ |
| 1203 | next=*list; |
| 1204 | while (next) { |
| 1205 | struct commit_list * parents = next->item->parents; |
| 1206 | while (parents) { |
| 1207 | struct commit * parent=parents->item; |
Fredrik Kuivinen | 6b6dcfc | 2006-03-10 10:21:37 +0100 | [diff] [blame] | 1208 | struct sort_node * pn = (struct sort_node *) getter(parent); |
| 1209 | |
Jon Seymour | ab580ac | 2005-07-07 02:39:34 +1000 | [diff] [blame] | 1210 | if (pn) |
| 1211 | pn->indegree++; |
| 1212 | parents=parents->next; |
| 1213 | } |
| 1214 | next=next->next; |
| 1215 | } |
Junio C Hamano | a6080a0 | 2007-06-07 00:04:01 -0700 | [diff] [blame] | 1216 | /* |
Pierre Habouzit | 674d172 | 2007-09-10 12:35:06 +0200 | [diff] [blame] | 1217 | * find the tips |
| 1218 | * |
| 1219 | * tips are nodes not reachable from any other node in the list |
| 1220 | * |
| 1221 | * the tips serve as a starting set for the work queue. |
| 1222 | */ |
Jon Seymour | ab580ac | 2005-07-07 02:39:34 +1000 | [diff] [blame] | 1223 | next=*list; |
Linus Torvalds | 2ed0288 | 2005-11-14 10:01:26 -0800 | [diff] [blame] | 1224 | insert = &work; |
Jon Seymour | ab580ac | 2005-07-07 02:39:34 +1000 | [diff] [blame] | 1225 | while (next) { |
Fredrik Kuivinen | 6b6dcfc | 2006-03-10 10:21:37 +0100 | [diff] [blame] | 1226 | struct sort_node * node = (struct sort_node *) getter(next->item); |
Jon Seymour | ab580ac | 2005-07-07 02:39:34 +1000 | [diff] [blame] | 1227 | |
| 1228 | if (node->indegree == 0) { |
Linus Torvalds | 2ed0288 | 2005-11-14 10:01:26 -0800 | [diff] [blame] | 1229 | insert = &commit_list_insert(next->item, insert)->next; |
Jon Seymour | ab580ac | 2005-07-07 02:39:34 +1000 | [diff] [blame] | 1230 | } |
| 1231 | next=next->next; |
| 1232 | } |
Junio C Hamano | 4c8725f | 2006-02-15 22:05:33 -0800 | [diff] [blame] | 1233 | |
Jon Seymour | ab580ac | 2005-07-07 02:39:34 +1000 | [diff] [blame] | 1234 | /* process the list in topological order */ |
Junio C Hamano | 4c8725f | 2006-02-15 22:05:33 -0800 | [diff] [blame] | 1235 | if (!lifo) |
| 1236 | sort_by_date(&work); |
Jon Seymour | ab580ac | 2005-07-07 02:39:34 +1000 | [diff] [blame] | 1237 | while (work) { |
| 1238 | struct commit * work_item = pop_commit(&work); |
Fredrik Kuivinen | 6b6dcfc | 2006-03-10 10:21:37 +0100 | [diff] [blame] | 1239 | struct sort_node * work_node = (struct sort_node *) getter(work_item); |
Jon Seymour | ab580ac | 2005-07-07 02:39:34 +1000 | [diff] [blame] | 1240 | struct commit_list * parents = work_item->parents; |
| 1241 | |
| 1242 | while (parents) { |
| 1243 | struct commit * parent=parents->item; |
Fredrik Kuivinen | 6b6dcfc | 2006-03-10 10:21:37 +0100 | [diff] [blame] | 1244 | struct sort_node * pn = (struct sort_node *) getter(parent); |
| 1245 | |
Jon Seymour | ab580ac | 2005-07-07 02:39:34 +1000 | [diff] [blame] | 1246 | if (pn) { |
Fredrik Kuivinen | 6b6dcfc | 2006-03-10 10:21:37 +0100 | [diff] [blame] | 1247 | /* |
Junio C Hamano | a6080a0 | 2007-06-07 00:04:01 -0700 | [diff] [blame] | 1248 | * parents are only enqueued for emission |
Pierre Habouzit | 674d172 | 2007-09-10 12:35:06 +0200 | [diff] [blame] | 1249 | * when all their children have been emitted thereby |
| 1250 | * guaranteeing topological order. |
| 1251 | */ |
Jon Seymour | ab580ac | 2005-07-07 02:39:34 +1000 | [diff] [blame] | 1252 | pn->indegree--; |
Junio C Hamano | 4c8725f | 2006-02-15 22:05:33 -0800 | [diff] [blame] | 1253 | if (!pn->indegree) { |
| 1254 | if (!lifo) |
| 1255 | insert_by_date(parent, &work); |
| 1256 | else |
| 1257 | commit_list_insert(parent, &work); |
| 1258 | } |
Jon Seymour | ab580ac | 2005-07-07 02:39:34 +1000 | [diff] [blame] | 1259 | } |
| 1260 | parents=parents->next; |
| 1261 | } |
| 1262 | /* |
Pierre Habouzit | 674d172 | 2007-09-10 12:35:06 +0200 | [diff] [blame] | 1263 | * work_item is a commit all of whose children |
| 1264 | * have already been emitted. we can emit it now. |
| 1265 | */ |
Jon Seymour | ab580ac | 2005-07-07 02:39:34 +1000 | [diff] [blame] | 1266 | *pptr = work_node->list_item; |
| 1267 | pptr = &(*pptr)->next; |
| 1268 | *pptr = NULL; |
Fredrik Kuivinen | 6b6dcfc | 2006-03-10 10:21:37 +0100 | [diff] [blame] | 1269 | setter(work_item, NULL); |
Jon Seymour | ab580ac | 2005-07-07 02:39:34 +1000 | [diff] [blame] | 1270 | } |
| 1271 | free(nodes); |
| 1272 | } |
Johannes Schindelin | 7c6f8aa | 2006-06-29 15:17:32 +0200 | [diff] [blame] | 1273 | |
Junio C Hamano | 1295228 | 2007-01-08 23:10:49 -0800 | [diff] [blame] | 1274 | /* merge-base stuff */ |
Johannes Schindelin | 7c6f8aa | 2006-06-29 15:17:32 +0200 | [diff] [blame] | 1275 | |
Junio C Hamano | 577ed5c | 2006-10-22 17:32:47 -0700 | [diff] [blame] | 1276 | /* bits #0..15 in revision.h */ |
| 1277 | #define PARENT1 (1u<<16) |
| 1278 | #define PARENT2 (1u<<17) |
| 1279 | #define STALE (1u<<18) |
| 1280 | #define RESULT (1u<<19) |
Johannes Schindelin | 7c6f8aa | 2006-06-29 15:17:32 +0200 | [diff] [blame] | 1281 | |
Junio C Hamano | 1295228 | 2007-01-08 23:10:49 -0800 | [diff] [blame] | 1282 | static const unsigned all_flags = (PARENT1 | PARENT2 | STALE | RESULT); |
| 1283 | |
Johannes Schindelin | 7c6f8aa | 2006-06-29 15:17:32 +0200 | [diff] [blame] | 1284 | static struct commit *interesting(struct commit_list *list) |
| 1285 | { |
| 1286 | while (list) { |
| 1287 | struct commit *commit = list->item; |
| 1288 | list = list->next; |
Junio C Hamano | 542ccef | 2006-07-02 11:34:17 -0700 | [diff] [blame] | 1289 | if (commit->object.flags & STALE) |
Johannes Schindelin | 7c6f8aa | 2006-06-29 15:17:32 +0200 | [diff] [blame] | 1290 | continue; |
| 1291 | return commit; |
| 1292 | } |
| 1293 | return NULL; |
| 1294 | } |
| 1295 | |
Junio C Hamano | f324943 | 2006-07-04 18:46:42 -0700 | [diff] [blame] | 1296 | static struct commit_list *merge_bases(struct commit *one, struct commit *two) |
Johannes Schindelin | 7c6f8aa | 2006-06-29 15:17:32 +0200 | [diff] [blame] | 1297 | { |
| 1298 | struct commit_list *list = NULL; |
| 1299 | struct commit_list *result = NULL; |
Johannes Schindelin | 7c6f8aa | 2006-06-29 15:17:32 +0200 | [diff] [blame] | 1300 | |
Junio C Hamano | f324943 | 2006-07-04 18:46:42 -0700 | [diff] [blame] | 1301 | if (one == two) |
| 1302 | /* We do not mark this even with RESULT so we do not |
| 1303 | * have to clean it up. |
| 1304 | */ |
| 1305 | return commit_list_insert(one, &result); |
Johannes Schindelin | 7c6f8aa | 2006-06-29 15:17:32 +0200 | [diff] [blame] | 1306 | |
Junio C Hamano | f324943 | 2006-07-04 18:46:42 -0700 | [diff] [blame] | 1307 | parse_commit(one); |
| 1308 | parse_commit(two); |
Johannes Schindelin | 7c6f8aa | 2006-06-29 15:17:32 +0200 | [diff] [blame] | 1309 | |
Junio C Hamano | f324943 | 2006-07-04 18:46:42 -0700 | [diff] [blame] | 1310 | one->object.flags |= PARENT1; |
| 1311 | two->object.flags |= PARENT2; |
| 1312 | insert_by_date(one, &list); |
| 1313 | insert_by_date(two, &list); |
Johannes Schindelin | 7c6f8aa | 2006-06-29 15:17:32 +0200 | [diff] [blame] | 1314 | |
| 1315 | while (interesting(list)) { |
Junio C Hamano | f324943 | 2006-07-04 18:46:42 -0700 | [diff] [blame] | 1316 | struct commit *commit; |
Johannes Schindelin | 7c6f8aa | 2006-06-29 15:17:32 +0200 | [diff] [blame] | 1317 | struct commit_list *parents; |
Junio C Hamano | f324943 | 2006-07-04 18:46:42 -0700 | [diff] [blame] | 1318 | struct commit_list *n; |
| 1319 | int flags; |
Johannes Schindelin | 7c6f8aa | 2006-06-29 15:17:32 +0200 | [diff] [blame] | 1320 | |
Junio C Hamano | f324943 | 2006-07-04 18:46:42 -0700 | [diff] [blame] | 1321 | commit = list->item; |
| 1322 | n = list->next; |
| 1323 | free(list); |
| 1324 | list = n; |
| 1325 | |
| 1326 | flags = commit->object.flags & (PARENT1 | PARENT2 | STALE); |
Johannes Schindelin | 7c6f8aa | 2006-06-29 15:17:32 +0200 | [diff] [blame] | 1327 | if (flags == (PARENT1 | PARENT2)) { |
Junio C Hamano | f324943 | 2006-07-04 18:46:42 -0700 | [diff] [blame] | 1328 | if (!(commit->object.flags & RESULT)) { |
| 1329 | commit->object.flags |= RESULT; |
| 1330 | insert_by_date(commit, &result); |
| 1331 | } |
Junio C Hamano | 542ccef | 2006-07-02 11:34:17 -0700 | [diff] [blame] | 1332 | /* Mark parents of a found merge stale */ |
| 1333 | flags |= STALE; |
Johannes Schindelin | 7c6f8aa | 2006-06-29 15:17:32 +0200 | [diff] [blame] | 1334 | } |
| 1335 | parents = commit->parents; |
| 1336 | while (parents) { |
| 1337 | struct commit *p = parents->item; |
| 1338 | parents = parents->next; |
| 1339 | if ((p->object.flags & flags) == flags) |
| 1340 | continue; |
| 1341 | parse_commit(p); |
| 1342 | p->object.flags |= flags; |
| 1343 | insert_by_date(p, &list); |
| 1344 | } |
| 1345 | } |
| 1346 | |
Junio C Hamano | f324943 | 2006-07-04 18:46:42 -0700 | [diff] [blame] | 1347 | /* Clean up the result to remove stale ones */ |
Junio C Hamano | 1295228 | 2007-01-08 23:10:49 -0800 | [diff] [blame] | 1348 | free_commit_list(list); |
Junio C Hamano | f324943 | 2006-07-04 18:46:42 -0700 | [diff] [blame] | 1349 | list = result; result = NULL; |
| 1350 | while (list) { |
| 1351 | struct commit_list *n = list->next; |
| 1352 | if (!(list->item->object.flags & STALE)) |
| 1353 | insert_by_date(list->item, &result); |
| 1354 | free(list); |
| 1355 | list = n; |
| 1356 | } |
| 1357 | return result; |
| 1358 | } |
Johannes Schindelin | 7c6f8aa | 2006-06-29 15:17:32 +0200 | [diff] [blame] | 1359 | |
Junio C Hamano | f324943 | 2006-07-04 18:46:42 -0700 | [diff] [blame] | 1360 | struct commit_list *get_merge_bases(struct commit *one, |
Pierre Habouzit | 674d172 | 2007-09-10 12:35:06 +0200 | [diff] [blame] | 1361 | struct commit *two, int cleanup) |
Junio C Hamano | f324943 | 2006-07-04 18:46:42 -0700 | [diff] [blame] | 1362 | { |
Junio C Hamano | f324943 | 2006-07-04 18:46:42 -0700 | [diff] [blame] | 1363 | struct commit_list *list; |
| 1364 | struct commit **rslt; |
| 1365 | struct commit_list *result; |
| 1366 | int cnt, i, j; |
Johannes Schindelin | 7c6f8aa | 2006-06-29 15:17:32 +0200 | [diff] [blame] | 1367 | |
Junio C Hamano | f324943 | 2006-07-04 18:46:42 -0700 | [diff] [blame] | 1368 | result = merge_bases(one, two); |
| 1369 | if (one == two) |
| 1370 | return result; |
| 1371 | if (!result || !result->next) { |
| 1372 | if (cleanup) { |
| 1373 | clear_commit_marks(one, all_flags); |
| 1374 | clear_commit_marks(two, all_flags); |
Johannes Schindelin | 7c6f8aa | 2006-06-29 15:17:32 +0200 | [diff] [blame] | 1375 | } |
Junio C Hamano | f324943 | 2006-07-04 18:46:42 -0700 | [diff] [blame] | 1376 | return result; |
Johannes Schindelin | 7c6f8aa | 2006-06-29 15:17:32 +0200 | [diff] [blame] | 1377 | } |
| 1378 | |
Junio C Hamano | f324943 | 2006-07-04 18:46:42 -0700 | [diff] [blame] | 1379 | /* There are more than one */ |
| 1380 | cnt = 0; |
| 1381 | list = result; |
| 1382 | while (list) { |
| 1383 | list = list->next; |
| 1384 | cnt++; |
| 1385 | } |
| 1386 | rslt = xcalloc(cnt, sizeof(*rslt)); |
| 1387 | for (list = result, i = 0; list; list = list->next) |
| 1388 | rslt[i++] = list->item; |
| 1389 | free_commit_list(result); |
| 1390 | |
| 1391 | clear_commit_marks(one, all_flags); |
| 1392 | clear_commit_marks(two, all_flags); |
| 1393 | for (i = 0; i < cnt - 1; i++) { |
| 1394 | for (j = i+1; j < cnt; j++) { |
| 1395 | if (!rslt[i] || !rslt[j]) |
| 1396 | continue; |
| 1397 | result = merge_bases(rslt[i], rslt[j]); |
| 1398 | clear_commit_marks(rslt[i], all_flags); |
| 1399 | clear_commit_marks(rslt[j], all_flags); |
| 1400 | for (list = result; list; list = list->next) { |
| 1401 | if (rslt[i] == list->item) |
| 1402 | rslt[i] = NULL; |
| 1403 | if (rslt[j] == list->item) |
| 1404 | rslt[j] = NULL; |
| 1405 | } |
| 1406 | } |
Junio C Hamano | 58ecf5c | 2006-07-04 17:45:22 -0700 | [diff] [blame] | 1407 | } |
Johannes Schindelin | 7c6f8aa | 2006-06-29 15:17:32 +0200 | [diff] [blame] | 1408 | |
Junio C Hamano | f324943 | 2006-07-04 18:46:42 -0700 | [diff] [blame] | 1409 | /* Surviving ones in rslt[] are the independent results */ |
| 1410 | result = NULL; |
| 1411 | for (i = 0; i < cnt; i++) { |
| 1412 | if (rslt[i]) |
| 1413 | insert_by_date(rslt[i], &result); |
| 1414 | } |
| 1415 | free(rslt); |
Johannes Schindelin | 7c6f8aa | 2006-06-29 15:17:32 +0200 | [diff] [blame] | 1416 | return result; |
| 1417 | } |
Junio C Hamano | 2ecd2bb | 2006-12-19 00:14:04 -0800 | [diff] [blame] | 1418 | |
Junio C Hamano | 03840fc | 2007-01-08 23:22:31 -0800 | [diff] [blame] | 1419 | int in_merge_bases(struct commit *commit, struct commit **reference, int num) |
Junio C Hamano | 2ecd2bb | 2006-12-19 00:14:04 -0800 | [diff] [blame] | 1420 | { |
| 1421 | struct commit_list *bases, *b; |
| 1422 | int ret = 0; |
| 1423 | |
Junio C Hamano | 03840fc | 2007-01-08 23:22:31 -0800 | [diff] [blame] | 1424 | if (num == 1) |
| 1425 | bases = get_merge_bases(commit, *reference, 1); |
| 1426 | else |
| 1427 | die("not yet"); |
Junio C Hamano | 2ecd2bb | 2006-12-19 00:14:04 -0800 | [diff] [blame] | 1428 | for (b = bases; b; b = b->next) { |
Junio C Hamano | 03840fc | 2007-01-08 23:22:31 -0800 | [diff] [blame] | 1429 | if (!hashcmp(commit->object.sha1, b->item->object.sha1)) { |
Junio C Hamano | 2ecd2bb | 2006-12-19 00:14:04 -0800 | [diff] [blame] | 1430 | ret = 1; |
| 1431 | break; |
| 1432 | } |
| 1433 | } |
| 1434 | |
| 1435 | free_commit_list(bases); |
| 1436 | return ret; |
| 1437 | } |