Junio C Hamano | c64ed70 | 2006-09-04 21:50:12 -0700 | [diff] [blame] | 1 | #include "cache.h" |
| 2 | #include "tag.h" |
| 3 | #include "commit.h" |
| 4 | #include "tree.h" |
| 5 | #include "blob.h" |
| 6 | #include "diff.h" |
| 7 | #include "tree-walk.h" |
| 8 | #include "revision.h" |
| 9 | #include "list-objects.h" |
Jeff Hostetler | 25ec7bc | 2017-11-21 20:58:50 +0000 | [diff] [blame] | 10 | #include "list-objects-filter.h" |
| 11 | #include "list-objects-filter-options.h" |
Jonathan Tan | df11e19 | 2017-12-08 15:27:15 +0000 | [diff] [blame] | 12 | #include "packfile.h" |
Stefan Beller | cbd53a2 | 2018-05-15 16:42:15 -0700 | [diff] [blame] | 13 | #include "object-store.h" |
Matthew DeVore | 8b10a20 | 2018-10-17 17:39:15 -0700 | [diff] [blame] | 14 | #include "trace.h" |
Junio C Hamano | c64ed70 | 2006-09-04 21:50:12 -0700 | [diff] [blame] | 15 | |
Matthew DeVore | f447a49 | 2018-08-13 11:14:28 -0700 | [diff] [blame] | 16 | struct traversal_context { |
| 17 | struct rev_info *revs; |
| 18 | show_object_fn show_object; |
| 19 | show_commit_fn show_commit; |
| 20 | void *show_data; |
Matthew DeVore | 9430147 | 2019-06-27 15:54:05 -0700 | [diff] [blame] | 21 | struct filter *filter; |
Matthew DeVore | f447a49 | 2018-08-13 11:14:28 -0700 | [diff] [blame] | 22 | }; |
| 23 | |
| 24 | static void process_blob(struct traversal_context *ctx, |
Junio C Hamano | c64ed70 | 2006-09-04 21:50:12 -0700 | [diff] [blame] | 25 | struct blob *blob, |
Jeff King | bd64516 | 2016-02-11 17:26:44 -0500 | [diff] [blame] | 26 | struct strbuf *path, |
Matthew DeVore | f447a49 | 2018-08-13 11:14:28 -0700 | [diff] [blame] | 27 | const char *name) |
Junio C Hamano | c64ed70 | 2006-09-04 21:50:12 -0700 | [diff] [blame] | 28 | { |
| 29 | struct object *obj = &blob->object; |
Jeff King | de1e67d | 2016-02-11 17:28:36 -0500 | [diff] [blame] | 30 | size_t pathlen; |
Matthew DeVore | 9430147 | 2019-06-27 15:54:05 -0700 | [diff] [blame] | 31 | enum list_objects_filter_result r; |
Junio C Hamano | c64ed70 | 2006-09-04 21:50:12 -0700 | [diff] [blame] | 32 | |
Matthew DeVore | f447a49 | 2018-08-13 11:14:28 -0700 | [diff] [blame] | 33 | if (!ctx->revs->blob_objects) |
Junio C Hamano | c64ed70 | 2006-09-04 21:50:12 -0700 | [diff] [blame] | 34 | return; |
Martin Koegler | a301b0c | 2008-02-18 21:47:56 +0100 | [diff] [blame] | 35 | if (!obj) |
| 36 | die("bad blob object"); |
Junio C Hamano | c64ed70 | 2006-09-04 21:50:12 -0700 | [diff] [blame] | 37 | if (obj->flags & (UNINTERESTING | SEEN)) |
| 38 | return; |
Jeff King | de1e67d | 2016-02-11 17:28:36 -0500 | [diff] [blame] | 39 | |
Jonathan Tan | df11e19 | 2017-12-08 15:27:15 +0000 | [diff] [blame] | 40 | /* |
| 41 | * Pre-filter known-missing objects when explicitly requested. |
| 42 | * Otherwise, a missing object error message may be reported |
| 43 | * later (depending on other filtering criteria). |
| 44 | * |
| 45 | * Note that this "--exclude-promisor-objects" pre-filtering |
| 46 | * may cause the actual filter to report an incomplete list |
| 47 | * of missing objects. |
| 48 | */ |
Matthew DeVore | f447a49 | 2018-08-13 11:14:28 -0700 | [diff] [blame] | 49 | if (ctx->revs->exclude_promisor_objects && |
Jonathan Tan | df11e19 | 2017-12-08 15:27:15 +0000 | [diff] [blame] | 50 | !has_object_file(&obj->oid) && |
| 51 | is_promisor_object(&obj->oid)) |
| 52 | return; |
| 53 | |
Jeff King | de1e67d | 2016-02-11 17:28:36 -0500 | [diff] [blame] | 54 | pathlen = path->len; |
| 55 | strbuf_addstr(path, name); |
Matthew DeVore | 9430147 | 2019-06-27 15:54:05 -0700 | [diff] [blame] | 56 | r = list_objects_filter__filter_object(ctx->revs->repo, |
| 57 | LOFS_BLOB, obj, |
| 58 | path->buf, &path->buf[pathlen], |
| 59 | ctx->filter); |
Jeff Hostetler | 25ec7bc | 2017-11-21 20:58:50 +0000 | [diff] [blame] | 60 | if (r & LOFR_MARK_SEEN) |
| 61 | obj->flags |= SEEN; |
| 62 | if (r & LOFR_DO_SHOW) |
Matthew DeVore | f447a49 | 2018-08-13 11:14:28 -0700 | [diff] [blame] | 63 | ctx->show_object(obj, path->buf, ctx->show_data); |
Jeff King | de1e67d | 2016-02-11 17:28:36 -0500 | [diff] [blame] | 64 | strbuf_setlen(path, pathlen); |
Junio C Hamano | c64ed70 | 2006-09-04 21:50:12 -0700 | [diff] [blame] | 65 | } |
| 66 | |
Linus Torvalds | 6e2f441 | 2007-04-13 09:25:01 -0700 | [diff] [blame] | 67 | /* |
| 68 | * Processing a gitlink entry currently does nothing, since |
| 69 | * we do not recurse into the subproject. |
| 70 | * |
| 71 | * We *could* eventually add a flag that actually does that, |
| 72 | * which would involve: |
| 73 | * - is the subproject actually checked out? |
| 74 | * - if so, see if the subproject has already been added |
| 75 | * to the alternates list, and add it if not. |
| 76 | * - process the commit (or tag) the gitlink points to |
| 77 | * recursively. |
| 78 | * |
| 79 | * However, it's unclear whether there is really ever any |
| 80 | * reason to see superprojects and subprojects as such a |
| 81 | * "unified" object pool (potentially resulting in a totally |
| 82 | * humongous pack - avoiding which was the whole point of |
| 83 | * having gitlinks in the first place!). |
| 84 | * |
| 85 | * So for now, there is just a note that we *could* follow |
| 86 | * the link, and how to do it. Whether it necessarily makes |
| 87 | * any sense what-so-ever to ever do that is another issue. |
| 88 | */ |
Matthew DeVore | f447a49 | 2018-08-13 11:14:28 -0700 | [diff] [blame] | 89 | static void process_gitlink(struct traversal_context *ctx, |
Linus Torvalds | 6e2f441 | 2007-04-13 09:25:01 -0700 | [diff] [blame] | 90 | const unsigned char *sha1, |
Jeff King | bd64516 | 2016-02-11 17:26:44 -0500 | [diff] [blame] | 91 | struct strbuf *path, |
Matthew DeVore | f447a49 | 2018-08-13 11:14:28 -0700 | [diff] [blame] | 92 | const char *name) |
Linus Torvalds | 6e2f441 | 2007-04-13 09:25:01 -0700 | [diff] [blame] | 93 | { |
| 94 | /* Nothing to do */ |
| 95 | } |
| 96 | |
Matthew DeVore | f447a49 | 2018-08-13 11:14:28 -0700 | [diff] [blame] | 97 | static void process_tree(struct traversal_context *ctx, |
Junio C Hamano | c64ed70 | 2006-09-04 21:50:12 -0700 | [diff] [blame] | 98 | struct tree *tree, |
Elijah Newren | cc5fa2f | 2010-12-17 20:26:47 +0700 | [diff] [blame] | 99 | struct strbuf *base, |
Matthew DeVore | 9202489 | 2018-08-13 11:14:29 -0700 | [diff] [blame] | 100 | const char *name); |
| 101 | |
| 102 | static void process_tree_contents(struct traversal_context *ctx, |
| 103 | struct tree *tree, |
| 104 | struct strbuf *base) |
Junio C Hamano | c64ed70 | 2006-09-04 21:50:12 -0700 | [diff] [blame] | 105 | { |
Junio C Hamano | c64ed70 | 2006-09-04 21:50:12 -0700 | [diff] [blame] | 106 | struct tree_desc desc; |
| 107 | struct name_entry entry; |
Matthew DeVore | 9202489 | 2018-08-13 11:14:29 -0700 | [diff] [blame] | 108 | enum interesting match = ctx->revs->diffopt.pathspec.nr == 0 ? |
| 109 | all_entries_interesting : entry_not_interesting; |
| 110 | |
| 111 | init_tree_desc(&desc, tree->buffer, tree->size); |
| 112 | |
| 113 | while (tree_entry(&desc, &entry)) { |
| 114 | if (match != all_entries_interesting) { |
Nguyễn Thái Ngọc Duy | 67022e0 | 2018-11-18 17:47:57 +0100 | [diff] [blame] | 115 | match = tree_entry_interesting(ctx->revs->repo->index, |
| 116 | &entry, base, 0, |
Matthew DeVore | 9202489 | 2018-08-13 11:14:29 -0700 | [diff] [blame] | 117 | &ctx->revs->diffopt.pathspec); |
| 118 | if (match == all_entries_not_interesting) |
| 119 | break; |
| 120 | if (match == entry_not_interesting) |
| 121 | continue; |
| 122 | } |
| 123 | |
Matthew DeVore | 99c9aa9 | 2018-10-05 14:31:24 -0700 | [diff] [blame] | 124 | if (S_ISDIR(entry.mode)) { |
brian m. carlson | ea82b2a | 2019-01-15 00:39:44 +0000 | [diff] [blame] | 125 | struct tree *t = lookup_tree(ctx->revs->repo, &entry.oid); |
Taylor Blau | b49e74e | 2019-04-09 19:13:19 -0700 | [diff] [blame] | 126 | if (!t) { |
| 127 | die(_("entry '%s' in tree %s has tree mode, " |
| 128 | "but is not a tree"), |
| 129 | entry.path, oid_to_hex(&tree->object.oid)); |
| 130 | } |
Matthew DeVore | 99c9aa9 | 2018-10-05 14:31:24 -0700 | [diff] [blame] | 131 | t->object.flags |= NOT_USER_GIVEN; |
| 132 | process_tree(ctx, t, base, entry.path); |
| 133 | } |
Matthew DeVore | 9202489 | 2018-08-13 11:14:29 -0700 | [diff] [blame] | 134 | else if (S_ISGITLINK(entry.mode)) |
brian m. carlson | ea82b2a | 2019-01-15 00:39:44 +0000 | [diff] [blame] | 135 | process_gitlink(ctx, entry.oid.hash, |
Matthew DeVore | 9202489 | 2018-08-13 11:14:29 -0700 | [diff] [blame] | 136 | base, entry.path); |
Matthew DeVore | 99c9aa9 | 2018-10-05 14:31:24 -0700 | [diff] [blame] | 137 | else { |
brian m. carlson | ea82b2a | 2019-01-15 00:39:44 +0000 | [diff] [blame] | 138 | struct blob *b = lookup_blob(ctx->revs->repo, &entry.oid); |
Taylor Blau | 23c2044 | 2019-04-09 19:13:17 -0700 | [diff] [blame] | 139 | if (!b) { |
| 140 | die(_("entry '%s' in tree %s has blob mode, " |
| 141 | "but is not a blob"), |
| 142 | entry.path, oid_to_hex(&tree->object.oid)); |
| 143 | } |
Matthew DeVore | 99c9aa9 | 2018-10-05 14:31:24 -0700 | [diff] [blame] | 144 | b->object.flags |= NOT_USER_GIVEN; |
| 145 | process_blob(ctx, b, base, entry.path); |
| 146 | } |
Matthew DeVore | 9202489 | 2018-08-13 11:14:29 -0700 | [diff] [blame] | 147 | } |
| 148 | } |
| 149 | |
| 150 | static void process_tree(struct traversal_context *ctx, |
| 151 | struct tree *tree, |
| 152 | struct strbuf *base, |
Matthew DeVore | f447a49 | 2018-08-13 11:14:28 -0700 | [diff] [blame] | 153 | const char *name) |
Junio C Hamano | c64ed70 | 2006-09-04 21:50:12 -0700 | [diff] [blame] | 154 | { |
| 155 | struct object *obj = &tree->object; |
Matthew DeVore | f447a49 | 2018-08-13 11:14:28 -0700 | [diff] [blame] | 156 | struct rev_info *revs = ctx->revs; |
Elijah Newren | cc5fa2f | 2010-12-17 20:26:47 +0700 | [diff] [blame] | 157 | int baselen = base->len; |
Matthew DeVore | 9430147 | 2019-06-27 15:54:05 -0700 | [diff] [blame] | 158 | enum list_objects_filter_result r; |
Matthew DeVore | 7c0fe33 | 2018-10-05 14:31:23 -0700 | [diff] [blame] | 159 | int failed_parse; |
Junio C Hamano | c64ed70 | 2006-09-04 21:50:12 -0700 | [diff] [blame] | 160 | |
| 161 | if (!revs->tree_objects) |
| 162 | return; |
Martin Koegler | a301b0c | 2008-02-18 21:47:56 +0100 | [diff] [blame] | 163 | if (!obj) |
| 164 | die("bad tree object"); |
Junio C Hamano | c64ed70 | 2006-09-04 21:50:12 -0700 | [diff] [blame] | 165 | if (obj->flags & (UNINTERESTING | SEEN)) |
| 166 | return; |
Matthew DeVore | 7c0fe33 | 2018-10-05 14:31:23 -0700 | [diff] [blame] | 167 | |
| 168 | failed_parse = parse_tree_gently(tree, 1); |
| 169 | if (failed_parse) { |
Vicent Marti | 2db1a43 | 2014-03-28 06:00:43 -0400 | [diff] [blame] | 170 | if (revs->ignore_missing_links) |
| 171 | return; |
Jonathan Tan | df11e19 | 2017-12-08 15:27:15 +0000 | [diff] [blame] | 172 | |
| 173 | /* |
| 174 | * Pre-filter known-missing tree objects when explicitly |
| 175 | * requested. This may cause the actual filter to report |
| 176 | * an incomplete list of missing objects. |
| 177 | */ |
| 178 | if (revs->exclude_promisor_objects && |
| 179 | is_promisor_object(&obj->oid)) |
| 180 | return; |
| 181 | |
Matthew DeVore | 7c0fe33 | 2018-10-05 14:31:23 -0700 | [diff] [blame] | 182 | if (!revs->do_not_die_on_missing_tree) |
| 183 | die("bad tree object %s", oid_to_hex(&obj->oid)); |
Vicent Marti | 2db1a43 | 2014-03-28 06:00:43 -0400 | [diff] [blame] | 184 | } |
Junio C Hamano | c64ed70 | 2006-09-04 21:50:12 -0700 | [diff] [blame] | 185 | |
Jeff King | 13528ab | 2016-02-11 17:26:18 -0500 | [diff] [blame] | 186 | strbuf_addstr(base, name); |
Matthew DeVore | 9430147 | 2019-06-27 15:54:05 -0700 | [diff] [blame] | 187 | r = list_objects_filter__filter_object(ctx->revs->repo, |
| 188 | LOFS_BEGIN_TREE, obj, |
| 189 | base->buf, &base->buf[baselen], |
| 190 | ctx->filter); |
Jeff Hostetler | 25ec7bc | 2017-11-21 20:58:50 +0000 | [diff] [blame] | 191 | if (r & LOFR_MARK_SEEN) |
| 192 | obj->flags |= SEEN; |
| 193 | if (r & LOFR_DO_SHOW) |
Matthew DeVore | f447a49 | 2018-08-13 11:14:28 -0700 | [diff] [blame] | 194 | ctx->show_object(obj, base->buf, ctx->show_data); |
Jeff King | 13528ab | 2016-02-11 17:26:18 -0500 | [diff] [blame] | 195 | if (base->len) |
| 196 | strbuf_addch(base, '/'); |
Elijah Newren | cc5fa2f | 2010-12-17 20:26:47 +0700 | [diff] [blame] | 197 | |
Matthew DeVore | 8b10a20 | 2018-10-17 17:39:15 -0700 | [diff] [blame] | 198 | if (r & LOFR_SKIP_TREE) |
| 199 | trace_printf("Skipping contents of tree %s...\n", base->buf); |
| 200 | else if (!failed_parse) |
Matthew DeVore | 7c0fe33 | 2018-10-05 14:31:23 -0700 | [diff] [blame] | 201 | process_tree_contents(ctx, tree, base); |
Junio C Hamano | c64ed70 | 2006-09-04 21:50:12 -0700 | [diff] [blame] | 202 | |
Matthew DeVore | 9430147 | 2019-06-27 15:54:05 -0700 | [diff] [blame] | 203 | r = list_objects_filter__filter_object(ctx->revs->repo, |
| 204 | LOFS_END_TREE, obj, |
| 205 | base->buf, &base->buf[baselen], |
| 206 | ctx->filter); |
| 207 | if (r & LOFR_MARK_SEEN) |
| 208 | obj->flags |= SEEN; |
| 209 | if (r & LOFR_DO_SHOW) |
| 210 | ctx->show_object(obj, base->buf, ctx->show_data); |
Jeff Hostetler | 25ec7bc | 2017-11-21 20:58:50 +0000 | [diff] [blame] | 211 | |
Elijah Newren | cc5fa2f | 2010-12-17 20:26:47 +0700 | [diff] [blame] | 212 | strbuf_setlen(base, baselen); |
Jeff King | 6e454b9 | 2013-06-05 18:37:39 -0400 | [diff] [blame] | 213 | free_tree_buffer(tree); |
Junio C Hamano | c64ed70 | 2006-09-04 21:50:12 -0700 | [diff] [blame] | 214 | } |
| 215 | |
Junio C Hamano | 8d1d8f8 | 2006-09-06 01:42:23 -0700 | [diff] [blame] | 216 | static void mark_edge_parents_uninteresting(struct commit *commit, |
| 217 | struct rev_info *revs, |
| 218 | show_edge_fn show_edge) |
| 219 | { |
| 220 | struct commit_list *parents; |
| 221 | |
| 222 | for (parents = commit->parents; parents; parents = parents->next) { |
| 223 | struct commit *parent = parents->item; |
| 224 | if (!(parent->object.flags & UNINTERESTING)) |
| 225 | continue; |
Nguyễn Thái Ngọc Duy | b3c7eef | 2018-09-21 17:57:39 +0200 | [diff] [blame] | 226 | mark_tree_uninteresting(revs->repo, get_commit_tree(parent)); |
Junio C Hamano | 8d1d8f8 | 2006-09-06 01:42:23 -0700 | [diff] [blame] | 227 | if (revs->edge_hint && !(parent->object.flags & SHOWN)) { |
| 228 | parent->object.flags |= SHOWN; |
| 229 | show_edge(parent); |
| 230 | } |
| 231 | } |
| 232 | } |
| 233 | |
Derrick Stolee | 4f6d26b | 2019-01-16 10:25:58 -0800 | [diff] [blame] | 234 | static void add_edge_parents(struct commit *commit, |
| 235 | struct rev_info *revs, |
| 236 | show_edge_fn show_edge, |
| 237 | struct oidset *set) |
| 238 | { |
| 239 | struct commit_list *parents; |
| 240 | |
| 241 | for (parents = commit->parents; parents; parents = parents->next) { |
| 242 | struct commit *parent = parents->item; |
| 243 | struct tree *tree = get_commit_tree(parent); |
| 244 | |
| 245 | if (!tree) |
| 246 | continue; |
| 247 | |
| 248 | oidset_insert(set, &tree->object.oid); |
| 249 | |
| 250 | if (!(parent->object.flags & UNINTERESTING)) |
| 251 | continue; |
| 252 | tree->object.flags |= UNINTERESTING; |
| 253 | |
| 254 | if (revs->edge_hint && !(parent->object.flags & SHOWN)) { |
| 255 | parent->object.flags |= SHOWN; |
| 256 | show_edge(parent); |
| 257 | } |
| 258 | } |
| 259 | } |
| 260 | |
| 261 | void mark_edges_uninteresting(struct rev_info *revs, |
| 262 | show_edge_fn show_edge, |
| 263 | int sparse) |
Junio C Hamano | 8d1d8f8 | 2006-09-06 01:42:23 -0700 | [diff] [blame] | 264 | { |
Nguyễn Thái Ngọc Duy | e76a5fb | 2013-08-16 16:52:06 +0700 | [diff] [blame] | 265 | struct commit_list *list; |
Nguyễn Thái Ngọc Duy | fbd4a70 | 2013-08-16 16:52:07 +0700 | [diff] [blame] | 266 | int i; |
| 267 | |
Derrick Stolee | 4f6d26b | 2019-01-16 10:25:58 -0800 | [diff] [blame] | 268 | if (sparse) { |
| 269 | struct oidset set; |
| 270 | oidset_init(&set, 16); |
Junio C Hamano | 8d1d8f8 | 2006-09-06 01:42:23 -0700 | [diff] [blame] | 271 | |
Derrick Stolee | 4f6d26b | 2019-01-16 10:25:58 -0800 | [diff] [blame] | 272 | for (list = revs->commits; list; list = list->next) { |
| 273 | struct commit *commit = list->item; |
| 274 | struct tree *tree = get_commit_tree(commit); |
| 275 | |
| 276 | if (commit->object.flags & UNINTERESTING) |
| 277 | tree->object.flags |= UNINTERESTING; |
| 278 | |
| 279 | oidset_insert(&set, &tree->object.oid); |
| 280 | add_edge_parents(commit, revs, show_edge, &set); |
Junio C Hamano | 8d1d8f8 | 2006-09-06 01:42:23 -0700 | [diff] [blame] | 281 | } |
Derrick Stolee | 4f6d26b | 2019-01-16 10:25:58 -0800 | [diff] [blame] | 282 | |
| 283 | mark_trees_uninteresting_sparse(revs->repo, &set); |
| 284 | oidset_clear(&set); |
| 285 | } else { |
| 286 | for (list = revs->commits; list; list = list->next) { |
| 287 | struct commit *commit = list->item; |
| 288 | if (commit->object.flags & UNINTERESTING) { |
| 289 | mark_tree_uninteresting(revs->repo, |
| 290 | get_commit_tree(commit)); |
| 291 | if (revs->edge_hint_aggressive && !(commit->object.flags & SHOWN)) { |
| 292 | commit->object.flags |= SHOWN; |
| 293 | show_edge(commit); |
| 294 | } |
| 295 | continue; |
| 296 | } |
| 297 | mark_edge_parents_uninteresting(commit, revs, show_edge); |
| 298 | } |
Junio C Hamano | 8d1d8f8 | 2006-09-06 01:42:23 -0700 | [diff] [blame] | 299 | } |
Derrick Stolee | 4f6d26b | 2019-01-16 10:25:58 -0800 | [diff] [blame] | 300 | |
brian m. carlson | 1684c1b | 2014-12-24 23:05:39 +0000 | [diff] [blame] | 301 | if (revs->edge_hint_aggressive) { |
Jeff King | 200abe7 | 2014-01-20 21:25:40 -0500 | [diff] [blame] | 302 | for (i = 0; i < revs->cmdline.nr; i++) { |
| 303 | struct object *obj = revs->cmdline.rev[i].item; |
| 304 | struct commit *commit = (struct commit *)obj; |
| 305 | if (obj->type != OBJ_COMMIT || !(obj->flags & UNINTERESTING)) |
| 306 | continue; |
Nguyễn Thái Ngọc Duy | b3c7eef | 2018-09-21 17:57:39 +0200 | [diff] [blame] | 307 | mark_tree_uninteresting(revs->repo, |
| 308 | get_commit_tree(commit)); |
Jeff King | 200abe7 | 2014-01-20 21:25:40 -0500 | [diff] [blame] | 309 | if (!(obj->flags & SHOWN)) { |
| 310 | obj->flags |= SHOWN; |
| 311 | show_edge(commit); |
| 312 | } |
Nguyễn Thái Ngọc Duy | fbd4a70 | 2013-08-16 16:52:07 +0700 | [diff] [blame] | 313 | } |
| 314 | } |
Junio C Hamano | 8d1d8f8 | 2006-09-06 01:42:23 -0700 | [diff] [blame] | 315 | } |
| 316 | |
Linus Torvalds | 8d2dfc4 | 2009-04-10 17:27:58 -0700 | [diff] [blame] | 317 | static void add_pending_tree(struct rev_info *revs, struct tree *tree) |
| 318 | { |
| 319 | add_pending_object(revs, &tree->object, ""); |
| 320 | } |
| 321 | |
Matthew DeVore | f447a49 | 2018-08-13 11:14:28 -0700 | [diff] [blame] | 322 | static void traverse_trees_and_blobs(struct traversal_context *ctx, |
| 323 | struct strbuf *base) |
Junio C Hamano | c64ed70 | 2006-09-04 21:50:12 -0700 | [diff] [blame] | 324 | { |
| 325 | int i; |
Junio C Hamano | c64ed70 | 2006-09-04 21:50:12 -0700 | [diff] [blame] | 326 | |
Stefan Beller | 91904f5 | 2017-11-02 12:41:43 -0700 | [diff] [blame] | 327 | assert(base->len == 0); |
| 328 | |
Matthew DeVore | f447a49 | 2018-08-13 11:14:28 -0700 | [diff] [blame] | 329 | for (i = 0; i < ctx->revs->pending.nr; i++) { |
| 330 | struct object_array_entry *pending = ctx->revs->pending.objects + i; |
Junio C Hamano | c64ed70 | 2006-09-04 21:50:12 -0700 | [diff] [blame] | 331 | struct object *obj = pending->item; |
| 332 | const char *name = pending->name; |
Jeff King | 2073949 | 2014-10-15 18:43:19 -0400 | [diff] [blame] | 333 | const char *path = pending->path; |
Junio C Hamano | c64ed70 | 2006-09-04 21:50:12 -0700 | [diff] [blame] | 334 | if (obj->flags & (UNINTERESTING | SEEN)) |
| 335 | continue; |
| 336 | if (obj->type == OBJ_TAG) { |
| 337 | obj->flags |= SEEN; |
Matthew DeVore | f447a49 | 2018-08-13 11:14:28 -0700 | [diff] [blame] | 338 | ctx->show_object(obj, name, ctx->show_data); |
Junio C Hamano | c64ed70 | 2006-09-04 21:50:12 -0700 | [diff] [blame] | 339 | continue; |
| 340 | } |
Jeff King | 2073949 | 2014-10-15 18:43:19 -0400 | [diff] [blame] | 341 | if (!path) |
| 342 | path = ""; |
Junio C Hamano | c64ed70 | 2006-09-04 21:50:12 -0700 | [diff] [blame] | 343 | if (obj->type == OBJ_TREE) { |
Matthew DeVore | f447a49 | 2018-08-13 11:14:28 -0700 | [diff] [blame] | 344 | process_tree(ctx, (struct tree *)obj, base, path); |
Junio C Hamano | c64ed70 | 2006-09-04 21:50:12 -0700 | [diff] [blame] | 345 | continue; |
| 346 | } |
| 347 | if (obj->type == OBJ_BLOB) { |
Matthew DeVore | f447a49 | 2018-08-13 11:14:28 -0700 | [diff] [blame] | 348 | process_blob(ctx, (struct blob *)obj, base, path); |
Junio C Hamano | c64ed70 | 2006-09-04 21:50:12 -0700 | [diff] [blame] | 349 | continue; |
| 350 | } |
| 351 | die("unknown pending object %s (%s)", |
brian m. carlson | f2fd076 | 2015-11-10 02:22:28 +0000 | [diff] [blame] | 352 | oid_to_hex(&obj->oid), name); |
Junio C Hamano | c64ed70 | 2006-09-04 21:50:12 -0700 | [diff] [blame] | 353 | } |
Matthew DeVore | f447a49 | 2018-08-13 11:14:28 -0700 | [diff] [blame] | 354 | object_array_clear(&ctx->revs->pending); |
Stefan Beller | 91904f5 | 2017-11-02 12:41:43 -0700 | [diff] [blame] | 355 | } |
| 356 | |
Matthew DeVore | f447a49 | 2018-08-13 11:14:28 -0700 | [diff] [blame] | 357 | static void do_traverse(struct traversal_context *ctx) |
Stefan Beller | 91904f5 | 2017-11-02 12:41:43 -0700 | [diff] [blame] | 358 | { |
| 359 | struct commit *commit; |
| 360 | struct strbuf csp; /* callee's scratch pad */ |
| 361 | strbuf_init(&csp, PATH_MAX); |
| 362 | |
Matthew DeVore | f447a49 | 2018-08-13 11:14:28 -0700 | [diff] [blame] | 363 | while ((commit = get_revision(ctx->revs)) != NULL) { |
Stefan Beller | 91904f5 | 2017-11-02 12:41:43 -0700 | [diff] [blame] | 364 | /* |
| 365 | * an uninteresting boundary commit may not have its tree |
| 366 | * parsed yet, but we are not going to show them anyway |
| 367 | */ |
Jeff King | 72ed80c | 2019-09-11 21:11:37 -0400 | [diff] [blame] | 368 | if (!ctx->revs->tree_objects) |
| 369 | ; /* do not bother loading tree */ |
| 370 | else if (get_commit_tree(commit)) { |
Matthew DeVore | 99c9aa9 | 2018-10-05 14:31:24 -0700 | [diff] [blame] | 371 | struct tree *tree = get_commit_tree(commit); |
| 372 | tree->object.flags |= NOT_USER_GIVEN; |
| 373 | add_pending_tree(ctx->revs, tree); |
Jeff King | 97dd512 | 2019-04-09 19:13:25 -0700 | [diff] [blame] | 374 | } else if (commit->object.parsed) { |
| 375 | die(_("unable to load root tree for commit %s"), |
| 376 | oid_to_hex(&commit->object.oid)); |
Matthew DeVore | 99c9aa9 | 2018-10-05 14:31:24 -0700 | [diff] [blame] | 377 | } |
Matthew DeVore | f447a49 | 2018-08-13 11:14:28 -0700 | [diff] [blame] | 378 | ctx->show_commit(commit, ctx->show_data); |
Stefan Beller | ce5b6f9 | 2017-11-15 18:00:35 -0800 | [diff] [blame] | 379 | |
Matthew DeVore | f447a49 | 2018-08-13 11:14:28 -0700 | [diff] [blame] | 380 | if (ctx->revs->tree_blobs_in_commit_order) |
Stefan Beller | ce5b6f9 | 2017-11-15 18:00:35 -0800 | [diff] [blame] | 381 | /* |
| 382 | * NEEDSWORK: Adding the tree and then flushing it here |
| 383 | * needs a reallocation for each commit. Can we pass the |
| 384 | * tree directory without allocation churn? |
| 385 | */ |
Matthew DeVore | f447a49 | 2018-08-13 11:14:28 -0700 | [diff] [blame] | 386 | traverse_trees_and_blobs(ctx, &csp); |
Stefan Beller | 91904f5 | 2017-11-02 12:41:43 -0700 | [diff] [blame] | 387 | } |
Matthew DeVore | f447a49 | 2018-08-13 11:14:28 -0700 | [diff] [blame] | 388 | traverse_trees_and_blobs(ctx, &csp); |
Stefan Beller | 91904f5 | 2017-11-02 12:41:43 -0700 | [diff] [blame] | 389 | strbuf_release(&csp); |
Junio C Hamano | c64ed70 | 2006-09-04 21:50:12 -0700 | [diff] [blame] | 390 | } |
Jeff Hostetler | 25ec7bc | 2017-11-21 20:58:50 +0000 | [diff] [blame] | 391 | |
| 392 | void traverse_commit_list(struct rev_info *revs, |
| 393 | show_commit_fn show_commit, |
| 394 | show_object_fn show_object, |
| 395 | void *show_data) |
| 396 | { |
Matthew DeVore | f447a49 | 2018-08-13 11:14:28 -0700 | [diff] [blame] | 397 | struct traversal_context ctx; |
| 398 | ctx.revs = revs; |
| 399 | ctx.show_commit = show_commit; |
| 400 | ctx.show_object = show_object; |
| 401 | ctx.show_data = show_data; |
Matthew DeVore | 9430147 | 2019-06-27 15:54:05 -0700 | [diff] [blame] | 402 | ctx.filter = NULL; |
Matthew DeVore | f447a49 | 2018-08-13 11:14:28 -0700 | [diff] [blame] | 403 | do_traverse(&ctx); |
Jeff Hostetler | 25ec7bc | 2017-11-21 20:58:50 +0000 | [diff] [blame] | 404 | } |
| 405 | |
| 406 | void traverse_commit_list_filtered( |
| 407 | struct list_objects_filter_options *filter_options, |
| 408 | struct rev_info *revs, |
| 409 | show_commit_fn show_commit, |
| 410 | show_object_fn show_object, |
| 411 | void *show_data, |
| 412 | struct oidset *omitted) |
| 413 | { |
Matthew DeVore | f447a49 | 2018-08-13 11:14:28 -0700 | [diff] [blame] | 414 | struct traversal_context ctx; |
Jeff Hostetler | 25ec7bc | 2017-11-21 20:58:50 +0000 | [diff] [blame] | 415 | |
Matthew DeVore | f447a49 | 2018-08-13 11:14:28 -0700 | [diff] [blame] | 416 | ctx.revs = revs; |
| 417 | ctx.show_object = show_object; |
| 418 | ctx.show_commit = show_commit; |
| 419 | ctx.show_data = show_data; |
Matthew DeVore | 9430147 | 2019-06-27 15:54:05 -0700 | [diff] [blame] | 420 | ctx.filter = list_objects_filter__init(omitted, filter_options); |
Matthew DeVore | f447a49 | 2018-08-13 11:14:28 -0700 | [diff] [blame] | 421 | do_traverse(&ctx); |
Matthew DeVore | 9430147 | 2019-06-27 15:54:05 -0700 | [diff] [blame] | 422 | list_objects_filter__free(ctx.filter); |
Jeff Hostetler | 25ec7bc | 2017-11-21 20:58:50 +0000 | [diff] [blame] | 423 | } |