blob: 70aff515acbe97b20db80cc8b746e28f0149b56f [file] [log] [blame]
Johannes Schindelinf2dc8492007-12-02 14:14:13 +00001/*
2 * "git fast-export" builtin command
3 *
4 * Copyright (C) 2007 Johannes E. Schindelin
5 */
6#include "builtin.h"
Brandon Williamsb2141fc2017-06-14 11:07:36 -07007#include "config.h"
Elijah Newrenf394e092023-03-21 06:25:54 +00008#include "gettext.h"
Elijah Newren41771fa2023-02-24 00:09:27 +00009#include "hex.h"
Michael Haggertyfb58c8d2015-06-22 16:03:05 +020010#include "refs.h"
Brandon Williamsec0cb492018-05-16 15:57:48 -070011#include "refspec.h"
Elijah Newren87bed172023-04-11 00:41:53 -070012#include "object-file.h"
Elijah Newrena034e912023-05-16 06:34:06 +000013#include "object-store-ll.h"
Johannes Schindelinf2dc8492007-12-02 14:14:13 +000014#include "commit.h"
15#include "object.h"
16#include "tag.h"
17#include "diff.h"
18#include "diffcore.h"
19#include "log-tree.h"
20#include "revision.h"
21#include "decorate.h"
Johannes Schindelinc455c872008-07-21 19:03:49 +010022#include "string-list.h"
Johannes Schindelinf2dc8492007-12-02 14:14:13 +000023#include "utf8.h"
24#include "parse-options.h"
Jeff King6280dfd2011-08-05 16:36:22 -060025#include "quote.h"
Felipe Contreras03e90102014-04-20 13:59:24 -050026#include "remote.h"
Jeff Kinga8722752014-08-27 13:01:28 -040027#include "blob.h"
Nguyễn Thái Ngọc Duy87be2522018-05-19 07:28:24 +020028#include "commit-slab.h"
Johannes Schindelinf2dc8492007-12-02 14:14:13 +000029
30static const char *fast_export_usage[] = {
Jean-Noël Avila9164d972022-01-31 22:07:49 +000031 N_("git fast-export [<rev-list-opts>]"),
Johannes Schindelinf2dc8492007-12-02 14:14:13 +000032 NULL
33};
34
35static int progress;
Jeff King66e33092023-08-31 17:21:07 -040036static enum signed_tag_mode { SIGNED_TAG_ABORT, VERBATIM, WARN, WARN_STRIP, STRIP } signed_tag_mode = SIGNED_TAG_ABORT;
37static enum tag_of_filtered_mode { TAG_FILTERING_ABORT, DROP, REWRITE } tag_of_filtered_mode = TAG_FILTERING_ABORT;
38static enum reencode_mode { REENCODE_ABORT, REENCODE_YES, REENCODE_NO } reencode_mode = REENCODE_ABORT;
Johannes Schindelin4e46a8d2008-12-20 01:00:27 +010039static int fake_missing_tagger;
Sverre Rabbelier82670a52011-07-16 15:03:33 +020040static int use_done_feature;
Geoffrey Irving79559f22009-07-27 22:20:22 -040041static int no_data;
Elijah Newren7f40ab02010-07-17 11:00:51 -060042static int full_tree;
Elijah Newren530ca192018-11-15 23:59:54 -080043static int reference_excluded_commits;
Elijah Newrena965bb32018-11-15 23:59:56 -080044static int show_original_ids;
Elijah Newrena1638cf2019-10-03 13:27:07 -070045static int mark_tags;
Felipe Contreras1d844ee2013-09-01 02:05:47 -050046static struct string_list extra_refs = STRING_LIST_INIT_NODUP;
Elijah Newrenfdf31b62018-11-15 23:59:53 -080047static struct string_list tag_refs = STRING_LIST_INIT_NODUP;
Brandon Williams16eefc82018-05-16 15:57:59 -070048static struct refspec refspecs = REFSPEC_INIT_FETCH;
Jeff Kinga8722752014-08-27 13:01:28 -040049static int anonymize;
Jeff King65b5d9f2020-06-25 15:48:32 -040050static struct hashmap anonymized_seeds;
Nguyễn Thái Ngọc Duy87be2522018-05-19 07:28:24 +020051static struct revision_sources revision_sources;
Johannes Schindelinf2dc8492007-12-02 14:14:13 +000052
53static int parse_opt_signed_tag_mode(const struct option *opt,
54 const char *arg, int unset)
55{
Jeff King66e33092023-08-31 17:21:07 -040056 enum signed_tag_mode *val = opt->value;
57
Johannes Schindelinf2dc8492007-12-02 14:14:13 +000058 if (unset || !strcmp(arg, "abort"))
Jeff King66e33092023-08-31 17:21:07 -040059 *val = SIGNED_TAG_ABORT;
Johannes Schindelinee4bc372007-12-03 22:44:39 +000060 else if (!strcmp(arg, "verbatim") || !strcmp(arg, "ignore"))
Jeff King66e33092023-08-31 17:21:07 -040061 *val = VERBATIM;
Johannes Schindelinf2dc8492007-12-02 14:14:13 +000062 else if (!strcmp(arg, "warn"))
Jeff King66e33092023-08-31 17:21:07 -040063 *val = WARN;
John Keepingcd16c592013-04-14 11:57:06 +010064 else if (!strcmp(arg, "warn-strip"))
Jeff King66e33092023-08-31 17:21:07 -040065 *val = WARN_STRIP;
Johannes Schindelinf2dc8492007-12-02 14:14:13 +000066 else if (!strcmp(arg, "strip"))
Jeff King66e33092023-08-31 17:21:07 -040067 *val = STRIP;
Johannes Schindelinf2dc8492007-12-02 14:14:13 +000068 else
Paul Price04a74b62013-04-12 10:05:55 -040069 return error("Unknown signed-tags mode: %s", arg);
Johannes Schindelinf2dc8492007-12-02 14:14:13 +000070 return 0;
71}
72
Elijah Newren2d8ad462009-06-25 22:48:31 -060073static int parse_opt_tag_of_filtered_mode(const struct option *opt,
74 const char *arg, int unset)
75{
Jeff King66e33092023-08-31 17:21:07 -040076 enum tag_of_filtered_mode *val = opt->value;
77
Elijah Newren2d8ad462009-06-25 22:48:31 -060078 if (unset || !strcmp(arg, "abort"))
Jeff King66e33092023-08-31 17:21:07 -040079 *val = TAG_FILTERING_ABORT;
Elijah Newren2d8ad462009-06-25 22:48:31 -060080 else if (!strcmp(arg, "drop"))
Jeff King66e33092023-08-31 17:21:07 -040081 *val = DROP;
Elijah Newren2d8ad462009-06-25 22:48:31 -060082 else if (!strcmp(arg, "rewrite"))
Jeff King66e33092023-08-31 17:21:07 -040083 *val = REWRITE;
Elijah Newren2d8ad462009-06-25 22:48:31 -060084 else
85 return error("Unknown tag-of-filtered mode: %s", arg);
86 return 0;
87}
88
Elijah Newrene80001f2019-05-13 21:31:02 -070089static int parse_opt_reencode_mode(const struct option *opt,
90 const char *arg, int unset)
91{
Jeff King66e33092023-08-31 17:21:07 -040092 enum reencode_mode *val = opt->value;
93
Elijah Newrene80001f2019-05-13 21:31:02 -070094 if (unset) {
Jeff King66e33092023-08-31 17:21:07 -040095 *val = REENCODE_ABORT;
Elijah Newrene80001f2019-05-13 21:31:02 -070096 return 0;
97 }
98
99 switch (git_parse_maybe_bool(arg)) {
100 case 0:
Jeff King66e33092023-08-31 17:21:07 -0400101 *val = REENCODE_NO;
Elijah Newrene80001f2019-05-13 21:31:02 -0700102 break;
103 case 1:
Jeff King66e33092023-08-31 17:21:07 -0400104 *val = REENCODE_YES;
Elijah Newrene80001f2019-05-13 21:31:02 -0700105 break;
106 default:
107 if (!strcasecmp(arg, "abort"))
Jeff King66e33092023-08-31 17:21:07 -0400108 *val = REENCODE_ABORT;
Elijah Newrene80001f2019-05-13 21:31:02 -0700109 else
110 return error("Unknown reencoding mode: %s", arg);
111 }
112
113 return 0;
114}
115
Johannes Schindelinf2dc8492007-12-02 14:14:13 +0000116static struct decoration idnums;
117static uint32_t last_idnum;
Jeff Kinga8722752014-08-27 13:01:28 -0400118struct anonymized_entry {
119 struct hashmap_entry hash;
Jeff King76e50f72023-03-22 13:37:17 -0400120 char *anon;
Jeff King55b01452020-06-23 11:24:58 -0400121 const char orig[FLEX_ARRAY];
Jeff Kinga0f65642020-06-23 11:24:56 -0400122};
123
124struct anonymized_entry_key {
125 struct hashmap_entry hash;
126 const char *orig;
127 size_t orig_len;
Jeff Kinga8722752014-08-27 13:01:28 -0400128};
129
Ævar Arnfjörð Bjarmason5cf88fd2022-08-25 19:09:48 +0200130static int anonymized_entry_cmp(const void *cmp_data UNUSED,
Eric Wong939af162019-10-06 23:30:37 +0000131 const struct hashmap_entry *eptr,
132 const struct hashmap_entry *entry_or_key,
Jeff Kinga0f65642020-06-23 11:24:56 -0400133 const void *keydata)
Jeff Kinga8722752014-08-27 13:01:28 -0400134{
Eric Wong939af162019-10-06 23:30:37 +0000135 const struct anonymized_entry *a, *b;
136
137 a = container_of(eptr, const struct anonymized_entry, hash);
Jeff Kinga0f65642020-06-23 11:24:56 -0400138 if (keydata) {
139 const struct anonymized_entry_key *key = keydata;
140 int equal = !strncmp(a->orig, key->orig, key->orig_len) &&
141 !a->orig[key->orig_len];
142 return !equal;
143 }
Eric Wong939af162019-10-06 23:30:37 +0000144
Jeff Kinga0f65642020-06-23 11:24:56 -0400145 b = container_of(entry_or_key, const struct anonymized_entry, hash);
146 return strcmp(a->orig, b->orig);
Jeff Kinga8722752014-08-27 13:01:28 -0400147}
148
Jeff Kingdcc4e132023-03-22 13:40:51 -0400149static struct anonymized_entry *add_anonymized_entry(struct hashmap *map,
150 unsigned hash,
151 const char *orig, size_t len,
152 char *anon)
153{
154 struct anonymized_entry *ret, *old;
155
156 if (!map->cmpfn)
157 hashmap_init(map, anonymized_entry_cmp, NULL, 0);
158
159 FLEX_ALLOC_MEM(ret, orig, orig, len);
160 hashmap_entry_init(&ret->hash, hash);
161 ret->anon = anon;
162 old = hashmap_put_entry(map, ret, hash);
163
164 if (old) {
165 free(old->anon);
166 free(old);
167 }
168
169 return ret;
170}
171
Jeff Kinga8722752014-08-27 13:01:28 -0400172/*
173 * Basically keep a cache of X->Y so that we can repeatedly replace
174 * the same anonymized string with another. The actual generation
175 * is farmed out to the generate function.
176 */
Jeff King7f407592020-06-23 11:24:54 -0400177static const char *anonymize_str(struct hashmap *map,
Jeff King65c756f2023-03-22 13:42:51 -0400178 char *(*generate)(void),
179 const char *orig, size_t len)
Jeff Kinga8722752014-08-27 13:01:28 -0400180{
Jeff Kinga0f65642020-06-23 11:24:56 -0400181 struct anonymized_entry_key key;
182 struct anonymized_entry *ret;
Jeff Kinga8722752014-08-27 13:01:28 -0400183
Jeff King7f407592020-06-23 11:24:54 -0400184 hashmap_entry_init(&key.hash, memhash(orig, len));
Jeff Kinga8722752014-08-27 13:01:28 -0400185 key.orig = orig;
Jeff King7f407592020-06-23 11:24:54 -0400186 key.orig_len = len;
Jeff Kinga8722752014-08-27 13:01:28 -0400187
Jeff King65b5d9f2020-06-25 15:48:32 -0400188 /* First check if it's a token the user configured manually... */
Jeff Kingd6484e92023-03-22 13:38:04 -0400189 ret = hashmap_get_entry(&anonymized_seeds, &key, hash, &key);
Jeff King65b5d9f2020-06-25 15:48:32 -0400190
191 /* ...otherwise check if we've already seen it in this context... */
192 if (!ret)
193 ret = hashmap_get_entry(map, &key, hash, &key);
194
195 /* ...and finally generate a new mapping if necessary */
Jeff Kingdcc4e132023-03-22 13:40:51 -0400196 if (!ret)
197 ret = add_anonymized_entry(map, key.hash.hash,
Jeff King65c756f2023-03-22 13:42:51 -0400198 orig, len, generate());
Jeff Kinga8722752014-08-27 13:01:28 -0400199
Jeff Kinga8722752014-08-27 13:01:28 -0400200 return ret->anon;
201}
202
203/*
204 * We anonymize each component of a path individually,
205 * so that paths a/b and a/c will share a common root.
206 * The paths are cached via anonymize_mem so that repeated
207 * lookups for "a" will yield the same value.
208 */
209static void anonymize_path(struct strbuf *out, const char *path,
210 struct hashmap *map,
Jeff King65c756f2023-03-22 13:42:51 -0400211 char *(*generate)(void))
Jeff Kinga8722752014-08-27 13:01:28 -0400212{
213 while (*path) {
214 const char *end_of_component = strchrnul(path, '/');
215 size_t len = end_of_component - path;
Jeff King65c756f2023-03-22 13:42:51 -0400216 const char *c = anonymize_str(map, generate, path, len);
Jeff King7f407592020-06-23 11:24:54 -0400217 strbuf_addstr(out, c);
Jeff Kinga8722752014-08-27 13:01:28 -0400218 path = end_of_component;
219 if (*path)
220 strbuf_addch(out, *path++);
221 }
222}
223
René Scharfec1120842018-05-09 23:06:46 +0200224static inline void *mark_to_ptr(uint32_t mark)
Johannes Schindelinf2dc8492007-12-02 14:14:13 +0000225{
René Scharfec1120842018-05-09 23:06:46 +0200226 return (void *)(uintptr_t)mark;
Pieter de Biedf6a7ff2008-06-11 13:17:04 +0200227}
228
229static inline uint32_t ptr_to_mark(void * mark)
230{
René Scharfec1120842018-05-09 23:06:46 +0200231 return (uint32_t)(uintptr_t)mark;
Pieter de Biedf6a7ff2008-06-11 13:17:04 +0200232}
233
234static inline void mark_object(struct object *object, uint32_t mark)
235{
236 add_decoration(&idnums, object, mark_to_ptr(mark));
237}
238
239static inline void mark_next_object(struct object *object)
240{
241 mark_object(object, ++last_idnum);
Johannes Schindelinf2dc8492007-12-02 14:14:13 +0000242}
243
244static int get_object_mark(struct object *object)
245{
246 void *decoration = lookup_decoration(&idnums, object);
247 if (!decoration)
248 return 0;
Pieter de Biedf6a7ff2008-06-11 13:17:04 +0200249 return ptr_to_mark(decoration);
Johannes Schindelinf2dc8492007-12-02 14:14:13 +0000250}
251
Elijah Newrenf129c422018-11-15 23:59:51 -0800252static struct commit *rewrite_commit(struct commit *p)
253{
254 for (;;) {
255 if (p->parents && p->parents->next)
256 break;
257 if (p->object.flags & UNINTERESTING)
258 break;
259 if (!(p->object.flags & TREESAME))
260 break;
261 if (!p->parents)
262 return NULL;
263 p = p->parents->item;
264 }
265 return p;
266}
267
Johannes Schindelinf2dc8492007-12-02 14:14:13 +0000268static void show_progress(void)
269{
270 static int counter = 0;
271 if (!progress)
272 return;
273 if ((++counter % progress) == 0)
274 printf("progress %d objects\n", counter);
275}
276
Jeff Kinga8722752014-08-27 13:01:28 -0400277/*
278 * Ideally we would want some transformation of the blob data here
279 * that is unreversible, but would still be the same size and have
280 * the same data relationship to other blobs (so that we get the same
281 * delta and packing behavior as the original). But the first and last
282 * requirements there are probably mutually exclusive, so let's take
283 * the easy way out for now, and just generate arbitrary content.
284 *
285 * There's no need to cache this result with anonymize_mem, since
286 * we already handle blob content caching with marks.
287 */
288static char *anonymize_blob(unsigned long *size)
289{
290 static int counter;
291 struct strbuf out = STRBUF_INIT;
292 strbuf_addf(&out, "anonymous blob %d", counter++);
293 *size = out.len;
294 return strbuf_detach(&out, NULL);
295}
296
brian m. carlson273f8ee2017-02-21 23:47:23 +0000297static void export_blob(const struct object_id *oid)
Johannes Schindelinf2dc8492007-12-02 14:14:13 +0000298{
299 unsigned long size;
300 enum object_type type;
301 char *buf;
302 struct object *object;
Jeff King30b939c2013-03-17 04:38:57 -0400303 int eaten;
Johannes Schindelinf2dc8492007-12-02 14:14:13 +0000304
Geoffrey Irving79559f22009-07-27 22:20:22 -0400305 if (no_data)
306 return;
307
brian m. carlson273f8ee2017-02-21 23:47:23 +0000308 if (is_null_oid(oid))
Johannes Schindelinf2dc8492007-12-02 14:14:13 +0000309 return;
310
Jeff Kingd0229ab2019-06-20 03:41:14 -0400311 object = lookup_object(the_repository, oid);
Jeff King30b939c2013-03-17 04:38:57 -0400312 if (object && object->flags & SHOWN)
Johannes Schindelinf2dc8492007-12-02 14:14:13 +0000313 return;
314
Jeff Kinga8722752014-08-27 13:01:28 -0400315 if (anonymize) {
316 buf = anonymize_blob(&size);
Stefan Bellerda14a7f2018-06-28 18:21:55 -0700317 object = (struct object *)lookup_blob(the_repository, oid);
Jeff Kinga8722752014-08-27 13:01:28 -0400318 eaten = 0;
319 } else {
Ævar Arnfjörð Bjarmasonbc726bd2023-03-28 15:58:50 +0200320 buf = repo_read_object_file(the_repository, oid, &type, &size);
Jeff Kinga8722752014-08-27 13:01:28 -0400321 if (!buf)
Nguyễn Thái Ngọc Duy1a07e592018-07-21 09:49:19 +0200322 die("could not read blob %s", oid_to_hex(oid));
Matheus Tavaresb98d1882020-01-30 17:32:23 -0300323 if (check_object_signature(the_repository, oid, buf, size,
Ævar Arnfjörð Bjarmason44439c12022-02-05 00:48:32 +0100324 type) < 0)
Elijah Newren843b9e62018-11-15 23:59:46 -0800325 die("oid mismatch in blob %s", oid_to_hex(oid));
Stefan Beller1ec5bfd2018-06-28 18:21:53 -0700326 object = parse_object_buffer(the_repository, oid, type,
327 size, buf, &eaten);
Jeff Kinga8722752014-08-27 13:01:28 -0400328 }
329
Jeff King30b939c2013-03-17 04:38:57 -0400330 if (!object)
brian m. carlson273f8ee2017-02-21 23:47:23 +0000331 die("Could not read blob %s", oid_to_hex(oid));
Johannes Schindelinf2dc8492007-12-02 14:14:13 +0000332
Pieter de Biedf6a7ff2008-06-11 13:17:04 +0200333 mark_next_object(object);
Johannes Schindelinf2dc8492007-12-02 14:14:13 +0000334
Elijah Newrena965bb32018-11-15 23:59:56 -0800335 printf("blob\nmark :%"PRIu32"\n", last_idnum);
336 if (show_original_ids)
337 printf("original-oid %s\n", oid_to_hex(oid));
Junio C Hamano4d597532019-01-04 13:33:33 -0800338 printf("data %"PRIuMAX"\n", (uintmax_t)size);
Alex Riesenb0fe0d72007-12-11 23:01:28 +0100339 if (size && fwrite(buf, size, 1, stdout) != 1)
Nguyễn Thái Ngọc Duy1a07e592018-07-21 09:49:19 +0200340 die_errno("could not write blob '%s'", oid_to_hex(oid));
Johannes Schindelinf2dc8492007-12-02 14:14:13 +0000341 printf("\n");
342
343 show_progress();
344
345 object->flags |= SHOWN;
Jeff King30b939c2013-03-17 04:38:57 -0400346 if (!eaten)
347 free(buf);
Johannes Schindelinf2dc8492007-12-02 14:14:13 +0000348}
349
Elijah Newren060df622010-07-09 07:10:55 -0600350static int depth_first(const void *a_, const void *b_)
351{
352 const struct diff_filepair *a = *((const struct diff_filepair **)a_);
353 const struct diff_filepair *b = *((const struct diff_filepair **)b_);
354 const char *name_a, *name_b;
355 int len_a, len_b, len;
356 int cmp;
357
358 name_a = a->one ? a->one->path : a->two->path;
359 name_b = b->one ? b->one->path : b->two->path;
360
361 len_a = strlen(name_a);
362 len_b = strlen(name_b);
363 len = (len_a < len_b) ? len_a : len_b;
364
365 /* strcmp will sort 'd' before 'd/e', we want 'd/e' before 'd' */
366 cmp = memcmp(name_a, name_b, len);
367 if (cmp)
368 return cmp;
Johannes Sixt4ce6fb82010-09-07 21:33:02 +0200369 cmp = len_b - len_a;
370 if (cmp)
371 return cmp;
372 /*
373 * Move 'R'ename entries last so that all references of the file
374 * appear in the output before it is renamed (e.g., when a file
375 * was copied and renamed in the same commit).
376 */
377 return (a->status == 'R') - (b->status == 'R');
Elijah Newren060df622010-07-09 07:10:55 -0600378}
379
Jeff Kinga8722752014-08-27 13:01:28 -0400380static void print_path_1(const char *path)
Jeff King6280dfd2011-08-05 16:36:22 -0600381{
382 int need_quote = quote_c_style(path, NULL, NULL, 0);
383 if (need_quote)
384 quote_c_style(path, NULL, stdout, 0);
Jay Soffianff59f6d2012-06-27 17:58:01 -0400385 else if (strchr(path, ' '))
386 printf("\"%s\"", path);
Jeff King6280dfd2011-08-05 16:36:22 -0600387 else
388 printf("%s", path);
389}
390
Jeff King65c756f2023-03-22 13:42:51 -0400391static char *anonymize_path_component(void)
Jeff Kinga8722752014-08-27 13:01:28 -0400392{
393 static int counter;
394 struct strbuf out = STRBUF_INIT;
395 strbuf_addf(&out, "path%d", counter++);
Jeff King7f407592020-06-23 11:24:54 -0400396 return strbuf_detach(&out, NULL);
Jeff Kinga8722752014-08-27 13:01:28 -0400397}
398
399static void print_path(const char *path)
400{
401 if (!anonymize)
402 print_path_1(path);
403 else {
404 static struct hashmap paths;
405 static struct strbuf anon = STRBUF_INIT;
406
407 anonymize_path(&anon, path, &paths, anonymize_path_component);
408 print_path_1(anon.buf);
409 strbuf_reset(&anon);
410 }
411}
412
Jeff King65c756f2023-03-22 13:42:51 -0400413static char *generate_fake_oid(void)
Jeff Kinga8722752014-08-27 13:01:28 -0400414{
Elijah Newren843b9e62018-11-15 23:59:46 -0800415 static uint32_t counter = 1; /* avoid null oid */
416 const unsigned hashsz = the_hash_algo->rawsz;
Jeff King176380f2020-09-24 15:22:29 -0400417 struct object_id oid;
Jeff King750bb322020-06-23 11:24:51 -0400418 char *hex = xmallocz(GIT_MAX_HEXSZ);
419
Jeff King176380f2020-09-24 15:22:29 -0400420 oidclr(&oid);
421 put_be32(oid.hash + hashsz - 4, counter++);
422 return oid_to_hex_r(hex, &oid);
Jeff Kinga8722752014-08-27 13:01:28 -0400423}
424
Jeff King750bb322020-06-23 11:24:51 -0400425static const char *anonymize_oid(const char *oid_hex)
Jeff Kinga8722752014-08-27 13:01:28 -0400426{
Elijah Newren843b9e62018-11-15 23:59:46 -0800427 static struct hashmap objs;
Jeff King750bb322020-06-23 11:24:51 -0400428 size_t len = strlen(oid_hex);
Jeff King65c756f2023-03-22 13:42:51 -0400429 return anonymize_str(&objs, generate_fake_oid, oid_hex, len);
Jeff Kinga8722752014-08-27 13:01:28 -0400430}
431
Johannes Schindelinf2dc8492007-12-02 14:14:13 +0000432static void show_filemodify(struct diff_queue_struct *q,
Jeff King61bdc7c2022-12-13 06:13:48 -0500433 struct diff_options *options UNUSED, void *data)
Johannes Schindelinf2dc8492007-12-02 14:14:13 +0000434{
435 int i;
Jonathan Tanb3e8ca82017-09-20 16:55:02 -0700436 struct string_list *changed = data;
Elijah Newren060df622010-07-09 07:10:55 -0600437
438 /*
439 * Handle files below a directory first, in case they are all deleted
440 * and the directory changes to a file or symlink.
441 */
René Scharfe9ed0d8d2016-09-29 17:27:31 +0200442 QSORT(q->queue, q->nr, depth_first);
Elijah Newren060df622010-07-09 07:10:55 -0600443
Johannes Schindelinf2dc8492007-12-02 14:14:13 +0000444 for (i = 0; i < q->nr; i++) {
Alexander Gavrilovae7c5dc2008-07-27 00:52:54 +0400445 struct diff_filespec *ospec = q->queue[i]->one;
Johannes Schindelinf2dc8492007-12-02 14:14:13 +0000446 struct diff_filespec *spec = q->queue[i]->two;
Alexander Gavrilovae7c5dc2008-07-27 00:52:54 +0400447
448 switch (q->queue[i]->status) {
449 case DIFF_STATUS_DELETED:
Jeff King6280dfd2011-08-05 16:36:22 -0600450 printf("D ");
451 print_path(spec->path);
Jonathan Tanb3e8ca82017-09-20 16:55:02 -0700452 string_list_insert(changed, spec->path);
Jeff King6280dfd2011-08-05 16:36:22 -0600453 putchar('\n');
Alexander Gavrilovae7c5dc2008-07-27 00:52:54 +0400454 break;
455
456 case DIFF_STATUS_COPIED:
457 case DIFF_STATUS_RENAMED:
Jonathan Tanb3e8ca82017-09-20 16:55:02 -0700458 /*
459 * If a change in the file corresponding to ospec->path
460 * has been observed, we cannot trust its contents
461 * because the diff is calculated based on the prior
462 * contents, not the current contents. So, declare a
463 * copy or rename only if there was no change observed.
464 */
465 if (!string_list_has_string(changed, ospec->path)) {
466 printf("%c ", q->queue[i]->status);
467 print_path(ospec->path);
468 putchar(' ');
469 print_path(spec->path);
470 string_list_insert(changed, spec->path);
471 putchar('\n');
Alexander Gavrilovae7c5dc2008-07-27 00:52:54 +0400472
Jeff King4a7e27e2018-08-28 17:22:40 -0400473 if (oideq(&ospec->oid, &spec->oid) &&
Jonathan Tanb3e8ca82017-09-20 16:55:02 -0700474 ospec->mode == spec->mode)
475 break;
476 }
Alexander Gavrilovae7c5dc2008-07-27 00:52:54 +0400477 /* fallthrough */
478
479 case DIFF_STATUS_TYPE_CHANGED:
480 case DIFF_STATUS_MODIFIED:
481 case DIFF_STATUS_ADDED:
Alexander Gavrilov03db4522008-07-19 16:21:24 +0400482 /*
483 * Links refer to objects in another repositories;
484 * output the SHA-1 verbatim.
485 */
Geoffrey Irving79559f22009-07-27 22:20:22 -0400486 if (no_data || S_ISGITLINK(spec->mode))
Jeff King6280dfd2011-08-05 16:36:22 -0600487 printf("M %06o %s ", spec->mode,
Jeff King750bb322020-06-23 11:24:51 -0400488 anonymize ?
489 anonymize_oid(oid_to_hex(&spec->oid)) :
490 oid_to_hex(&spec->oid));
Alexander Gavrilov03db4522008-07-19 16:21:24 +0400491 else {
Stefan Beller5abddd12018-06-28 18:21:52 -0700492 struct object *object = lookup_object(the_repository,
Jeff Kingd0229ab2019-06-20 03:41:14 -0400493 &spec->oid);
Jeff King6280dfd2011-08-05 16:36:22 -0600494 printf("M %06o :%d ", spec->mode,
495 get_object_mark(object));
Alexander Gavrilov03db4522008-07-19 16:21:24 +0400496 }
Jeff King6280dfd2011-08-05 16:36:22 -0600497 print_path(spec->path);
Jonathan Tanb3e8ca82017-09-20 16:55:02 -0700498 string_list_insert(changed, spec->path);
Jeff King6280dfd2011-08-05 16:36:22 -0600499 putchar('\n');
Alexander Gavrilovae7c5dc2008-07-27 00:52:54 +0400500 break;
501
502 default:
503 die("Unexpected comparison status '%c' for %s, %s",
504 q->queue[i]->status,
505 ospec->path ? ospec->path : "none",
506 spec->path ? spec->path : "none");
Johannes Schindelinf2dc8492007-12-02 14:14:13 +0000507 }
508 }
509}
510
511static const char *find_encoding(const char *begin, const char *end)
512{
513 const char *needle = "\nencoding ";
514 char *bol, *eol;
515
516 bol = memmem(begin, end ? end - begin : strlen(begin),
517 needle, strlen(needle));
518 if (!bol)
Elijah Newren57a8be22019-05-13 21:31:01 -0700519 return NULL;
Johannes Schindelinf2dc8492007-12-02 14:14:13 +0000520 bol += strlen(needle);
521 eol = strchrnul(bol, '\n');
522 *eol = '\0';
523 return bol;
524}
525
Jeff King65c756f2023-03-22 13:42:51 -0400526static char *anonymize_ref_component(void)
Jeff Kinga8722752014-08-27 13:01:28 -0400527{
528 static int counter;
529 struct strbuf out = STRBUF_INIT;
530 strbuf_addf(&out, "ref%d", counter++);
Jeff King7f407592020-06-23 11:24:54 -0400531 return strbuf_detach(&out, NULL);
Jeff Kinga8722752014-08-27 13:01:28 -0400532}
533
534static const char *anonymize_refname(const char *refname)
535{
536 /*
537 * If any of these prefixes is found, we will leave it intact
538 * so that tags remain tags and so forth.
539 */
540 static const char *prefixes[] = {
541 "refs/heads/",
542 "refs/tags/",
543 "refs/remotes/",
544 "refs/"
545 };
546 static struct hashmap refs;
547 static struct strbuf anon = STRBUF_INIT;
548 int i;
549
Jeff Kinga8722752014-08-27 13:01:28 -0400550 strbuf_reset(&anon);
551 for (i = 0; i < ARRAY_SIZE(prefixes); i++) {
552 if (skip_prefix(refname, prefixes[i], &refname)) {
553 strbuf_addstr(&anon, prefixes[i]);
554 break;
555 }
556 }
557
558 anonymize_path(&anon, refname, &refs, anonymize_ref_component);
559 return anon.buf;
560}
561
562/*
563 * We do not even bother to cache commit messages, as they are unlikely
564 * to be repeated verbatim, and it is not that interesting when they are.
565 */
Jeff Kingd051f172023-03-22 13:43:22 -0400566static char *anonymize_commit_message(void)
Jeff Kinga8722752014-08-27 13:01:28 -0400567{
568 static int counter;
569 return xstrfmt("subject %d\n\nbody\n", counter++);
570}
571
Jeff King65c756f2023-03-22 13:42:51 -0400572static char *anonymize_ident(void)
Jeff Kinga8722752014-08-27 13:01:28 -0400573{
574 static int counter;
575 struct strbuf out = STRBUF_INIT;
576 strbuf_addf(&out, "User %d <user%d@example.com>", counter, counter);
577 counter++;
Jeff King7f407592020-06-23 11:24:54 -0400578 return strbuf_detach(&out, NULL);
Jeff Kinga8722752014-08-27 13:01:28 -0400579}
580
581/*
582 * Our strategy here is to anonymize the names and email addresses,
583 * but keep timestamps intact, as they influence things like traversal
584 * order (and by themselves should not be too revealing).
585 */
586static void anonymize_ident_line(const char **beg, const char **end)
587{
Jeff King6416a862020-06-23 11:25:01 -0400588 static struct hashmap idents;
Jeff Kinga8722752014-08-27 13:01:28 -0400589 static struct strbuf buffers[] = { STRBUF_INIT, STRBUF_INIT };
590 static unsigned which_buffer;
591
592 struct strbuf *out;
593 struct ident_split split;
594 const char *end_of_header;
595
596 out = &buffers[which_buffer++];
597 which_buffer %= ARRAY_SIZE(buffers);
598 strbuf_reset(out);
599
600 /* skip "committer", "author", "tagger", etc */
601 end_of_header = strchr(*beg, ' ');
602 if (!end_of_header)
Johannes Schindelin033abf92018-05-02 11:38:39 +0200603 BUG("malformed line fed to anonymize_ident_line: %.*s",
Jeff Kinga8722752014-08-27 13:01:28 -0400604 (int)(*end - *beg), *beg);
605 end_of_header++;
606 strbuf_add(out, *beg, end_of_header - *beg);
607
608 if (!split_ident_line(&split, end_of_header, *end - end_of_header) &&
609 split.date_begin) {
610 const char *ident;
611 size_t len;
612
613 len = split.mail_end - split.name_begin;
Jeff King7f407592020-06-23 11:24:54 -0400614 ident = anonymize_str(&idents, anonymize_ident,
Jeff King65c756f2023-03-22 13:42:51 -0400615 split.name_begin, len);
Jeff King7f407592020-06-23 11:24:54 -0400616 strbuf_addstr(out, ident);
Jeff Kinga8722752014-08-27 13:01:28 -0400617 strbuf_addch(out, ' ');
618 strbuf_add(out, split.date_begin, split.tz_end - split.date_begin);
619 } else {
620 strbuf_addstr(out, "Malformed Ident <malformed@example.com> 0 -0000");
621 }
622
623 *beg = out->buf;
624 *end = out->buf + out->len;
625}
626
Jonathan Tanb3e8ca82017-09-20 16:55:02 -0700627static void handle_commit(struct commit *commit, struct rev_info *rev,
628 struct string_list *paths_of_changed_objects)
Johannes Schindelinf2dc8492007-12-02 14:14:13 +0000629{
630 int saved_output_format = rev->diffopt.output_format;
Jeff Kingbc6b8fc2014-06-10 17:41:51 -0400631 const char *commit_buffer;
Johannes Schindelinf2dc8492007-12-02 14:14:13 +0000632 const char *author, *author_end, *committer, *committer_end;
633 const char *encoding, *message;
634 char *reencoded = NULL;
635 struct commit_list *p;
Jeff Kinga8722752014-08-27 13:01:28 -0400636 const char *refname;
Johannes Schindelinf2dc8492007-12-02 14:14:13 +0000637 int i;
638
639 rev->diffopt.output_format = DIFF_FORMAT_CALLBACK;
640
Jeff King683ff882013-10-24 04:53:46 -0400641 parse_commit_or_die(commit);
Ævar Arnfjörð Bjarmasonecb50912023-03-28 15:58:48 +0200642 commit_buffer = repo_get_commit_buffer(the_repository, commit, NULL);
Jeff Kingbc6b8fc2014-06-10 17:41:51 -0400643 author = strstr(commit_buffer, "\nauthor ");
Johannes Schindelinf2dc8492007-12-02 14:14:13 +0000644 if (!author)
Nguyễn Thái Ngọc Duy1a07e592018-07-21 09:49:19 +0200645 die("could not find author in commit %s",
646 oid_to_hex(&commit->object.oid));
Johannes Schindelinf2dc8492007-12-02 14:14:13 +0000647 author++;
648 author_end = strchrnul(author, '\n');
649 committer = strstr(author_end, "\ncommitter ");
650 if (!committer)
Nguyễn Thái Ngọc Duy1a07e592018-07-21 09:49:19 +0200651 die("could not find committer in commit %s",
652 oid_to_hex(&commit->object.oid));
Johannes Schindelinf2dc8492007-12-02 14:14:13 +0000653 committer++;
654 committer_end = strchrnul(committer, '\n');
655 message = strstr(committer_end, "\n\n");
656 encoding = find_encoding(committer_end, message);
657 if (message)
658 message += 2;
659
Elijah Newrenebeec7d2009-03-25 17:53:23 -0600660 if (commit->parents &&
Elijah Newren530ca192018-11-15 23:59:54 -0800661 (get_object_mark(&commit->parents->item->object) != 0 ||
662 reference_excluded_commits) &&
Elijah Newren4087a022010-07-17 11:00:50 -0600663 !full_tree) {
Jeff King683ff882013-10-24 04:53:46 -0400664 parse_commit_or_die(commit->parents->item);
Derrick Stolee2e27bd72018-04-06 19:09:38 +0000665 diff_tree_oid(get_commit_tree_oid(commit->parents->item),
666 get_commit_tree_oid(commit), "", &rev->diffopt);
Johannes Schindelinf2dc8492007-12-02 14:14:13 +0000667 }
668 else
Derrick Stolee2e27bd72018-04-06 19:09:38 +0000669 diff_root_tree_oid(get_commit_tree_oid(commit),
Brandon Williams7b8dea02017-05-30 10:30:57 -0700670 "", &rev->diffopt);
Johannes Schindelinf2dc8492007-12-02 14:14:13 +0000671
Alexander Gavrilov03db4522008-07-19 16:21:24 +0400672 /* Export the referenced blobs, and remember the marks. */
Johannes Schindelinf2dc8492007-12-02 14:14:13 +0000673 for (i = 0; i < diff_queued_diff.nr; i++)
Alexander Gavrilov03db4522008-07-19 16:21:24 +0400674 if (!S_ISGITLINK(diff_queued_diff.queue[i]->two->mode))
brian m. carlson273f8ee2017-02-21 23:47:23 +0000675 export_blob(&diff_queued_diff.queue[i]->two->oid);
Johannes Schindelinf2dc8492007-12-02 14:14:13 +0000676
Nguyễn Thái Ngọc Duy87be2522018-05-19 07:28:24 +0200677 refname = *revision_sources_at(&revision_sources, commit);
Elijah Newrenfdf31b62018-11-15 23:59:53 -0800678 /*
679 * FIXME: string_list_remove() below for each ref is overall
680 * O(N^2). Compared to a history walk and diffing trees, this is
681 * just lost in the noise in practice. However, theoretically a
682 * repo may have enough refs for this to become slow.
683 */
684 string_list_remove(&extra_refs, refname, 0);
Jeff Kinga8722752014-08-27 13:01:28 -0400685 if (anonymize) {
686 refname = anonymize_refname(refname);
687 anonymize_ident_line(&committer, &committer_end);
688 anonymize_ident_line(&author, &author_end);
689 }
690
Pieter de Biedf6a7ff2008-06-11 13:17:04 +0200691 mark_next_object(&commit->object);
Elijah Newrene80001f2019-05-13 21:31:02 -0700692 if (anonymize) {
Jeff Kingd051f172023-03-22 13:43:22 -0400693 reencoded = anonymize_commit_message();
Elijah Newrene80001f2019-05-13 21:31:02 -0700694 } else if (encoding) {
695 switch(reencode_mode) {
696 case REENCODE_YES:
697 reencoded = reencode_string(message, "UTF-8", encoding);
698 break;
699 case REENCODE_NO:
700 break;
701 case REENCODE_ABORT:
702 die("Encountered commit-specific encoding %s in commit "
703 "%s; use --reencode=[yes|no] to handle it",
704 encoding, oid_to_hex(&commit->object.oid));
705 }
706 }
Shawn O. Pearced8933f02008-06-13 00:38:55 -0400707 if (!commit->parents)
Jeff Kinga8722752014-08-27 13:01:28 -0400708 printf("reset %s\n", refname);
Elijah Newrena965bb32018-11-15 23:59:56 -0800709 printf("commit %s\nmark :%"PRIu32"\n", refname, last_idnum);
710 if (show_original_ids)
711 printf("original-oid %s\n", oid_to_hex(&commit->object.oid));
Elijah Newrenccbfc962019-05-13 21:31:00 -0700712 printf("%.*s\n%.*s\n",
Johannes Schindelinf2dc8492007-12-02 14:14:13 +0000713 (int)(author_end - author), author,
Elijah Newrenccbfc962019-05-13 21:31:00 -0700714 (int)(committer_end - committer), committer);
715 if (!reencoded && encoding)
716 printf("encoding %s\n", encoding);
717 printf("data %u\n%s",
Johannes Schindelinf2dc8492007-12-02 14:14:13 +0000718 (unsigned)(reencoded
719 ? strlen(reencoded) : message
720 ? strlen(message) : 0),
721 reencoded ? reencoded : message ? message : "");
Jim Meyering8e0f7002008-01-31 18:26:32 +0100722 free(reencoded);
Ævar Arnfjörð Bjarmasonecb50912023-03-28 15:58:48 +0200723 repo_unuse_commit_buffer(the_repository, commit, commit_buffer);
Johannes Schindelinf2dc8492007-12-02 14:14:13 +0000724
725 for (i = 0, p = commit->parents; p; p = p->next) {
Elijah Newren530ca192018-11-15 23:59:54 -0800726 struct object *obj = &p->item->object;
727 int mark = get_object_mark(obj);
728
729 if (!mark && !reference_excluded_commits)
Johannes Schindelinf2dc8492007-12-02 14:14:13 +0000730 continue;
731 if (i == 0)
Elijah Newren530ca192018-11-15 23:59:54 -0800732 printf("from ");
Johannes Schindelinf2dc8492007-12-02 14:14:13 +0000733 else
Elijah Newren530ca192018-11-15 23:59:54 -0800734 printf("merge ");
735 if (mark)
736 printf(":%d\n", mark);
737 else
Jeff King750bb322020-06-23 11:24:51 -0400738 printf("%s\n",
739 anonymize ?
740 anonymize_oid(oid_to_hex(&obj->oid)) :
741 oid_to_hex(&obj->oid));
Johannes Schindelinf2dc8492007-12-02 14:14:13 +0000742 i++;
743 }
Johannes Schindelinf2dc8492007-12-02 14:14:13 +0000744
Elijah Newren4087a022010-07-17 11:00:50 -0600745 if (full_tree)
746 printf("deleteall\n");
Johannes Schindelinf2dc8492007-12-02 14:14:13 +0000747 log_tree_diff_flush(rev);
Jonathan Tanb3e8ca82017-09-20 16:55:02 -0700748 string_list_clear(paths_of_changed_objects, 0);
Johannes Schindelinf2dc8492007-12-02 14:14:13 +0000749 rev->diffopt.output_format = saved_output_format;
750
751 printf("\n");
752
753 show_progress();
754}
755
Jeff King65c756f2023-03-22 13:42:51 -0400756static char *anonymize_tag(void)
Jeff Kinga8722752014-08-27 13:01:28 -0400757{
758 static int counter;
759 struct strbuf out = STRBUF_INIT;
760 strbuf_addf(&out, "tag message %d", counter++);
Jeff King7f407592020-06-23 11:24:54 -0400761 return strbuf_detach(&out, NULL);
Jeff Kinga8722752014-08-27 13:01:28 -0400762}
763
Johannes Schindelinf2dc8492007-12-02 14:14:13 +0000764
765static void handle_tag(const char *name, struct tag *tag)
766{
767 unsigned long size;
768 enum object_type type;
769 char *buf;
770 const char *tagger, *tagger_end, *message;
771 size_t message_size = 0;
Elijah Newren02c48cd2009-06-25 22:48:28 -0600772 struct object *tagged;
Elijah Newren2d8ad462009-06-25 22:48:31 -0600773 int tagged_mark;
774 struct commit *p;
Elijah Newren02c48cd2009-06-25 22:48:28 -0600775
Ondřej Bílka98e023d2013-07-29 10:18:21 +0200776 /* Trees have no identifier in fast-export output, thus we have no way
Elijah Newren02c48cd2009-06-25 22:48:28 -0600777 * to output tags of trees, tags of tags of trees, etc. Simply omit
778 * such tags.
779 */
780 tagged = tag->tagged;
781 while (tagged->type == OBJ_TAG) {
782 tagged = ((struct tag *)tagged)->tagged;
783 }
784 if (tagged->type == OBJ_TREE) {
785 warning("Omitting tag %s,\nsince tags of trees (or tags of tags of trees, etc.) are not supported.",
brian m. carlsonf2fd0762015-11-10 02:22:28 +0000786 oid_to_hex(&tag->object.oid));
Elijah Newren02c48cd2009-06-25 22:48:28 -0600787 return;
788 }
Johannes Schindelinf2dc8492007-12-02 14:14:13 +0000789
Ævar Arnfjörð Bjarmasonbc726bd2023-03-28 15:58:50 +0200790 buf = repo_read_object_file(the_repository, &tag->object.oid, &type,
791 &size);
Johannes Schindelinf2dc8492007-12-02 14:14:13 +0000792 if (!buf)
Nguyễn Thái Ngọc Duy1a07e592018-07-21 09:49:19 +0200793 die("could not read tag %s", oid_to_hex(&tag->object.oid));
Johannes Schindelinf2dc8492007-12-02 14:14:13 +0000794 message = memmem(buf, size, "\n\n", 2);
795 if (message) {
796 message += 2;
797 message_size = strlen(message);
798 }
799 tagger = memmem(buf, message ? message - buf : size, "\ntagger ", 8);
Johannes Schindelin4e46a8d2008-12-20 01:00:27 +0100800 if (!tagger) {
801 if (fake_missing_tagger)
802 tagger = "tagger Unspecified Tagger "
803 "<unspecified-tagger> 0 +0000";
804 else
805 tagger = "";
806 tagger_end = tagger + strlen(tagger);
807 } else {
808 tagger++;
809 tagger_end = strchrnul(tagger, '\n');
Jeff Kinga8722752014-08-27 13:01:28 -0400810 if (anonymize)
811 anonymize_ident_line(&tagger, &tagger_end);
812 }
813
814 if (anonymize) {
815 name = anonymize_refname(name);
816 if (message) {
817 static struct hashmap tags;
Jeff King7f407592020-06-23 11:24:54 -0400818 message = anonymize_str(&tags, anonymize_tag,
Jeff King65c756f2023-03-22 13:42:51 -0400819 message, message_size);
Tal Kelrich2f040a92021-08-31 15:55:54 +0000820 message_size = strlen(message);
Jeff Kinga8722752014-08-27 13:01:28 -0400821 }
Johannes Schindelin4e46a8d2008-12-20 01:00:27 +0100822 }
Johannes Schindelinf2dc8492007-12-02 14:14:13 +0000823
824 /* handle signed tags */
825 if (message) {
826 const char *signature = strstr(message,
827 "\n-----BEGIN PGP SIGNATURE-----\n");
828 if (signature)
829 switch(signed_tag_mode) {
Elijah Newrenb93b81e2018-11-15 23:59:49 -0800830 case SIGNED_TAG_ABORT:
Nguyễn Thái Ngọc Duy1a07e592018-07-21 09:49:19 +0200831 die("encountered signed tag %s; use "
832 "--signed-tags=<mode> to handle it",
833 oid_to_hex(&tag->object.oid));
Johannes Schindelinf2dc8492007-12-02 14:14:13 +0000834 case WARN:
Nguyễn Thái Ngọc Duy1a07e592018-07-21 09:49:19 +0200835 warning("exporting signed tag %s",
836 oid_to_hex(&tag->object.oid));
Johannes Schindelinf2dc8492007-12-02 14:14:13 +0000837 /* fallthru */
Johannes Schindelinee4bc372007-12-03 22:44:39 +0000838 case VERBATIM:
Johannes Schindelinf2dc8492007-12-02 14:14:13 +0000839 break;
John Keepingcd16c592013-04-14 11:57:06 +0100840 case WARN_STRIP:
Nguyễn Thái Ngọc Duy1a07e592018-07-21 09:49:19 +0200841 warning("stripping signature from tag %s",
842 oid_to_hex(&tag->object.oid));
John Keepingcd16c592013-04-14 11:57:06 +0100843 /* fallthru */
Johannes Schindelinf2dc8492007-12-02 14:14:13 +0000844 case STRIP:
845 message_size = signature + 1 - message;
846 break;
847 }
848 }
849
Elijah Newren2d8ad462009-06-25 22:48:31 -0600850 /* handle tag->tagged having been filtered out due to paths specified */
851 tagged = tag->tagged;
852 tagged_mark = get_object_mark(tagged);
853 if (!tagged_mark) {
854 switch(tag_of_filtered_mode) {
Elijah Newrenb93b81e2018-11-15 23:59:49 -0800855 case TAG_FILTERING_ABORT:
Nguyễn Thái Ngọc Duy1a07e592018-07-21 09:49:19 +0200856 die("tag %s tags unexported object; use "
857 "--tag-of-filtered-object=<mode> to handle it",
858 oid_to_hex(&tag->object.oid));
Elijah Newren2d8ad462009-06-25 22:48:31 -0600859 case DROP:
860 /* Ignore this tag altogether */
Johannes Schindelin1efb1e92017-05-04 15:57:33 +0200861 free(buf);
Elijah Newren2d8ad462009-06-25 22:48:31 -0600862 return;
863 case REWRITE:
Elijah Newren941790d2019-10-03 13:27:09 -0700864 if (tagged->type == OBJ_TAG && !mark_tags) {
865 die(_("Error: Cannot export nested tags unless --mark-tags is specified."));
866 } else if (tagged->type == OBJ_COMMIT) {
867 p = rewrite_commit((struct commit *)tagged);
868 if (!p) {
869 printf("reset %s\nfrom %s\n\n",
brian m. carlson14228442021-04-26 01:02:56 +0000870 name, oid_to_hex(null_oid()));
Elijah Newren941790d2019-10-03 13:27:09 -0700871 free(buf);
872 return;
873 }
874 tagged_mark = get_object_mark(&p->object);
875 } else {
876 /* tagged->type is either OBJ_BLOB or OBJ_TAG */
877 tagged_mark = get_object_mark(tagged);
Elijah Newren2d8ad462009-06-25 22:48:31 -0600878 }
Elijah Newren2d8ad462009-06-25 22:48:31 -0600879 }
880 }
881
Elijah Newren941790d2019-10-03 13:27:09 -0700882 if (tagged->type == OBJ_TAG) {
883 printf("reset %s\nfrom %s\n\n",
brian m. carlson14228442021-04-26 01:02:56 +0000884 name, oid_to_hex(null_oid()));
Elijah Newren941790d2019-10-03 13:27:09 -0700885 }
Junio C Hamano145136a2020-01-30 11:35:46 -0800886 skip_prefix(name, "refs/tags/", &name);
Elijah Newrenaf2abd82019-09-24 18:39:58 -0700887 printf("tag %s\n", name);
Elijah Newrena1638cf2019-10-03 13:27:07 -0700888 if (mark_tags) {
889 mark_next_object(&tag->object);
890 printf("mark :%"PRIu32"\n", last_idnum);
891 }
Elijah Newrenaf2abd82019-09-24 18:39:58 -0700892 if (tagged_mark)
893 printf("from :%d\n", tagged_mark);
894 else
895 printf("from %s\n", oid_to_hex(&tagged->oid));
896
Elijah Newrena965bb32018-11-15 23:59:56 -0800897 if (show_original_ids)
898 printf("original-oid %s\n", oid_to_hex(&tag->object.oid));
899 printf("%.*s%sdata %d\n%.*s\n",
Johannes Schindelinf2dc8492007-12-02 14:14:13 +0000900 (int)(tagger_end - tagger), tagger,
Johannes Schindelin4e46a8d2008-12-20 01:00:27 +0100901 tagger == tagger_end ? "" : "\n",
Johannes Schindelinf2dc8492007-12-02 14:14:13 +0000902 (int)message_size, (int)message_size, message ? message : "");
Johannes Schindelin1efb1e92017-05-04 15:57:33 +0200903 free(buf);
Johannes Schindelinf2dc8492007-12-02 14:14:13 +0000904}
905
Felipe Contreras3e9b9cb2013-09-01 02:05:48 -0500906static struct commit *get_commit(struct rev_cmdline_entry *e, char *full_name)
Johannes Schindelinf2dc8492007-12-02 14:14:13 +0000907{
Felipe Contreras3e9b9cb2013-09-01 02:05:48 -0500908 switch (e->item->type) {
909 case OBJ_COMMIT:
910 return (struct commit *)e->item;
911 case OBJ_TAG: {
912 struct tag *tag = (struct tag *)e->item;
913
914 /* handle nested tags */
915 while (tag && tag->object.type == OBJ_TAG) {
Stefan Beller109cd762018-06-28 18:21:51 -0700916 parse_object(the_repository, &tag->object.oid);
Elijah Newrenfdf31b62018-11-15 23:59:53 -0800917 string_list_append(&tag_refs, full_name)->util = tag;
Felipe Contreras3e9b9cb2013-09-01 02:05:48 -0500918 tag = (struct tag *)tag->tagged;
919 }
920 if (!tag)
921 die("Tag %s points nowhere?", e->name);
922 return (struct commit *)tag;
Felipe Contreras3e9b9cb2013-09-01 02:05:48 -0500923 }
924 default:
925 return NULL;
926 }
927}
928
Felipe Contreras1d844ee2013-09-01 02:05:47 -0500929static void get_tags_and_duplicates(struct rev_cmdline_info *info)
Johannes Schindelinf2dc8492007-12-02 14:14:13 +0000930{
Johannes Schindelinf2dc8492007-12-02 14:14:13 +0000931 int i;
932
Felipe Contreras49266e82012-11-28 23:23:59 +0100933 for (i = 0; i < info->nr; i++) {
934 struct rev_cmdline_entry *e = info->rev + i;
brian m. carlson273f8ee2017-02-21 23:47:23 +0000935 struct object_id oid;
Felipe Contreras2d242de2012-11-28 23:11:08 +0100936 struct commit *commit;
Johannes Schindelinf2dc8492007-12-02 14:14:13 +0000937 char *full_name;
938
Felipe Contreras49266e82012-11-28 23:23:59 +0100939 if (e->flags & UNINTERESTING)
940 continue;
941
Ævar Arnfjörð Bjarmason12cb1c12023-03-28 15:58:54 +0200942 if (repo_dwim_ref(the_repository, e->name, strlen(e->name),
943 &oid, &full_name, 0) != 1)
Johannes Schindelinf2dc8492007-12-02 14:14:13 +0000944 continue;
945
Brandon Williams16eefc82018-05-16 15:57:59 -0700946 if (refspecs.nr) {
Felipe Contreras03e90102014-04-20 13:59:24 -0500947 char *private;
Brandon Williamsd0004142018-05-16 15:58:11 -0700948 private = apply_refspecs(&refspecs, full_name);
Felipe Contreras03e90102014-04-20 13:59:24 -0500949 if (private) {
950 free(full_name);
951 full_name = private;
952 }
953 }
954
Felipe Contreras3e9b9cb2013-09-01 02:05:48 -0500955 commit = get_commit(e, full_name);
956 if (!commit) {
Erik Faye-Lund2d07f6d2009-03-23 12:53:07 +0000957 warning("%s: Unexpected object of type %s, skipping.",
958 e->name,
Brandon Williamsdebca9d2018-02-14 10:59:24 -0800959 type_name(e->item->type));
Erik Faye-Lund2d07f6d2009-03-23 12:53:07 +0000960 continue;
Johannes Schindelinf2dc8492007-12-02 14:14:13 +0000961 }
Felipe Contrerasf28e7c92012-11-28 23:24:00 +0100962
Felipe Contreras3e9b9cb2013-09-01 02:05:48 -0500963 switch(commit->object.type) {
964 case OBJ_COMMIT:
965 break;
966 case OBJ_BLOB:
brian m. carlson273f8ee2017-02-21 23:47:23 +0000967 export_blob(&commit->object.oid);
Felipe Contreras3e9b9cb2013-09-01 02:05:48 -0500968 continue;
969 default: /* OBJ_TAG (nested tags) is already handled */
970 warning("Tag points to object of unexpected type %s, skipping.",
Brandon Williamsdebca9d2018-02-14 10:59:24 -0800971 type_name(commit->object.type));
Felipe Contreras3e9b9cb2013-09-01 02:05:48 -0500972 continue;
973 }
974
Felipe Contrerasf28e7c92012-11-28 23:24:00 +0100975 /*
Elijah Newrenfdf31b62018-11-15 23:59:53 -0800976 * Make sure this ref gets properly updated eventually, whether
977 * through a commit or manually at the end.
Felipe Contrerasf28e7c92012-11-28 23:24:00 +0100978 */
Elijah Newrenfdf31b62018-11-15 23:59:53 -0800979 if (e->item->type != OBJ_TAG)
Felipe Contreras1d844ee2013-09-01 02:05:47 -0500980 string_list_append(&extra_refs, full_name)->util = commit;
Elijah Newrenfdf31b62018-11-15 23:59:53 -0800981
Nguyễn Thái Ngọc Duy87be2522018-05-19 07:28:24 +0200982 if (!*revision_sources_at(&revision_sources, commit))
983 *revision_sources_at(&revision_sources, commit) = full_name;
Johannes Schindelinf2dc8492007-12-02 14:14:13 +0000984 }
Elijah Newrenfdf31b62018-11-15 23:59:53 -0800985
986 string_list_sort(&extra_refs);
987 string_list_remove_duplicates(&extra_refs, 0);
Johannes Schindelinf2dc8492007-12-02 14:14:13 +0000988}
989
Elijah Newrenfdf31b62018-11-15 23:59:53 -0800990static void handle_tags_and_duplicates(struct string_list *extras)
Johannes Schindelinf2dc8492007-12-02 14:14:13 +0000991{
992 struct commit *commit;
993 int i;
994
Elijah Newrenfdf31b62018-11-15 23:59:53 -0800995 for (i = extras->nr - 1; i >= 0; i--) {
996 const char *name = extras->items[i].string;
997 struct object *object = extras->items[i].util;
998 int mark;
999
Johannes Schindelinf2dc8492007-12-02 14:14:13 +00001000 switch (object->type) {
1001 case OBJ_TAG:
1002 handle_tag(name, (struct tag *)object);
1003 break;
1004 case OBJ_COMMIT:
Jeff Kinga8722752014-08-27 13:01:28 -04001005 if (anonymize)
1006 name = anonymize_refname(name);
Johannes Schindelinf2dc8492007-12-02 14:14:13 +00001007 /* create refs pointing to already seen commits */
Elijah Newrencd137622018-11-15 23:59:52 -08001008 commit = rewrite_commit((struct commit *)object);
1009 if (!commit) {
1010 /*
1011 * Neither this object nor any of its
1012 * ancestors touch any relevant paths, so
1013 * it has been filtered to nothing. Delete
1014 * it.
1015 */
1016 printf("reset %s\nfrom %s\n\n",
brian m. carlson14228442021-04-26 01:02:56 +00001017 name, oid_to_hex(null_oid()));
Elijah Newrencd137622018-11-15 23:59:52 -08001018 continue;
1019 }
Elijah Newrenfdf31b62018-11-15 23:59:53 -08001020
1021 mark = get_object_mark(&commit->object);
1022 if (!mark) {
1023 /*
1024 * Getting here means we have a commit which
1025 * was excluded by a negative refspec (e.g.
Johannes Schindelin5a0c32b2020-09-21 22:01:22 +00001026 * fast-export ^HEAD HEAD). If we are
Elijah Newren530ca192018-11-15 23:59:54 -08001027 * referencing excluded commits, set the ref
1028 * to the exact commit. Otherwise, the user
Elijah Newrenfdf31b62018-11-15 23:59:53 -08001029 * wants the branch exported but every commit
Elijah Newren530ca192018-11-15 23:59:54 -08001030 * in its history to be deleted, which basically
1031 * just means deletion of the ref.
Elijah Newrenfdf31b62018-11-15 23:59:53 -08001032 */
Elijah Newren530ca192018-11-15 23:59:54 -08001033 if (!reference_excluded_commits) {
1034 /* delete the ref */
1035 printf("reset %s\nfrom %s\n\n",
brian m. carlson14228442021-04-26 01:02:56 +00001036 name, oid_to_hex(null_oid()));
Elijah Newren530ca192018-11-15 23:59:54 -08001037 continue;
1038 }
1039 /* set ref to commit using oid, not mark */
1040 printf("reset %s\nfrom %s\n\n", name,
1041 oid_to_hex(&commit->object.oid));
Elijah Newrenfdf31b62018-11-15 23:59:53 -08001042 continue;
1043 }
1044
1045 printf("reset %s\nfrom :%d\n\n", name, mark
1046 );
Johannes Schindelinf2dc8492007-12-02 14:14:13 +00001047 show_progress();
1048 break;
1049 }
1050 }
1051}
1052
Pieter de Biedf6a7ff2008-06-11 13:17:04 +02001053static void export_marks(char *file)
1054{
1055 unsigned int i;
1056 uint32_t mark;
Jonathan Tanddd3e312017-12-07 16:14:24 -08001057 struct decoration_entry *deco = idnums.entries;
Pieter de Biedf6a7ff2008-06-11 13:17:04 +02001058 FILE *f;
Matthias Andree96d69b52009-07-24 10:17:13 +02001059 int e = 0;
Pieter de Biedf6a7ff2008-06-11 13:17:04 +02001060
Johannes Schindelinea565182016-01-11 19:35:54 +01001061 f = fopen_for_writing(file);
Pieter de Biedf6a7ff2008-06-11 13:17:04 +02001062 if (!f)
Sverre Rabbelierbb6ad282010-03-28 00:42:48 -05001063 die_errno("Unable to open marks file %s for writing.", file);
Pieter de Biedf6a7ff2008-06-11 13:17:04 +02001064
Junio C Hamano69913572008-07-03 00:25:23 -07001065 for (i = 0; i < idnums.size; i++) {
1066 if (deco->base && deco->base->type == 1) {
Pieter de Biedf6a7ff2008-06-11 13:17:04 +02001067 mark = ptr_to_mark(deco->decoration);
Matthias Andree96d69b52009-07-24 10:17:13 +02001068 if (fprintf(f, ":%"PRIu32" %s\n", mark,
brian m. carlsonf2fd0762015-11-10 02:22:28 +00001069 oid_to_hex(&deco->base->oid)) < 0) {
Matthias Andree96d69b52009-07-24 10:17:13 +02001070 e = 1;
1071 break;
1072 }
Pieter de Biedf6a7ff2008-06-11 13:17:04 +02001073 }
Junio C Hamano69913572008-07-03 00:25:23 -07001074 deco++;
Pieter de Biedf6a7ff2008-06-11 13:17:04 +02001075 }
1076
Matthias Andree96d69b52009-07-24 10:17:13 +02001077 e |= ferror(f);
1078 e |= fclose(f);
1079 if (e)
Pieter de Biedf6a7ff2008-06-11 13:17:04 +02001080 error("Unable to write marks file %s.", file);
1081}
1082
Elijah Newren208d6922019-10-03 13:27:06 -07001083static void import_marks(char *input_file, int check_exists)
Pieter de Biedf6a7ff2008-06-11 13:17:04 +02001084{
1085 char line[512];
Elijah Newren208d6922019-10-03 13:27:06 -07001086 FILE *f;
1087 struct stat sb;
Pieter de Biedf6a7ff2008-06-11 13:17:04 +02001088
Elijah Newren208d6922019-10-03 13:27:06 -07001089 if (check_exists && stat(input_file, &sb))
1090 return;
1091
1092 f = xfopen(input_file, "r");
Pieter de Biedf6a7ff2008-06-11 13:17:04 +02001093 while (fgets(line, sizeof(line), f)) {
1094 uint32_t mark;
1095 char *line_end, *mark_end;
brian m. carlson273f8ee2017-02-21 23:47:23 +00001096 struct object_id oid;
Pieter de Biedf6a7ff2008-06-11 13:17:04 +02001097 struct object *object;
Felipe Contreras47bd9bf2013-05-05 17:38:54 -05001098 struct commit *commit;
Felipe Contrerase6812cf2013-05-05 17:38:53 -05001099 enum object_type type;
Pieter de Biedf6a7ff2008-06-11 13:17:04 +02001100
1101 line_end = strchr(line, '\n');
1102 if (line[0] != ':' || !line_end)
1103 die("corrupt mark line: %s", line);
Junio C Hamano69913572008-07-03 00:25:23 -07001104 *line_end = '\0';
Pieter de Biedf6a7ff2008-06-11 13:17:04 +02001105
1106 mark = strtoumax(line + 1, &mark_end, 10);
1107 if (!mark || mark_end == line + 1
brian m. carlson273f8ee2017-02-21 23:47:23 +00001108 || *mark_end != ' ' || get_oid_hex(mark_end + 1, &oid))
Pieter de Biedf6a7ff2008-06-11 13:17:04 +02001109 die("corrupt mark line: %s", line);
1110
Antoine Pelissec4458ec2013-04-06 19:04:31 +02001111 if (last_idnum < mark)
1112 last_idnum = mark;
1113
Stefan Beller0df8e962018-04-25 11:20:59 -07001114 type = oid_object_info(the_repository, &oid, NULL);
Felipe Contrerase6812cf2013-05-05 17:38:53 -05001115 if (type < 0)
brian m. carlson273f8ee2017-02-21 23:47:23 +00001116 die("object not found: %s", oid_to_hex(&oid));
Felipe Contrerase6812cf2013-05-05 17:38:53 -05001117
1118 if (type != OBJ_COMMIT)
1119 /* only commits */
Antoine Pelissec4458ec2013-04-06 19:04:31 +02001120 continue;
Pieter de Biedf6a7ff2008-06-11 13:17:04 +02001121
Stefan Bellerc1f5eb42018-06-28 18:21:59 -07001122 commit = lookup_commit(the_repository, &oid);
Felipe Contreras47bd9bf2013-05-05 17:38:54 -05001123 if (!commit)
brian m. carlson273f8ee2017-02-21 23:47:23 +00001124 die("not a commit? can't happen: %s", oid_to_hex(&oid));
Felipe Contreras47bd9bf2013-05-05 17:38:54 -05001125
1126 object = &commit->object;
Felipe Contrerase6812cf2013-05-05 17:38:53 -05001127
Pieter de Biedf6a7ff2008-06-11 13:17:04 +02001128 if (object->flags & SHOWN)
brian m. carlson273f8ee2017-02-21 23:47:23 +00001129 error("Object %s already has a mark", oid_to_hex(&oid));
Pieter de Biedf6a7ff2008-06-11 13:17:04 +02001130
1131 mark_object(object, mark);
Pieter de Biedf6a7ff2008-06-11 13:17:04 +02001132
1133 object->flags |= SHOWN;
1134 }
1135 fclose(f);
1136}
1137
Felipe Contreras60ed2642014-04-20 13:59:28 -05001138static void handle_deletes(void)
1139{
1140 int i;
Brandon Williams16eefc82018-05-16 15:57:59 -07001141 for (i = 0; i < refspecs.nr; i++) {
1142 struct refspec_item *refspec = &refspecs.items[i];
Felipe Contreras60ed2642014-04-20 13:59:28 -05001143 if (*refspec->src)
1144 continue;
1145
1146 printf("reset %s\nfrom %s\n\n",
brian m. carlson14228442021-04-26 01:02:56 +00001147 refspec->dst, oid_to_hex(null_oid()));
Felipe Contreras60ed2642014-04-20 13:59:28 -05001148 }
1149}
1150
Jeff King65b5d9f2020-06-25 15:48:32 -04001151static int parse_opt_anonymize_map(const struct option *opt,
1152 const char *arg, int unset)
1153{
1154 struct hashmap *map = opt->value;
1155 const char *delim, *value;
1156 size_t keylen;
1157
1158 BUG_ON_OPT_NEG(unset);
1159
1160 delim = strchr(arg, ':');
1161 if (delim) {
1162 keylen = delim - arg;
1163 value = delim + 1;
1164 } else {
1165 keylen = strlen(arg);
1166 value = arg;
1167 }
1168
1169 if (!keylen || !*value)
1170 return error(_("--anonymize-map token cannot be empty"));
1171
Jeff Kingaa548452023-03-22 13:42:13 -04001172 add_anonymized_entry(map, memhash(arg, keylen), arg, keylen,
1173 xstrdup(value));
Jeff King65b5d9f2020-06-25 15:48:32 -04001174
1175 return 0;
1176}
1177
Johannes Schindelinf2dc8492007-12-02 14:14:13 +00001178int cmd_fast_export(int argc, const char **argv, const char *prefix)
1179{
1180 struct rev_info revs;
Johannes Schindelinf2dc8492007-12-02 14:14:13 +00001181 struct commit *commit;
Elijah Newren208d6922019-10-03 13:27:06 -07001182 char *export_filename = NULL,
1183 *import_filename = NULL,
1184 *import_filename_if_exists = NULL;
Antoine Pelissec4458ec2013-04-06 19:04:31 +02001185 uint32_t lastimportid;
Felipe Contreras03e90102014-04-20 13:59:24 -05001186 struct string_list refspecs_list = STRING_LIST_INIT_NODUP;
Jonathan Tanb3e8ca82017-09-20 16:55:02 -07001187 struct string_list paths_of_changed_objects = STRING_LIST_INIT_DUP;
Johannes Schindelinf2dc8492007-12-02 14:14:13 +00001188 struct option options[] = {
1189 OPT_INTEGER(0, "progress", &progress,
Nguyễn Thái Ngọc Duy3b787b92012-08-20 19:32:08 +07001190 N_("show progress after <n> objects")),
1191 OPT_CALLBACK(0, "signed-tags", &signed_tag_mode, N_("mode"),
1192 N_("select handling of signed tags"),
Johannes Schindelinf2dc8492007-12-02 14:14:13 +00001193 parse_opt_signed_tag_mode),
Nguyễn Thái Ngọc Duy3b787b92012-08-20 19:32:08 +07001194 OPT_CALLBACK(0, "tag-of-filtered-object", &tag_of_filtered_mode, N_("mode"),
1195 N_("select handling of tags that tag filtered objects"),
Elijah Newren2d8ad462009-06-25 22:48:31 -06001196 parse_opt_tag_of_filtered_mode),
Elijah Newrene80001f2019-05-13 21:31:02 -07001197 OPT_CALLBACK(0, "reencode", &reencode_mode, N_("mode"),
1198 N_("select handling of commit messages in an alternate encoding"),
1199 parse_opt_reencode_mode),
Nguyễn Thái Ngọc Duy3b787b92012-08-20 19:32:08 +07001200 OPT_STRING(0, "export-marks", &export_filename, N_("file"),
ZheNing Hue73fe3d2021-01-06 14:44:03 +00001201 N_("dump marks to this file")),
Nguyễn Thái Ngọc Duy3b787b92012-08-20 19:32:08 +07001202 OPT_STRING(0, "import-marks", &import_filename, N_("file"),
ZheNing Hue73fe3d2021-01-06 14:44:03 +00001203 N_("import marks from this file")),
Elijah Newren208d6922019-10-03 13:27:06 -07001204 OPT_STRING(0, "import-marks-if-exists",
1205 &import_filename_if_exists,
1206 N_("file"),
ZheNing Hue73fe3d2021-01-06 14:44:03 +00001207 N_("import marks from this file if it exists")),
Stefan Bellerd5d09d42013-08-03 13:51:19 +02001208 OPT_BOOL(0, "fake-missing-tagger", &fake_missing_tagger,
ZheNing Hue73fe3d2021-01-06 14:44:03 +00001209 N_("fake a tagger when tags lack one")),
Stefan Bellerd5d09d42013-08-03 13:51:19 +02001210 OPT_BOOL(0, "full-tree", &full_tree,
ZheNing Hue73fe3d2021-01-06 14:44:03 +00001211 N_("output full tree for each commit")),
Stefan Bellerd5d09d42013-08-03 13:51:19 +02001212 OPT_BOOL(0, "use-done-feature", &use_done_feature,
ZheNing Hue73fe3d2021-01-06 14:44:03 +00001213 N_("use the done feature to terminate the stream")),
1214 OPT_BOOL(0, "no-data", &no_data, N_("skip output of blob data")),
Felipe Contreras03e90102014-04-20 13:59:24 -05001215 OPT_STRING_LIST(0, "refspec", &refspecs_list, N_("refspec"),
ZheNing Hue73fe3d2021-01-06 14:44:03 +00001216 N_("apply refspec to exported refs")),
Jeff Kinga8722752014-08-27 13:01:28 -04001217 OPT_BOOL(0, "anonymize", &anonymize, N_("anonymize output")),
Jeff King65b5d9f2020-06-25 15:48:32 -04001218 OPT_CALLBACK_F(0, "anonymize-map", &anonymized_seeds, N_("from:to"),
1219 N_("convert <from> to <to> in anonymized output"),
1220 PARSE_OPT_NONEG, parse_opt_anonymize_map),
Elijah Newren530ca192018-11-15 23:59:54 -08001221 OPT_BOOL(0, "reference-excluded-parents",
ZheNing Hue73fe3d2021-01-06 14:44:03 +00001222 &reference_excluded_commits, N_("reference parents which are not in fast-export stream by object id")),
Elijah Newrena965bb32018-11-15 23:59:56 -08001223 OPT_BOOL(0, "show-original-ids", &show_original_ids,
ZheNing Hue73fe3d2021-01-06 14:44:03 +00001224 N_("show original object ids of blobs/commits")),
Elijah Newrena1638cf2019-10-03 13:27:07 -07001225 OPT_BOOL(0, "mark-tags", &mark_tags,
ZheNing Hue73fe3d2021-01-06 14:44:03 +00001226 N_("label tags with mark ids")),
Elijah Newren530ca192018-11-15 23:59:54 -08001227
Johannes Schindelinf2dc8492007-12-02 14:14:13 +00001228 OPT_END()
1229 };
1230
Miklos Vajnadcfdbdf2009-01-03 04:59:12 +01001231 if (argc == 1)
1232 usage_with_options (fast_export_usage, options);
1233
Johannes Schindelinf2dc8492007-12-02 14:14:13 +00001234 /* we handle encodings */
Johannes Schindelinef90d6d2008-05-14 18:46:53 +01001235 git_config(git_default_config, NULL);
Johannes Schindelinf2dc8492007-12-02 14:14:13 +00001236
Nguyễn Thái Ngọc Duy2abf3502018-09-21 17:57:38 +02001237 repo_init_revisions(the_repository, &revs, prefix);
Nguyễn Thái Ngọc Duy87be2522018-05-19 07:28:24 +02001238 init_revision_sources(&revision_sources);
Elijah Newren668f3aa2009-06-25 22:48:27 -06001239 revs.topo_order = 1;
Nguyễn Thái Ngọc Duy87be2522018-05-19 07:28:24 +02001240 revs.sources = &revision_sources;
Elijah Newren32164132009-06-25 22:48:30 -06001241 revs.rewrite_parents = 1;
Felipe Contreras8b2f86a2014-04-20 13:59:23 -05001242 argc = parse_options(argc, argv, prefix, options, fast_export_usage,
SZEDER Gábor99d86d62022-08-19 18:03:57 +02001243 PARSE_OPT_KEEP_ARGV0 | PARSE_OPT_KEEP_UNKNOWN_OPT);
Johannes Schindelinf2dc8492007-12-02 14:14:13 +00001244 argc = setup_revisions(argc, argv, &revs, NULL);
Johannes Schindelinf2dc8492007-12-02 14:14:13 +00001245 if (argc > 1)
1246 usage_with_options (fast_export_usage, options);
1247
Jeff King65b5d9f2020-06-25 15:48:32 -04001248 if (anonymized_seeds.cmpfn && !anonymize)
Jean-Noël Avila6fa00ee2022-01-05 20:02:19 +00001249 die(_("the option '%s' requires '%s'"), "--anonymize-map", "--anonymize");
Jeff King65b5d9f2020-06-25 15:48:32 -04001250
Felipe Contreras03e90102014-04-20 13:59:24 -05001251 if (refspecs_list.nr) {
Felipe Contreras03e90102014-04-20 13:59:24 -05001252 int i;
1253
Felipe Contreras03e90102014-04-20 13:59:24 -05001254 for (i = 0; i < refspecs_list.nr; i++)
Brandon Williams16eefc82018-05-16 15:57:59 -07001255 refspec_append(&refspecs, refspecs_list.items[i].string);
Felipe Contreras03e90102014-04-20 13:59:24 -05001256
1257 string_list_clear(&refspecs_list, 1);
Felipe Contreras03e90102014-04-20 13:59:24 -05001258 }
1259
Sverre Rabbelier82670a52011-07-16 15:03:33 +02001260 if (use_done_feature)
1261 printf("feature done\n");
1262
Elijah Newren208d6922019-10-03 13:27:06 -07001263 if (import_filename && import_filename_if_exists)
Jean-Noël Avila12909b62022-01-05 20:02:16 +00001264 die(_("options '%s' and '%s' cannot be used together"), "--import-marks", "--import-marks-if-exists");
Pieter de Biedf6a7ff2008-06-11 13:17:04 +02001265 if (import_filename)
Elijah Newren208d6922019-10-03 13:27:06 -07001266 import_marks(import_filename, 0);
1267 else if (import_filename_if_exists)
1268 import_marks(import_filename_if_exists, 1);
Antoine Pelissec4458ec2013-04-06 19:04:31 +02001269 lastimportid = last_idnum;
Pieter de Biedf6a7ff2008-06-11 13:17:04 +02001270
Nguyễn Thái Ngọc Duyafe069d2010-12-17 19:43:06 +07001271 if (import_filename && revs.prune_data.nr)
Elijah Newren4087a022010-07-17 11:00:50 -06001272 full_tree = 1;
1273
Felipe Contreras1d844ee2013-09-01 02:05:47 -05001274 get_tags_and_duplicates(&revs.cmdline);
Johannes Schindelinf2dc8492007-12-02 14:14:13 +00001275
Martin Koegler3d51e1b2008-02-18 08:31:56 +01001276 if (prepare_revision_walk(&revs))
1277 die("revision walk setup failed");
William Sprent726a2282021-12-16 16:23:09 +00001278
1279 revs.reverse = 1;
Johannes Schindelinf2dc8492007-12-02 14:14:13 +00001280 revs.diffopt.format_callback = show_filemodify;
Jonathan Tanb3e8ca82017-09-20 16:55:02 -07001281 revs.diffopt.format_callback_data = &paths_of_changed_objects;
Brandon Williams0d1e0e72017-10-31 11:19:11 -07001282 revs.diffopt.flags.recursive = 1;
René Scharfed1c25272022-04-30 16:31:43 +02001283 revs.diffopt.no_free = 1;
William Sprent726a2282021-12-16 16:23:09 +00001284 while ((commit = get_revision(&revs)))
1285 handle_commit(commit, &revs, &paths_of_changed_objects);
Johannes Schindelinf2dc8492007-12-02 14:14:13 +00001286
Elijah Newrenfdf31b62018-11-15 23:59:53 -08001287 handle_tags_and_duplicates(&extra_refs);
1288 handle_tags_and_duplicates(&tag_refs);
Felipe Contreras60ed2642014-04-20 13:59:28 -05001289 handle_deletes();
Johannes Schindelinf2dc8492007-12-02 14:14:13 +00001290
Antoine Pelissec4458ec2013-04-06 19:04:31 +02001291 if (export_filename && lastimportid != last_idnum)
Pieter de Biedf6a7ff2008-06-11 13:17:04 +02001292 export_marks(export_filename);
1293
Sverre Rabbelier82670a52011-07-16 15:03:33 +02001294 if (use_done_feature)
1295 printf("done\n");
1296
Brandon Williams16eefc82018-05-16 15:57:59 -07001297 refspec_clear(&refspecs);
Ævar Arnfjörð Bjarmason2108fe42022-04-13 22:01:36 +02001298 release_revisions(&revs);
Felipe Contreras03e90102014-04-20 13:59:24 -05001299
Johannes Schindelinf2dc8492007-12-02 14:14:13 +00001300 return 0;
1301}