Blame


1 372ccdbb 2018-06-10 stsp /*
2 372ccdbb 2018-06-10 stsp * Copyright (c) 2018 Stefan Sperling <stsp@openbsd.org>
3 372ccdbb 2018-06-10 stsp *
4 372ccdbb 2018-06-10 stsp * Permission to use, copy, modify, and distribute this software for any
5 372ccdbb 2018-06-10 stsp * purpose with or without fee is hereby granted, provided that the above
6 372ccdbb 2018-06-10 stsp * copyright notice and this permission notice appear in all copies.
7 372ccdbb 2018-06-10 stsp *
8 372ccdbb 2018-06-10 stsp * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 372ccdbb 2018-06-10 stsp * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 372ccdbb 2018-06-10 stsp * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 372ccdbb 2018-06-10 stsp * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 372ccdbb 2018-06-10 stsp * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 372ccdbb 2018-06-10 stsp * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 372ccdbb 2018-06-10 stsp * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 372ccdbb 2018-06-10 stsp */
16 372ccdbb 2018-06-10 stsp
17 372ccdbb 2018-06-10 stsp #include <sys/types.h>
18 372ccdbb 2018-06-10 stsp #include <sys/stat.h>
19 372ccdbb 2018-06-10 stsp #include <sys/queue.h>
20 372ccdbb 2018-06-10 stsp #include <sys/stdint.h>
21 372ccdbb 2018-06-10 stsp
22 56e0773d 2019-11-28 stsp #include <limits.h>
23 372ccdbb 2018-06-10 stsp #include <stdio.h>
24 372ccdbb 2018-06-10 stsp #include <stdlib.h>
25 372ccdbb 2018-06-10 stsp #include <string.h>
26 372ccdbb 2018-06-10 stsp #include <sha1.h>
27 372ccdbb 2018-06-10 stsp #include <zlib.h>
28 372ccdbb 2018-06-10 stsp #include <ctype.h>
29 372ccdbb 2018-06-10 stsp
30 372ccdbb 2018-06-10 stsp #include "got_error.h"
31 372ccdbb 2018-06-10 stsp #include "got_object.h"
32 6fb7cd11 2019-08-22 stsp #include "got_cancel.h"
33 372ccdbb 2018-06-10 stsp #include "got_commit_graph.h"
34 324d37e7 2019-05-11 stsp #include "got_path.h"
35 372ccdbb 2018-06-10 stsp
36 372ccdbb 2018-06-10 stsp #include "got_lib_delta.h"
37 63581804 2018-07-09 stsp #include "got_lib_inflate.h"
38 372ccdbb 2018-06-10 stsp #include "got_lib_object.h"
39 372ccdbb 2018-06-10 stsp #include "got_lib_object_idset.h"
40 372ccdbb 2018-06-10 stsp
41 372ccdbb 2018-06-10 stsp struct got_commit_graph_node {
42 372ccdbb 2018-06-10 stsp struct got_object_id id;
43 73026088 2018-11-18 stsp time_t timestamp;
44 b43fbaa0 2018-06-11 stsp
45 372ccdbb 2018-06-10 stsp /* Used during graph iteration. */
46 372ccdbb 2018-06-10 stsp TAILQ_ENTRY(got_commit_graph_node) entry;
47 372ccdbb 2018-06-10 stsp };
48 372ccdbb 2018-06-10 stsp
49 9ba79e04 2018-06-11 stsp TAILQ_HEAD(got_commit_graph_iter_list, got_commit_graph_node);
50 9ba79e04 2018-06-11 stsp
51 b565f6f8 2018-07-23 stsp struct got_commit_graph_branch_tip {
52 32777563 2018-11-07 stsp struct got_object_id *commit_id;
53 32777563 2018-11-07 stsp struct got_commit_object *commit;
54 32777563 2018-11-07 stsp struct got_commit_graph_node *new_node;
55 b565f6f8 2018-07-23 stsp };
56 b565f6f8 2018-07-23 stsp
57 372ccdbb 2018-06-10 stsp struct got_commit_graph {
58 372ccdbb 2018-06-10 stsp /* The set of all commits we have traversed. */
59 372ccdbb 2018-06-10 stsp struct got_object_idset *node_ids;
60 372ccdbb 2018-06-10 stsp
61 0ed6ed4c 2018-06-13 stsp int flags;
62 0ed6ed4c 2018-06-13 stsp #define GOT_COMMIT_GRAPH_FIRST_PARENT_TRAVERSAL 0x01
63 0ed6ed4c 2018-06-13 stsp
64 372ccdbb 2018-06-10 stsp /*
65 372ccdbb 2018-06-10 stsp * A set of object IDs of known parent commits which we have not yet
66 372ccdbb 2018-06-10 stsp * traversed. Each commit ID in this set represents a branch in commit
67 372ccdbb 2018-06-10 stsp * history: Either the first-parent branch of the head node, or another
68 372ccdbb 2018-06-10 stsp * branch corresponding to a traversed merge commit for which we have
69 372ccdbb 2018-06-10 stsp * not traversed a branch point commit yet.
70 372ccdbb 2018-06-10 stsp *
71 372ccdbb 2018-06-10 stsp * Whenever we add a commit with a matching ID to the graph, we remove
72 372ccdbb 2018-06-10 stsp * its corresponding element from this set, and add new elements for
73 372ccdbb 2018-06-10 stsp * each of that commit's parent commits which were not traversed yet.
74 372ccdbb 2018-06-10 stsp *
75 372ccdbb 2018-06-10 stsp * When API users ask us to fetch more commits, we fetch commits from
76 372ccdbb 2018-06-10 stsp * all currently open branches. This allows API users to process
77 372ccdbb 2018-06-10 stsp * commits in linear order even though the history contains branches.
78 372ccdbb 2018-06-10 stsp */
79 372ccdbb 2018-06-10 stsp struct got_object_idset *open_branches;
80 b565f6f8 2018-07-23 stsp
81 32777563 2018-11-07 stsp /* Array of branch tips for fetch_commits_from_open_branches(). */
82 b565f6f8 2018-07-23 stsp struct got_commit_graph_branch_tip *tips;
83 5e50c36a 2018-11-08 stsp int ntips;
84 372ccdbb 2018-06-10 stsp
85 31cedeaf 2018-09-15 stsp /* Path of tree entry of interest to the API user. */
86 31cedeaf 2018-09-15 stsp char *path;
87 31cedeaf 2018-09-15 stsp
88 94489f7d 2020-01-04 stsp /*
89 94489f7d 2020-01-04 stsp * Nodes which will be passed to the API user next, sorted by
90 94489f7d 2020-01-04 stsp * commit timestmap.
91 94489f7d 2020-01-04 stsp */
92 9ba79e04 2018-06-11 stsp struct got_commit_graph_iter_list iter_list;
93 372ccdbb 2018-06-10 stsp };
94 372ccdbb 2018-06-10 stsp
95 31cedeaf 2018-09-15 stsp static const struct got_error *
96 41fa1437 2018-11-05 stsp detect_changed_path(int *changed, struct got_commit_object *commit,
97 31cedeaf 2018-09-15 stsp struct got_object_id *commit_id, const char *path,
98 31cedeaf 2018-09-15 stsp struct got_repository *repo)
99 31cedeaf 2018-09-15 stsp {
100 31cedeaf 2018-09-15 stsp const struct got_error *err = NULL;
101 41fa1437 2018-11-05 stsp struct got_commit_object *pcommit = NULL;
102 31cedeaf 2018-09-15 stsp struct got_tree_object *tree = NULL, *ptree = NULL;
103 31cedeaf 2018-09-15 stsp struct got_object_qid *pid;
104 31cedeaf 2018-09-15 stsp
105 31cedeaf 2018-09-15 stsp if (got_path_is_root_dir(path)) {
106 31cedeaf 2018-09-15 stsp *changed = 1;
107 31cedeaf 2018-09-15 stsp return NULL;
108 31cedeaf 2018-09-15 stsp }
109 31cedeaf 2018-09-15 stsp
110 31cedeaf 2018-09-15 stsp *changed = 0;
111 31cedeaf 2018-09-15 stsp
112 31cedeaf 2018-09-15 stsp pid = SIMPLEQ_FIRST(&commit->parent_ids);
113 31cedeaf 2018-09-15 stsp if (pid == NULL) {
114 31cedeaf 2018-09-15 stsp struct got_object_id *obj_id;
115 31cedeaf 2018-09-15 stsp err = got_object_id_by_path(&obj_id, repo, commit_id, path);
116 fd1d2703 2018-11-04 stsp if (err) {
117 d1451975 2018-11-11 stsp if (err->code == GOT_ERR_NO_TREE_ENTRY)
118 fd1d2703 2018-11-04 stsp err = NULL;
119 fd1d2703 2018-11-04 stsp } else
120 fd1d2703 2018-11-04 stsp *changed = 1; /* The path was created in this commit. */
121 31cedeaf 2018-09-15 stsp free(obj_id);
122 0e9101d5 2018-11-18 stsp return err;
123 0e9101d5 2018-11-18 stsp }
124 7310c1c3 2018-11-18 stsp
125 0e9101d5 2018-11-18 stsp err = got_object_open_as_tree(&tree, repo, commit->tree_id);
126 0e9101d5 2018-11-18 stsp if (err)
127 0e9101d5 2018-11-18 stsp return err;
128 372ccdbb 2018-06-10 stsp
129 0e9101d5 2018-11-18 stsp err = got_object_open_as_commit(&pcommit, repo, pid->id);
130 0e9101d5 2018-11-18 stsp if (err)
131 0e9101d5 2018-11-18 stsp goto done;
132 0e9101d5 2018-11-18 stsp
133 0e9101d5 2018-11-18 stsp err = got_object_open_as_tree(&ptree, repo, pcommit->tree_id);
134 0e9101d5 2018-11-18 stsp if (err)
135 0e9101d5 2018-11-18 stsp goto done;
136 0e9101d5 2018-11-18 stsp
137 81a966c0 2018-11-18 stsp err = got_object_tree_path_changed(changed, tree, ptree, path, repo);
138 31cedeaf 2018-09-15 stsp done:
139 31cedeaf 2018-09-15 stsp if (tree)
140 31cedeaf 2018-09-15 stsp got_object_tree_close(tree);
141 31cedeaf 2018-09-15 stsp if (ptree)
142 31cedeaf 2018-09-15 stsp got_object_tree_close(ptree);
143 31cedeaf 2018-09-15 stsp if (pcommit)
144 41fa1437 2018-11-05 stsp got_object_commit_close(pcommit);
145 31cedeaf 2018-09-15 stsp return err;
146 31cedeaf 2018-09-15 stsp }
147 31cedeaf 2018-09-15 stsp
148 4626e416 2018-06-10 stsp static void
149 9ba79e04 2018-06-11 stsp add_node_to_iter_list(struct got_commit_graph *graph,
150 de56b2d7 2020-01-04 stsp struct got_commit_graph_node *node)
151 372ccdbb 2018-06-10 stsp {
152 4bd3f2bb 2018-06-10 stsp struct got_commit_graph_node *n, *next;
153 1c7a5dcb 2018-09-15 stsp
154 94489f7d 2020-01-04 stsp n = TAILQ_FIRST(&graph->iter_list);
155 bee6b577 2018-09-19 stsp while (n) {
156 bee6b577 2018-09-19 stsp next = TAILQ_NEXT(n, entry);
157 73026088 2018-11-18 stsp if (next && node->timestamp >= next->timestamp) {
158 bee6b577 2018-09-19 stsp TAILQ_INSERT_BEFORE(next, node, entry);
159 bee6b577 2018-09-19 stsp return;
160 fe8df4c2 2018-06-16 stsp }
161 bee6b577 2018-09-19 stsp n = next;
162 fe8df4c2 2018-06-16 stsp }
163 93e45b7c 2018-09-24 stsp TAILQ_INSERT_TAIL(&graph->iter_list, node, entry);
164 0ed6ed4c 2018-06-13 stsp }
165 0ed6ed4c 2018-06-13 stsp
166 0ed6ed4c 2018-06-13 stsp static const struct got_error *
167 31cedeaf 2018-09-15 stsp close_branch(struct got_commit_graph *graph, struct got_object_id *commit_id)
168 31cedeaf 2018-09-15 stsp {
169 31cedeaf 2018-09-15 stsp const struct got_error *err;
170 31cedeaf 2018-09-15 stsp
171 31cedeaf 2018-09-15 stsp err = got_object_idset_remove(NULL, graph->open_branches, commit_id);
172 31cedeaf 2018-09-15 stsp if (err && err->code != GOT_ERR_NO_OBJ)
173 31cedeaf 2018-09-15 stsp return err;
174 31cedeaf 2018-09-15 stsp return NULL;
175 31cedeaf 2018-09-15 stsp }
176 31cedeaf 2018-09-15 stsp
177 31cedeaf 2018-09-15 stsp static const struct got_error *
178 14159a7b 2020-01-04 stsp advance_branch(struct got_commit_graph *graph, struct got_object_id *commit_id,
179 14159a7b 2020-01-04 stsp struct got_commit_object *commit, struct got_repository *repo)
180 0ed6ed4c 2018-06-13 stsp {
181 0ed6ed4c 2018-06-13 stsp const struct got_error *err;
182 0ed6ed4c 2018-06-13 stsp struct got_object_qid *qid;
183 0ed6ed4c 2018-06-13 stsp
184 31cedeaf 2018-09-15 stsp err = close_branch(graph, commit_id);
185 31cedeaf 2018-09-15 stsp if (err)
186 0ed6ed4c 2018-06-13 stsp return err;
187 0ed6ed4c 2018-06-13 stsp
188 0ed6ed4c 2018-06-13 stsp if (graph->flags & GOT_COMMIT_GRAPH_FIRST_PARENT_TRAVERSAL) {
189 0ed6ed4c 2018-06-13 stsp qid = SIMPLEQ_FIRST(&commit->parent_ids);
190 9b88e78c 2018-11-18 stsp if (qid == NULL ||
191 8e291695 2020-01-04 stsp got_object_idset_contains(graph->open_branches, qid->id))
192 0ed6ed4c 2018-06-13 stsp return NULL;
193 9b88e78c 2018-11-18 stsp return got_object_idset_add(graph->open_branches,
194 8e291695 2020-01-04 stsp qid->id, NULL);
195 bee6b577 2018-09-19 stsp }
196 bee6b577 2018-09-19 stsp
197 bee6b577 2018-09-19 stsp /*
198 bee6b577 2018-09-19 stsp * If we are graphing commits for a specific path, skip branches
199 bee6b577 2018-09-19 stsp * which do not contribute any content to this path.
200 bee6b577 2018-09-19 stsp */
201 7a62478b 2018-11-18 stsp if (commit->nparents > 1 && !got_path_is_root_dir(graph->path)) {
202 6dcdad08 2018-11-18 stsp struct got_object_id *merged_id, *prev_id = NULL;
203 bee6b577 2018-09-19 stsp int branches_differ = 0;
204 bee6b577 2018-09-19 stsp
205 bee6b577 2018-09-19 stsp err = got_object_id_by_path(&merged_id, repo, commit_id,
206 bee6b577 2018-09-19 stsp graph->path);
207 bee6b577 2018-09-19 stsp if (err)
208 bee6b577 2018-09-19 stsp return err;
209 bee6b577 2018-09-19 stsp
210 bee6b577 2018-09-19 stsp SIMPLEQ_FOREACH(qid, &commit->parent_ids, entry) {
211 6dcdad08 2018-11-18 stsp struct got_object_id *id;
212 6dcdad08 2018-11-18 stsp
213 8e291695 2020-01-04 stsp if (got_object_idset_contains(graph->open_branches,
214 8e291695 2020-01-04 stsp qid->id))
215 9b88e78c 2018-11-18 stsp continue;
216 bee6b577 2018-09-19 stsp
217 bee6b577 2018-09-19 stsp err = got_object_id_by_path(&id, repo, qid->id,
218 bee6b577 2018-09-19 stsp graph->path);
219 bee6b577 2018-09-19 stsp if (err) {
220 d1451975 2018-11-11 stsp if (err->code == GOT_ERR_NO_TREE_ENTRY) {
221 bee6b577 2018-09-19 stsp branches_differ = 1;
222 bee6b577 2018-09-19 stsp continue;
223 bee6b577 2018-09-19 stsp }
224 6dcdad08 2018-11-18 stsp free(merged_id);
225 6dcdad08 2018-11-18 stsp free(prev_id);
226 bee6b577 2018-09-19 stsp return err;
227 bee6b577 2018-09-19 stsp }
228 bee6b577 2018-09-19 stsp
229 bee6b577 2018-09-19 stsp if (prev_id) {
230 bee6b577 2018-09-19 stsp if (!branches_differ &&
231 d2c2d781 2018-11-18 stsp got_object_id_cmp(id, prev_id) != 0)
232 bee6b577 2018-09-19 stsp branches_differ = 1;
233 6dcdad08 2018-11-18 stsp free(prev_id);
234 6dcdad08 2018-11-18 stsp }
235 6dcdad08 2018-11-18 stsp prev_id = id;
236 bee6b577 2018-09-19 stsp
237 bee6b577 2018-09-19 stsp /*
238 bee6b577 2018-09-19 stsp * If a branch has created the merged content we can
239 bee6b577 2018-09-19 stsp * skip any other branches.
240 bee6b577 2018-09-19 stsp */
241 bee6b577 2018-09-19 stsp if (got_object_id_cmp(merged_id, id) == 0) {
242 b36429ab 2018-11-05 stsp err = got_object_idset_add(graph->open_branches,
243 8e291695 2020-01-04 stsp qid->id, NULL);
244 6dcdad08 2018-11-18 stsp free(merged_id);
245 6dcdad08 2018-11-18 stsp free(id);
246 b36429ab 2018-11-05 stsp return err;
247 bee6b577 2018-09-19 stsp }
248 bee6b577 2018-09-19 stsp }
249 6dcdad08 2018-11-18 stsp
250 6dcdad08 2018-11-18 stsp free(prev_id);
251 6dcdad08 2018-11-18 stsp prev_id = NULL;
252 6dcdad08 2018-11-18 stsp free(merged_id);
253 6dcdad08 2018-11-18 stsp merged_id = NULL;
254 bee6b577 2018-09-19 stsp
255 bee6b577 2018-09-19 stsp /*
256 bee6b577 2018-09-19 stsp * If the path's content is the same on all branches,
257 bee6b577 2018-09-19 stsp * follow the first parent only.
258 bee6b577 2018-09-19 stsp */
259 bee6b577 2018-09-19 stsp if (!branches_differ) {
260 bee6b577 2018-09-19 stsp qid = SIMPLEQ_FIRST(&commit->parent_ids);
261 bee6b577 2018-09-19 stsp if (qid == NULL)
262 bee6b577 2018-09-19 stsp return NULL;
263 8e291695 2020-01-04 stsp if (got_object_idset_contains(graph->open_branches,
264 8e291695 2020-01-04 stsp qid->id))
265 b36429ab 2018-11-05 stsp return NULL;
266 8e291695 2020-01-04 stsp if (got_object_idset_contains(graph->node_ids,
267 8e291695 2020-01-04 stsp qid->id))
268 998ff57f 2018-11-18 stsp return NULL; /* parent already traversed */
269 b36429ab 2018-11-05 stsp return got_object_idset_add(graph->open_branches,
270 8e291695 2020-01-04 stsp qid->id, NULL);
271 bee6b577 2018-09-19 stsp }
272 0ed6ed4c 2018-06-13 stsp }
273 0ed6ed4c 2018-06-13 stsp
274 0ed6ed4c 2018-06-13 stsp SIMPLEQ_FOREACH(qid, &commit->parent_ids, entry) {
275 8e291695 2020-01-04 stsp if (got_object_idset_contains(graph->open_branches, qid->id))
276 b36429ab 2018-11-05 stsp continue;
277 8e291695 2020-01-04 stsp if (got_object_idset_contains(graph->node_ids, qid->id))
278 998ff57f 2018-11-18 stsp continue; /* parent already traversed */
279 8e291695 2020-01-04 stsp err = got_object_idset_add(graph->open_branches, qid->id, NULL);
280 b36429ab 2018-11-05 stsp if (err)
281 0ed6ed4c 2018-06-13 stsp return err;
282 0ed6ed4c 2018-06-13 stsp }
283 0ed6ed4c 2018-06-13 stsp
284 b43fbaa0 2018-06-11 stsp return NULL;
285 fb5b9d5a 2018-07-23 stsp }
286 fb5b9d5a 2018-07-23 stsp
287 b43fbaa0 2018-06-11 stsp static const struct got_error *
288 de56b2d7 2020-01-04 stsp add_node(struct got_commit_graph_node **new_node,
289 de56b2d7 2020-01-04 stsp struct got_commit_graph *graph,
290 de56b2d7 2020-01-04 stsp struct got_object_id *commit_id,
291 de56b2d7 2020-01-04 stsp struct got_commit_object *commit,
292 de56b2d7 2020-01-04 stsp struct got_repository *repo)
293 372ccdbb 2018-06-10 stsp {
294 372ccdbb 2018-06-10 stsp const struct got_error *err = NULL;
295 f4ceb45e 2018-07-23 stsp struct got_commit_graph_node *node;
296 372ccdbb 2018-06-10 stsp
297 372ccdbb 2018-06-10 stsp *new_node = NULL;
298 372ccdbb 2018-06-10 stsp
299 372ccdbb 2018-06-10 stsp node = calloc(1, sizeof(*node));
300 372ccdbb 2018-06-10 stsp if (node == NULL)
301 638f9024 2019-05-13 stsp return got_error_from_errno("calloc");
302 372ccdbb 2018-06-10 stsp
303 372ccdbb 2018-06-10 stsp memcpy(&node->id, commit_id, sizeof(node->id));
304 73026088 2018-11-18 stsp node->timestamp = commit->committer_time;
305 372ccdbb 2018-06-10 stsp
306 8e291695 2020-01-04 stsp err = got_object_idset_add(graph->node_ids, &node->id, NULL);
307 de56b2d7 2020-01-04 stsp if (err)
308 7a62478b 2018-11-18 stsp free(node);
309 de56b2d7 2020-01-04 stsp else
310 de56b2d7 2020-01-04 stsp *new_node = node;
311 de56b2d7 2020-01-04 stsp return err;
312 de56b2d7 2020-01-04 stsp }
313 372ccdbb 2018-06-10 stsp
314 de56b2d7 2020-01-04 stsp const struct got_error *
315 c4d7a9c4 2018-06-11 stsp got_commit_graph_open(struct got_commit_graph **graph,
316 3d509237 2020-01-04 stsp const char *path, int first_parent_traversal)
317 3d509237 2020-01-04 stsp {
318 22220781 2020-01-04 stsp const struct got_error *err = NULL;
319 3ddcebf3 2020-01-04 stsp
320 3ddcebf3 2020-01-04 stsp *graph = calloc(1, sizeof(**graph));
321 3d509237 2020-01-04 stsp if (*graph == NULL)
322 3ddcebf3 2020-01-04 stsp return got_error_from_errno("calloc");
323 88cdb9c6 2020-01-04 stsp
324 88cdb9c6 2020-01-04 stsp TAILQ_INIT(&(*graph)->iter_list);
325 3ddcebf3 2020-01-04 stsp
326 3ddcebf3 2020-01-04 stsp (*graph)->path = strdup(path);
327 3ddcebf3 2020-01-04 stsp if ((*graph)->path == NULL) {
328 3ddcebf3 2020-01-04 stsp err = got_error_from_errno("strdup");
329 22220781 2020-01-04 stsp goto done;
330 3ddcebf3 2020-01-04 stsp }
331 3ddcebf3 2020-01-04 stsp
332 3ddcebf3 2020-01-04 stsp (*graph)->node_ids = got_object_idset_alloc();
333 3ddcebf3 2020-01-04 stsp if ((*graph)->node_ids == NULL) {
334 3ddcebf3 2020-01-04 stsp err = got_error_from_errno("got_object_idset_alloc");
335 22220781 2020-01-04 stsp goto done;
336 3ddcebf3 2020-01-04 stsp }
337 372ccdbb 2018-06-10 stsp
338 3ddcebf3 2020-01-04 stsp (*graph)->open_branches = got_object_idset_alloc();
339 3ddcebf3 2020-01-04 stsp if ((*graph)->open_branches == NULL) {
340 3ddcebf3 2020-01-04 stsp err = got_error_from_errno("got_object_idset_alloc");
341 22220781 2020-01-04 stsp goto done;
342 3ddcebf3 2020-01-04 stsp }
343 3ddcebf3 2020-01-04 stsp
344 0ed6ed4c 2018-06-13 stsp if (first_parent_traversal)
345 0ed6ed4c 2018-06-13 stsp (*graph)->flags |= GOT_COMMIT_GRAPH_FIRST_PARENT_TRAVERSAL;
346 22220781 2020-01-04 stsp done:
347 22220781 2020-01-04 stsp if (err) {
348 22220781 2020-01-04 stsp got_commit_graph_close(*graph);
349 22220781 2020-01-04 stsp *graph = NULL;
350 22220781 2020-01-04 stsp }
351 22220781 2020-01-04 stsp return err;
352 372ccdbb 2018-06-10 stsp }
353 372ccdbb 2018-06-10 stsp
354 32777563 2018-11-07 stsp struct add_branch_tip_arg {
355 b565f6f8 2018-07-23 stsp struct got_commit_graph_branch_tip *tips;
356 b565f6f8 2018-07-23 stsp int ntips;
357 32777563 2018-11-07 stsp struct got_repository *repo;
358 32777563 2018-11-07 stsp struct got_commit_graph *graph;
359 372ccdbb 2018-06-10 stsp };
360 372ccdbb 2018-06-10 stsp
361 cb103d04 2018-11-07 stsp static const struct got_error *
362 32777563 2018-11-07 stsp add_branch_tip(struct got_object_id *commit_id, void *data, void *arg)
363 372ccdbb 2018-06-10 stsp {
364 32777563 2018-11-07 stsp const struct got_error *err;
365 32777563 2018-11-07 stsp struct add_branch_tip_arg *a = arg;
366 32777563 2018-11-07 stsp struct got_commit_graph_node *new_node;
367 32777563 2018-11-07 stsp struct got_commit_object *commit;
368 32777563 2018-11-07 stsp
369 32777563 2018-11-07 stsp err = got_object_open_as_commit(&commit, a->repo, commit_id);
370 32777563 2018-11-07 stsp if (err)
371 32777563 2018-11-07 stsp return err;
372 32777563 2018-11-07 stsp
373 de56b2d7 2020-01-04 stsp err = add_node(&new_node, a->graph, commit_id, commit, a->repo);
374 32777563 2018-11-07 stsp if (err)
375 32777563 2018-11-07 stsp return err;
376 32777563 2018-11-07 stsp
377 32777563 2018-11-07 stsp a->tips[a->ntips].commit_id = new_node ? &new_node->id : NULL;
378 32777563 2018-11-07 stsp a->tips[a->ntips].commit = commit;
379 32777563 2018-11-07 stsp a->tips[a->ntips].new_node = new_node;
380 b565f6f8 2018-07-23 stsp a->ntips++;
381 32777563 2018-11-07 stsp
382 cb103d04 2018-11-07 stsp return NULL;
383 372ccdbb 2018-06-10 stsp }
384 372ccdbb 2018-06-10 stsp
385 1142eae9 2018-06-11 stsp static const struct got_error *
386 57eecd46 2020-01-04 stsp fetch_commits_from_open_branches(struct got_commit_graph *graph,
387 6fb7cd11 2019-08-22 stsp struct got_repository *repo, got_cancel_cb cancel_cb, void *cancel_arg)
388 372ccdbb 2018-06-10 stsp {
389 372ccdbb 2018-06-10 stsp const struct got_error *err;
390 32777563 2018-11-07 stsp struct add_branch_tip_arg arg;
391 32777563 2018-11-07 stsp int i, ntips;
392 372ccdbb 2018-06-10 stsp
393 32777563 2018-11-07 stsp ntips = got_object_idset_num_elements(graph->open_branches);
394 32777563 2018-11-07 stsp if (ntips == 0)
395 372ccdbb 2018-06-10 stsp return NULL;
396 372ccdbb 2018-06-10 stsp
397 32777563 2018-11-07 stsp /* (Re-)allocate branch tips array if necessary. */
398 32777563 2018-11-07 stsp if (graph->ntips < ntips) {
399 b565f6f8 2018-07-23 stsp struct got_commit_graph_branch_tip *tips;
400 5e50c36a 2018-11-08 stsp tips = recallocarray(graph->tips, graph->ntips, ntips,
401 5e50c36a 2018-11-08 stsp sizeof(*tips));
402 b565f6f8 2018-07-23 stsp if (tips == NULL)
403 638f9024 2019-05-13 stsp return got_error_from_errno("recallocarray");
404 b565f6f8 2018-07-23 stsp graph->tips = tips;
405 32777563 2018-11-07 stsp graph->ntips = ntips;
406 b565f6f8 2018-07-23 stsp }
407 b565f6f8 2018-07-23 stsp arg.tips = graph->tips;
408 32777563 2018-11-07 stsp arg.ntips = 0; /* add_branch_tip() will increment */
409 32777563 2018-11-07 stsp arg.repo = repo;
410 32777563 2018-11-07 stsp arg.graph = graph;
411 32777563 2018-11-07 stsp err = got_object_idset_for_each(graph->open_branches, add_branch_tip,
412 32777563 2018-11-07 stsp &arg);
413 cb103d04 2018-11-07 stsp if (err)
414 32777563 2018-11-07 stsp goto done;
415 372ccdbb 2018-06-10 stsp
416 b565f6f8 2018-07-23 stsp for (i = 0; i < arg.ntips; i++) {
417 372ccdbb 2018-06-10 stsp struct got_object_id *commit_id;
418 41fa1437 2018-11-05 stsp struct got_commit_object *commit;
419 32777563 2018-11-07 stsp struct got_commit_graph_node *new_node;
420 13a851c1 2020-01-04 stsp int changed;
421 372ccdbb 2018-06-10 stsp
422 6fb7cd11 2019-08-22 stsp if (cancel_cb) {
423 6fb7cd11 2019-08-22 stsp err = (*cancel_cb)(cancel_arg);
424 6fb7cd11 2019-08-22 stsp if (err)
425 6fb7cd11 2019-08-22 stsp break;
426 6fb7cd11 2019-08-22 stsp }
427 6fb7cd11 2019-08-22 stsp
428 32777563 2018-11-07 stsp commit_id = arg.tips[i].commit_id;
429 32777563 2018-11-07 stsp commit = arg.tips[i].commit;
430 32777563 2018-11-07 stsp new_node = arg.tips[i].new_node;
431 de56b2d7 2020-01-04 stsp
432 13a851c1 2020-01-04 stsp err = detect_changed_path(&changed, commit, commit_id,
433 13a851c1 2020-01-04 stsp graph->path, repo);
434 13a851c1 2020-01-04 stsp if (err) {
435 13a851c1 2020-01-04 stsp if (err->code != GOT_ERR_NO_OBJ)
436 13a851c1 2020-01-04 stsp break;
437 13a851c1 2020-01-04 stsp /*
438 13a851c1 2020-01-04 stsp * History of the path stops here on the current
439 13a851c1 2020-01-04 stsp * branch. Keep going on other branches.
440 13a851c1 2020-01-04 stsp */
441 13a851c1 2020-01-04 stsp err = close_branch(graph, commit_id);
442 ec1904dc 2020-01-04 stsp if (err)
443 ec1904dc 2020-01-04 stsp break;
444 ec1904dc 2020-01-04 stsp continue;
445 13a851c1 2020-01-04 stsp }
446 57eecd46 2020-01-04 stsp if (changed)
447 de56b2d7 2020-01-04 stsp add_node_to_iter_list(graph, new_node);
448 14159a7b 2020-01-04 stsp err = advance_branch(graph, commit_id, commit, repo);
449 cb352812 2018-07-22 stsp if (err)
450 cb352812 2018-07-22 stsp break;
451 372ccdbb 2018-06-10 stsp }
452 32777563 2018-11-07 stsp done:
453 246e1c78 2018-11-08 stsp for (i = 0; i < arg.ntips; i++)
454 32777563 2018-11-07 stsp got_object_commit_close(arg.tips[i].commit);
455 372ccdbb 2018-06-10 stsp return err;
456 372ccdbb 2018-06-10 stsp }
457 372ccdbb 2018-06-10 stsp
458 372ccdbb 2018-06-10 stsp void
459 372ccdbb 2018-06-10 stsp got_commit_graph_close(struct got_commit_graph *graph)
460 372ccdbb 2018-06-10 stsp {
461 22220781 2020-01-04 stsp if (graph->open_branches)
462 22220781 2020-01-04 stsp got_object_idset_free(graph->open_branches);
463 22220781 2020-01-04 stsp if (graph->node_ids)
464 22220781 2020-01-04 stsp got_object_idset_free(graph->node_ids);
465 b565f6f8 2018-07-23 stsp free(graph->tips);
466 31cedeaf 2018-09-15 stsp free(graph->path);
467 372ccdbb 2018-06-10 stsp free(graph);
468 372ccdbb 2018-06-10 stsp }
469 372ccdbb 2018-06-10 stsp
470 372ccdbb 2018-06-10 stsp const struct got_error *
471 372ccdbb 2018-06-10 stsp got_commit_graph_iter_start(struct got_commit_graph *graph,
472 6fb7cd11 2019-08-22 stsp struct got_object_id *id, struct got_repository *repo,
473 6fb7cd11 2019-08-22 stsp got_cancel_cb cancel_cb, void *cancel_arg)
474 372ccdbb 2018-06-10 stsp {
475 31cedeaf 2018-09-15 stsp const struct got_error *err = NULL;
476 372ccdbb 2018-06-10 stsp
477 3d509237 2020-01-04 stsp if (!TAILQ_EMPTY(&graph->iter_list))
478 3d509237 2020-01-04 stsp return got_error(GOT_ERR_ITER_BUSY);
479 31cedeaf 2018-09-15 stsp
480 3ff3126d 2020-01-04 stsp err = got_object_idset_add(graph->open_branches, id, NULL);
481 3d509237 2020-01-04 stsp if (err)
482 7e33c8c5 2020-01-04 stsp return err;
483 3d509237 2020-01-04 stsp
484 3ff3126d 2020-01-04 stsp /* Locate first commit which changed graph->path. */
485 94489f7d 2020-01-04 stsp while (TAILQ_EMPTY(&graph->iter_list) &&
486 3ff3126d 2020-01-04 stsp got_object_idset_num_elements(graph->open_branches) > 0) {
487 3ff3126d 2020-01-04 stsp err = fetch_commits_from_open_branches(graph, repo,
488 3ff3126d 2020-01-04 stsp cancel_cb, cancel_arg);
489 3ff3126d 2020-01-04 stsp if (err)
490 7e33c8c5 2020-01-04 stsp return err;
491 5175b31a 2020-01-04 stsp }
492 5175b31a 2020-01-04 stsp
493 94489f7d 2020-01-04 stsp if (TAILQ_EMPTY(&graph->iter_list)) {
494 5175b31a 2020-01-04 stsp const char *path;
495 5175b31a 2020-01-04 stsp if (got_path_is_root_dir(graph->path))
496 5175b31a 2020-01-04 stsp return got_error_no_obj(id);
497 5175b31a 2020-01-04 stsp path = graph->path;
498 5175b31a 2020-01-04 stsp while (path[0] == '/')
499 5175b31a 2020-01-04 stsp path++;
500 5175b31a 2020-01-04 stsp return got_error_path(path, GOT_ERR_NO_TREE_ENTRY);
501 31cedeaf 2018-09-15 stsp }
502 7e33c8c5 2020-01-04 stsp
503 7e33c8c5 2020-01-04 stsp return NULL;
504 372ccdbb 2018-06-10 stsp }
505 372ccdbb 2018-06-10 stsp
506 372ccdbb 2018-06-10 stsp const struct got_error *
507 b43fbaa0 2018-06-11 stsp got_commit_graph_iter_next(struct got_object_id **id,
508 ee780d5c 2020-01-04 stsp struct got_commit_graph *graph, struct got_repository *repo,
509 ee780d5c 2020-01-04 stsp got_cancel_cb cancel_cb, void *cancel_arg)
510 372ccdbb 2018-06-10 stsp {
511 ee780d5c 2020-01-04 stsp const struct got_error *err = NULL;
512 94489f7d 2020-01-04 stsp struct got_commit_graph_node *node;
513 ee780d5c 2020-01-04 stsp
514 9ba79e04 2018-06-11 stsp *id = NULL;
515 372ccdbb 2018-06-10 stsp
516 df8cd9c6 2020-01-05 stsp node = TAILQ_FIRST(&graph->iter_list);
517 df8cd9c6 2020-01-05 stsp if (node == NULL) {
518 2c7f8870 2018-09-19 stsp /* We are done iterating, or iteration was not started. */
519 9ba79e04 2018-06-11 stsp return got_error(GOT_ERR_ITER_COMPLETED);
520 9ba79e04 2018-06-11 stsp }
521 9ba79e04 2018-06-11 stsp
522 94489f7d 2020-01-04 stsp while (TAILQ_NEXT(node, entry) == NULL &&
523 ee780d5c 2020-01-04 stsp got_object_idset_num_elements(graph->open_branches) > 0) {
524 57eecd46 2020-01-04 stsp err = fetch_commits_from_open_branches(graph, repo,
525 57eecd46 2020-01-04 stsp cancel_cb, cancel_arg);
526 ee780d5c 2020-01-04 stsp if (err)
527 ee780d5c 2020-01-04 stsp return err;
528 ee780d5c 2020-01-04 stsp }
529 372ccdbb 2018-06-10 stsp
530 94489f7d 2020-01-04 stsp *id = &node->id;
531 94489f7d 2020-01-04 stsp TAILQ_REMOVE(&graph->iter_list, node, entry);
532 372ccdbb 2018-06-10 stsp return NULL;
533 372ccdbb 2018-06-10 stsp }
534 a9833bc9 2019-05-13 stsp
535 a9833bc9 2019-05-13 stsp const struct got_error *
536 a9833bc9 2019-05-13 stsp got_commit_graph_find_youngest_common_ancestor(struct got_object_id **yca_id,
537 a9833bc9 2019-05-13 stsp struct got_object_id *commit_id, struct got_object_id *commit_id2,
538 6fb7cd11 2019-08-22 stsp struct got_repository *repo, got_cancel_cb cancel_cb, void *cancel_arg)
539 a9833bc9 2019-05-13 stsp {
540 a9833bc9 2019-05-13 stsp const struct got_error *err = NULL;
541 a9833bc9 2019-05-13 stsp struct got_commit_graph *graph = NULL, *graph2 = NULL;
542 a9833bc9 2019-05-13 stsp int completed = 0, completed2 = 0;
543 a9833bc9 2019-05-13 stsp struct got_object_idset *commit_ids;
544 a9833bc9 2019-05-13 stsp
545 a9833bc9 2019-05-13 stsp *yca_id = NULL;
546 a9833bc9 2019-05-13 stsp
547 a9833bc9 2019-05-13 stsp commit_ids = got_object_idset_alloc();
548 a9833bc9 2019-05-13 stsp if (commit_ids == NULL)
549 638f9024 2019-05-13 stsp return got_error_from_errno("got_object_idset_alloc");
550 a9833bc9 2019-05-13 stsp
551 3d509237 2020-01-04 stsp err = got_commit_graph_open(&graph, "/", 1);
552 a9833bc9 2019-05-13 stsp if (err)
553 a9833bc9 2019-05-13 stsp goto done;
554 a9833bc9 2019-05-13 stsp
555 3d509237 2020-01-04 stsp err = got_commit_graph_open(&graph2, "/", 1);
556 a9833bc9 2019-05-13 stsp if (err)
557 a9833bc9 2019-05-13 stsp goto done;
558 a9833bc9 2019-05-13 stsp
559 6fb7cd11 2019-08-22 stsp err = got_commit_graph_iter_start(graph, commit_id, repo,
560 6fb7cd11 2019-08-22 stsp cancel_cb, cancel_arg);
561 a9833bc9 2019-05-13 stsp if (err)
562 a9833bc9 2019-05-13 stsp goto done;
563 a9833bc9 2019-05-13 stsp
564 6fb7cd11 2019-08-22 stsp err = got_commit_graph_iter_start(graph2, commit_id2, repo,
565 6fb7cd11 2019-08-22 stsp cancel_cb, cancel_arg);
566 a9833bc9 2019-05-13 stsp if (err)
567 a9833bc9 2019-05-13 stsp goto done;
568 a9833bc9 2019-05-13 stsp
569 a9833bc9 2019-05-13 stsp for (;;) {
570 ee780d5c 2020-01-04 stsp struct got_object_id *id = NULL, *id2 = NULL;
571 a9833bc9 2019-05-13 stsp
572 6fb7cd11 2019-08-22 stsp if (cancel_cb) {
573 6fb7cd11 2019-08-22 stsp err = (*cancel_cb)(cancel_arg);
574 6fb7cd11 2019-08-22 stsp if (err)
575 6fb7cd11 2019-08-22 stsp break;
576 6fb7cd11 2019-08-22 stsp }
577 6fb7cd11 2019-08-22 stsp
578 a9833bc9 2019-05-13 stsp if (!completed) {
579 ee780d5c 2020-01-04 stsp err = got_commit_graph_iter_next(&id, graph, repo,
580 ee780d5c 2020-01-04 stsp cancel_cb, cancel_arg);
581 a9833bc9 2019-05-13 stsp if (err) {
582 ee780d5c 2020-01-04 stsp if (err->code != GOT_ERR_ITER_COMPLETED)
583 a9833bc9 2019-05-13 stsp break;
584 ee780d5c 2020-01-04 stsp err = NULL;
585 ee780d5c 2020-01-04 stsp completed = 1;
586 a9833bc9 2019-05-13 stsp }
587 a9833bc9 2019-05-13 stsp }
588 a9833bc9 2019-05-13 stsp
589 a9833bc9 2019-05-13 stsp if (!completed2) {
590 ee780d5c 2020-01-04 stsp err = got_commit_graph_iter_next(&id2, graph2, repo,
591 ee780d5c 2020-01-04 stsp cancel_cb, cancel_arg);
592 a9833bc9 2019-05-13 stsp if (err) {
593 ee780d5c 2020-01-04 stsp if (err->code != GOT_ERR_ITER_COMPLETED)
594 a9833bc9 2019-05-13 stsp break;
595 ee780d5c 2020-01-04 stsp err = NULL;
596 ee780d5c 2020-01-04 stsp completed2 = 1;
597 a9833bc9 2019-05-13 stsp }
598 a9833bc9 2019-05-13 stsp }
599 a9833bc9 2019-05-13 stsp
600 a9833bc9 2019-05-13 stsp if (id) {
601 8e291695 2020-01-04 stsp if (got_object_idset_contains(commit_ids, id)) {
602 a9833bc9 2019-05-13 stsp *yca_id = got_object_id_dup(id);
603 a9833bc9 2019-05-13 stsp if (*yca_id)
604 a9833bc9 2019-05-13 stsp break;
605 82751bc5 2019-05-13 stsp err = got_error_from_errno("got_object_id_dup");
606 a9833bc9 2019-05-13 stsp break;
607 a9833bc9 2019-05-13 stsp
608 a9833bc9 2019-05-13 stsp }
609 8e291695 2020-01-04 stsp err = got_object_idset_add(commit_ids, id, NULL);
610 a9833bc9 2019-05-13 stsp if (err)
611 a9833bc9 2019-05-13 stsp break;
612 a9833bc9 2019-05-13 stsp }
613 a9833bc9 2019-05-13 stsp if (id2) {
614 8e291695 2020-01-04 stsp if (got_object_idset_contains(commit_ids, id2)) {
615 a9833bc9 2019-05-13 stsp *yca_id = got_object_id_dup(id2);
616 a9833bc9 2019-05-13 stsp if (*yca_id)
617 a9833bc9 2019-05-13 stsp break;
618 82751bc5 2019-05-13 stsp err = got_error_from_errno("got_object_id_dup");
619 a9833bc9 2019-05-13 stsp break;
620 a9833bc9 2019-05-13 stsp
621 a9833bc9 2019-05-13 stsp }
622 8e291695 2020-01-04 stsp err = got_object_idset_add(commit_ids, id2, NULL);
623 a9833bc9 2019-05-13 stsp if (err)
624 a9833bc9 2019-05-13 stsp break;
625 a9833bc9 2019-05-13 stsp }
626 a9833bc9 2019-05-13 stsp
627 a9833bc9 2019-05-13 stsp if (completed && completed2) {
628 a9833bc9 2019-05-13 stsp err = got_error(GOT_ERR_ANCESTRY);
629 a9833bc9 2019-05-13 stsp break;
630 a9833bc9 2019-05-13 stsp }
631 a9833bc9 2019-05-13 stsp
632 a9833bc9 2019-05-13 stsp }
633 a9833bc9 2019-05-13 stsp done:
634 a9833bc9 2019-05-13 stsp got_object_idset_free(commit_ids);
635 a9833bc9 2019-05-13 stsp if (graph)
636 a9833bc9 2019-05-13 stsp got_commit_graph_close(graph);
637 a9833bc9 2019-05-13 stsp if (graph2)
638 a9833bc9 2019-05-13 stsp got_commit_graph_close(graph2);
639 a9833bc9 2019-05-13 stsp return err;
640 a9833bc9 2019-05-13 stsp }