blob: 99d0e0eae047410660f0bf3b0d3f487d45c1134d [file] [log] [blame]
Daniel Barkalow4250a5e2005-04-30 16:53:56 -07001#include "cache.h"
Daniel Barkalow30ae7642007-09-10 23:02:45 -04002#include "walker.h"
Stefan Beller109cd762018-06-28 18:21:51 -07003#include "repository.h"
Stefan Bellercbd53a22018-05-15 16:42:15 -07004#include "object-store.h"
Daniel Barkalow4250a5e2005-04-30 16:53:56 -07005#include "commit.h"
6#include "tree.h"
Linus Torvalds1bc995a2006-05-29 12:20:48 -07007#include "tree-walk.h"
Daniel Barkalow3173bd42005-06-21 20:35:53 -04008#include "tag.h"
9#include "blob.h"
Daniel Barkalowcd541a62005-06-06 16:38:26 -040010#include "refs.h"
René Scharfe7655b412020-03-03 21:55:34 +010011#include "progress.h"
Daniel Barkalowcd541a62005-06-06 16:38:26 -040012
brian m. carlson94f5a122017-10-15 22:06:48 +000013static struct object_id current_commit_oid;
Daniel Barkalow4250a5e2005-04-30 16:53:56 -070014
Jeff Kingfa262ca2016-07-08 05:25:23 -040015void walker_say(struct walker *walker, const char *fmt, ...)
barkalow@iabervon.org1e8be592005-08-02 19:46:10 -040016{
Jeff Kingfa262ca2016-07-08 05:25:23 -040017 if (walker->get_verbosely) {
18 va_list ap;
19 va_start(ap, fmt);
20 vfprintf(stderr, fmt, ap);
21 va_end(ap);
22 }
Junio C Hamanoe78d9772005-05-06 01:37:21 -070023}
24
Alex Riesen0d7a6e42006-12-12 18:34:02 +010025static void report_missing(const struct object *obj)
Junio C Hamanoee4f4392005-05-01 21:07:40 -070026{
Alex Riesen0d7a6e42006-12-12 18:34:02 +010027 fprintf(stderr, "Cannot obtain needed %s %s\n",
Brandon Williamsdebca9d2018-02-14 10:59:24 -080028 obj->type ? type_name(obj->type): "object",
brian m. carlsonf2fd0762015-11-10 02:22:28 +000029 oid_to_hex(&obj->oid));
brian m. carlson94f5a122017-10-15 22:06:48 +000030 if (!is_null_oid(&current_commit_oid))
Alex Riesen0d7a6e42006-12-12 18:34:02 +010031 fprintf(stderr, "while processing commit %s.\n",
brian m. carlson94f5a122017-10-15 22:06:48 +000032 oid_to_hex(&current_commit_oid));
Junio C Hamanob2d62f12005-05-04 01:26:24 -070033}
34
Daniel Barkalow30ae7642007-09-10 23:02:45 -040035static int process(struct walker *walker, struct object *obj);
Daniel Barkalow3173bd42005-06-21 20:35:53 -040036
Daniel Barkalow30ae7642007-09-10 23:02:45 -040037static int process_tree(struct walker *walker, struct tree *tree)
Daniel Barkalow4250a5e2005-04-30 16:53:56 -070038{
Linus Torvalds1bc995a2006-05-29 12:20:48 -070039 struct tree_desc desc;
Linus Torvalds4c068a92006-05-30 09:45:45 -070040 struct name_entry entry;
Daniel Barkalow4250a5e2005-04-30 16:53:56 -070041
42 if (parse_tree(tree))
43 return -1;
44
Linus Torvalds6fda5e52007-03-21 10:08:25 -070045 init_tree_desc(&desc, tree->buffer, tree->size);
Linus Torvalds4c068a92006-05-30 09:45:45 -070046 while (tree_entry(&desc, &entry)) {
Junio C Hamano6f9012b2006-06-02 15:23:47 -070047 struct object *obj = NULL;
48
Sven Verdoolaege582c7392007-06-26 23:19:41 +020049 /* submodule commits are not stored in the superproject */
Junio C Hamano68fb4652007-06-26 18:33:24 -070050 if (S_ISGITLINK(entry.mode))
Sven Verdoolaege582c7392007-06-26 23:19:41 +020051 continue;
Linus Torvalds4c068a92006-05-30 09:45:45 -070052 if (S_ISDIR(entry.mode)) {
Stefan Bellerf86bcc72018-06-28 18:21:56 -070053 struct tree *tree = lookup_tree(the_repository,
brian m. carlsonea82b2a2019-01-15 00:39:44 +000054 &entry.oid);
Junio C Hamano6f9012b2006-06-02 15:23:47 -070055 if (tree)
56 obj = &tree->object;
Linus Torvalds2d9c58c2006-05-29 12:18:33 -070057 }
Junio C Hamano6f9012b2006-06-02 15:23:47 -070058 else {
Stefan Bellerda14a7f2018-06-28 18:21:55 -070059 struct blob *blob = lookup_blob(the_repository,
brian m. carlsonea82b2a2019-01-15 00:39:44 +000060 &entry.oid);
Junio C Hamano6f9012b2006-06-02 15:23:47 -070061 if (blob)
62 obj = &blob->object;
63 }
Daniel Barkalow30ae7642007-09-10 23:02:45 -040064 if (!obj || process(walker, obj))
Daniel Barkalow4250a5e2005-04-30 16:53:56 -070065 return -1;
Daniel Barkalow4250a5e2005-04-30 16:53:56 -070066 }
Jeff King6e454b92013-06-05 18:37:39 -040067 free_tree_buffer(tree);
Daniel Barkalow4250a5e2005-04-30 16:53:56 -070068 return 0;
69}
70
Nguyễn Thái Ngọc Duy208acbf2014-03-25 20:23:26 +070071/* Remember to update object flag allocation in object.h */
Sergey Vlasov24451c32005-09-21 20:34:24 +040072#define COMPLETE (1U << 0)
73#define SEEN (1U << 1)
74#define TO_SCAN (1U << 2)
Junio C Hamano85d106c2005-09-18 01:01:07 -070075
Junio C Hamanod0ac30f2005-09-16 14:30:29 -070076static struct commit_list *complete = NULL;
Daniel Barkalow22c6e1d2005-09-14 21:31:42 -040077
Daniel Barkalow30ae7642007-09-10 23:02:45 -040078static int process_commit(struct walker *walker, struct commit *commit)
Daniel Barkalow4250a5e2005-04-30 16:53:56 -070079{
Martin Ågren0b6b3422018-04-22 20:12:50 +020080 struct commit_list *parents;
81
barkalow@iabervon.org1e8be592005-08-02 19:46:10 -040082 if (parse_commit(commit))
Daniel Barkalow4250a5e2005-04-30 16:53:56 -070083 return -1;
84
Daniel Barkalow22c6e1d2005-09-14 21:31:42 -040085 while (complete && complete->item->date >= commit->date) {
Junio C Hamanod0ac30f2005-09-16 14:30:29 -070086 pop_most_recent_commit(&complete, COMPLETE);
Daniel Barkalow22c6e1d2005-09-14 21:31:42 -040087 }
Daniel Barkalow22c6e1d2005-09-14 21:31:42 -040088
Junio C Hamanod0ac30f2005-09-16 14:30:29 -070089 if (commit->object.flags & COMPLETE)
Daniel Barkalow22c6e1d2005-09-14 21:31:42 -040090 return 0;
91
brian m. carlson94f5a122017-10-15 22:06:48 +000092 oidcpy(&current_commit_oid, &commit->object.oid);
Daniel Barkalow4250a5e2005-04-30 16:53:56 -070093
brian m. carlsonf2fd0762015-11-10 02:22:28 +000094 walker_say(walker, "walk %s\n", oid_to_hex(&commit->object.oid));
Junio C Hamano85d106c2005-09-18 01:01:07 -070095
Junio C Hamanoc89b6e12018-05-23 14:38:13 +090096 if (process(walker, &get_commit_tree(commit)->object))
Martin Ågren0b6b3422018-04-22 20:12:50 +020097 return -1;
98
99 for (parents = commit->parents; parents; parents = parents->next) {
100 if (process(walker, &parents->item->object))
Daniel Barkalow4250a5e2005-04-30 16:53:56 -0700101 return -1;
Daniel Barkalow4250a5e2005-04-30 16:53:56 -0700102 }
Martin Ågren0b6b3422018-04-22 20:12:50 +0200103
Daniel Barkalow4250a5e2005-04-30 16:53:56 -0700104 return 0;
105}
106
Daniel Barkalow30ae7642007-09-10 23:02:45 -0400107static int process_tag(struct walker *walker, struct tag *tag)
Daniel Barkalow3173bd42005-06-21 20:35:53 -0400108{
barkalow@iabervon.org1e8be592005-08-02 19:46:10 -0400109 if (parse_tag(tag))
Daniel Barkalow3173bd42005-06-21 20:35:53 -0400110 return -1;
Daniel Barkalow30ae7642007-09-10 23:02:45 -0400111 return process(walker, tag->tagged);
Daniel Barkalow3173bd42005-06-21 20:35:53 -0400112}
113
barkalow@iabervon.org1e8be592005-08-02 19:46:10 -0400114static struct object_list *process_queue = NULL;
115static struct object_list **process_queue_end = &process_queue;
116
Daniel Barkalow30ae7642007-09-10 23:02:45 -0400117static int process_object(struct walker *walker, struct object *obj)
Daniel Barkalowf88fcf82005-08-11 19:38:09 -0400118{
Linus Torvalds19746322006-07-11 20:45:31 -0700119 if (obj->type == OBJ_COMMIT) {
Daniel Barkalow30ae7642007-09-10 23:02:45 -0400120 if (process_commit(walker, (struct commit *)obj))
Daniel Barkalowf88fcf82005-08-11 19:38:09 -0400121 return -1;
122 return 0;
123 }
Linus Torvalds19746322006-07-11 20:45:31 -0700124 if (obj->type == OBJ_TREE) {
Daniel Barkalow30ae7642007-09-10 23:02:45 -0400125 if (process_tree(walker, (struct tree *)obj))
Daniel Barkalowf88fcf82005-08-11 19:38:09 -0400126 return -1;
127 return 0;
128 }
Linus Torvalds19746322006-07-11 20:45:31 -0700129 if (obj->type == OBJ_BLOB) {
Daniel Barkalowf88fcf82005-08-11 19:38:09 -0400130 return 0;
131 }
Linus Torvalds19746322006-07-11 20:45:31 -0700132 if (obj->type == OBJ_TAG) {
Daniel Barkalow30ae7642007-09-10 23:02:45 -0400133 if (process_tag(walker, (struct tag *)obj))
Daniel Barkalowf88fcf82005-08-11 19:38:09 -0400134 return -1;
135 return 0;
136 }
137 return error("Unable to determine requirements "
138 "of type %s for %s",
Brandon Williamsdebca9d2018-02-14 10:59:24 -0800139 type_name(obj->type), oid_to_hex(&obj->oid));
Daniel Barkalowf88fcf82005-08-11 19:38:09 -0400140}
141
Daniel Barkalow30ae7642007-09-10 23:02:45 -0400142static int process(struct walker *walker, struct object *obj)
Daniel Barkalow3173bd42005-06-21 20:35:53 -0400143{
Sergey Vlasova82d07e2005-09-21 20:33:59 +0400144 if (obj->flags & SEEN)
145 return 0;
146 obj->flags |= SEEN;
147
brian m. carlsonf2fd0762015-11-10 02:22:28 +0000148 if (has_object_file(&obj->oid)) {
Daniel Barkalowf88fcf82005-08-11 19:38:09 -0400149 /* We already have it, so we should scan it now. */
Junio C Hamano85d106c2005-09-18 01:01:07 -0700150 obj->flags |= TO_SCAN;
Junio C Hamanoe5f38ec2006-06-06 14:04:17 -0700151 }
152 else {
Sergey Vlasov7b64d062005-09-21 20:34:14 +0400153 if (obj->flags & COMPLETE)
154 return 0;
brian m. carlsoned1c9972015-11-10 02:22:29 +0000155 walker->prefetch(walker, obj->oid.hash);
Daniel Barkalowf88fcf82005-08-11 19:38:09 -0400156 }
Junio C Hamanoa6080a02007-06-07 00:04:01 -0700157
barkalow@iabervon.org1e8be592005-08-02 19:46:10 -0400158 object_list_insert(obj, process_queue_end);
159 process_queue_end = &(*process_queue_end)->next;
barkalow@iabervon.org1e8be592005-08-02 19:46:10 -0400160 return 0;
161}
162
Daniel Barkalow30ae7642007-09-10 23:02:45 -0400163static int loop(struct walker *walker)
barkalow@iabervon.org1e8be592005-08-02 19:46:10 -0400164{
Junio C Hamano85d106c2005-09-18 01:01:07 -0700165 struct object_list *elem;
René Scharfe7655b412020-03-03 21:55:34 +0100166 struct progress *progress = NULL;
167 uint64_t nr = 0;
168
169 if (walker->get_progress)
170 progress = start_delayed_progress(_("Fetching objects"), 0);
Junio C Hamano85d106c2005-09-18 01:01:07 -0700171
barkalow@iabervon.org1e8be592005-08-02 19:46:10 -0400172 while (process_queue) {
173 struct object *obj = process_queue->item;
Junio C Hamano85d106c2005-09-18 01:01:07 -0700174 elem = process_queue;
175 process_queue = elem->next;
176 free(elem);
barkalow@iabervon.org1e8be592005-08-02 19:46:10 -0400177 if (!process_queue)
178 process_queue_end = &process_queue;
179
Junio C Hamano85d106c2005-09-18 01:01:07 -0700180 /* If we are not scanning this object, we placed it in
181 * the queue because we needed to fetch it first.
182 */
183 if (! (obj->flags & TO_SCAN)) {
brian m. carlsoned1c9972015-11-10 02:22:29 +0000184 if (walker->fetch(walker, obj->oid.hash)) {
René Scharfe7655b412020-03-03 21:55:34 +0100185 stop_progress(&progress);
Alex Riesen0d7a6e42006-12-12 18:34:02 +0100186 report_missing(obj);
Junio C Hamano85d106c2005-09-18 01:01:07 -0700187 return -1;
188 }
189 }
barkalow@iabervon.org1e8be592005-08-02 19:46:10 -0400190 if (!obj->type)
Stefan Beller109cd762018-06-28 18:21:51 -0700191 parse_object(the_repository, &obj->oid);
René Scharfe7655b412020-03-03 21:55:34 +0100192 if (process_object(walker, obj)) {
193 stop_progress(&progress);
Daniel Barkalowf88fcf82005-08-11 19:38:09 -0400194 return -1;
René Scharfe7655b412020-03-03 21:55:34 +0100195 }
196 display_progress(progress, ++nr);
barkalow@iabervon.org1e8be592005-08-02 19:46:10 -0400197 }
René Scharfe7655b412020-03-03 21:55:34 +0100198 stop_progress(&progress);
barkalow@iabervon.org1e8be592005-08-02 19:46:10 -0400199 return 0;
Daniel Barkalow3173bd42005-06-21 20:35:53 -0400200}
201
brian m. carlson94f5a122017-10-15 22:06:48 +0000202static int interpret_target(struct walker *walker, char *target, struct object_id *oid)
Daniel Barkalowcd541a62005-06-06 16:38:26 -0400203{
brian m. carlson94f5a122017-10-15 22:06:48 +0000204 if (!get_oid_hex(target, oid))
Daniel Barkalowcd541a62005-06-06 16:38:26 -0400205 return 0;
Michael Haggerty8d9c5012011-09-15 23:10:25 +0200206 if (!check_refname_format(target, 0)) {
René Scharfe59c69c02008-10-18 10:44:18 +0200207 struct ref *ref = alloc_ref(target);
Daniel Barkalowc13b2632008-04-26 15:53:09 -0400208 if (!walker->fetch_ref(walker, ref)) {
brian m. carlson94f5a122017-10-15 22:06:48 +0000209 oidcpy(oid, &ref->old_oid);
Daniel Barkalowc13b2632008-04-26 15:53:09 -0400210 free(ref);
Daniel Barkalowcd541a62005-06-06 16:38:26 -0400211 return 0;
212 }
Daniel Barkalowc13b2632008-04-26 15:53:09 -0400213 free(ref);
Daniel Barkalowcd541a62005-06-06 16:38:26 -0400214 }
215 return -1;
216}
217
Ævar Arnfjörð Bjarmason5cf88fd2022-08-25 19:09:48 +0200218static int mark_complete(const char *path UNUSED,
Jeff King63e14ee2022-08-19 06:08:32 -0400219 const struct object_id *oid,
Ævar Arnfjörð Bjarmason5cf88fd2022-08-25 19:09:48 +0200220 int flag UNUSED,
221 void *cb_data UNUSED)
Daniel Barkalow22c6e1d2005-09-14 21:31:42 -0400222{
Stefan Beller21e1ee82018-06-28 18:21:57 -0700223 struct commit *commit = lookup_commit_reference_gently(the_repository,
224 oid, 1);
Michael Haggertyb4ebaf92015-05-25 18:39:14 +0000225
Junio C Hamanod0ac30f2005-09-16 14:30:29 -0700226 if (commit) {
227 commit->object.flags |= COMPLETE;
René Scharfe3bc7a052014-08-21 20:30:24 +0200228 commit_list_insert(commit, &complete);
Daniel Barkalow22c6e1d2005-09-14 21:31:42 -0400229 }
230 return 0;
231}
Daniel Barkalowcd541a62005-06-06 16:38:26 -0400232
Daniel Barkalow30ae7642007-09-10 23:02:45 -0400233int walker_targets_stdin(char ***target, const char ***write_ref)
Petr Baudis8e87ca62006-07-27 23:56:19 +0200234{
235 int targets = 0, targets_alloc = 0;
Brandon Caseyf285a2d2008-10-09 14:12:12 -0500236 struct strbuf buf = STRBUF_INIT;
Petr Baudis8e87ca62006-07-27 23:56:19 +0200237 *target = NULL; *write_ref = NULL;
Petr Baudis8e87ca62006-07-27 23:56:19 +0200238 while (1) {
239 char *rf_one = NULL;
240 char *tg_one;
241
Junio C Hamano8f309ae2016-01-13 15:31:17 -0800242 if (strbuf_getline_lf(&buf, stdin) == EOF)
Petr Baudis8e87ca62006-07-27 23:56:19 +0200243 break;
244 tg_one = buf.buf;
245 rf_one = strchr(tg_one, '\t');
246 if (rf_one)
247 *rf_one++ = 0;
248
249 if (targets >= targets_alloc) {
250 targets_alloc = targets_alloc ? targets_alloc * 2 : 64;
René Scharfe2756ca42014-09-16 20:56:57 +0200251 REALLOC_ARRAY(*target, targets_alloc);
252 REALLOC_ARRAY(*write_ref, targets_alloc);
Petr Baudis8e87ca62006-07-27 23:56:19 +0200253 }
Shawn Pearce9befac42006-09-02 00:16:31 -0400254 (*target)[targets] = xstrdup(tg_one);
Jeff King8c53f072015-01-12 20:59:09 -0500255 (*write_ref)[targets] = xstrdup_or_null(rf_one);
Petr Baudis8e87ca62006-07-27 23:56:19 +0200256 targets++;
257 }
Pierre Habouzite6c019d2007-09-17 11:19:04 +0200258 strbuf_release(&buf);
Petr Baudis8e87ca62006-07-27 23:56:19 +0200259 return targets;
260}
261
Daniel Barkalow30ae7642007-09-10 23:02:45 -0400262void walker_targets_free(int targets, char **target, const char **write_ref)
Petr Baudis8e87ca62006-07-27 23:56:19 +0200263{
264 while (targets--) {
265 free(target[targets]);
Pierre Habouzit24deea52009-07-22 23:51:55 +0200266 if (write_ref)
Petr Baudis8e87ca62006-07-27 23:56:19 +0200267 free((char *) write_ref[targets]);
268 }
269}
270
Daniel Barkalow30ae7642007-09-10 23:02:45 -0400271int walker_fetch(struct walker *walker, int targets, char **target,
272 const char **write_ref, const char *write_ref_log_details)
Daniel Barkalow4250a5e2005-04-30 16:53:56 -0700273{
Ronnie Sahlbergb6b10bb2014-04-17 11:31:06 -0700274 struct strbuf refname = STRBUF_INIT;
275 struct strbuf err = STRBUF_INIT;
276 struct ref_transaction *transaction = NULL;
Jeff King667b76e2020-01-30 04:52:32 -0500277 struct object_id *oids;
Ronnie Sahlbergb6b10bb2014-04-17 11:31:06 -0700278 char *msg = NULL;
279 int i, ret = -1;
Daniel Barkalowcd541a62005-06-06 16:38:26 -0400280
Junio C Hamano98533b92005-09-15 15:06:39 -0700281 save_commit_buffer = 0;
Petr Baudis4211e4d2006-07-27 23:56:17 +0200282
Jeff King667b76e2020-01-30 04:52:32 -0500283 ALLOC_ARRAY(oids, targets);
284
Ronnie Sahlbergb6b10bb2014-04-17 11:31:06 -0700285 if (write_ref) {
286 transaction = ref_transaction_begin(&err);
287 if (!transaction) {
288 error("%s", err.buf);
289 goto done;
Shawn Pearced0740d92006-05-19 03:29:26 -0400290 }
Daniel Barkalowcd541a62005-06-06 16:38:26 -0400291 }
292
René Scharfe3bc7a052014-08-21 20:30:24 +0200293 if (!walker->get_recover) {
Michael Haggertyb4ebaf92015-05-25 18:39:14 +0000294 for_each_ref(mark_complete, NULL);
René Scharfe3bc7a052014-08-21 20:30:24 +0200295 commit_list_sort_by_date(&complete);
296 }
Daniel Barkalow22c6e1d2005-09-14 21:31:42 -0400297
Petr Baudis4211e4d2006-07-27 23:56:17 +0200298 for (i = 0; i < targets; i++) {
brian m. carlson94f5a122017-10-15 22:06:48 +0000299 if (interpret_target(walker, target[i], oids + i)) {
Sam Vilain5f487412007-12-18 01:00:43 +1300300 error("Could not interpret response from server '%s' as something to pull", target[i]);
Ronnie Sahlbergb6b10bb2014-04-17 11:31:06 -0700301 goto done;
Petr Baudis4211e4d2006-07-27 23:56:17 +0200302 }
Jeff King45a187c2021-04-13 03:16:36 -0400303 if (process(walker, lookup_unknown_object(the_repository, &oids[i])))
Ronnie Sahlbergb6b10bb2014-04-17 11:31:06 -0700304 goto done;
Shawn Pearce4bd18c42006-05-17 05:55:02 -0400305 }
306
Daniel Barkalow30ae7642007-09-10 23:02:45 -0400307 if (loop(walker))
Ronnie Sahlbergb6b10bb2014-04-17 11:31:06 -0700308 goto done;
309 if (!write_ref) {
310 ret = 0;
311 goto done;
Petr Baudis4211e4d2006-07-27 23:56:17 +0200312 }
Shawn Pearced0740d92006-05-19 03:29:26 -0400313 if (write_ref_log_details) {
Junio C Hamano01d678a2014-09-11 10:33:30 -0700314 msg = xstrfmt("fetch from %s", write_ref_log_details);
Shawn Pearced0740d92006-05-19 03:29:26 -0400315 } else {
316 msg = NULL;
Daniel Barkalowcd541a62005-06-06 16:38:26 -0400317 }
Petr Baudis4211e4d2006-07-27 23:56:17 +0200318 for (i = 0; i < targets; i++) {
Ronnie Sahlbergb6b10bb2014-04-17 11:31:06 -0700319 if (!write_ref[i])
Petr Baudis4211e4d2006-07-27 23:56:17 +0200320 continue;
Ronnie Sahlbergb6b10bb2014-04-17 11:31:06 -0700321 strbuf_reset(&refname);
322 strbuf_addf(&refname, "refs/%s", write_ref[i]);
323 if (ref_transaction_update(transaction, refname.buf,
brian m. carlson89f3bbd2017-10-15 22:06:53 +0000324 oids + i, NULL, 0,
Ronnie Sahlbergdb7516a2014-04-30 12:22:42 -0700325 msg ? msg : "fetch (unknown)",
Ronnie Sahlbergb6b10bb2014-04-17 11:31:06 -0700326 &err)) {
327 error("%s", err.buf);
328 goto done;
329 }
Petr Baudis4211e4d2006-07-27 23:56:17 +0200330 }
Ronnie Sahlbergdb7516a2014-04-30 12:22:42 -0700331 if (ref_transaction_commit(transaction, &err)) {
Ronnie Sahlbergb6b10bb2014-04-17 11:31:06 -0700332 error("%s", err.buf);
333 goto done;
334 }
Petr Baudis4211e4d2006-07-27 23:56:17 +0200335
Ronnie Sahlbergb6b10bb2014-04-17 11:31:06 -0700336 ret = 0;
Petr Baudis4211e4d2006-07-27 23:56:17 +0200337
Ronnie Sahlbergb6b10bb2014-04-17 11:31:06 -0700338done:
339 ref_transaction_free(transaction);
Daniel Barkalow4250a5e2005-04-30 16:53:56 -0700340 free(msg);
brian m. carlson94f5a122017-10-15 22:06:48 +0000341 free(oids);
Ronnie Sahlbergb6b10bb2014-04-17 11:31:06 -0700342 strbuf_release(&err);
343 strbuf_release(&refname);
344 return ret;
Daniel Barkalow4250a5e2005-04-30 16:53:56 -0700345}
Daniel Barkalow30ae7642007-09-10 23:02:45 -0400346
347void walker_free(struct walker *walker)
348{
349 walker->cleanup(walker);
350 free(walker);
351}