Commit | Line | Data |
---|---|---|
f2dc849e JS |
1 | /* |
2 | * "git fast-export" builtin command | |
3 | * | |
4 | * Copyright (C) 2007 Johannes E. Schindelin | |
5 | */ | |
6 | #include "builtin.h" | |
7 | #include "cache.h" | |
b2141fc1 | 8 | #include "config.h" |
fb58c8d5 | 9 | #include "refs.h" |
f2dc849e JS |
10 | #include "commit.h" |
11 | #include "object.h" | |
12 | #include "tag.h" | |
13 | #include "diff.h" | |
14 | #include "diffcore.h" | |
15 | #include "log-tree.h" | |
16 | #include "revision.h" | |
17 | #include "decorate.h" | |
c455c87c | 18 | #include "string-list.h" |
f2dc849e JS |
19 | #include "utf8.h" |
20 | #include "parse-options.h" | |
6280dfdc | 21 | #include "quote.h" |
03e9010c | 22 | #include "remote.h" |
a8722750 | 23 | #include "blob.h" |
87be2523 | 24 | #include "commit-slab.h" |
f2dc849e JS |
25 | |
26 | static const char *fast_export_usage[] = { | |
3b787b96 | 27 | N_("git fast-export [rev-list-opts]"), |
f2dc849e JS |
28 | NULL |
29 | }; | |
30 | ||
31 | static int progress; | |
cd16c59b | 32 | static enum { ABORT, VERBATIM, WARN, WARN_STRIP, STRIP } signed_tag_mode = ABORT; |
d7a10c31 | 33 | static enum { ERROR, DROP, REWRITE } tag_of_filtered_mode = ERROR; |
4e46a8d6 | 34 | static int fake_missing_tagger; |
82670a5c | 35 | static int use_done_feature; |
79559f27 | 36 | static int no_data; |
7f40ab09 | 37 | static int full_tree; |
1d844ee7 | 38 | static struct string_list extra_refs = STRING_LIST_INIT_NODUP; |
03e9010c FC |
39 | static struct refspec *refspecs; |
40 | static int refspecs_nr; | |
a8722750 | 41 | static int anonymize; |
87be2523 | 42 | static struct revision_sources revision_sources; |
f2dc849e JS |
43 | |
44 | static int parse_opt_signed_tag_mode(const struct option *opt, | |
45 | const char *arg, int unset) | |
46 | { | |
47 | if (unset || !strcmp(arg, "abort")) | |
48 | signed_tag_mode = ABORT; | |
ee4bc371 JS |
49 | else if (!strcmp(arg, "verbatim") || !strcmp(arg, "ignore")) |
50 | signed_tag_mode = VERBATIM; | |
f2dc849e JS |
51 | else if (!strcmp(arg, "warn")) |
52 | signed_tag_mode = WARN; | |
cd16c59b JK |
53 | else if (!strcmp(arg, "warn-strip")) |
54 | signed_tag_mode = WARN_STRIP; | |
f2dc849e JS |
55 | else if (!strcmp(arg, "strip")) |
56 | signed_tag_mode = STRIP; | |
57 | else | |
04a74b6c | 58 | return error("Unknown signed-tags mode: %s", arg); |
f2dc849e JS |
59 | return 0; |
60 | } | |
61 | ||
2d8ad469 EN |
62 | static int parse_opt_tag_of_filtered_mode(const struct option *opt, |
63 | const char *arg, int unset) | |
64 | { | |
65 | if (unset || !strcmp(arg, "abort")) | |
d7a10c31 | 66 | tag_of_filtered_mode = ERROR; |
2d8ad469 EN |
67 | else if (!strcmp(arg, "drop")) |
68 | tag_of_filtered_mode = DROP; | |
69 | else if (!strcmp(arg, "rewrite")) | |
70 | tag_of_filtered_mode = REWRITE; | |
71 | else | |
72 | return error("Unknown tag-of-filtered mode: %s", arg); | |
73 | return 0; | |
74 | } | |
75 | ||
f2dc849e JS |
76 | static struct decoration idnums; |
77 | static uint32_t last_idnum; | |
78 | ||
79 | static int has_unshown_parent(struct commit *commit) | |
80 | { | |
81 | struct commit_list *parent; | |
82 | ||
83 | for (parent = commit->parents; parent; parent = parent->next) | |
84 | if (!(parent->item->object.flags & SHOWN) && | |
85 | !(parent->item->object.flags & UNINTERESTING)) | |
86 | return 1; | |
87 | return 0; | |
88 | } | |
89 | ||
a8722750 JK |
90 | struct anonymized_entry { |
91 | struct hashmap_entry hash; | |
92 | const char *orig; | |
93 | size_t orig_len; | |
94 | const char *anon; | |
95 | size_t anon_len; | |
96 | }; | |
97 | ||
7663cdc8 SB |
98 | static int anonymized_entry_cmp(const void *unused_cmp_data, |
99 | const void *va, const void *vb, | |
100 | const void *unused_keydata) | |
a8722750 JK |
101 | { |
102 | const struct anonymized_entry *a = va, *b = vb; | |
103 | return a->orig_len != b->orig_len || | |
104 | memcmp(a->orig, b->orig, a->orig_len); | |
105 | } | |
106 | ||
107 | /* | |
108 | * Basically keep a cache of X->Y so that we can repeatedly replace | |
109 | * the same anonymized string with another. The actual generation | |
110 | * is farmed out to the generate function. | |
111 | */ | |
112 | static const void *anonymize_mem(struct hashmap *map, | |
113 | void *(*generate)(const void *, size_t *), | |
114 | const void *orig, size_t *len) | |
115 | { | |
116 | struct anonymized_entry key, *ret; | |
117 | ||
118 | if (!map->cmpfn) | |
7663cdc8 | 119 | hashmap_init(map, anonymized_entry_cmp, NULL, 0); |
a8722750 JK |
120 | |
121 | hashmap_entry_init(&key, memhash(orig, *len)); | |
122 | key.orig = orig; | |
123 | key.orig_len = *len; | |
124 | ret = hashmap_get(map, &key, NULL); | |
125 | ||
126 | if (!ret) { | |
127 | ret = xmalloc(sizeof(*ret)); | |
128 | hashmap_entry_init(&ret->hash, key.hash.hash); | |
129 | ret->orig = xstrdup(orig); | |
130 | ret->orig_len = *len; | |
131 | ret->anon = generate(orig, len); | |
132 | ret->anon_len = *len; | |
133 | hashmap_put(map, ret); | |
134 | } | |
135 | ||
136 | *len = ret->anon_len; | |
137 | return ret->anon; | |
138 | } | |
139 | ||
140 | /* | |
141 | * We anonymize each component of a path individually, | |
142 | * so that paths a/b and a/c will share a common root. | |
143 | * The paths are cached via anonymize_mem so that repeated | |
144 | * lookups for "a" will yield the same value. | |
145 | */ | |
146 | static void anonymize_path(struct strbuf *out, const char *path, | |
147 | struct hashmap *map, | |
148 | void *(*generate)(const void *, size_t *)) | |
149 | { | |
150 | while (*path) { | |
151 | const char *end_of_component = strchrnul(path, '/'); | |
152 | size_t len = end_of_component - path; | |
153 | const char *c = anonymize_mem(map, generate, path, &len); | |
154 | strbuf_add(out, c, len); | |
155 | path = end_of_component; | |
156 | if (*path) | |
157 | strbuf_addch(out, *path++); | |
158 | } | |
159 | } | |
160 | ||
f2dc849e | 161 | /* Since intptr_t is C99, we do not use it here */ |
df6a7ff7 | 162 | static inline uint32_t *mark_to_ptr(uint32_t mark) |
f2dc849e | 163 | { |
df6a7ff7 PB |
164 | return ((uint32_t *)NULL) + mark; |
165 | } | |
166 | ||
167 | static inline uint32_t ptr_to_mark(void * mark) | |
168 | { | |
169 | return (uint32_t *)mark - (uint32_t *)NULL; | |
170 | } | |
171 | ||
172 | static inline void mark_object(struct object *object, uint32_t mark) | |
173 | { | |
174 | add_decoration(&idnums, object, mark_to_ptr(mark)); | |
175 | } | |
176 | ||
177 | static inline void mark_next_object(struct object *object) | |
178 | { | |
179 | mark_object(object, ++last_idnum); | |
f2dc849e JS |
180 | } |
181 | ||
182 | static int get_object_mark(struct object *object) | |
183 | { | |
184 | void *decoration = lookup_decoration(&idnums, object); | |
185 | if (!decoration) | |
186 | return 0; | |
df6a7ff7 | 187 | return ptr_to_mark(decoration); |
f2dc849e JS |
188 | } |
189 | ||
190 | static void show_progress(void) | |
191 | { | |
192 | static int counter = 0; | |
193 | if (!progress) | |
194 | return; | |
195 | if ((++counter % progress) == 0) | |
196 | printf("progress %d objects\n", counter); | |
197 | } | |
198 | ||
a8722750 JK |
199 | /* |
200 | * Ideally we would want some transformation of the blob data here | |
201 | * that is unreversible, but would still be the same size and have | |
202 | * the same data relationship to other blobs (so that we get the same | |
203 | * delta and packing behavior as the original). But the first and last | |
204 | * requirements there are probably mutually exclusive, so let's take | |
205 | * the easy way out for now, and just generate arbitrary content. | |
206 | * | |
207 | * There's no need to cache this result with anonymize_mem, since | |
208 | * we already handle blob content caching with marks. | |
209 | */ | |
210 | static char *anonymize_blob(unsigned long *size) | |
211 | { | |
212 | static int counter; | |
213 | struct strbuf out = STRBUF_INIT; | |
214 | strbuf_addf(&out, "anonymous blob %d", counter++); | |
215 | *size = out.len; | |
216 | return strbuf_detach(&out, NULL); | |
217 | } | |
218 | ||
273f8ee8 | 219 | static void export_blob(const struct object_id *oid) |
f2dc849e JS |
220 | { |
221 | unsigned long size; | |
222 | enum object_type type; | |
223 | char *buf; | |
224 | struct object *object; | |
30b939c3 | 225 | int eaten; |
f2dc849e | 226 | |
79559f27 GI |
227 | if (no_data) |
228 | return; | |
229 | ||
273f8ee8 | 230 | if (is_null_oid(oid)) |
f2dc849e JS |
231 | return; |
232 | ||
273f8ee8 | 233 | object = lookup_object(oid->hash); |
30b939c3 | 234 | if (object && object->flags & SHOWN) |
f2dc849e JS |
235 | return; |
236 | ||
a8722750 JK |
237 | if (anonymize) { |
238 | buf = anonymize_blob(&size); | |
3aca1fc6 | 239 | object = (struct object *)lookup_blob(oid); |
a8722750 JK |
240 | eaten = 0; |
241 | } else { | |
b4f5aca4 | 242 | buf = read_object_file(oid, &type, &size); |
a8722750 | 243 | if (!buf) |
273f8ee8 | 244 | die ("Could not read blob %s", oid_to_hex(oid)); |
17e65451 | 245 | if (check_object_signature(oid, buf, size, type_name(type)) < 0) |
273f8ee8 | 246 | die("sha1 mismatch in blob %s", oid_to_hex(oid)); |
c251c83d | 247 | object = parse_object_buffer(oid, type, size, buf, &eaten); |
a8722750 JK |
248 | } |
249 | ||
30b939c3 | 250 | if (!object) |
273f8ee8 | 251 | die("Could not read blob %s", oid_to_hex(oid)); |
f2dc849e | 252 | |
df6a7ff7 | 253 | mark_next_object(object); |
f2dc849e | 254 | |
6e1c2344 | 255 | printf("blob\nmark :%"PRIu32"\ndata %lu\n", last_idnum, size); |
b0fe0d72 | 256 | if (size && fwrite(buf, size, 1, stdout) != 1) |
273f8ee8 | 257 | die_errno ("Could not write blob '%s'", oid_to_hex(oid)); |
f2dc849e JS |
258 | printf("\n"); |
259 | ||
260 | show_progress(); | |
261 | ||
262 | object->flags |= SHOWN; | |
30b939c3 JK |
263 | if (!eaten) |
264 | free(buf); | |
f2dc849e JS |
265 | } |
266 | ||
060df624 EN |
267 | static int depth_first(const void *a_, const void *b_) |
268 | { | |
269 | const struct diff_filepair *a = *((const struct diff_filepair **)a_); | |
270 | const struct diff_filepair *b = *((const struct diff_filepair **)b_); | |
271 | const char *name_a, *name_b; | |
272 | int len_a, len_b, len; | |
273 | int cmp; | |
274 | ||
275 | name_a = a->one ? a->one->path : a->two->path; | |
276 | name_b = b->one ? b->one->path : b->two->path; | |
277 | ||
278 | len_a = strlen(name_a); | |
279 | len_b = strlen(name_b); | |
280 | len = (len_a < len_b) ? len_a : len_b; | |
281 | ||
282 | /* strcmp will sort 'd' before 'd/e', we want 'd/e' before 'd' */ | |
283 | cmp = memcmp(name_a, name_b, len); | |
284 | if (cmp) | |
285 | return cmp; | |
4ce6fb80 JS |
286 | cmp = len_b - len_a; |
287 | if (cmp) | |
288 | return cmp; | |
289 | /* | |
290 | * Move 'R'ename entries last so that all references of the file | |
291 | * appear in the output before it is renamed (e.g., when a file | |
292 | * was copied and renamed in the same commit). | |
293 | */ | |
294 | return (a->status == 'R') - (b->status == 'R'); | |
060df624 EN |
295 | } |
296 | ||
a8722750 | 297 | static void print_path_1(const char *path) |
6280dfdc JK |
298 | { |
299 | int need_quote = quote_c_style(path, NULL, NULL, 0); | |
300 | if (need_quote) | |
301 | quote_c_style(path, NULL, stdout, 0); | |
ff59f6da JS |
302 | else if (strchr(path, ' ')) |
303 | printf("\"%s\"", path); | |
6280dfdc JK |
304 | else |
305 | printf("%s", path); | |
306 | } | |
307 | ||
a8722750 JK |
308 | static void *anonymize_path_component(const void *path, size_t *len) |
309 | { | |
310 | static int counter; | |
311 | struct strbuf out = STRBUF_INIT; | |
312 | strbuf_addf(&out, "path%d", counter++); | |
313 | return strbuf_detach(&out, len); | |
314 | } | |
315 | ||
316 | static void print_path(const char *path) | |
317 | { | |
318 | if (!anonymize) | |
319 | print_path_1(path); | |
320 | else { | |
321 | static struct hashmap paths; | |
322 | static struct strbuf anon = STRBUF_INIT; | |
323 | ||
324 | anonymize_path(&anon, path, &paths, anonymize_path_component); | |
325 | print_path_1(anon.buf); | |
326 | strbuf_reset(&anon); | |
327 | } | |
328 | } | |
329 | ||
273f8ee8 | 330 | static void *generate_fake_oid(const void *old, size_t *len) |
a8722750 JK |
331 | { |
332 | static uint32_t counter = 1; /* avoid null sha1 */ | |
273f8ee8 | 333 | unsigned char *out = xcalloc(GIT_SHA1_RAWSZ, 1); |
334 | put_be32(out + GIT_SHA1_RAWSZ - 4, counter++); | |
a8722750 JK |
335 | return out; |
336 | } | |
337 | ||
273f8ee8 | 338 | static const unsigned char *anonymize_sha1(const struct object_id *oid) |
a8722750 JK |
339 | { |
340 | static struct hashmap sha1s; | |
273f8ee8 | 341 | size_t len = GIT_SHA1_RAWSZ; |
342 | return anonymize_mem(&sha1s, generate_fake_oid, oid, &len); | |
a8722750 JK |
343 | } |
344 | ||
f2dc849e JS |
345 | static void show_filemodify(struct diff_queue_struct *q, |
346 | struct diff_options *options, void *data) | |
347 | { | |
348 | int i; | |
b3e8ca89 | 349 | struct string_list *changed = data; |
060df624 EN |
350 | |
351 | /* | |
352 | * Handle files below a directory first, in case they are all deleted | |
353 | * and the directory changes to a file or symlink. | |
354 | */ | |
9ed0d8d6 | 355 | QSORT(q->queue, q->nr, depth_first); |
060df624 | 356 | |
f2dc849e | 357 | for (i = 0; i < q->nr; i++) { |
ae7c5dce | 358 | struct diff_filespec *ospec = q->queue[i]->one; |
f2dc849e | 359 | struct diff_filespec *spec = q->queue[i]->two; |
ae7c5dce AG |
360 | |
361 | switch (q->queue[i]->status) { | |
362 | case DIFF_STATUS_DELETED: | |
6280dfdc JK |
363 | printf("D "); |
364 | print_path(spec->path); | |
b3e8ca89 | 365 | string_list_insert(changed, spec->path); |
6280dfdc | 366 | putchar('\n'); |
ae7c5dce AG |
367 | break; |
368 | ||
369 | case DIFF_STATUS_COPIED: | |
370 | case DIFF_STATUS_RENAMED: | |
b3e8ca89 JT |
371 | /* |
372 | * If a change in the file corresponding to ospec->path | |
373 | * has been observed, we cannot trust its contents | |
374 | * because the diff is calculated based on the prior | |
375 | * contents, not the current contents. So, declare a | |
376 | * copy or rename only if there was no change observed. | |
377 | */ | |
378 | if (!string_list_has_string(changed, ospec->path)) { | |
379 | printf("%c ", q->queue[i]->status); | |
380 | print_path(ospec->path); | |
381 | putchar(' '); | |
382 | print_path(spec->path); | |
383 | string_list_insert(changed, spec->path); | |
384 | putchar('\n'); | |
385 | ||
386 | if (!oidcmp(&ospec->oid, &spec->oid) && | |
387 | ospec->mode == spec->mode) | |
388 | break; | |
389 | } | |
ae7c5dce AG |
390 | /* fallthrough */ |
391 | ||
392 | case DIFF_STATUS_TYPE_CHANGED: | |
393 | case DIFF_STATUS_MODIFIED: | |
394 | case DIFF_STATUS_ADDED: | |
03db4525 AG |
395 | /* |
396 | * Links refer to objects in another repositories; | |
397 | * output the SHA-1 verbatim. | |
398 | */ | |
79559f27 | 399 | if (no_data || S_ISGITLINK(spec->mode)) |
6280dfdc | 400 | printf("M %06o %s ", spec->mode, |
a8722750 | 401 | sha1_to_hex(anonymize ? |
273f8ee8 | 402 | anonymize_sha1(&spec->oid) : |
a0d12c44 | 403 | spec->oid.hash)); |
03db4525 | 404 | else { |
a0d12c44 | 405 | struct object *object = lookup_object(spec->oid.hash); |
6280dfdc JK |
406 | printf("M %06o :%d ", spec->mode, |
407 | get_object_mark(object)); | |
03db4525 | 408 | } |
6280dfdc | 409 | print_path(spec->path); |
b3e8ca89 | 410 | string_list_insert(changed, spec->path); |
6280dfdc | 411 | putchar('\n'); |
ae7c5dce AG |
412 | break; |
413 | ||
414 | default: | |
415 | die("Unexpected comparison status '%c' for %s, %s", | |
416 | q->queue[i]->status, | |
417 | ospec->path ? ospec->path : "none", | |
418 | spec->path ? spec->path : "none"); | |
f2dc849e JS |
419 | } |
420 | } | |
421 | } | |
422 | ||
423 | static const char *find_encoding(const char *begin, const char *end) | |
424 | { | |
425 | const char *needle = "\nencoding "; | |
426 | char *bol, *eol; | |
427 | ||
428 | bol = memmem(begin, end ? end - begin : strlen(begin), | |
429 | needle, strlen(needle)); | |
430 | if (!bol) | |
431 | return git_commit_encoding; | |
432 | bol += strlen(needle); | |
433 | eol = strchrnul(bol, '\n'); | |
434 | *eol = '\0'; | |
435 | return bol; | |
436 | } | |
437 | ||
a8722750 JK |
438 | static void *anonymize_ref_component(const void *old, size_t *len) |
439 | { | |
440 | static int counter; | |
441 | struct strbuf out = STRBUF_INIT; | |
442 | strbuf_addf(&out, "ref%d", counter++); | |
443 | return strbuf_detach(&out, len); | |
444 | } | |
445 | ||
446 | static const char *anonymize_refname(const char *refname) | |
447 | { | |
448 | /* | |
449 | * If any of these prefixes is found, we will leave it intact | |
450 | * so that tags remain tags and so forth. | |
451 | */ | |
452 | static const char *prefixes[] = { | |
453 | "refs/heads/", | |
454 | "refs/tags/", | |
455 | "refs/remotes/", | |
456 | "refs/" | |
457 | }; | |
458 | static struct hashmap refs; | |
459 | static struct strbuf anon = STRBUF_INIT; | |
460 | int i; | |
461 | ||
462 | /* | |
463 | * We also leave "master" as a special case, since it does not reveal | |
464 | * anything interesting. | |
465 | */ | |
466 | if (!strcmp(refname, "refs/heads/master")) | |
467 | return refname; | |
468 | ||
469 | strbuf_reset(&anon); | |
470 | for (i = 0; i < ARRAY_SIZE(prefixes); i++) { | |
471 | if (skip_prefix(refname, prefixes[i], &refname)) { | |
472 | strbuf_addstr(&anon, prefixes[i]); | |
473 | break; | |
474 | } | |
475 | } | |
476 | ||
477 | anonymize_path(&anon, refname, &refs, anonymize_ref_component); | |
478 | return anon.buf; | |
479 | } | |
480 | ||
481 | /* | |
482 | * We do not even bother to cache commit messages, as they are unlikely | |
483 | * to be repeated verbatim, and it is not that interesting when they are. | |
484 | */ | |
485 | static char *anonymize_commit_message(const char *old) | |
486 | { | |
487 | static int counter; | |
488 | return xstrfmt("subject %d\n\nbody\n", counter++); | |
489 | } | |
490 | ||
491 | static struct hashmap idents; | |
492 | static void *anonymize_ident(const void *old, size_t *len) | |
493 | { | |
494 | static int counter; | |
495 | struct strbuf out = STRBUF_INIT; | |
496 | strbuf_addf(&out, "User %d <user%d@example.com>", counter, counter); | |
497 | counter++; | |
498 | return strbuf_detach(&out, len); | |
499 | } | |
500 | ||
501 | /* | |
502 | * Our strategy here is to anonymize the names and email addresses, | |
503 | * but keep timestamps intact, as they influence things like traversal | |
504 | * order (and by themselves should not be too revealing). | |
505 | */ | |
506 | static void anonymize_ident_line(const char **beg, const char **end) | |
507 | { | |
508 | static struct strbuf buffers[] = { STRBUF_INIT, STRBUF_INIT }; | |
509 | static unsigned which_buffer; | |
510 | ||
511 | struct strbuf *out; | |
512 | struct ident_split split; | |
513 | const char *end_of_header; | |
514 | ||
515 | out = &buffers[which_buffer++]; | |
516 | which_buffer %= ARRAY_SIZE(buffers); | |
517 | strbuf_reset(out); | |
518 | ||
519 | /* skip "committer", "author", "tagger", etc */ | |
520 | end_of_header = strchr(*beg, ' '); | |
521 | if (!end_of_header) | |
522 | die("BUG: malformed line fed to anonymize_ident_line: %.*s", | |
523 | (int)(*end - *beg), *beg); | |
524 | end_of_header++; | |
525 | strbuf_add(out, *beg, end_of_header - *beg); | |
526 | ||
527 | if (!split_ident_line(&split, end_of_header, *end - end_of_header) && | |
528 | split.date_begin) { | |
529 | const char *ident; | |
530 | size_t len; | |
531 | ||
532 | len = split.mail_end - split.name_begin; | |
533 | ident = anonymize_mem(&idents, anonymize_ident, | |
534 | split.name_begin, &len); | |
535 | strbuf_add(out, ident, len); | |
536 | strbuf_addch(out, ' '); | |
537 | strbuf_add(out, split.date_begin, split.tz_end - split.date_begin); | |
538 | } else { | |
539 | strbuf_addstr(out, "Malformed Ident <malformed@example.com> 0 -0000"); | |
540 | } | |
541 | ||
542 | *beg = out->buf; | |
543 | *end = out->buf + out->len; | |
544 | } | |
545 | ||
b3e8ca89 JT |
546 | static void handle_commit(struct commit *commit, struct rev_info *rev, |
547 | struct string_list *paths_of_changed_objects) | |
f2dc849e JS |
548 | { |
549 | int saved_output_format = rev->diffopt.output_format; | |
bc6b8fc1 | 550 | const char *commit_buffer; |
f2dc849e JS |
551 | const char *author, *author_end, *committer, *committer_end; |
552 | const char *encoding, *message; | |
553 | char *reencoded = NULL; | |
554 | struct commit_list *p; | |
a8722750 | 555 | const char *refname; |
f2dc849e JS |
556 | int i; |
557 | ||
558 | rev->diffopt.output_format = DIFF_FORMAT_CALLBACK; | |
559 | ||
683ff884 | 560 | parse_commit_or_die(commit); |
8597ea3a | 561 | commit_buffer = get_commit_buffer(commit, NULL); |
bc6b8fc1 | 562 | author = strstr(commit_buffer, "\nauthor "); |
f2dc849e JS |
563 | if (!author) |
564 | die ("Could not find author in commit %s", | |
f2fd0760 | 565 | oid_to_hex(&commit->object.oid)); |
f2dc849e JS |
566 | author++; |
567 | author_end = strchrnul(author, '\n'); | |
568 | committer = strstr(author_end, "\ncommitter "); | |
569 | if (!committer) | |
570 | die ("Could not find committer in commit %s", | |
f2fd0760 | 571 | oid_to_hex(&commit->object.oid)); |
f2dc849e JS |
572 | committer++; |
573 | committer_end = strchrnul(committer, '\n'); | |
574 | message = strstr(committer_end, "\n\n"); | |
575 | encoding = find_encoding(committer_end, message); | |
576 | if (message) | |
577 | message += 2; | |
578 | ||
ebeec7db | 579 | if (commit->parents && |
4087a02e EN |
580 | get_object_mark(&commit->parents->item->object) != 0 && |
581 | !full_tree) { | |
683ff884 | 582 | parse_commit_or_die(commit->parents->item); |
66f414f8 BW |
583 | diff_tree_oid(&commit->parents->item->tree->object.oid, |
584 | &commit->tree->object.oid, "", &rev->diffopt); | |
f2dc849e JS |
585 | } |
586 | else | |
7b8dea0c BW |
587 | diff_root_tree_oid(&commit->tree->object.oid, |
588 | "", &rev->diffopt); | |
f2dc849e | 589 | |
03db4525 | 590 | /* Export the referenced blobs, and remember the marks. */ |
f2dc849e | 591 | for (i = 0; i < diff_queued_diff.nr; i++) |
03db4525 | 592 | if (!S_ISGITLINK(diff_queued_diff.queue[i]->two->mode)) |
273f8ee8 | 593 | export_blob(&diff_queued_diff.queue[i]->two->oid); |
f2dc849e | 594 | |
87be2523 | 595 | refname = *revision_sources_at(&revision_sources, commit); |
a8722750 JK |
596 | if (anonymize) { |
597 | refname = anonymize_refname(refname); | |
598 | anonymize_ident_line(&committer, &committer_end); | |
599 | anonymize_ident_line(&author, &author_end); | |
600 | } | |
601 | ||
df6a7ff7 | 602 | mark_next_object(&commit->object); |
a8722750 JK |
603 | if (anonymize) |
604 | reencoded = anonymize_commit_message(message); | |
605 | else if (!is_encoding_utf8(encoding)) | |
f2dc849e | 606 | reencoded = reencode_string(message, "UTF-8", encoding); |
d8933f01 | 607 | if (!commit->parents) |
a8722750 | 608 | printf("reset %s\n", refname); |
6e1c2344 | 609 | printf("commit %s\nmark :%"PRIu32"\n%.*s\n%.*s\ndata %u\n%s", |
a8722750 | 610 | refname, last_idnum, |
f2dc849e JS |
611 | (int)(author_end - author), author, |
612 | (int)(committer_end - committer), committer, | |
613 | (unsigned)(reencoded | |
614 | ? strlen(reencoded) : message | |
615 | ? strlen(message) : 0), | |
616 | reencoded ? reencoded : message ? message : ""); | |
8e0f7003 | 617 | free(reencoded); |
bc6b8fc1 | 618 | unuse_commit_buffer(commit, commit_buffer); |
f2dc849e JS |
619 | |
620 | for (i = 0, p = commit->parents; p; p = p->next) { | |
621 | int mark = get_object_mark(&p->item->object); | |
622 | if (!mark) | |
623 | continue; | |
624 | if (i == 0) | |
625 | printf("from :%d\n", mark); | |
f2dc849e | 626 | else |
5070b49e | 627 | printf("merge :%d\n", mark); |
f2dc849e JS |
628 | i++; |
629 | } | |
f2dc849e | 630 | |
4087a02e EN |
631 | if (full_tree) |
632 | printf("deleteall\n"); | |
f2dc849e | 633 | log_tree_diff_flush(rev); |
b3e8ca89 | 634 | string_list_clear(paths_of_changed_objects, 0); |
f2dc849e JS |
635 | rev->diffopt.output_format = saved_output_format; |
636 | ||
637 | printf("\n"); | |
638 | ||
639 | show_progress(); | |
640 | } | |
641 | ||
a8722750 JK |
642 | static void *anonymize_tag(const void *old, size_t *len) |
643 | { | |
644 | static int counter; | |
645 | struct strbuf out = STRBUF_INIT; | |
646 | strbuf_addf(&out, "tag message %d", counter++); | |
647 | return strbuf_detach(&out, len); | |
648 | } | |
649 | ||
b3e8ca89 JT |
650 | static void handle_tail(struct object_array *commits, struct rev_info *revs, |
651 | struct string_list *paths_of_changed_objects) | |
f2dc849e JS |
652 | { |
653 | struct commit *commit; | |
654 | while (commits->nr) { | |
71992039 | 655 | commit = (struct commit *)object_array_pop(commits); |
be011bbe MÅ |
656 | if (has_unshown_parent(commit)) { |
657 | /* Queue again, to be handled later */ | |
658 | add_object_array(&commit->object, NULL, commits); | |
f2dc849e | 659 | return; |
be011bbe | 660 | } |
b3e8ca89 | 661 | handle_commit(commit, revs, paths_of_changed_objects); |
f2dc849e JS |
662 | } |
663 | } | |
664 | ||
665 | static void handle_tag(const char *name, struct tag *tag) | |
666 | { | |
667 | unsigned long size; | |
668 | enum object_type type; | |
669 | char *buf; | |
670 | const char *tagger, *tagger_end, *message; | |
671 | size_t message_size = 0; | |
02c48cd6 | 672 | struct object *tagged; |
2d8ad469 EN |
673 | int tagged_mark; |
674 | struct commit *p; | |
02c48cd6 | 675 | |
98e023de | 676 | /* Trees have no identifier in fast-export output, thus we have no way |
02c48cd6 EN |
677 | * to output tags of trees, tags of tags of trees, etc. Simply omit |
678 | * such tags. | |
679 | */ | |
680 | tagged = tag->tagged; | |
681 | while (tagged->type == OBJ_TAG) { | |
682 | tagged = ((struct tag *)tagged)->tagged; | |
683 | } | |
684 | if (tagged->type == OBJ_TREE) { | |
685 | warning("Omitting tag %s,\nsince tags of trees (or tags of tags of trees, etc.) are not supported.", | |
f2fd0760 | 686 | oid_to_hex(&tag->object.oid)); |
02c48cd6 EN |
687 | return; |
688 | } | |
f2dc849e | 689 | |
b4f5aca4 | 690 | buf = read_object_file(&tag->object.oid, &type, &size); |
f2dc849e | 691 | if (!buf) |
f2fd0760 | 692 | die ("Could not read tag %s", oid_to_hex(&tag->object.oid)); |
f2dc849e JS |
693 | message = memmem(buf, size, "\n\n", 2); |
694 | if (message) { | |
695 | message += 2; | |
696 | message_size = strlen(message); | |
697 | } | |
698 | tagger = memmem(buf, message ? message - buf : size, "\ntagger ", 8); | |
4e46a8d6 JS |
699 | if (!tagger) { |
700 | if (fake_missing_tagger) | |
701 | tagger = "tagger Unspecified Tagger " | |
702 | "<unspecified-tagger> 0 +0000"; | |
703 | else | |
704 | tagger = ""; | |
705 | tagger_end = tagger + strlen(tagger); | |
706 | } else { | |
707 | tagger++; | |
708 | tagger_end = strchrnul(tagger, '\n'); | |
a8722750 JK |
709 | if (anonymize) |
710 | anonymize_ident_line(&tagger, &tagger_end); | |
711 | } | |
712 | ||
713 | if (anonymize) { | |
714 | name = anonymize_refname(name); | |
715 | if (message) { | |
716 | static struct hashmap tags; | |
717 | message = anonymize_mem(&tags, anonymize_tag, | |
718 | message, &message_size); | |
719 | } | |
4e46a8d6 | 720 | } |
f2dc849e JS |
721 | |
722 | /* handle signed tags */ | |
723 | if (message) { | |
724 | const char *signature = strstr(message, | |
725 | "\n-----BEGIN PGP SIGNATURE-----\n"); | |
726 | if (signature) | |
727 | switch(signed_tag_mode) { | |
728 | case ABORT: | |
729 | die ("Encountered signed tag %s; use " | |
04a74b6c | 730 | "--signed-tags=<mode> to handle it.", |
f2fd0760 | 731 | oid_to_hex(&tag->object.oid)); |
f2dc849e JS |
732 | case WARN: |
733 | warning ("Exporting signed tag %s", | |
f2fd0760 | 734 | oid_to_hex(&tag->object.oid)); |
f2dc849e | 735 | /* fallthru */ |
ee4bc371 | 736 | case VERBATIM: |
f2dc849e | 737 | break; |
cd16c59b JK |
738 | case WARN_STRIP: |
739 | warning ("Stripping signature from tag %s", | |
f2fd0760 | 740 | oid_to_hex(&tag->object.oid)); |
cd16c59b | 741 | /* fallthru */ |
f2dc849e JS |
742 | case STRIP: |
743 | message_size = signature + 1 - message; | |
744 | break; | |
745 | } | |
746 | } | |
747 | ||
2d8ad469 EN |
748 | /* handle tag->tagged having been filtered out due to paths specified */ |
749 | tagged = tag->tagged; | |
750 | tagged_mark = get_object_mark(tagged); | |
751 | if (!tagged_mark) { | |
752 | switch(tag_of_filtered_mode) { | |
753 | case ABORT: | |
754 | die ("Tag %s tags unexported object; use " | |
755 | "--tag-of-filtered-object=<mode> to handle it.", | |
f2fd0760 | 756 | oid_to_hex(&tag->object.oid)); |
2d8ad469 EN |
757 | case DROP: |
758 | /* Ignore this tag altogether */ | |
1efb1e9a | 759 | free(buf); |
2d8ad469 EN |
760 | return; |
761 | case REWRITE: | |
762 | if (tagged->type != OBJ_COMMIT) { | |
763 | die ("Tag %s tags unexported %s!", | |
f2fd0760 | 764 | oid_to_hex(&tag->object.oid), |
debca9d2 | 765 | type_name(tagged->type)); |
2d8ad469 EN |
766 | } |
767 | p = (struct commit *)tagged; | |
768 | for (;;) { | |
769 | if (p->parents && p->parents->next) | |
770 | break; | |
771 | if (p->object.flags & UNINTERESTING) | |
772 | break; | |
773 | if (!(p->object.flags & TREESAME)) | |
774 | break; | |
775 | if (!p->parents) | |
776 | die ("Can't find replacement commit for tag %s\n", | |
f2fd0760 | 777 | oid_to_hex(&tag->object.oid)); |
2d8ad469 EN |
778 | p = p->parents->item; |
779 | } | |
780 | tagged_mark = get_object_mark(&p->object); | |
781 | } | |
782 | } | |
783 | ||
59556548 | 784 | if (starts_with(name, "refs/tags/")) |
f2dc849e | 785 | name += 10; |
4e46a8d6 | 786 | printf("tag %s\nfrom :%d\n%.*s%sdata %d\n%.*s\n", |
2d8ad469 | 787 | name, tagged_mark, |
f2dc849e | 788 | (int)(tagger_end - tagger), tagger, |
4e46a8d6 | 789 | tagger == tagger_end ? "" : "\n", |
f2dc849e | 790 | (int)message_size, (int)message_size, message ? message : ""); |
1efb1e9a | 791 | free(buf); |
f2dc849e JS |
792 | } |
793 | ||
3e9b9cb1 FC |
794 | static struct commit *get_commit(struct rev_cmdline_entry *e, char *full_name) |
795 | { | |
796 | switch (e->item->type) { | |
797 | case OBJ_COMMIT: | |
798 | return (struct commit *)e->item; | |
799 | case OBJ_TAG: { | |
800 | struct tag *tag = (struct tag *)e->item; | |
801 | ||
802 | /* handle nested tags */ | |
803 | while (tag && tag->object.type == OBJ_TAG) { | |
c251c83d | 804 | parse_object(&tag->object.oid); |
3e9b9cb1 FC |
805 | string_list_append(&extra_refs, full_name)->util = tag; |
806 | tag = (struct tag *)tag->tagged; | |
807 | } | |
808 | if (!tag) | |
809 | die("Tag %s points nowhere?", e->name); | |
810 | return (struct commit *)tag; | |
811 | break; | |
812 | } | |
813 | default: | |
814 | return NULL; | |
815 | } | |
816 | } | |
817 | ||
1d844ee7 | 818 | static void get_tags_and_duplicates(struct rev_cmdline_info *info) |
f2dc849e | 819 | { |
f2dc849e JS |
820 | int i; |
821 | ||
49266e8a FC |
822 | for (i = 0; i < info->nr; i++) { |
823 | struct rev_cmdline_entry *e = info->rev + i; | |
273f8ee8 | 824 | struct object_id oid; |
2d242de4 | 825 | struct commit *commit; |
f2dc849e JS |
826 | char *full_name; |
827 | ||
49266e8a FC |
828 | if (e->flags & UNINTERESTING) |
829 | continue; | |
830 | ||
cca5fa64 | 831 | if (dwim_ref(e->name, strlen(e->name), &oid, &full_name) != 1) |
f2dc849e JS |
832 | continue; |
833 | ||
03e9010c FC |
834 | if (refspecs) { |
835 | char *private; | |
836 | private = apply_refspecs(refspecs, refspecs_nr, full_name); | |
837 | if (private) { | |
838 | free(full_name); | |
839 | full_name = private; | |
840 | } | |
841 | } | |
842 | ||
3e9b9cb1 FC |
843 | commit = get_commit(e, full_name); |
844 | if (!commit) { | |
2d07f6d4 EFL |
845 | warning("%s: Unexpected object of type %s, skipping.", |
846 | e->name, | |
debca9d2 | 847 | type_name(e->item->type)); |
2d07f6d4 | 848 | continue; |
f2dc849e | 849 | } |
f28e7c90 | 850 | |
3e9b9cb1 FC |
851 | switch(commit->object.type) { |
852 | case OBJ_COMMIT: | |
853 | break; | |
854 | case OBJ_BLOB: | |
273f8ee8 | 855 | export_blob(&commit->object.oid); |
3e9b9cb1 FC |
856 | continue; |
857 | default: /* OBJ_TAG (nested tags) is already handled */ | |
858 | warning("Tag points to object of unexpected type %s, skipping.", | |
debca9d2 | 859 | type_name(commit->object.type)); |
3e9b9cb1 FC |
860 | continue; |
861 | } | |
862 | ||
f28e7c90 FC |
863 | /* |
864 | * This ref will not be updated through a commit, lets make | |
865 | * sure it gets properly updated eventually. | |
866 | */ | |
87be2523 NTND |
867 | if (*revision_sources_at(&revision_sources, commit) || |
868 | commit->object.flags & SHOWN) | |
1d844ee7 | 869 | string_list_append(&extra_refs, full_name)->util = commit; |
87be2523 NTND |
870 | if (!*revision_sources_at(&revision_sources, commit)) |
871 | *revision_sources_at(&revision_sources, commit) = full_name; | |
f2dc849e JS |
872 | } |
873 | } | |
874 | ||
1d844ee7 | 875 | static void handle_tags_and_duplicates(void) |
f2dc849e JS |
876 | { |
877 | struct commit *commit; | |
878 | int i; | |
879 | ||
1d844ee7 FC |
880 | for (i = extra_refs.nr - 1; i >= 0; i--) { |
881 | const char *name = extra_refs.items[i].string; | |
882 | struct object *object = extra_refs.items[i].util; | |
f2dc849e JS |
883 | switch (object->type) { |
884 | case OBJ_TAG: | |
885 | handle_tag(name, (struct tag *)object); | |
886 | break; | |
887 | case OBJ_COMMIT: | |
a8722750 JK |
888 | if (anonymize) |
889 | name = anonymize_refname(name); | |
f2dc849e JS |
890 | /* create refs pointing to already seen commits */ |
891 | commit = (struct commit *)object; | |
892 | printf("reset %s\nfrom :%d\n\n", name, | |
893 | get_object_mark(&commit->object)); | |
894 | show_progress(); | |
895 | break; | |
896 | } | |
897 | } | |
898 | } | |
899 | ||
df6a7ff7 PB |
900 | static void export_marks(char *file) |
901 | { | |
902 | unsigned int i; | |
903 | uint32_t mark; | |
ddd3e312 | 904 | struct decoration_entry *deco = idnums.entries; |
df6a7ff7 | 905 | FILE *f; |
96d69b55 | 906 | int e = 0; |
df6a7ff7 | 907 | |
ea56518d | 908 | f = fopen_for_writing(file); |
df6a7ff7 | 909 | if (!f) |
bb6ad28c | 910 | die_errno("Unable to open marks file %s for writing.", file); |
df6a7ff7 | 911 | |
69913575 JH |
912 | for (i = 0; i < idnums.size; i++) { |
913 | if (deco->base && deco->base->type == 1) { | |
df6a7ff7 | 914 | mark = ptr_to_mark(deco->decoration); |
96d69b55 | 915 | if (fprintf(f, ":%"PRIu32" %s\n", mark, |
f2fd0760 | 916 | oid_to_hex(&deco->base->oid)) < 0) { |
96d69b55 MA |
917 | e = 1; |
918 | break; | |
919 | } | |
df6a7ff7 | 920 | } |
69913575 | 921 | deco++; |
df6a7ff7 PB |
922 | } |
923 | ||
96d69b55 MA |
924 | e |= ferror(f); |
925 | e |= fclose(f); | |
926 | if (e) | |
df6a7ff7 PB |
927 | error("Unable to write marks file %s.", file); |
928 | } | |
929 | ||
69913575 | 930 | static void import_marks(char *input_file) |
df6a7ff7 PB |
931 | { |
932 | char line[512]; | |
23a9e071 | 933 | FILE *f = xfopen(input_file, "r"); |
df6a7ff7 PB |
934 | |
935 | while (fgets(line, sizeof(line), f)) { | |
936 | uint32_t mark; | |
937 | char *line_end, *mark_end; | |
273f8ee8 | 938 | struct object_id oid; |
df6a7ff7 | 939 | struct object *object; |
47bd9bf8 | 940 | struct commit *commit; |
e6812cfa | 941 | enum object_type type; |
df6a7ff7 PB |
942 | |
943 | line_end = strchr(line, '\n'); | |
944 | if (line[0] != ':' || !line_end) | |
945 | die("corrupt mark line: %s", line); | |
69913575 | 946 | *line_end = '\0'; |
df6a7ff7 PB |
947 | |
948 | mark = strtoumax(line + 1, &mark_end, 10); | |
949 | if (!mark || mark_end == line + 1 | |
273f8ee8 | 950 | || *mark_end != ' ' || get_oid_hex(mark_end + 1, &oid)) |
df6a7ff7 PB |
951 | die("corrupt mark line: %s", line); |
952 | ||
c4458ecd AP |
953 | if (last_idnum < mark) |
954 | last_idnum = mark; | |
955 | ||
abef9020 | 956 | type = oid_object_info(&oid, NULL); |
e6812cfa | 957 | if (type < 0) |
273f8ee8 | 958 | die("object not found: %s", oid_to_hex(&oid)); |
e6812cfa FC |
959 | |
960 | if (type != OBJ_COMMIT) | |
961 | /* only commits */ | |
c4458ecd | 962 | continue; |
df6a7ff7 | 963 | |
bc83266a | 964 | commit = lookup_commit(&oid); |
47bd9bf8 | 965 | if (!commit) |
273f8ee8 | 966 | die("not a commit? can't happen: %s", oid_to_hex(&oid)); |
47bd9bf8 FC |
967 | |
968 | object = &commit->object; | |
e6812cfa | 969 | |
df6a7ff7 | 970 | if (object->flags & SHOWN) |
273f8ee8 | 971 | error("Object %s already has a mark", oid_to_hex(&oid)); |
df6a7ff7 PB |
972 | |
973 | mark_object(object, mark); | |
df6a7ff7 PB |
974 | |
975 | object->flags |= SHOWN; | |
976 | } | |
977 | fclose(f); | |
978 | } | |
979 | ||
60ed2643 FC |
980 | static void handle_deletes(void) |
981 | { | |
982 | int i; | |
983 | for (i = 0; i < refspecs_nr; i++) { | |
984 | struct refspec *refspec = &refspecs[i]; | |
985 | if (*refspec->src) | |
986 | continue; | |
987 | ||
988 | printf("reset %s\nfrom %s\n\n", | |
989 | refspec->dst, sha1_to_hex(null_sha1)); | |
990 | } | |
991 | } | |
992 | ||
f2dc849e JS |
993 | int cmd_fast_export(int argc, const char **argv, const char *prefix) |
994 | { | |
995 | struct rev_info revs; | |
3cd47459 | 996 | struct object_array commits = OBJECT_ARRAY_INIT; |
f2dc849e | 997 | struct commit *commit; |
df6a7ff7 | 998 | char *export_filename = NULL, *import_filename = NULL; |
c4458ecd | 999 | uint32_t lastimportid; |
03e9010c | 1000 | struct string_list refspecs_list = STRING_LIST_INIT_NODUP; |
b3e8ca89 | 1001 | struct string_list paths_of_changed_objects = STRING_LIST_INIT_DUP; |
f2dc849e JS |
1002 | struct option options[] = { |
1003 | OPT_INTEGER(0, "progress", &progress, | |
3b787b96 NTND |
1004 | N_("show progress after <n> objects")), |
1005 | OPT_CALLBACK(0, "signed-tags", &signed_tag_mode, N_("mode"), | |
1006 | N_("select handling of signed tags"), | |
f2dc849e | 1007 | parse_opt_signed_tag_mode), |
3b787b96 NTND |
1008 | OPT_CALLBACK(0, "tag-of-filtered-object", &tag_of_filtered_mode, N_("mode"), |
1009 | N_("select handling of tags that tag filtered objects"), | |
2d8ad469 | 1010 | parse_opt_tag_of_filtered_mode), |
3b787b96 NTND |
1011 | OPT_STRING(0, "export-marks", &export_filename, N_("file"), |
1012 | N_("Dump marks to this file")), | |
1013 | OPT_STRING(0, "import-marks", &import_filename, N_("file"), | |
1014 | N_("Import marks from this file")), | |
d5d09d47 SB |
1015 | OPT_BOOL(0, "fake-missing-tagger", &fake_missing_tagger, |
1016 | N_("Fake a tagger when tags lack one")), | |
1017 | OPT_BOOL(0, "full-tree", &full_tree, | |
1018 | N_("Output full tree for each commit")), | |
1019 | OPT_BOOL(0, "use-done-feature", &use_done_feature, | |
3b787b96 NTND |
1020 | N_("Use the done feature to terminate the stream")), |
1021 | OPT_BOOL(0, "no-data", &no_data, N_("Skip output of blob data")), | |
03e9010c FC |
1022 | OPT_STRING_LIST(0, "refspec", &refspecs_list, N_("refspec"), |
1023 | N_("Apply refspec to exported refs")), | |
a8722750 | 1024 | OPT_BOOL(0, "anonymize", &anonymize, N_("anonymize output")), |
f2dc849e JS |
1025 | OPT_END() |
1026 | }; | |
1027 | ||
dcfdbdf0 MV |
1028 | if (argc == 1) |
1029 | usage_with_options (fast_export_usage, options); | |
1030 | ||
f2dc849e | 1031 | /* we handle encodings */ |
ef90d6d4 | 1032 | git_config(git_default_config, NULL); |
f2dc849e JS |
1033 | |
1034 | init_revisions(&revs, prefix); | |
87be2523 | 1035 | init_revision_sources(&revision_sources); |
668f3aa7 | 1036 | revs.topo_order = 1; |
87be2523 | 1037 | revs.sources = &revision_sources; |
32164131 | 1038 | revs.rewrite_parents = 1; |
8b2f86a7 FC |
1039 | argc = parse_options(argc, argv, prefix, options, fast_export_usage, |
1040 | PARSE_OPT_KEEP_ARGV0 | PARSE_OPT_KEEP_UNKNOWN); | |
f2dc849e | 1041 | argc = setup_revisions(argc, argv, &revs, NULL); |
f2dc849e JS |
1042 | if (argc > 1) |
1043 | usage_with_options (fast_export_usage, options); | |
1044 | ||
03e9010c FC |
1045 | if (refspecs_list.nr) { |
1046 | const char **refspecs_str; | |
1047 | int i; | |
1048 | ||
b32fa95f | 1049 | ALLOC_ARRAY(refspecs_str, refspecs_list.nr); |
03e9010c FC |
1050 | for (i = 0; i < refspecs_list.nr; i++) |
1051 | refspecs_str[i] = refspecs_list.items[i].string; | |
1052 | ||
1053 | refspecs_nr = refspecs_list.nr; | |
1054 | refspecs = parse_fetch_refspec(refspecs_nr, refspecs_str); | |
1055 | ||
1056 | string_list_clear(&refspecs_list, 1); | |
1057 | free(refspecs_str); | |
1058 | } | |
1059 | ||
82670a5c SR |
1060 | if (use_done_feature) |
1061 | printf("feature done\n"); | |
1062 | ||
df6a7ff7 PB |
1063 | if (import_filename) |
1064 | import_marks(import_filename); | |
c4458ecd | 1065 | lastimportid = last_idnum; |
df6a7ff7 | 1066 | |
afe069d1 | 1067 | if (import_filename && revs.prune_data.nr) |
4087a02e EN |
1068 | full_tree = 1; |
1069 | ||
1d844ee7 | 1070 | get_tags_and_duplicates(&revs.cmdline); |
f2dc849e | 1071 | |
3d51e1b5 MK |
1072 | if (prepare_revision_walk(&revs)) |
1073 | die("revision walk setup failed"); | |
f2dc849e | 1074 | revs.diffopt.format_callback = show_filemodify; |
b3e8ca89 | 1075 | revs.diffopt.format_callback_data = &paths_of_changed_objects; |
0d1e0e78 | 1076 | revs.diffopt.flags.recursive = 1; |
f2dc849e JS |
1077 | while ((commit = get_revision(&revs))) { |
1078 | if (has_unshown_parent(commit)) { | |
f2dc849e | 1079 | add_object_array(&commit->object, NULL, &commits); |
f2dc849e JS |
1080 | } |
1081 | else { | |
b3e8ca89 JT |
1082 | handle_commit(commit, &revs, &paths_of_changed_objects); |
1083 | handle_tail(&commits, &revs, &paths_of_changed_objects); | |
f2dc849e JS |
1084 | } |
1085 | } | |
1086 | ||
1d844ee7 | 1087 | handle_tags_and_duplicates(); |
60ed2643 | 1088 | handle_deletes(); |
f2dc849e | 1089 | |
c4458ecd | 1090 | if (export_filename && lastimportid != last_idnum) |
df6a7ff7 PB |
1091 | export_marks(export_filename); |
1092 | ||
82670a5c SR |
1093 | if (use_done_feature) |
1094 | printf("done\n"); | |
1095 | ||
03e9010c FC |
1096 | free_refspec(refspecs_nr, refspecs); |
1097 | ||
f2dc849e JS |
1098 | return 0; |
1099 | } |