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" |
Junio C Hamano | 199c45b | 2007-04-09 02:34:05 -0700 | [diff] [blame] | 6 | #include "diff.h" |
| 7 | #include "revision.h" |
Johannes Schindelin | a97a746 | 2009-10-09 12:21:57 +0200 | [diff] [blame] | 8 | #include "notes.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 | |
Daniel Barkalow | 175785e | 2005-04-18 11:39:48 -0700 | [diff] [blame] | 12 | const char *commit_type = "commit"; |
| 13 | |
Junio C Hamano | f76412e | 2005-08-21 02:51:10 -0700 | [diff] [blame] | 14 | static struct commit *check_commit(struct object *obj, |
| 15 | const unsigned char *sha1, |
| 16 | int quiet) |
Linus Torvalds | 961784e | 2005-05-18 16:14:22 -0700 | [diff] [blame] | 17 | { |
Linus Torvalds | 1974632 | 2006-07-11 20:45:31 -0700 | [diff] [blame] | 18 | if (obj->type != OBJ_COMMIT) { |
Junio C Hamano | f76412e | 2005-08-21 02:51:10 -0700 | [diff] [blame] | 19 | if (!quiet) |
| 20 | error("Object %s is a %s, not a commit", |
Linus Torvalds | 885a86a | 2006-06-14 16:45:13 -0700 | [diff] [blame] | 21 | sha1_to_hex(sha1), typename(obj->type)); |
Linus Torvalds | 961784e | 2005-05-18 16:14:22 -0700 | [diff] [blame] | 22 | return NULL; |
| 23 | } |
| 24 | return (struct commit *) obj; |
| 25 | } |
| 26 | |
Junio C Hamano | f76412e | 2005-08-21 02:51:10 -0700 | [diff] [blame] | 27 | struct commit *lookup_commit_reference_gently(const unsigned char *sha1, |
| 28 | int quiet) |
Linus Torvalds | 961784e | 2005-05-18 16:14:22 -0700 | [diff] [blame] | 29 | { |
Junio C Hamano | 9534f40 | 2005-11-02 15:19:13 -0800 | [diff] [blame] | 30 | struct object *obj = deref_tag(parse_object(sha1), NULL, 0); |
Linus Torvalds | 961784e | 2005-05-18 16:14:22 -0700 | [diff] [blame] | 31 | |
| 32 | if (!obj) |
| 33 | return NULL; |
Junio C Hamano | f76412e | 2005-08-21 02:51:10 -0700 | [diff] [blame] | 34 | return check_commit(obj, sha1, quiet); |
| 35 | } |
| 36 | |
| 37 | struct commit *lookup_commit_reference(const unsigned char *sha1) |
| 38 | { |
| 39 | return lookup_commit_reference_gently(sha1, 0); |
Linus Torvalds | 961784e | 2005-05-18 16:14:22 -0700 | [diff] [blame] | 40 | } |
| 41 | |
Jason McMullan | 5d6ccf5 | 2005-06-03 11:05:39 -0400 | [diff] [blame] | 42 | struct commit *lookup_commit(const unsigned char *sha1) |
Daniel Barkalow | 175785e | 2005-04-18 11:39:48 -0700 | [diff] [blame] | 43 | { |
| 44 | struct object *obj = lookup_object(sha1); |
Linus Torvalds | 100c5f3 | 2007-04-16 22:11:43 -0700 | [diff] [blame] | 45 | if (!obj) |
| 46 | return create_object(sha1, OBJ_COMMIT, alloc_commit_node()); |
Nicolas Pitre | d1af002 | 2005-05-20 16:59:17 -0400 | [diff] [blame] | 47 | if (!obj->type) |
Linus Torvalds | 1974632 | 2006-07-11 20:45:31 -0700 | [diff] [blame] | 48 | obj->type = OBJ_COMMIT; |
Junio C Hamano | f76412e | 2005-08-21 02:51:10 -0700 | [diff] [blame] | 49 | return check_commit(obj, sha1, 0); |
Daniel Barkalow | 175785e | 2005-04-18 11:39:48 -0700 | [diff] [blame] | 50 | } |
| 51 | |
Martin Koegler | 0a61779 | 2008-01-19 18:35:23 +0100 | [diff] [blame] | 52 | static unsigned long parse_commit_date(const char *buf, const char *tail) |
Daniel Barkalow | 175785e | 2005-04-18 11:39:48 -0700 | [diff] [blame] | 53 | { |
Martin Koegler | 0a61779 | 2008-01-19 18:35:23 +0100 | [diff] [blame] | 54 | const char *dateptr; |
Daniel Barkalow | 175785e | 2005-04-18 11:39:48 -0700 | [diff] [blame] | 55 | |
Martin Koegler | 0a61779 | 2008-01-19 18:35:23 +0100 | [diff] [blame] | 56 | if (buf + 6 >= tail) |
| 57 | return 0; |
Daniel Barkalow | 175785e | 2005-04-18 11:39:48 -0700 | [diff] [blame] | 58 | if (memcmp(buf, "author", 6)) |
| 59 | return 0; |
Martin Koegler | 0a61779 | 2008-01-19 18:35:23 +0100 | [diff] [blame] | 60 | while (buf < tail && *buf++ != '\n') |
Daniel Barkalow | 175785e | 2005-04-18 11:39:48 -0700 | [diff] [blame] | 61 | /* nada */; |
Martin Koegler | 0a61779 | 2008-01-19 18:35:23 +0100 | [diff] [blame] | 62 | if (buf + 9 >= tail) |
| 63 | return 0; |
Daniel Barkalow | 175785e | 2005-04-18 11:39:48 -0700 | [diff] [blame] | 64 | if (memcmp(buf, "committer", 9)) |
| 65 | return 0; |
Martin Koegler | 0a61779 | 2008-01-19 18:35:23 +0100 | [diff] [blame] | 66 | while (buf < tail && *buf++ != '>') |
Daniel Barkalow | 175785e | 2005-04-18 11:39:48 -0700 | [diff] [blame] | 67 | /* nada */; |
Martin Koegler | 0a61779 | 2008-01-19 18:35:23 +0100 | [diff] [blame] | 68 | if (buf >= tail) |
| 69 | return 0; |
| 70 | dateptr = buf; |
| 71 | while (buf < tail && *buf++ != '\n') |
| 72 | /* nada */; |
| 73 | if (buf >= tail) |
| 74 | return 0; |
| 75 | /* dateptr < buf && buf[-1] == '\n', so strtoul will stop at buf-1 */ |
Eric Wong | f290974 | 2009-07-02 21:34:54 -0700 | [diff] [blame] | 76 | return strtoul(dateptr, NULL, 10); |
Daniel Barkalow | 175785e | 2005-04-18 11:39:48 -0700 | [diff] [blame] | 77 | } |
| 78 | |
Junio C Hamano | 5040f17 | 2006-04-06 23:58:51 -0700 | [diff] [blame] | 79 | static struct commit_graft **commit_graft; |
Junio C Hamano | 5da5c8f | 2005-07-30 00:58:28 -0700 | [diff] [blame] | 80 | static int commit_graft_alloc, commit_graft_nr; |
| 81 | |
| 82 | static int commit_graft_pos(const unsigned char *sha1) |
| 83 | { |
| 84 | int lo, hi; |
| 85 | lo = 0; |
| 86 | hi = commit_graft_nr; |
| 87 | while (lo < hi) { |
| 88 | int mi = (lo + hi) / 2; |
| 89 | struct commit_graft *graft = commit_graft[mi]; |
David Rientjes | a89fccd | 2006-08-17 11:54:57 -0700 | [diff] [blame] | 90 | int cmp = hashcmp(sha1, graft->sha1); |
Junio C Hamano | 5da5c8f | 2005-07-30 00:58:28 -0700 | [diff] [blame] | 91 | if (!cmp) |
| 92 | return mi; |
| 93 | if (cmp < 0) |
| 94 | hi = mi; |
| 95 | else |
| 96 | lo = mi + 1; |
| 97 | } |
| 98 | return -lo - 1; |
| 99 | } |
| 100 | |
Junio C Hamano | 5040f17 | 2006-04-06 23:58:51 -0700 | [diff] [blame] | 101 | int register_commit_graft(struct commit_graft *graft, int ignore_dups) |
Junio C Hamano | 5da5c8f | 2005-07-30 00:58:28 -0700 | [diff] [blame] | 102 | { |
Junio C Hamano | 5040f17 | 2006-04-06 23:58:51 -0700 | [diff] [blame] | 103 | int pos = commit_graft_pos(graft->sha1); |
Junio C Hamano | a6080a0 | 2007-06-07 00:04:01 -0700 | [diff] [blame] | 104 | |
Junio C Hamano | 5040f17 | 2006-04-06 23:58:51 -0700 | [diff] [blame] | 105 | if (0 <= pos) { |
| 106 | if (ignore_dups) |
| 107 | free(graft); |
| 108 | else { |
| 109 | free(commit_graft[pos]); |
| 110 | commit_graft[pos] = graft; |
| 111 | } |
| 112 | return 1; |
| 113 | } |
| 114 | pos = -pos - 1; |
| 115 | if (commit_graft_alloc <= ++commit_graft_nr) { |
| 116 | commit_graft_alloc = alloc_nr(commit_graft_alloc); |
| 117 | commit_graft = xrealloc(commit_graft, |
| 118 | sizeof(*commit_graft) * |
| 119 | commit_graft_alloc); |
| 120 | } |
| 121 | if (pos < commit_graft_nr) |
| 122 | memmove(commit_graft + pos + 1, |
| 123 | commit_graft + pos, |
| 124 | (commit_graft_nr - pos - 1) * |
| 125 | sizeof(*commit_graft)); |
| 126 | commit_graft[pos] = graft; |
| 127 | return 0; |
| 128 | } |
| 129 | |
| 130 | struct commit_graft *read_graft_line(char *buf, int len) |
| 131 | { |
| 132 | /* The format is just "Commit Parent1 Parent2 ...\n" */ |
| 133 | int i; |
| 134 | struct commit_graft *graft = NULL; |
| 135 | |
Junio C Hamano | fe0a3cb | 2009-10-14 11:51:03 -0700 | [diff] [blame] | 136 | while (len && isspace(buf[len-1])) |
| 137 | buf[--len] = '\0'; |
Yann Dirson | 360204c | 2006-04-17 13:41:49 +0200 | [diff] [blame] | 138 | if (buf[0] == '#' || buf[0] == '\0') |
Junio C Hamano | 5bc4ce5 | 2006-04-16 14:24:56 -0700 | [diff] [blame] | 139 | return NULL; |
Junio C Hamano | 5040f17 | 2006-04-06 23:58:51 -0700 | [diff] [blame] | 140 | if ((len + 1) % 41) { |
| 141 | bad_graft_data: |
| 142 | error("bad graft data: %s", buf); |
| 143 | free(graft); |
| 144 | return NULL; |
| 145 | } |
| 146 | i = (len + 1) / 41 - 1; |
| 147 | graft = xmalloc(sizeof(*graft) + 20 * i); |
| 148 | graft->nr_parent = i; |
| 149 | if (get_sha1_hex(buf, graft->sha1)) |
| 150 | goto bad_graft_data; |
| 151 | for (i = 40; i < len; i += 41) { |
| 152 | if (buf[i] != ' ') |
| 153 | goto bad_graft_data; |
| 154 | if (get_sha1_hex(buf + i + 1, graft->parent[i/41])) |
| 155 | goto bad_graft_data; |
| 156 | } |
| 157 | return graft; |
| 158 | } |
| 159 | |
Nanako Shiraishi | c5ae643 | 2008-10-02 19:14:30 +0900 | [diff] [blame] | 160 | static int read_graft_file(const char *graft_file) |
Junio C Hamano | 5040f17 | 2006-04-06 23:58:51 -0700 | [diff] [blame] | 161 | { |
Junio C Hamano | 5da5c8f | 2005-07-30 00:58:28 -0700 | [diff] [blame] | 162 | FILE *fp = fopen(graft_file, "r"); |
| 163 | char buf[1024]; |
Junio C Hamano | 5040f17 | 2006-04-06 23:58:51 -0700 | [diff] [blame] | 164 | if (!fp) |
| 165 | return -1; |
Junio C Hamano | 5da5c8f | 2005-07-30 00:58:28 -0700 | [diff] [blame] | 166 | while (fgets(buf, sizeof(buf), fp)) { |
| 167 | /* The format is just "Commit Parent1 Parent2 ...\n" */ |
| 168 | int len = strlen(buf); |
Junio C Hamano | 5040f17 | 2006-04-06 23:58:51 -0700 | [diff] [blame] | 169 | struct commit_graft *graft = read_graft_line(buf, len); |
Junio C Hamano | 5bc4ce5 | 2006-04-16 14:24:56 -0700 | [diff] [blame] | 170 | if (!graft) |
| 171 | continue; |
Junio C Hamano | 5040f17 | 2006-04-06 23:58:51 -0700 | [diff] [blame] | 172 | if (register_commit_graft(graft, 1)) |
Junio C Hamano | 5da5c8f | 2005-07-30 00:58:28 -0700 | [diff] [blame] | 173 | error("duplicate graft data: %s", buf); |
Junio C Hamano | 5da5c8f | 2005-07-30 00:58:28 -0700 | [diff] [blame] | 174 | } |
| 175 | fclose(fp); |
Junio C Hamano | 5040f17 | 2006-04-06 23:58:51 -0700 | [diff] [blame] | 176 | return 0; |
| 177 | } |
| 178 | |
| 179 | static void prepare_commit_graft(void) |
| 180 | { |
| 181 | static int commit_graft_prepared; |
| 182 | char *graft_file; |
| 183 | |
| 184 | if (commit_graft_prepared) |
| 185 | return; |
| 186 | graft_file = get_graft_file(); |
| 187 | read_graft_file(graft_file); |
Johannes Schindelin | ed09aef | 2006-10-30 20:09:06 +0100 | [diff] [blame] | 188 | /* make sure shallows are read */ |
| 189 | is_repository_shallow(); |
Junio C Hamano | 5040f17 | 2006-04-06 23:58:51 -0700 | [diff] [blame] | 190 | commit_graft_prepared = 1; |
Junio C Hamano | 5da5c8f | 2005-07-30 00:58:28 -0700 | [diff] [blame] | 191 | } |
| 192 | |
Martin Koegler | 4516338 | 2008-02-25 22:46:07 +0100 | [diff] [blame] | 193 | struct commit_graft *lookup_commit_graft(const unsigned char *sha1) |
Junio C Hamano | 5da5c8f | 2005-07-30 00:58:28 -0700 | [diff] [blame] | 194 | { |
| 195 | int pos; |
Junio C Hamano | 5040f17 | 2006-04-06 23:58:51 -0700 | [diff] [blame] | 196 | prepare_commit_graft(); |
Junio C Hamano | 5da5c8f | 2005-07-30 00:58:28 -0700 | [diff] [blame] | 197 | pos = commit_graft_pos(sha1); |
| 198 | if (pos < 0) |
| 199 | return NULL; |
| 200 | return commit_graft[pos]; |
| 201 | } |
| 202 | |
Shawn O. Pearce | edace6f | 2009-10-30 17:47:23 -0700 | [diff] [blame] | 203 | int write_shallow_commits(struct strbuf *out, int use_pack_protocol) |
Johannes Schindelin | ed09aef | 2006-10-30 20:09:06 +0100 | [diff] [blame] | 204 | { |
| 205 | int i, count = 0; |
| 206 | for (i = 0; i < commit_graft_nr; i++) |
| 207 | if (commit_graft[i]->nr_parent < 0) { |
| 208 | const char *hex = |
| 209 | sha1_to_hex(commit_graft[i]->sha1); |
| 210 | count++; |
| 211 | if (use_pack_protocol) |
Shawn O. Pearce | edace6f | 2009-10-30 17:47:23 -0700 | [diff] [blame] | 212 | packet_buf_write(out, "shallow %s", hex); |
Johannes Schindelin | ed09aef | 2006-10-30 20:09:06 +0100 | [diff] [blame] | 213 | else { |
Shawn O. Pearce | edace6f | 2009-10-30 17:47:23 -0700 | [diff] [blame] | 214 | strbuf_addstr(out, hex); |
| 215 | strbuf_addch(out, '\n'); |
Johannes Schindelin | ed09aef | 2006-10-30 20:09:06 +0100 | [diff] [blame] | 216 | } |
| 217 | } |
| 218 | return count; |
| 219 | } |
| 220 | |
Johannes Schindelin | f53514b | 2006-10-30 20:09:53 +0100 | [diff] [blame] | 221 | int unregister_shallow(const unsigned char *sha1) |
| 222 | { |
| 223 | int pos = commit_graft_pos(sha1); |
| 224 | if (pos < 0) |
| 225 | return -1; |
| 226 | if (pos + 1 < commit_graft_nr) |
Jeff King | 65d41d4 | 2010-01-29 05:28:44 -0500 | [diff] [blame] | 227 | memmove(commit_graft + pos, commit_graft + pos + 1, |
Johannes Schindelin | f53514b | 2006-10-30 20:09:53 +0100 | [diff] [blame] | 228 | sizeof(struct commit_graft *) |
| 229 | * (commit_graft_nr - pos - 1)); |
| 230 | commit_graft_nr--; |
| 231 | return 0; |
| 232 | } |
| 233 | |
Nicolas Pitre | bd2c39f | 2005-05-06 13:48:34 -0400 | [diff] [blame] | 234 | int parse_commit_buffer(struct commit *item, void *buffer, unsigned long size) |
Daniel Barkalow | 175785e | 2005-04-18 11:39:48 -0700 | [diff] [blame] | 235 | { |
Junio C Hamano | 3b44f15 | 2006-06-28 03:51:00 -0700 | [diff] [blame] | 236 | char *tail = buffer; |
Linus Torvalds | f7cc77d | 2005-07-27 15:12:48 -0700 | [diff] [blame] | 237 | char *bufptr = buffer; |
Daniel Barkalow | 175785e | 2005-04-18 11:39:48 -0700 | [diff] [blame] | 238 | unsigned char parent[20]; |
Linus Torvalds | 6c88be1 | 2005-06-20 20:26:03 -0700 | [diff] [blame] | 239 | struct commit_list **pptr; |
Junio C Hamano | 5da5c8f | 2005-07-30 00:58:28 -0700 | [diff] [blame] | 240 | struct commit_graft *graft; |
Nicolas Pitre | bd2c39f | 2005-05-06 13:48:34 -0400 | [diff] [blame] | 241 | |
Daniel Barkalow | 175785e | 2005-04-18 11:39:48 -0700 | [diff] [blame] | 242 | if (item->object.parsed) |
| 243 | return 0; |
| 244 | item->object.parsed = 1; |
Junio C Hamano | 3b44f15 | 2006-06-28 03:51:00 -0700 | [diff] [blame] | 245 | tail += size; |
Martin Koegler | 0a61779 | 2008-01-19 18:35:23 +0100 | [diff] [blame] | 246 | if (tail <= bufptr + 46 || memcmp(bufptr, "tree ", 5) || bufptr[45] != '\n') |
Linus Torvalds | f7cc77d | 2005-07-27 15:12:48 -0700 | [diff] [blame] | 247 | return error("bogus commit object %s", sha1_to_hex(item->object.sha1)); |
Martin Koegler | 0a61779 | 2008-01-19 18:35:23 +0100 | [diff] [blame] | 248 | if (get_sha1_hex(bufptr + 5, parent) < 0) |
Junio C Hamano | bd2afde | 2006-02-22 17:47:10 -0800 | [diff] [blame] | 249 | return error("bad tree pointer in commit %s", |
| 250 | sha1_to_hex(item->object.sha1)); |
Daniel Barkalow | 175785e | 2005-04-18 11:39:48 -0700 | [diff] [blame] | 251 | item->tree = lookup_tree(parent); |
Daniel Barkalow | 175785e | 2005-04-18 11:39:48 -0700 | [diff] [blame] | 252 | bufptr += 46; /* "tree " + "hex sha1" + "\n" */ |
Linus Torvalds | 6c88be1 | 2005-06-20 20:26:03 -0700 | [diff] [blame] | 253 | pptr = &item->parents; |
Junio C Hamano | 5da5c8f | 2005-07-30 00:58:28 -0700 | [diff] [blame] | 254 | |
| 255 | graft = lookup_commit_graft(item->object.sha1); |
Junio C Hamano | 3b44f15 | 2006-06-28 03:51:00 -0700 | [diff] [blame] | 256 | while (bufptr + 48 < tail && !memcmp(bufptr, "parent ", 7)) { |
Linus Torvalds | f7cc77d | 2005-07-27 15:12:48 -0700 | [diff] [blame] | 257 | struct commit *new_parent; |
| 258 | |
Junio C Hamano | 3b44f15 | 2006-06-28 03:51:00 -0700 | [diff] [blame] | 259 | if (tail <= bufptr + 48 || |
| 260 | get_sha1_hex(bufptr + 7, parent) || |
| 261 | bufptr[47] != '\n') |
Linus Torvalds | f7cc77d | 2005-07-27 15:12:48 -0700 | [diff] [blame] | 262 | 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] | 263 | bufptr += 48; |
Johannes Schindelin | 7f3140c | 2009-07-23 17:33:49 +0200 | [diff] [blame] | 264 | /* |
| 265 | * The clone is shallow if nr_parent < 0, and we must |
| 266 | * not traverse its real parents even when we unhide them. |
| 267 | */ |
| 268 | if (graft && (graft->nr_parent < 0 || grafts_replace_parents)) |
Junio C Hamano | 5da5c8f | 2005-07-30 00:58:28 -0700 | [diff] [blame] | 269 | continue; |
Linus Torvalds | f7cc77d | 2005-07-27 15:12:48 -0700 | [diff] [blame] | 270 | new_parent = lookup_commit(parent); |
Miklos Vajna | 39468de | 2008-06-07 22:38:37 +0200 | [diff] [blame] | 271 | if (new_parent) |
Linus Torvalds | 6c88be1 | 2005-06-20 20:26:03 -0700 | [diff] [blame] | 272 | pptr = &commit_list_insert(new_parent, pptr)->next; |
Junio C Hamano | 5da5c8f | 2005-07-30 00:58:28 -0700 | [diff] [blame] | 273 | } |
| 274 | if (graft) { |
| 275 | int i; |
| 276 | struct commit *new_parent; |
| 277 | for (i = 0; i < graft->nr_parent; i++) { |
| 278 | new_parent = lookup_commit(graft->parent[i]); |
| 279 | if (!new_parent) |
| 280 | continue; |
| 281 | pptr = &commit_list_insert(new_parent, pptr)->next; |
Junio C Hamano | 5da5c8f | 2005-07-30 00:58:28 -0700 | [diff] [blame] | 282 | } |
Daniel Barkalow | 175785e | 2005-04-18 11:39:48 -0700 | [diff] [blame] | 283 | } |
Martin Koegler | 0a61779 | 2008-01-19 18:35:23 +0100 | [diff] [blame] | 284 | item->date = parse_commit_date(bufptr, tail); |
Junio C Hamano | 27dedf0 | 2005-11-16 21:32:44 -0800 | [diff] [blame] | 285 | |
Daniel Barkalow | 175785e | 2005-04-18 11:39:48 -0700 | [diff] [blame] | 286 | return 0; |
| 287 | } |
| 288 | |
Nicolas Pitre | bd2c39f | 2005-05-06 13:48:34 -0400 | [diff] [blame] | 289 | int parse_commit(struct commit *item) |
| 290 | { |
Nicolas Pitre | 21666f1 | 2007-02-26 14:55:59 -0500 | [diff] [blame] | 291 | enum object_type type; |
Nicolas Pitre | bd2c39f | 2005-05-06 13:48:34 -0400 | [diff] [blame] | 292 | void *buffer; |
| 293 | unsigned long size; |
| 294 | int ret; |
| 295 | |
Martin Koegler | 9786f68 | 2008-02-18 21:48:02 +0100 | [diff] [blame] | 296 | if (!item) |
| 297 | return -1; |
Nicolas Pitre | bd2c39f | 2005-05-06 13:48:34 -0400 | [diff] [blame] | 298 | if (item->object.parsed) |
| 299 | return 0; |
Nicolas Pitre | 21666f1 | 2007-02-26 14:55:59 -0500 | [diff] [blame] | 300 | buffer = read_sha1_file(item->object.sha1, &type, &size); |
Nicolas Pitre | bd2c39f | 2005-05-06 13:48:34 -0400 | [diff] [blame] | 301 | if (!buffer) |
| 302 | return error("Could not read %s", |
| 303 | sha1_to_hex(item->object.sha1)); |
Nicolas Pitre | 21666f1 | 2007-02-26 14:55:59 -0500 | [diff] [blame] | 304 | if (type != OBJ_COMMIT) { |
Nicolas Pitre | bd2c39f | 2005-05-06 13:48:34 -0400 | [diff] [blame] | 305 | free(buffer); |
| 306 | return error("Object %s not a commit", |
| 307 | sha1_to_hex(item->object.sha1)); |
| 308 | } |
| 309 | ret = parse_commit_buffer(item, buffer, size); |
Linus Torvalds | 60ab26d | 2005-09-15 14:43:17 -0700 | [diff] [blame] | 310 | if (save_commit_buffer && !ret) { |
Linus Torvalds | 3ff1fbb | 2005-05-25 18:27:14 -0700 | [diff] [blame] | 311 | item->buffer = buffer; |
| 312 | return 0; |
| 313 | } |
Nicolas Pitre | bd2c39f | 2005-05-06 13:48:34 -0400 | [diff] [blame] | 314 | free(buffer); |
| 315 | return ret; |
| 316 | } |
| 317 | |
Christian Couder | 11af2aa | 2010-07-22 15:18:30 +0200 | [diff] [blame] | 318 | int find_commit_subject(const char *commit_buffer, const char **subject) |
| 319 | { |
| 320 | const char *eol; |
| 321 | const char *p = commit_buffer; |
| 322 | |
| 323 | while (*p && (*p != '\n' || p[1] != '\n')) |
| 324 | p++; |
| 325 | if (*p) { |
| 326 | p += 2; |
| 327 | for (eol = p; *eol && *eol != '\n'; eol++) |
| 328 | ; /* do nothing */ |
| 329 | } else |
| 330 | eol = p; |
| 331 | |
| 332 | *subject = p; |
| 333 | |
| 334 | return eol - p; |
| 335 | } |
| 336 | |
Linus Torvalds | ac5155e | 2005-05-30 18:44:02 -0700 | [diff] [blame] | 337 | 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] | 338 | { |
Christopher Li | 812666c | 2005-04-26 12:00:58 -0700 | [diff] [blame] | 339 | struct commit_list *new_list = xmalloc(sizeof(struct commit_list)); |
Daniel Barkalow | dd97f85 | 2005-04-23 18:47:23 -0700 | [diff] [blame] | 340 | new_list->item = item; |
| 341 | new_list->next = *list_p; |
| 342 | *list_p = new_list; |
Linus Torvalds | ac5155e | 2005-05-30 18:44:02 -0700 | [diff] [blame] | 343 | return new_list; |
Daniel Barkalow | dd97f85 | 2005-04-23 18:47:23 -0700 | [diff] [blame] | 344 | } |
| 345 | |
Miklos Vajna | 6531947 | 2008-06-27 18:21:55 +0200 | [diff] [blame] | 346 | unsigned commit_list_count(const struct commit_list *l) |
| 347 | { |
| 348 | unsigned c = 0; |
| 349 | for (; l; l = l->next ) |
| 350 | c++; |
| 351 | return c; |
| 352 | } |
| 353 | |
Daniel Barkalow | 175785e | 2005-04-18 11:39:48 -0700 | [diff] [blame] | 354 | void free_commit_list(struct commit_list *list) |
| 355 | { |
| 356 | while (list) { |
| 357 | struct commit_list *temp = list; |
| 358 | list = temp->next; |
| 359 | free(temp); |
| 360 | } |
| 361 | } |
Daniel Barkalow | dd97f85 | 2005-04-23 18:47:23 -0700 | [diff] [blame] | 362 | |
Linus Torvalds | f755494 | 2005-07-06 09:31:17 -0700 | [diff] [blame] | 363 | 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] | 364 | { |
| 365 | struct commit_list **pp = list; |
| 366 | struct commit_list *p; |
| 367 | while ((p = *pp) != NULL) { |
| 368 | if (p->item->date < item->date) { |
| 369 | break; |
| 370 | } |
| 371 | pp = &p->next; |
| 372 | } |
Linus Torvalds | f755494 | 2005-07-06 09:31:17 -0700 | [diff] [blame] | 373 | return commit_list_insert(item, pp); |
Daniel Barkalow | dd97f85 | 2005-04-23 18:47:23 -0700 | [diff] [blame] | 374 | } |
| 375 | |
Junio C Hamano | a6080a0 | 2007-06-07 00:04:01 -0700 | [diff] [blame] | 376 | |
Daniel Barkalow | dd97f85 | 2005-04-23 18:47:23 -0700 | [diff] [blame] | 377 | void sort_by_date(struct commit_list **list) |
| 378 | { |
| 379 | struct commit_list *ret = NULL; |
| 380 | while (*list) { |
Linus Torvalds | f755494 | 2005-07-06 09:31:17 -0700 | [diff] [blame] | 381 | insert_by_date((*list)->item, &ret); |
Daniel Barkalow | dd97f85 | 2005-04-23 18:47:23 -0700 | [diff] [blame] | 382 | *list = (*list)->next; |
| 383 | } |
| 384 | *list = ret; |
| 385 | } |
| 386 | |
Daniel Barkalow | 58e28af | 2005-04-23 20:29:22 -0700 | [diff] [blame] | 387 | struct commit *pop_most_recent_commit(struct commit_list **list, |
| 388 | unsigned int mark) |
Daniel Barkalow | dd97f85 | 2005-04-23 18:47:23 -0700 | [diff] [blame] | 389 | { |
| 390 | struct commit *ret = (*list)->item; |
| 391 | struct commit_list *parents = ret->parents; |
| 392 | struct commit_list *old = *list; |
| 393 | |
| 394 | *list = (*list)->next; |
| 395 | free(old); |
| 396 | |
| 397 | while (parents) { |
Linus Torvalds | 4056c09 | 2005-04-23 19:21:28 -0700 | [diff] [blame] | 398 | struct commit *commit = parents->item; |
Martin Koegler | dec38c8 | 2008-02-18 21:48:03 +0100 | [diff] [blame] | 399 | if (!parse_commit(commit) && !(commit->object.flags & mark)) { |
Daniel Barkalow | 58e28af | 2005-04-23 20:29:22 -0700 | [diff] [blame] | 400 | commit->object.flags |= mark; |
Linus Torvalds | f755494 | 2005-07-06 09:31:17 -0700 | [diff] [blame] | 401 | insert_by_date(commit, list); |
Linus Torvalds | 4056c09 | 2005-04-23 19:21:28 -0700 | [diff] [blame] | 402 | } |
Daniel Barkalow | dd97f85 | 2005-04-23 18:47:23 -0700 | [diff] [blame] | 403 | parents = parents->next; |
| 404 | } |
| 405 | return ret; |
| 406 | } |
Linus Torvalds | e3bc7a3 | 2005-06-01 08:34:23 -0700 | [diff] [blame] | 407 | |
Junio C Hamano | f8f9c73 | 2006-01-07 18:52:42 -0800 | [diff] [blame] | 408 | void clear_commit_marks(struct commit *commit, unsigned int mark) |
| 409 | { |
Johannes Schindelin | 60fcc2e | 2007-10-10 23:14:35 +0100 | [diff] [blame] | 410 | while (commit) { |
| 411 | struct commit_list *parents; |
Junio C Hamano | f8f9c73 | 2006-01-07 18:52:42 -0800 | [diff] [blame] | 412 | |
Johannes Schindelin | 60fcc2e | 2007-10-10 23:14:35 +0100 | [diff] [blame] | 413 | if (!(mark & commit->object.flags)) |
| 414 | return; |
Junio C Hamano | 58ecf5c | 2006-07-04 17:45:22 -0700 | [diff] [blame] | 415 | |
Johannes Schindelin | 60fcc2e | 2007-10-10 23:14:35 +0100 | [diff] [blame] | 416 | commit->object.flags &= ~mark; |
| 417 | |
| 418 | parents = commit->parents; |
| 419 | if (!parents) |
| 420 | return; |
| 421 | |
| 422 | while ((parents = parents->next)) |
| 423 | clear_commit_marks(parents->item, mark); |
| 424 | |
| 425 | commit = commit->parents->item; |
Junio C Hamano | f8f9c73 | 2006-01-07 18:52:42 -0800 | [diff] [blame] | 426 | } |
| 427 | } |
| 428 | |
jon@blackcubes.dyndns.org | a3437b8 | 2005-06-06 15:39:40 +0000 | [diff] [blame] | 429 | struct commit *pop_commit(struct commit_list **stack) |
| 430 | { |
| 431 | struct commit_list *top = *stack; |
| 432 | struct commit *item = top ? top->item : NULL; |
| 433 | |
| 434 | if (top) { |
| 435 | *stack = top->next; |
| 436 | free(top); |
| 437 | } |
| 438 | return item; |
| 439 | } |
| 440 | |
Jon Seymour | ab580ac | 2005-07-07 02:39:34 +1000 | [diff] [blame] | 441 | /* |
| 442 | * Performs an in-place topological sort on the list supplied. |
| 443 | */ |
Junio C Hamano | 4c8725f | 2006-02-15 22:05:33 -0800 | [diff] [blame] | 444 | void sort_in_topological_order(struct commit_list ** list, int lifo) |
Jon Seymour | ab580ac | 2005-07-07 02:39:34 +1000 | [diff] [blame] | 445 | { |
Linus Torvalds | 23c17d4 | 2007-11-02 13:32:58 -0700 | [diff] [blame] | 446 | struct commit_list *next, *orig = *list; |
| 447 | struct commit_list *work, **insert; |
| 448 | struct commit_list **pptr; |
Fredrik Kuivinen | 6b6dcfc | 2006-03-10 10:21:37 +0100 | [diff] [blame] | 449 | |
Linus Torvalds | 23c17d4 | 2007-11-02 13:32:58 -0700 | [diff] [blame] | 450 | if (!orig) |
Eric Wong | 7d6fb37 | 2005-12-24 04:12:43 -0800 | [diff] [blame] | 451 | return; |
Linus Torvalds | 23c17d4 | 2007-11-02 13:32:58 -0700 | [diff] [blame] | 452 | *list = NULL; |
| 453 | |
| 454 | /* Mark them and clear the indegree */ |
| 455 | for (next = orig; next; next = next->next) { |
| 456 | struct commit *commit = next->item; |
Johannes Schindelin | e358f3c | 2008-07-23 01:51:36 +0100 | [diff] [blame] | 457 | commit->indegree = 1; |
Jon Seymour | ab580ac | 2005-07-07 02:39:34 +1000 | [diff] [blame] | 458 | } |
Linus Torvalds | 23c17d4 | 2007-11-02 13:32:58 -0700 | [diff] [blame] | 459 | |
Jon Seymour | ab580ac | 2005-07-07 02:39:34 +1000 | [diff] [blame] | 460 | /* update the indegree */ |
Linus Torvalds | 23c17d4 | 2007-11-02 13:32:58 -0700 | [diff] [blame] | 461 | for (next = orig; next; next = next->next) { |
Jon Seymour | ab580ac | 2005-07-07 02:39:34 +1000 | [diff] [blame] | 462 | struct commit_list * parents = next->item->parents; |
| 463 | while (parents) { |
Linus Torvalds | 23c17d4 | 2007-11-02 13:32:58 -0700 | [diff] [blame] | 464 | struct commit *parent = parents->item; |
Fredrik Kuivinen | 6b6dcfc | 2006-03-10 10:21:37 +0100 | [diff] [blame] | 465 | |
Johannes Schindelin | e358f3c | 2008-07-23 01:51:36 +0100 | [diff] [blame] | 466 | if (parent->indegree) |
Linus Torvalds | 23c17d4 | 2007-11-02 13:32:58 -0700 | [diff] [blame] | 467 | parent->indegree++; |
| 468 | parents = parents->next; |
Jon Seymour | ab580ac | 2005-07-07 02:39:34 +1000 | [diff] [blame] | 469 | } |
Jon Seymour | ab580ac | 2005-07-07 02:39:34 +1000 | [diff] [blame] | 470 | } |
Linus Torvalds | 23c17d4 | 2007-11-02 13:32:58 -0700 | [diff] [blame] | 471 | |
Junio C Hamano | a6080a0 | 2007-06-07 00:04:01 -0700 | [diff] [blame] | 472 | /* |
Pierre Habouzit | 674d172 | 2007-09-10 12:35:06 +0200 | [diff] [blame] | 473 | * find the tips |
| 474 | * |
| 475 | * tips are nodes not reachable from any other node in the list |
| 476 | * |
| 477 | * the tips serve as a starting set for the work queue. |
| 478 | */ |
Linus Torvalds | 23c17d4 | 2007-11-02 13:32:58 -0700 | [diff] [blame] | 479 | work = NULL; |
Linus Torvalds | 2ed0288 | 2005-11-14 10:01:26 -0800 | [diff] [blame] | 480 | insert = &work; |
Linus Torvalds | 23c17d4 | 2007-11-02 13:32:58 -0700 | [diff] [blame] | 481 | for (next = orig; next; next = next->next) { |
| 482 | struct commit *commit = next->item; |
Jon Seymour | ab580ac | 2005-07-07 02:39:34 +1000 | [diff] [blame] | 483 | |
Johannes Schindelin | e358f3c | 2008-07-23 01:51:36 +0100 | [diff] [blame] | 484 | if (commit->indegree == 1) |
Linus Torvalds | 23c17d4 | 2007-11-02 13:32:58 -0700 | [diff] [blame] | 485 | insert = &commit_list_insert(commit, insert)->next; |
Jon Seymour | ab580ac | 2005-07-07 02:39:34 +1000 | [diff] [blame] | 486 | } |
Junio C Hamano | 4c8725f | 2006-02-15 22:05:33 -0800 | [diff] [blame] | 487 | |
Jon Seymour | ab580ac | 2005-07-07 02:39:34 +1000 | [diff] [blame] | 488 | /* process the list in topological order */ |
Junio C Hamano | 4c8725f | 2006-02-15 22:05:33 -0800 | [diff] [blame] | 489 | if (!lifo) |
| 490 | sort_by_date(&work); |
Linus Torvalds | 23c17d4 | 2007-11-02 13:32:58 -0700 | [diff] [blame] | 491 | |
| 492 | pptr = list; |
| 493 | *list = NULL; |
Jon Seymour | ab580ac | 2005-07-07 02:39:34 +1000 | [diff] [blame] | 494 | while (work) { |
Linus Torvalds | 23c17d4 | 2007-11-02 13:32:58 -0700 | [diff] [blame] | 495 | struct commit *commit; |
| 496 | struct commit_list *parents, *work_item; |
Jon Seymour | ab580ac | 2005-07-07 02:39:34 +1000 | [diff] [blame] | 497 | |
Linus Torvalds | 23c17d4 | 2007-11-02 13:32:58 -0700 | [diff] [blame] | 498 | work_item = work; |
| 499 | work = work_item->next; |
| 500 | work_item->next = NULL; |
Fredrik Kuivinen | 6b6dcfc | 2006-03-10 10:21:37 +0100 | [diff] [blame] | 501 | |
Linus Torvalds | 23c17d4 | 2007-11-02 13:32:58 -0700 | [diff] [blame] | 502 | commit = work_item->item; |
| 503 | for (parents = commit->parents; parents ; parents = parents->next) { |
| 504 | struct commit *parent=parents->item; |
| 505 | |
Johannes Schindelin | e358f3c | 2008-07-23 01:51:36 +0100 | [diff] [blame] | 506 | if (!parent->indegree) |
Linus Torvalds | 23c17d4 | 2007-11-02 13:32:58 -0700 | [diff] [blame] | 507 | continue; |
| 508 | |
| 509 | /* |
| 510 | * parents are only enqueued for emission |
| 511 | * when all their children have been emitted thereby |
| 512 | * guaranteeing topological order. |
| 513 | */ |
Johannes Schindelin | e358f3c | 2008-07-23 01:51:36 +0100 | [diff] [blame] | 514 | if (--parent->indegree == 1) { |
Linus Torvalds | 23c17d4 | 2007-11-02 13:32:58 -0700 | [diff] [blame] | 515 | if (!lifo) |
| 516 | insert_by_date(parent, &work); |
| 517 | else |
| 518 | commit_list_insert(parent, &work); |
Jon Seymour | ab580ac | 2005-07-07 02:39:34 +1000 | [diff] [blame] | 519 | } |
Jon Seymour | ab580ac | 2005-07-07 02:39:34 +1000 | [diff] [blame] | 520 | } |
| 521 | /* |
Pierre Habouzit | 674d172 | 2007-09-10 12:35:06 +0200 | [diff] [blame] | 522 | * work_item is a commit all of whose children |
| 523 | * have already been emitted. we can emit it now. |
| 524 | */ |
Johannes Schindelin | e358f3c | 2008-07-23 01:51:36 +0100 | [diff] [blame] | 525 | commit->indegree = 0; |
Linus Torvalds | 23c17d4 | 2007-11-02 13:32:58 -0700 | [diff] [blame] | 526 | *pptr = work_item; |
| 527 | pptr = &work_item->next; |
Jon Seymour | ab580ac | 2005-07-07 02:39:34 +1000 | [diff] [blame] | 528 | } |
Jon Seymour | ab580ac | 2005-07-07 02:39:34 +1000 | [diff] [blame] | 529 | } |
Johannes Schindelin | 7c6f8aa | 2006-06-29 15:17:32 +0200 | [diff] [blame] | 530 | |
Junio C Hamano | 1295228 | 2007-01-08 23:10:49 -0800 | [diff] [blame] | 531 | /* merge-base stuff */ |
Johannes Schindelin | 7c6f8aa | 2006-06-29 15:17:32 +0200 | [diff] [blame] | 532 | |
Junio C Hamano | 577ed5c | 2006-10-22 17:32:47 -0700 | [diff] [blame] | 533 | /* bits #0..15 in revision.h */ |
| 534 | #define PARENT1 (1u<<16) |
| 535 | #define PARENT2 (1u<<17) |
| 536 | #define STALE (1u<<18) |
| 537 | #define RESULT (1u<<19) |
Johannes Schindelin | 7c6f8aa | 2006-06-29 15:17:32 +0200 | [diff] [blame] | 538 | |
Junio C Hamano | 1295228 | 2007-01-08 23:10:49 -0800 | [diff] [blame] | 539 | static const unsigned all_flags = (PARENT1 | PARENT2 | STALE | RESULT); |
| 540 | |
Johannes Schindelin | 7c6f8aa | 2006-06-29 15:17:32 +0200 | [diff] [blame] | 541 | static struct commit *interesting(struct commit_list *list) |
| 542 | { |
| 543 | while (list) { |
| 544 | struct commit *commit = list->item; |
| 545 | list = list->next; |
Junio C Hamano | 542ccef | 2006-07-02 11:34:17 -0700 | [diff] [blame] | 546 | if (commit->object.flags & STALE) |
Johannes Schindelin | 7c6f8aa | 2006-06-29 15:17:32 +0200 | [diff] [blame] | 547 | continue; |
| 548 | return commit; |
| 549 | } |
| 550 | return NULL; |
| 551 | } |
| 552 | |
Junio C Hamano | 6a93864 | 2008-06-27 18:22:02 +0200 | [diff] [blame] | 553 | static struct commit_list *merge_bases_many(struct commit *one, int n, struct commit **twos) |
Johannes Schindelin | 7c6f8aa | 2006-06-29 15:17:32 +0200 | [diff] [blame] | 554 | { |
| 555 | struct commit_list *list = NULL; |
| 556 | struct commit_list *result = NULL; |
Junio C Hamano | 6a93864 | 2008-06-27 18:22:02 +0200 | [diff] [blame] | 557 | int i; |
Johannes Schindelin | 7c6f8aa | 2006-06-29 15:17:32 +0200 | [diff] [blame] | 558 | |
Junio C Hamano | 6a93864 | 2008-06-27 18:22:02 +0200 | [diff] [blame] | 559 | for (i = 0; i < n; i++) { |
| 560 | if (one == twos[i]) |
| 561 | /* |
| 562 | * We do not mark this even with RESULT so we do not |
| 563 | * have to clean it up. |
| 564 | */ |
| 565 | return commit_list_insert(one, &result); |
| 566 | } |
Johannes Schindelin | 7c6f8aa | 2006-06-29 15:17:32 +0200 | [diff] [blame] | 567 | |
Martin Koegler | 172947e | 2008-02-18 21:47:57 +0100 | [diff] [blame] | 568 | if (parse_commit(one)) |
| 569 | return NULL; |
Junio C Hamano | 6a93864 | 2008-06-27 18:22:02 +0200 | [diff] [blame] | 570 | for (i = 0; i < n; i++) { |
| 571 | if (parse_commit(twos[i])) |
| 572 | return NULL; |
| 573 | } |
Johannes Schindelin | 7c6f8aa | 2006-06-29 15:17:32 +0200 | [diff] [blame] | 574 | |
Junio C Hamano | f324943 | 2006-07-04 18:46:42 -0700 | [diff] [blame] | 575 | one->object.flags |= PARENT1; |
Junio C Hamano | f324943 | 2006-07-04 18:46:42 -0700 | [diff] [blame] | 576 | insert_by_date(one, &list); |
Junio C Hamano | 6a93864 | 2008-06-27 18:22:02 +0200 | [diff] [blame] | 577 | for (i = 0; i < n; i++) { |
| 578 | twos[i]->object.flags |= PARENT2; |
| 579 | insert_by_date(twos[i], &list); |
| 580 | } |
Johannes Schindelin | 7c6f8aa | 2006-06-29 15:17:32 +0200 | [diff] [blame] | 581 | |
| 582 | while (interesting(list)) { |
Junio C Hamano | f324943 | 2006-07-04 18:46:42 -0700 | [diff] [blame] | 583 | struct commit *commit; |
Johannes Schindelin | 7c6f8aa | 2006-06-29 15:17:32 +0200 | [diff] [blame] | 584 | struct commit_list *parents; |
Brandon Casey | f203d69 | 2009-08-27 11:16:34 -0500 | [diff] [blame] | 585 | struct commit_list *next; |
Junio C Hamano | f324943 | 2006-07-04 18:46:42 -0700 | [diff] [blame] | 586 | int flags; |
Johannes Schindelin | 7c6f8aa | 2006-06-29 15:17:32 +0200 | [diff] [blame] | 587 | |
Junio C Hamano | f324943 | 2006-07-04 18:46:42 -0700 | [diff] [blame] | 588 | commit = list->item; |
Brandon Casey | f203d69 | 2009-08-27 11:16:34 -0500 | [diff] [blame] | 589 | next = list->next; |
Junio C Hamano | f324943 | 2006-07-04 18:46:42 -0700 | [diff] [blame] | 590 | free(list); |
Brandon Casey | f203d69 | 2009-08-27 11:16:34 -0500 | [diff] [blame] | 591 | list = next; |
Junio C Hamano | f324943 | 2006-07-04 18:46:42 -0700 | [diff] [blame] | 592 | |
| 593 | flags = commit->object.flags & (PARENT1 | PARENT2 | STALE); |
Johannes Schindelin | 7c6f8aa | 2006-06-29 15:17:32 +0200 | [diff] [blame] | 594 | if (flags == (PARENT1 | PARENT2)) { |
Junio C Hamano | f324943 | 2006-07-04 18:46:42 -0700 | [diff] [blame] | 595 | if (!(commit->object.flags & RESULT)) { |
| 596 | commit->object.flags |= RESULT; |
| 597 | insert_by_date(commit, &result); |
| 598 | } |
Junio C Hamano | 542ccef | 2006-07-02 11:34:17 -0700 | [diff] [blame] | 599 | /* Mark parents of a found merge stale */ |
| 600 | flags |= STALE; |
Johannes Schindelin | 7c6f8aa | 2006-06-29 15:17:32 +0200 | [diff] [blame] | 601 | } |
| 602 | parents = commit->parents; |
| 603 | while (parents) { |
| 604 | struct commit *p = parents->item; |
| 605 | parents = parents->next; |
| 606 | if ((p->object.flags & flags) == flags) |
| 607 | continue; |
Martin Koegler | 172947e | 2008-02-18 21:47:57 +0100 | [diff] [blame] | 608 | if (parse_commit(p)) |
| 609 | return NULL; |
Johannes Schindelin | 7c6f8aa | 2006-06-29 15:17:32 +0200 | [diff] [blame] | 610 | p->object.flags |= flags; |
| 611 | insert_by_date(p, &list); |
| 612 | } |
| 613 | } |
| 614 | |
Junio C Hamano | f324943 | 2006-07-04 18:46:42 -0700 | [diff] [blame] | 615 | /* Clean up the result to remove stale ones */ |
Junio C Hamano | 1295228 | 2007-01-08 23:10:49 -0800 | [diff] [blame] | 616 | free_commit_list(list); |
Junio C Hamano | f324943 | 2006-07-04 18:46:42 -0700 | [diff] [blame] | 617 | list = result; result = NULL; |
| 618 | while (list) { |
Brandon Casey | f203d69 | 2009-08-27 11:16:34 -0500 | [diff] [blame] | 619 | struct commit_list *next = list->next; |
Junio C Hamano | f324943 | 2006-07-04 18:46:42 -0700 | [diff] [blame] | 620 | if (!(list->item->object.flags & STALE)) |
| 621 | insert_by_date(list->item, &result); |
| 622 | free(list); |
Brandon Casey | f203d69 | 2009-08-27 11:16:34 -0500 | [diff] [blame] | 623 | list = next; |
Junio C Hamano | f324943 | 2006-07-04 18:46:42 -0700 | [diff] [blame] | 624 | } |
| 625 | return result; |
| 626 | } |
Johannes Schindelin | 7c6f8aa | 2006-06-29 15:17:32 +0200 | [diff] [blame] | 627 | |
Miklos Vajna | 5240c9d | 2008-06-27 18:22:00 +0200 | [diff] [blame] | 628 | struct commit_list *get_octopus_merge_bases(struct commit_list *in) |
| 629 | { |
| 630 | struct commit_list *i, *j, *k, *ret = NULL; |
| 631 | struct commit_list **pptr = &ret; |
| 632 | |
| 633 | for (i = in; i; i = i->next) { |
| 634 | if (!ret) |
| 635 | pptr = &commit_list_insert(i->item, pptr)->next; |
| 636 | else { |
| 637 | struct commit_list *new = NULL, *end = NULL; |
| 638 | |
| 639 | for (j = ret; j; j = j->next) { |
| 640 | struct commit_list *bases; |
| 641 | bases = get_merge_bases(i->item, j->item, 1); |
| 642 | if (!new) |
| 643 | new = bases; |
| 644 | else |
| 645 | end->next = bases; |
| 646 | for (k = bases; k; k = k->next) |
| 647 | end = k; |
| 648 | } |
| 649 | ret = new; |
| 650 | } |
| 651 | } |
| 652 | return ret; |
| 653 | } |
| 654 | |
Junio C Hamano | 6a93864 | 2008-06-27 18:22:02 +0200 | [diff] [blame] | 655 | struct commit_list *get_merge_bases_many(struct commit *one, |
| 656 | int n, |
| 657 | struct commit **twos, |
| 658 | int cleanup) |
Junio C Hamano | f324943 | 2006-07-04 18:46:42 -0700 | [diff] [blame] | 659 | { |
Junio C Hamano | f324943 | 2006-07-04 18:46:42 -0700 | [diff] [blame] | 660 | struct commit_list *list; |
| 661 | struct commit **rslt; |
| 662 | struct commit_list *result; |
| 663 | int cnt, i, j; |
Johannes Schindelin | 7c6f8aa | 2006-06-29 15:17:32 +0200 | [diff] [blame] | 664 | |
Junio C Hamano | 6a93864 | 2008-06-27 18:22:02 +0200 | [diff] [blame] | 665 | result = merge_bases_many(one, n, twos); |
| 666 | for (i = 0; i < n; i++) { |
| 667 | if (one == twos[i]) |
| 668 | return result; |
| 669 | } |
Junio C Hamano | f324943 | 2006-07-04 18:46:42 -0700 | [diff] [blame] | 670 | if (!result || !result->next) { |
| 671 | if (cleanup) { |
| 672 | clear_commit_marks(one, all_flags); |
Junio C Hamano | 6a93864 | 2008-06-27 18:22:02 +0200 | [diff] [blame] | 673 | for (i = 0; i < n; i++) |
| 674 | clear_commit_marks(twos[i], all_flags); |
Johannes Schindelin | 7c6f8aa | 2006-06-29 15:17:32 +0200 | [diff] [blame] | 675 | } |
Junio C Hamano | f324943 | 2006-07-04 18:46:42 -0700 | [diff] [blame] | 676 | return result; |
Johannes Schindelin | 7c6f8aa | 2006-06-29 15:17:32 +0200 | [diff] [blame] | 677 | } |
| 678 | |
Junio C Hamano | f324943 | 2006-07-04 18:46:42 -0700 | [diff] [blame] | 679 | /* There are more than one */ |
| 680 | cnt = 0; |
| 681 | list = result; |
| 682 | while (list) { |
| 683 | list = list->next; |
| 684 | cnt++; |
| 685 | } |
| 686 | rslt = xcalloc(cnt, sizeof(*rslt)); |
| 687 | for (list = result, i = 0; list; list = list->next) |
| 688 | rslt[i++] = list->item; |
| 689 | free_commit_list(result); |
| 690 | |
| 691 | clear_commit_marks(one, all_flags); |
Junio C Hamano | 6a93864 | 2008-06-27 18:22:02 +0200 | [diff] [blame] | 692 | for (i = 0; i < n; i++) |
| 693 | clear_commit_marks(twos[i], all_flags); |
Junio C Hamano | f324943 | 2006-07-04 18:46:42 -0700 | [diff] [blame] | 694 | for (i = 0; i < cnt - 1; i++) { |
| 695 | for (j = i+1; j < cnt; j++) { |
| 696 | if (!rslt[i] || !rslt[j]) |
| 697 | continue; |
Junio C Hamano | 6a93864 | 2008-06-27 18:22:02 +0200 | [diff] [blame] | 698 | result = merge_bases_many(rslt[i], 1, &rslt[j]); |
Junio C Hamano | f324943 | 2006-07-04 18:46:42 -0700 | [diff] [blame] | 699 | clear_commit_marks(rslt[i], all_flags); |
| 700 | clear_commit_marks(rslt[j], all_flags); |
| 701 | for (list = result; list; list = list->next) { |
| 702 | if (rslt[i] == list->item) |
| 703 | rslt[i] = NULL; |
| 704 | if (rslt[j] == list->item) |
| 705 | rslt[j] = NULL; |
| 706 | } |
| 707 | } |
Junio C Hamano | 58ecf5c | 2006-07-04 17:45:22 -0700 | [diff] [blame] | 708 | } |
Johannes Schindelin | 7c6f8aa | 2006-06-29 15:17:32 +0200 | [diff] [blame] | 709 | |
Junio C Hamano | f324943 | 2006-07-04 18:46:42 -0700 | [diff] [blame] | 710 | /* Surviving ones in rslt[] are the independent results */ |
| 711 | result = NULL; |
| 712 | for (i = 0; i < cnt; i++) { |
| 713 | if (rslt[i]) |
| 714 | insert_by_date(rslt[i], &result); |
| 715 | } |
| 716 | free(rslt); |
Johannes Schindelin | 7c6f8aa | 2006-06-29 15:17:32 +0200 | [diff] [blame] | 717 | return result; |
| 718 | } |
Junio C Hamano | 2ecd2bb | 2006-12-19 00:14:04 -0800 | [diff] [blame] | 719 | |
Junio C Hamano | 6a93864 | 2008-06-27 18:22:02 +0200 | [diff] [blame] | 720 | struct commit_list *get_merge_bases(struct commit *one, struct commit *two, |
| 721 | int cleanup) |
| 722 | { |
| 723 | return get_merge_bases_many(one, 1, &two, cleanup); |
| 724 | } |
| 725 | |
Jake Goulding | 7fcdb36 | 2009-01-26 09:13:24 -0500 | [diff] [blame] | 726 | int is_descendant_of(struct commit *commit, struct commit_list *with_commit) |
| 727 | { |
| 728 | if (!with_commit) |
| 729 | return 1; |
| 730 | while (with_commit) { |
| 731 | struct commit *other; |
| 732 | |
| 733 | other = with_commit->item; |
| 734 | with_commit = with_commit->next; |
| 735 | if (in_merge_bases(other, &commit, 1)) |
| 736 | return 1; |
| 737 | } |
| 738 | return 0; |
| 739 | } |
| 740 | |
Junio C Hamano | 03840fc | 2007-01-08 23:22:31 -0800 | [diff] [blame] | 741 | 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] | 742 | { |
| 743 | struct commit_list *bases, *b; |
| 744 | int ret = 0; |
| 745 | |
Junio C Hamano | 03840fc | 2007-01-08 23:22:31 -0800 | [diff] [blame] | 746 | if (num == 1) |
| 747 | bases = get_merge_bases(commit, *reference, 1); |
| 748 | else |
| 749 | die("not yet"); |
Junio C Hamano | 2ecd2bb | 2006-12-19 00:14:04 -0800 | [diff] [blame] | 750 | for (b = bases; b; b = b->next) { |
Junio C Hamano | 03840fc | 2007-01-08 23:22:31 -0800 | [diff] [blame] | 751 | if (!hashcmp(commit->object.sha1, b->item->object.sha1)) { |
Junio C Hamano | 2ecd2bb | 2006-12-19 00:14:04 -0800 | [diff] [blame] | 752 | ret = 1; |
| 753 | break; |
| 754 | } |
| 755 | } |
| 756 | |
| 757 | free_commit_list(bases); |
| 758 | return ret; |
| 759 | } |
Junio C Hamano | 98cf9c3 | 2008-06-27 18:22:03 +0200 | [diff] [blame] | 760 | |
| 761 | struct commit_list *reduce_heads(struct commit_list *heads) |
| 762 | { |
| 763 | struct commit_list *p; |
| 764 | struct commit_list *result = NULL, **tail = &result; |
| 765 | struct commit **other; |
| 766 | size_t num_head, num_other; |
| 767 | |
| 768 | if (!heads) |
| 769 | return NULL; |
| 770 | |
| 771 | /* Avoid unnecessary reallocations */ |
| 772 | for (p = heads, num_head = 0; p; p = p->next) |
| 773 | num_head++; |
| 774 | other = xcalloc(sizeof(*other), num_head); |
| 775 | |
| 776 | /* For each commit, see if it can be reached by others */ |
| 777 | for (p = heads; p; p = p->next) { |
| 778 | struct commit_list *q, *base; |
| 779 | |
Junio C Hamano | 711f6b2 | 2008-07-14 00:09:41 -0700 | [diff] [blame] | 780 | /* Do we already have this in the result? */ |
| 781 | for (q = result; q; q = q->next) |
| 782 | if (p->item == q->item) |
| 783 | break; |
| 784 | if (q) |
| 785 | continue; |
| 786 | |
Junio C Hamano | 98cf9c3 | 2008-06-27 18:22:03 +0200 | [diff] [blame] | 787 | num_other = 0; |
| 788 | for (q = heads; q; q = q->next) { |
Sverre Hvammen Johansen | 3d1dd47 | 2008-07-13 08:13:55 +0000 | [diff] [blame] | 789 | if (p->item == q->item) |
Junio C Hamano | 98cf9c3 | 2008-06-27 18:22:03 +0200 | [diff] [blame] | 790 | continue; |
| 791 | other[num_other++] = q->item; |
| 792 | } |
Junio C Hamano | 711f6b2 | 2008-07-14 00:09:41 -0700 | [diff] [blame] | 793 | if (num_other) |
Junio C Hamano | 98cf9c3 | 2008-06-27 18:22:03 +0200 | [diff] [blame] | 794 | base = get_merge_bases_many(p->item, num_other, other, 1); |
Junio C Hamano | 711f6b2 | 2008-07-14 00:09:41 -0700 | [diff] [blame] | 795 | else |
Junio C Hamano | 98cf9c3 | 2008-06-27 18:22:03 +0200 | [diff] [blame] | 796 | base = NULL; |
| 797 | /* |
| 798 | * If p->item does not have anything common with other |
| 799 | * commits, there won't be any merge base. If it is |
| 800 | * reachable from some of the others, p->item will be |
| 801 | * the merge base. If its history is connected with |
| 802 | * others, but p->item is not reachable by others, we |
| 803 | * will get something other than p->item back. |
| 804 | */ |
| 805 | if (!base || (base->item != p->item)) |
| 806 | tail = &(commit_list_insert(p->item, tail)->next); |
| 807 | free_commit_list(base); |
| 808 | } |
| 809 | free(other); |
| 810 | return result; |
| 811 | } |
Jeff King | 40d52ff | 2010-04-01 20:05:23 -0400 | [diff] [blame] | 812 | |
| 813 | static const char commit_utf8_warn[] = |
| 814 | "Warning: commit message does not conform to UTF-8.\n" |
| 815 | "You may want to amend it after fixing the message, or set the config\n" |
| 816 | "variable i18n.commitencoding to the encoding your project uses.\n"; |
| 817 | |
| 818 | int commit_tree(const char *msg, unsigned char *tree, |
| 819 | struct commit_list *parents, unsigned char *ret, |
| 820 | const char *author) |
| 821 | { |
| 822 | int result; |
| 823 | int encoding_is_utf8; |
| 824 | struct strbuf buffer; |
| 825 | |
| 826 | assert_sha1_type(tree, OBJ_TREE); |
| 827 | |
| 828 | /* Not having i18n.commitencoding is the same as having utf-8 */ |
| 829 | encoding_is_utf8 = is_encoding_utf8(git_commit_encoding); |
| 830 | |
| 831 | strbuf_init(&buffer, 8192); /* should avoid reallocs for the headers */ |
| 832 | strbuf_addf(&buffer, "tree %s\n", sha1_to_hex(tree)); |
| 833 | |
| 834 | /* |
| 835 | * NOTE! This ordering means that the same exact tree merged with a |
| 836 | * different order of parents will be a _different_ changeset even |
| 837 | * if everything else stays the same. |
| 838 | */ |
| 839 | while (parents) { |
| 840 | struct commit_list *next = parents->next; |
| 841 | strbuf_addf(&buffer, "parent %s\n", |
| 842 | sha1_to_hex(parents->item->object.sha1)); |
| 843 | free(parents); |
| 844 | parents = next; |
| 845 | } |
| 846 | |
| 847 | /* Person/date information */ |
| 848 | if (!author) |
| 849 | author = git_author_info(IDENT_ERROR_ON_NO_NAME); |
| 850 | strbuf_addf(&buffer, "author %s\n", author); |
| 851 | strbuf_addf(&buffer, "committer %s\n", git_committer_info(IDENT_ERROR_ON_NO_NAME)); |
| 852 | if (!encoding_is_utf8) |
| 853 | strbuf_addf(&buffer, "encoding %s\n", git_commit_encoding); |
| 854 | strbuf_addch(&buffer, '\n'); |
| 855 | |
| 856 | /* And add the comment */ |
| 857 | strbuf_addstr(&buffer, msg); |
| 858 | |
| 859 | /* And check the encoding */ |
| 860 | if (encoding_is_utf8 && !is_utf8(buffer.buf)) |
| 861 | fprintf(stderr, commit_utf8_warn); |
| 862 | |
| 863 | result = write_sha1_file(buffer.buf, buffer.len, commit_type, ret); |
| 864 | strbuf_release(&buffer); |
| 865 | return result; |
| 866 | } |