🌐 AI搜索 & 代理 主页
blob: 731191e63bd39a89a8ea4ed0390c49d5605cdbed [file] [log] [blame]
Junio C Hamano8f1d2e62006-01-07 09:33:541#include "cache.h"
Linus Torvalds961784e2005-05-18 23:14:222#include "tag.h"
Daniel Barkalow175785e2005-04-18 18:39:483#include "commit.h"
Johannes Schindelined09aef2006-10-30 19:09:064#include "pkt-line.h"
Junio C Hamano52883fb2006-12-25 19:48:355#include "utf8.h"
Junio C Hamano199c45b2007-04-09 09:34:056#include "diff.h"
7#include "revision.h"
Johannes Schindelina97a7462009-10-09 10:21:578#include "notes.h"
Daniel Barkalow175785e2005-04-18 18:39:489
Linus Torvalds60ab26d2005-09-15 21:43:1710int save_commit_buffer = 1;
11
Daniel Barkalow175785e2005-04-18 18:39:4812const char *commit_type = "commit";
13
Junio C Hamanof76412e2005-08-21 09:51:1014static struct commit *check_commit(struct object *obj,
15 const unsigned char *sha1,
16 int quiet)
Linus Torvalds961784e2005-05-18 23:14:2217{
Linus Torvalds19746322006-07-12 03:45:3118 if (obj->type != OBJ_COMMIT) {
Junio C Hamanof76412e2005-08-21 09:51:1019 if (!quiet)
20 error("Object %s is a %s, not a commit",
Linus Torvalds885a86a2006-06-14 23:45:1321 sha1_to_hex(sha1), typename(obj->type));
Linus Torvalds961784e2005-05-18 23:14:2222 return NULL;
23 }
24 return (struct commit *) obj;
25}
26
Junio C Hamanof76412e2005-08-21 09:51:1027struct commit *lookup_commit_reference_gently(const unsigned char *sha1,
28 int quiet)
Linus Torvalds961784e2005-05-18 23:14:2229{
Junio C Hamano9534f402005-11-02 23:19:1330 struct object *obj = deref_tag(parse_object(sha1), NULL, 0);
Linus Torvalds961784e2005-05-18 23:14:2231
32 if (!obj)
33 return NULL;
Junio C Hamanof76412e2005-08-21 09:51:1034 return check_commit(obj, sha1, quiet);
35}
36
37struct commit *lookup_commit_reference(const unsigned char *sha1)
38{
39 return lookup_commit_reference_gently(sha1, 0);
Linus Torvalds961784e2005-05-18 23:14:2240}
41
Jason McMullan5d6ccf52005-06-03 15:05:3942struct commit *lookup_commit(const unsigned char *sha1)
Daniel Barkalow175785e2005-04-18 18:39:4843{
44 struct object *obj = lookup_object(sha1);
Linus Torvalds100c5f32007-04-17 05:11:4345 if (!obj)
46 return create_object(sha1, OBJ_COMMIT, alloc_commit_node());
Nicolas Pitred1af0022005-05-20 20:59:1747 if (!obj->type)
Linus Torvalds19746322006-07-12 03:45:3148 obj->type = OBJ_COMMIT;
Junio C Hamanof76412e2005-08-21 09:51:1049 return check_commit(obj, sha1, 0);
Daniel Barkalow175785e2005-04-18 18:39:4850}
51
Martin Koegler0a617792008-01-19 17:35:2352static unsigned long parse_commit_date(const char *buf, const char *tail)
Daniel Barkalow175785e2005-04-18 18:39:4853{
Martin Koegler0a617792008-01-19 17:35:2354 const char *dateptr;
Daniel Barkalow175785e2005-04-18 18:39:4855
Martin Koegler0a617792008-01-19 17:35:2356 if (buf + 6 >= tail)
57 return 0;
Daniel Barkalow175785e2005-04-18 18:39:4858 if (memcmp(buf, "author", 6))
59 return 0;
Martin Koegler0a617792008-01-19 17:35:2360 while (buf < tail && *buf++ != '\n')
Daniel Barkalow175785e2005-04-18 18:39:4861 /* nada */;
Martin Koegler0a617792008-01-19 17:35:2362 if (buf + 9 >= tail)
63 return 0;
Daniel Barkalow175785e2005-04-18 18:39:4864 if (memcmp(buf, "committer", 9))
65 return 0;
Martin Koegler0a617792008-01-19 17:35:2366 while (buf < tail && *buf++ != '>')
Daniel Barkalow175785e2005-04-18 18:39:4867 /* nada */;
Martin Koegler0a617792008-01-19 17:35:2368 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 Wongf2909742009-07-03 04:34:5476 return strtoul(dateptr, NULL, 10);
Daniel Barkalow175785e2005-04-18 18:39:4877}
78
Junio C Hamano5040f172006-04-07 06:58:5179static struct commit_graft **commit_graft;
Junio C Hamano5da5c8f2005-07-30 07:58:2880static int commit_graft_alloc, commit_graft_nr;
81
82static 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 Rientjesa89fccd2006-08-17 18:54:5790 int cmp = hashcmp(sha1, graft->sha1);
Junio C Hamano5da5c8f2005-07-30 07:58:2891 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 Hamano5040f172006-04-07 06:58:51101int register_commit_graft(struct commit_graft *graft, int ignore_dups)
Junio C Hamano5da5c8f2005-07-30 07:58:28102{
Junio C Hamano5040f172006-04-07 06:58:51103 int pos = commit_graft_pos(graft->sha1);
Junio C Hamanoa6080a02007-06-07 07:04:01104
Junio C Hamano5040f172006-04-07 06:58:51105 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
130struct 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 Hamanofe0a3cb2009-10-14 18:51:03136 while (len && isspace(buf[len-1]))
137 buf[--len] = '\0';
Yann Dirson360204c2006-04-17 11:41:49138 if (buf[0] == '#' || buf[0] == '\0')
Junio C Hamano5bc4ce52006-04-16 21:24:56139 return NULL;
Junio C Hamano5040f172006-04-07 06:58:51140 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 Shiraishic5ae6432008-10-02 10:14:30160static int read_graft_file(const char *graft_file)
Junio C Hamano5040f172006-04-07 06:58:51161{
Junio C Hamano5da5c8f2005-07-30 07:58:28162 FILE *fp = fopen(graft_file, "r");
163 char buf[1024];
Junio C Hamano5040f172006-04-07 06:58:51164 if (!fp)
165 return -1;
Junio C Hamano5da5c8f2005-07-30 07:58:28166 while (fgets(buf, sizeof(buf), fp)) {
167 /* The format is just "Commit Parent1 Parent2 ...\n" */
168 int len = strlen(buf);
Junio C Hamano5040f172006-04-07 06:58:51169 struct commit_graft *graft = read_graft_line(buf, len);
Junio C Hamano5bc4ce52006-04-16 21:24:56170 if (!graft)
171 continue;
Junio C Hamano5040f172006-04-07 06:58:51172 if (register_commit_graft(graft, 1))
Junio C Hamano5da5c8f2005-07-30 07:58:28173 error("duplicate graft data: %s", buf);
Junio C Hamano5da5c8f2005-07-30 07:58:28174 }
175 fclose(fp);
Junio C Hamano5040f172006-04-07 06:58:51176 return 0;
177}
178
179static 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 Schindelined09aef2006-10-30 19:09:06188 /* make sure shallows are read */
189 is_repository_shallow();
Junio C Hamano5040f172006-04-07 06:58:51190 commit_graft_prepared = 1;
Junio C Hamano5da5c8f2005-07-30 07:58:28191}
192
Martin Koegler45163382008-02-25 21:46:07193struct commit_graft *lookup_commit_graft(const unsigned char *sha1)
Junio C Hamano5da5c8f2005-07-30 07:58:28194{
195 int pos;
Junio C Hamano5040f172006-04-07 06:58:51196 prepare_commit_graft();
Junio C Hamano5da5c8f2005-07-30 07:58:28197 pos = commit_graft_pos(sha1);
198 if (pos < 0)
199 return NULL;
200 return commit_graft[pos];
201}
202
Shawn O. Pearceedace6f2009-10-31 00:47:23203int write_shallow_commits(struct strbuf *out, int use_pack_protocol)
Johannes Schindelined09aef2006-10-30 19:09:06204{
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. Pearceedace6f2009-10-31 00:47:23212 packet_buf_write(out, "shallow %s", hex);
Johannes Schindelined09aef2006-10-30 19:09:06213 else {
Shawn O. Pearceedace6f2009-10-31 00:47:23214 strbuf_addstr(out, hex);
215 strbuf_addch(out, '\n');
Johannes Schindelined09aef2006-10-30 19:09:06216 }
217 }
218 return count;
219}
220
Johannes Schindelinf53514b2006-10-30 19:09:53221int 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 King65d41d42010-01-29 10:28:44227 memmove(commit_graft + pos, commit_graft + pos + 1,
Johannes Schindelinf53514b2006-10-30 19:09:53228 sizeof(struct commit_graft *)
229 * (commit_graft_nr - pos - 1));
230 commit_graft_nr--;
231 return 0;
232}
233
Nicolas Pitrebd2c39f2005-05-06 17:48:34234int parse_commit_buffer(struct commit *item, void *buffer, unsigned long size)
Daniel Barkalow175785e2005-04-18 18:39:48235{
Junio C Hamano3b44f152006-06-28 10:51:00236 char *tail = buffer;
Linus Torvaldsf7cc77d2005-07-27 22:12:48237 char *bufptr = buffer;
Daniel Barkalow175785e2005-04-18 18:39:48238 unsigned char parent[20];
Linus Torvalds6c88be12005-06-21 03:26:03239 struct commit_list **pptr;
Junio C Hamano5da5c8f2005-07-30 07:58:28240 struct commit_graft *graft;
Nicolas Pitrebd2c39f2005-05-06 17:48:34241
Daniel Barkalow175785e2005-04-18 18:39:48242 if (item->object.parsed)
243 return 0;
244 item->object.parsed = 1;
Junio C Hamano3b44f152006-06-28 10:51:00245 tail += size;
Martin Koegler0a617792008-01-19 17:35:23246 if (tail <= bufptr + 46 || memcmp(bufptr, "tree ", 5) || bufptr[45] != '\n')
Linus Torvaldsf7cc77d2005-07-27 22:12:48247 return error("bogus commit object %s", sha1_to_hex(item->object.sha1));
Martin Koegler0a617792008-01-19 17:35:23248 if (get_sha1_hex(bufptr + 5, parent) < 0)
Junio C Hamanobd2afde2006-02-23 01:47:10249 return error("bad tree pointer in commit %s",
250 sha1_to_hex(item->object.sha1));
Daniel Barkalow175785e2005-04-18 18:39:48251 item->tree = lookup_tree(parent);
Daniel Barkalow175785e2005-04-18 18:39:48252 bufptr += 46; /* "tree " + "hex sha1" + "\n" */
Linus Torvalds6c88be12005-06-21 03:26:03253 pptr = &item->parents;
Junio C Hamano5da5c8f2005-07-30 07:58:28254
255 graft = lookup_commit_graft(item->object.sha1);
Junio C Hamano3b44f152006-06-28 10:51:00256 while (bufptr + 48 < tail && !memcmp(bufptr, "parent ", 7)) {
Linus Torvaldsf7cc77d2005-07-27 22:12:48257 struct commit *new_parent;
258
Junio C Hamano3b44f152006-06-28 10:51:00259 if (tail <= bufptr + 48 ||
260 get_sha1_hex(bufptr + 7, parent) ||
261 bufptr[47] != '\n')
Linus Torvaldsf7cc77d2005-07-27 22:12:48262 return error("bad parents in commit %s", sha1_to_hex(item->object.sha1));
Junio C Hamano5da5c8f2005-07-30 07:58:28263 bufptr += 48;
Johannes Schindelin7f3140c2009-07-23 15:33:49264 /*
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 Hamano5da5c8f2005-07-30 07:58:28269 continue;
Linus Torvaldsf7cc77d2005-07-27 22:12:48270 new_parent = lookup_commit(parent);
Miklos Vajna39468de2008-06-07 20:38:37271 if (new_parent)
Linus Torvalds6c88be12005-06-21 03:26:03272 pptr = &commit_list_insert(new_parent, pptr)->next;
Junio C Hamano5da5c8f2005-07-30 07:58:28273 }
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 Hamano5da5c8f2005-07-30 07:58:28282 }
Daniel Barkalow175785e2005-04-18 18:39:48283 }
Martin Koegler0a617792008-01-19 17:35:23284 item->date = parse_commit_date(bufptr, tail);
Junio C Hamano27dedf02005-11-17 05:32:44285
Daniel Barkalow175785e2005-04-18 18:39:48286 return 0;
287}
288
Nicolas Pitrebd2c39f2005-05-06 17:48:34289int parse_commit(struct commit *item)
290{
Nicolas Pitre21666f12007-02-26 19:55:59291 enum object_type type;
Nicolas Pitrebd2c39f2005-05-06 17:48:34292 void *buffer;
293 unsigned long size;
294 int ret;
295
Martin Koegler9786f682008-02-18 20:48:02296 if (!item)
297 return -1;
Nicolas Pitrebd2c39f2005-05-06 17:48:34298 if (item->object.parsed)
299 return 0;
Nicolas Pitre21666f12007-02-26 19:55:59300 buffer = read_sha1_file(item->object.sha1, &type, &size);
Nicolas Pitrebd2c39f2005-05-06 17:48:34301 if (!buffer)
302 return error("Could not read %s",
303 sha1_to_hex(item->object.sha1));
Nicolas Pitre21666f12007-02-26 19:55:59304 if (type != OBJ_COMMIT) {
Nicolas Pitrebd2c39f2005-05-06 17:48:34305 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 Torvalds60ab26d2005-09-15 21:43:17310 if (save_commit_buffer && !ret) {
Linus Torvalds3ff1fbb2005-05-26 01:27:14311 item->buffer = buffer;
312 return 0;
313 }
Nicolas Pitrebd2c39f2005-05-06 17:48:34314 free(buffer);
315 return ret;
316}
317
Linus Torvaldsac5155e2005-05-31 01:44:02318struct commit_list *commit_list_insert(struct commit *item, struct commit_list **list_p)
Daniel Barkalowdd97f852005-04-24 01:47:23319{
Christopher Li812666c2005-04-26 19:00:58320 struct commit_list *new_list = xmalloc(sizeof(struct commit_list));
Daniel Barkalowdd97f852005-04-24 01:47:23321 new_list->item = item;
322 new_list->next = *list_p;
323 *list_p = new_list;
Linus Torvaldsac5155e2005-05-31 01:44:02324 return new_list;
Daniel Barkalowdd97f852005-04-24 01:47:23325}
326
Miklos Vajna65319472008-06-27 16:21:55327unsigned commit_list_count(const struct commit_list *l)
328{
329 unsigned c = 0;
330 for (; l; l = l->next )
331 c++;
332 return c;
333}
334
Daniel Barkalow175785e2005-04-18 18:39:48335void free_commit_list(struct commit_list *list)
336{
337 while (list) {
338 struct commit_list *temp = list;
339 list = temp->next;
340 free(temp);
341 }
342}
Daniel Barkalowdd97f852005-04-24 01:47:23343
Linus Torvaldsf7554942005-07-06 16:31:17344struct commit_list * insert_by_date(struct commit *item, struct commit_list **list)
Daniel Barkalowdd97f852005-04-24 01:47:23345{
346 struct commit_list **pp = list;
347 struct commit_list *p;
348 while ((p = *pp) != NULL) {
349 if (p->item->date < item->date) {
350 break;
351 }
352 pp = &p->next;
353 }
Linus Torvaldsf7554942005-07-06 16:31:17354 return commit_list_insert(item, pp);
Daniel Barkalowdd97f852005-04-24 01:47:23355}
356
Junio C Hamanoa6080a02007-06-07 07:04:01357
Daniel Barkalowdd97f852005-04-24 01:47:23358void sort_by_date(struct commit_list **list)
359{
360 struct commit_list *ret = NULL;
361 while (*list) {
Linus Torvaldsf7554942005-07-06 16:31:17362 insert_by_date((*list)->item, &ret);
Daniel Barkalowdd97f852005-04-24 01:47:23363 *list = (*list)->next;
364 }
365 *list = ret;
366}
367
Daniel Barkalow58e28af2005-04-24 03:29:22368struct commit *pop_most_recent_commit(struct commit_list **list,
369 unsigned int mark)
Daniel Barkalowdd97f852005-04-24 01:47:23370{
371 struct commit *ret = (*list)->item;
372 struct commit_list *parents = ret->parents;
373 struct commit_list *old = *list;
374
375 *list = (*list)->next;
376 free(old);
377
378 while (parents) {
Linus Torvalds4056c092005-04-24 02:21:28379 struct commit *commit = parents->item;
Martin Koeglerdec38c82008-02-18 20:48:03380 if (!parse_commit(commit) && !(commit->object.flags & mark)) {
Daniel Barkalow58e28af2005-04-24 03:29:22381 commit->object.flags |= mark;
Linus Torvaldsf7554942005-07-06 16:31:17382 insert_by_date(commit, list);
Linus Torvalds4056c092005-04-24 02:21:28383 }
Daniel Barkalowdd97f852005-04-24 01:47:23384 parents = parents->next;
385 }
386 return ret;
387}
Linus Torvaldse3bc7a32005-06-01 15:34:23388
Junio C Hamanof8f9c732006-01-08 02:52:42389void clear_commit_marks(struct commit *commit, unsigned int mark)
390{
Johannes Schindelin60fcc2e2007-10-10 22:14:35391 while (commit) {
392 struct commit_list *parents;
Junio C Hamanof8f9c732006-01-08 02:52:42393
Johannes Schindelin60fcc2e2007-10-10 22:14:35394 if (!(mark & commit->object.flags))
395 return;
Junio C Hamano58ecf5c2006-07-05 00:45:22396
Johannes Schindelin60fcc2e2007-10-10 22:14:35397 commit->object.flags &= ~mark;
398
399 parents = commit->parents;
400 if (!parents)
401 return;
402
403 while ((parents = parents->next))
404 clear_commit_marks(parents->item, mark);
405
406 commit = commit->parents->item;
Junio C Hamanof8f9c732006-01-08 02:52:42407 }
408}
409
jon@blackcubes.dyndns.orga3437b82005-06-06 15:39:40410struct commit *pop_commit(struct commit_list **stack)
411{
412 struct commit_list *top = *stack;
413 struct commit *item = top ? top->item : NULL;
414
415 if (top) {
416 *stack = top->next;
417 free(top);
418 }
419 return item;
420}
421
Jon Seymourab580ac2005-07-06 16:39:34422/*
423 * Performs an in-place topological sort on the list supplied.
424 */
Junio C Hamano4c8725f2006-02-16 06:05:33425void sort_in_topological_order(struct commit_list ** list, int lifo)
Jon Seymourab580ac2005-07-06 16:39:34426{
Linus Torvalds23c17d42007-11-02 20:32:58427 struct commit_list *next, *orig = *list;
428 struct commit_list *work, **insert;
429 struct commit_list **pptr;
Fredrik Kuivinen6b6dcfc2006-03-10 09:21:37430
Linus Torvalds23c17d42007-11-02 20:32:58431 if (!orig)
Eric Wong7d6fb372005-12-24 12:12:43432 return;
Linus Torvalds23c17d42007-11-02 20:32:58433 *list = NULL;
434
435 /* Mark them and clear the indegree */
436 for (next = orig; next; next = next->next) {
437 struct commit *commit = next->item;
Johannes Schindeline358f3c2008-07-23 00:51:36438 commit->indegree = 1;
Jon Seymourab580ac2005-07-06 16:39:34439 }
Linus Torvalds23c17d42007-11-02 20:32:58440
Jon Seymourab580ac2005-07-06 16:39:34441 /* update the indegree */
Linus Torvalds23c17d42007-11-02 20:32:58442 for (next = orig; next; next = next->next) {
Jon Seymourab580ac2005-07-06 16:39:34443 struct commit_list * parents = next->item->parents;
444 while (parents) {
Linus Torvalds23c17d42007-11-02 20:32:58445 struct commit *parent = parents->item;
Fredrik Kuivinen6b6dcfc2006-03-10 09:21:37446
Johannes Schindeline358f3c2008-07-23 00:51:36447 if (parent->indegree)
Linus Torvalds23c17d42007-11-02 20:32:58448 parent->indegree++;
449 parents = parents->next;
Jon Seymourab580ac2005-07-06 16:39:34450 }
Jon Seymourab580ac2005-07-06 16:39:34451 }
Linus Torvalds23c17d42007-11-02 20:32:58452
Junio C Hamanoa6080a02007-06-07 07:04:01453 /*
Pierre Habouzit674d1722007-09-10 10:35:06454 * find the tips
455 *
456 * tips are nodes not reachable from any other node in the list
457 *
458 * the tips serve as a starting set for the work queue.
459 */
Linus Torvalds23c17d42007-11-02 20:32:58460 work = NULL;
Linus Torvalds2ed02882005-11-14 18:01:26461 insert = &work;
Linus Torvalds23c17d42007-11-02 20:32:58462 for (next = orig; next; next = next->next) {
463 struct commit *commit = next->item;
Jon Seymourab580ac2005-07-06 16:39:34464
Johannes Schindeline358f3c2008-07-23 00:51:36465 if (commit->indegree == 1)
Linus Torvalds23c17d42007-11-02 20:32:58466 insert = &commit_list_insert(commit, insert)->next;
Jon Seymourab580ac2005-07-06 16:39:34467 }
Junio C Hamano4c8725f2006-02-16 06:05:33468
Jon Seymourab580ac2005-07-06 16:39:34469 /* process the list in topological order */
Junio C Hamano4c8725f2006-02-16 06:05:33470 if (!lifo)
471 sort_by_date(&work);
Linus Torvalds23c17d42007-11-02 20:32:58472
473 pptr = list;
474 *list = NULL;
Jon Seymourab580ac2005-07-06 16:39:34475 while (work) {
Linus Torvalds23c17d42007-11-02 20:32:58476 struct commit *commit;
477 struct commit_list *parents, *work_item;
Jon Seymourab580ac2005-07-06 16:39:34478
Linus Torvalds23c17d42007-11-02 20:32:58479 work_item = work;
480 work = work_item->next;
481 work_item->next = NULL;
Fredrik Kuivinen6b6dcfc2006-03-10 09:21:37482
Linus Torvalds23c17d42007-11-02 20:32:58483 commit = work_item->item;
484 for (parents = commit->parents; parents ; parents = parents->next) {
485 struct commit *parent=parents->item;
486
Johannes Schindeline358f3c2008-07-23 00:51:36487 if (!parent->indegree)
Linus Torvalds23c17d42007-11-02 20:32:58488 continue;
489
490 /*
491 * parents are only enqueued for emission
492 * when all their children have been emitted thereby
493 * guaranteeing topological order.
494 */
Johannes Schindeline358f3c2008-07-23 00:51:36495 if (--parent->indegree == 1) {
Linus Torvalds23c17d42007-11-02 20:32:58496 if (!lifo)
497 insert_by_date(parent, &work);
498 else
499 commit_list_insert(parent, &work);
Jon Seymourab580ac2005-07-06 16:39:34500 }
Jon Seymourab580ac2005-07-06 16:39:34501 }
502 /*
Pierre Habouzit674d1722007-09-10 10:35:06503 * work_item is a commit all of whose children
504 * have already been emitted. we can emit it now.
505 */
Johannes Schindeline358f3c2008-07-23 00:51:36506 commit->indegree = 0;
Linus Torvalds23c17d42007-11-02 20:32:58507 *pptr = work_item;
508 pptr = &work_item->next;
Jon Seymourab580ac2005-07-06 16:39:34509 }
Jon Seymourab580ac2005-07-06 16:39:34510}
Johannes Schindelin7c6f8aa2006-06-29 13:17:32511
Junio C Hamano12952282007-01-09 07:10:49512/* merge-base stuff */
Johannes Schindelin7c6f8aa2006-06-29 13:17:32513
Junio C Hamano577ed5c2006-10-23 00:32:47514/* bits #0..15 in revision.h */
515#define PARENT1 (1u<<16)
516#define PARENT2 (1u<<17)
517#define STALE (1u<<18)
518#define RESULT (1u<<19)
Johannes Schindelin7c6f8aa2006-06-29 13:17:32519
Junio C Hamano12952282007-01-09 07:10:49520static const unsigned all_flags = (PARENT1 | PARENT2 | STALE | RESULT);
521
Johannes Schindelin7c6f8aa2006-06-29 13:17:32522static struct commit *interesting(struct commit_list *list)
523{
524 while (list) {
525 struct commit *commit = list->item;
526 list = list->next;
Junio C Hamano542ccef2006-07-02 18:34:17527 if (commit->object.flags & STALE)
Johannes Schindelin7c6f8aa2006-06-29 13:17:32528 continue;
529 return commit;
530 }
531 return NULL;
532}
533
Junio C Hamano6a938642008-06-27 16:22:02534static struct commit_list *merge_bases_many(struct commit *one, int n, struct commit **twos)
Johannes Schindelin7c6f8aa2006-06-29 13:17:32535{
536 struct commit_list *list = NULL;
537 struct commit_list *result = NULL;
Junio C Hamano6a938642008-06-27 16:22:02538 int i;
Johannes Schindelin7c6f8aa2006-06-29 13:17:32539
Junio C Hamano6a938642008-06-27 16:22:02540 for (i = 0; i < n; i++) {
541 if (one == twos[i])
542 /*
543 * We do not mark this even with RESULT so we do not
544 * have to clean it up.
545 */
546 return commit_list_insert(one, &result);
547 }
Johannes Schindelin7c6f8aa2006-06-29 13:17:32548
Martin Koegler172947e2008-02-18 20:47:57549 if (parse_commit(one))
550 return NULL;
Junio C Hamano6a938642008-06-27 16:22:02551 for (i = 0; i < n; i++) {
552 if (parse_commit(twos[i]))
553 return NULL;
554 }
Johannes Schindelin7c6f8aa2006-06-29 13:17:32555
Junio C Hamanof3249432006-07-05 01:46:42556 one->object.flags |= PARENT1;
Junio C Hamanof3249432006-07-05 01:46:42557 insert_by_date(one, &list);
Junio C Hamano6a938642008-06-27 16:22:02558 for (i = 0; i < n; i++) {
559 twos[i]->object.flags |= PARENT2;
560 insert_by_date(twos[i], &list);
561 }
Johannes Schindelin7c6f8aa2006-06-29 13:17:32562
563 while (interesting(list)) {
Junio C Hamanof3249432006-07-05 01:46:42564 struct commit *commit;
Johannes Schindelin7c6f8aa2006-06-29 13:17:32565 struct commit_list *parents;
Brandon Caseyf203d692009-08-27 16:16:34566 struct commit_list *next;
Junio C Hamanof3249432006-07-05 01:46:42567 int flags;
Johannes Schindelin7c6f8aa2006-06-29 13:17:32568
Junio C Hamanof3249432006-07-05 01:46:42569 commit = list->item;
Brandon Caseyf203d692009-08-27 16:16:34570 next = list->next;
Junio C Hamanof3249432006-07-05 01:46:42571 free(list);
Brandon Caseyf203d692009-08-27 16:16:34572 list = next;
Junio C Hamanof3249432006-07-05 01:46:42573
574 flags = commit->object.flags & (PARENT1 | PARENT2 | STALE);
Johannes Schindelin7c6f8aa2006-06-29 13:17:32575 if (flags == (PARENT1 | PARENT2)) {
Junio C Hamanof3249432006-07-05 01:46:42576 if (!(commit->object.flags & RESULT)) {
577 commit->object.flags |= RESULT;
578 insert_by_date(commit, &result);
579 }
Junio C Hamano542ccef2006-07-02 18:34:17580 /* Mark parents of a found merge stale */
581 flags |= STALE;
Johannes Schindelin7c6f8aa2006-06-29 13:17:32582 }
583 parents = commit->parents;
584 while (parents) {
585 struct commit *p = parents->item;
586 parents = parents->next;
587 if ((p->object.flags & flags) == flags)
588 continue;
Martin Koegler172947e2008-02-18 20:47:57589 if (parse_commit(p))
590 return NULL;
Johannes Schindelin7c6f8aa2006-06-29 13:17:32591 p->object.flags |= flags;
592 insert_by_date(p, &list);
593 }
594 }
595
Junio C Hamanof3249432006-07-05 01:46:42596 /* Clean up the result to remove stale ones */
Junio C Hamano12952282007-01-09 07:10:49597 free_commit_list(list);
Junio C Hamanof3249432006-07-05 01:46:42598 list = result; result = NULL;
599 while (list) {
Brandon Caseyf203d692009-08-27 16:16:34600 struct commit_list *next = list->next;
Junio C Hamanof3249432006-07-05 01:46:42601 if (!(list->item->object.flags & STALE))
602 insert_by_date(list->item, &result);
603 free(list);
Brandon Caseyf203d692009-08-27 16:16:34604 list = next;
Junio C Hamanof3249432006-07-05 01:46:42605 }
606 return result;
607}
Johannes Schindelin7c6f8aa2006-06-29 13:17:32608
Miklos Vajna5240c9d2008-06-27 16:22:00609struct commit_list *get_octopus_merge_bases(struct commit_list *in)
610{
611 struct commit_list *i, *j, *k, *ret = NULL;
612 struct commit_list **pptr = &ret;
613
614 for (i = in; i; i = i->next) {
615 if (!ret)
616 pptr = &commit_list_insert(i->item, pptr)->next;
617 else {
618 struct commit_list *new = NULL, *end = NULL;
619
620 for (j = ret; j; j = j->next) {
621 struct commit_list *bases;
622 bases = get_merge_bases(i->item, j->item, 1);
623 if (!new)
624 new = bases;
625 else
626 end->next = bases;
627 for (k = bases; k; k = k->next)
628 end = k;
629 }
630 ret = new;
631 }
632 }
633 return ret;
634}
635
Junio C Hamano6a938642008-06-27 16:22:02636struct commit_list *get_merge_bases_many(struct commit *one,
637 int n,
638 struct commit **twos,
639 int cleanup)
Junio C Hamanof3249432006-07-05 01:46:42640{
Junio C Hamanof3249432006-07-05 01:46:42641 struct commit_list *list;
642 struct commit **rslt;
643 struct commit_list *result;
644 int cnt, i, j;
Johannes Schindelin7c6f8aa2006-06-29 13:17:32645
Junio C Hamano6a938642008-06-27 16:22:02646 result = merge_bases_many(one, n, twos);
647 for (i = 0; i < n; i++) {
648 if (one == twos[i])
649 return result;
650 }
Junio C Hamanof3249432006-07-05 01:46:42651 if (!result || !result->next) {
652 if (cleanup) {
653 clear_commit_marks(one, all_flags);
Junio C Hamano6a938642008-06-27 16:22:02654 for (i = 0; i < n; i++)
655 clear_commit_marks(twos[i], all_flags);
Johannes Schindelin7c6f8aa2006-06-29 13:17:32656 }
Junio C Hamanof3249432006-07-05 01:46:42657 return result;
Johannes Schindelin7c6f8aa2006-06-29 13:17:32658 }
659
Junio C Hamanof3249432006-07-05 01:46:42660 /* There are more than one */
661 cnt = 0;
662 list = result;
663 while (list) {
664 list = list->next;
665 cnt++;
666 }
667 rslt = xcalloc(cnt, sizeof(*rslt));
668 for (list = result, i = 0; list; list = list->next)
669 rslt[i++] = list->item;
670 free_commit_list(result);
671
672 clear_commit_marks(one, all_flags);
Junio C Hamano6a938642008-06-27 16:22:02673 for (i = 0; i < n; i++)
674 clear_commit_marks(twos[i], all_flags);
Junio C Hamanof3249432006-07-05 01:46:42675 for (i = 0; i < cnt - 1; i++) {
676 for (j = i+1; j < cnt; j++) {
677 if (!rslt[i] || !rslt[j])
678 continue;
Junio C Hamano6a938642008-06-27 16:22:02679 result = merge_bases_many(rslt[i], 1, &rslt[j]);
Junio C Hamanof3249432006-07-05 01:46:42680 clear_commit_marks(rslt[i], all_flags);
681 clear_commit_marks(rslt[j], all_flags);
682 for (list = result; list; list = list->next) {
683 if (rslt[i] == list->item)
684 rslt[i] = NULL;
685 if (rslt[j] == list->item)
686 rslt[j] = NULL;
687 }
688 }
Junio C Hamano58ecf5c2006-07-05 00:45:22689 }
Johannes Schindelin7c6f8aa2006-06-29 13:17:32690
Junio C Hamanof3249432006-07-05 01:46:42691 /* Surviving ones in rslt[] are the independent results */
692 result = NULL;
693 for (i = 0; i < cnt; i++) {
694 if (rslt[i])
695 insert_by_date(rslt[i], &result);
696 }
697 free(rslt);
Johannes Schindelin7c6f8aa2006-06-29 13:17:32698 return result;
699}
Junio C Hamano2ecd2bb2006-12-19 08:14:04700
Junio C Hamano6a938642008-06-27 16:22:02701struct commit_list *get_merge_bases(struct commit *one, struct commit *two,
702 int cleanup)
703{
704 return get_merge_bases_many(one, 1, &two, cleanup);
705}
706
Jake Goulding7fcdb362009-01-26 14:13:24707int is_descendant_of(struct commit *commit, struct commit_list *with_commit)
708{
709 if (!with_commit)
710 return 1;
711 while (with_commit) {
712 struct commit *other;
713
714 other = with_commit->item;
715 with_commit = with_commit->next;
716 if (in_merge_bases(other, &commit, 1))
717 return 1;
718 }
719 return 0;
720}
721
Junio C Hamano03840fc2007-01-09 07:22:31722int in_merge_bases(struct commit *commit, struct commit **reference, int num)
Junio C Hamano2ecd2bb2006-12-19 08:14:04723{
724 struct commit_list *bases, *b;
725 int ret = 0;
726
Junio C Hamano03840fc2007-01-09 07:22:31727 if (num == 1)
728 bases = get_merge_bases(commit, *reference, 1);
729 else
730 die("not yet");
Junio C Hamano2ecd2bb2006-12-19 08:14:04731 for (b = bases; b; b = b->next) {
Junio C Hamano03840fc2007-01-09 07:22:31732 if (!hashcmp(commit->object.sha1, b->item->object.sha1)) {
Junio C Hamano2ecd2bb2006-12-19 08:14:04733 ret = 1;
734 break;
735 }
736 }
737
738 free_commit_list(bases);
739 return ret;
740}
Junio C Hamano98cf9c32008-06-27 16:22:03741
742struct commit_list *reduce_heads(struct commit_list *heads)
743{
744 struct commit_list *p;
745 struct commit_list *result = NULL, **tail = &result;
746 struct commit **other;
747 size_t num_head, num_other;
748
749 if (!heads)
750 return NULL;
751
752 /* Avoid unnecessary reallocations */
753 for (p = heads, num_head = 0; p; p = p->next)
754 num_head++;
755 other = xcalloc(sizeof(*other), num_head);
756
757 /* For each commit, see if it can be reached by others */
758 for (p = heads; p; p = p->next) {
759 struct commit_list *q, *base;
760
Junio C Hamano711f6b22008-07-14 07:09:41761 /* Do we already have this in the result? */
762 for (q = result; q; q = q->next)
763 if (p->item == q->item)
764 break;
765 if (q)
766 continue;
767
Junio C Hamano98cf9c32008-06-27 16:22:03768 num_other = 0;
769 for (q = heads; q; q = q->next) {
Sverre Hvammen Johansen3d1dd472008-07-13 08:13:55770 if (p->item == q->item)
Junio C Hamano98cf9c32008-06-27 16:22:03771 continue;
772 other[num_other++] = q->item;
773 }
Junio C Hamano711f6b22008-07-14 07:09:41774 if (num_other)
Junio C Hamano98cf9c32008-06-27 16:22:03775 base = get_merge_bases_many(p->item, num_other, other, 1);
Junio C Hamano711f6b22008-07-14 07:09:41776 else
Junio C Hamano98cf9c32008-06-27 16:22:03777 base = NULL;
778 /*
779 * If p->item does not have anything common with other
780 * commits, there won't be any merge base. If it is
781 * reachable from some of the others, p->item will be
782 * the merge base. If its history is connected with
783 * others, but p->item is not reachable by others, we
784 * will get something other than p->item back.
785 */
786 if (!base || (base->item != p->item))
787 tail = &(commit_list_insert(p->item, tail)->next);
788 free_commit_list(base);
789 }
790 free(other);
791 return result;
792}