2 * "git fast-export" builtin command
4 * Copyright (C) 2007 Johannes E. Schindelin
12 #include "object-file.h"
13 #include "object-store-ll.h"
22 #include "string-list.h"
24 #include "parse-options.h"
29 static const char *fast_export_usage
[] = {
30 N_("git fast-export [<rev-list-opts>]"),
35 static enum signed_tag_mode
{ SIGNED_TAG_ABORT
, VERBATIM
, WARN
, WARN_STRIP
, STRIP
} signed_tag_mode
= SIGNED_TAG_ABORT
;
36 static enum tag_of_filtered_mode
{ TAG_FILTERING_ABORT
, DROP
, REWRITE
} tag_of_filtered_mode
= TAG_FILTERING_ABORT
;
37 static enum reencode_mode
{ REENCODE_ABORT
, REENCODE_YES
, REENCODE_NO
} reencode_mode
= REENCODE_ABORT
;
38 static int fake_missing_tagger
;
39 static int use_done_feature
;
42 static int reference_excluded_commits
;
43 static int show_original_ids
;
45 static struct string_list extra_refs
= STRING_LIST_INIT_NODUP
;
46 static struct string_list tag_refs
= STRING_LIST_INIT_NODUP
;
47 static struct refspec refspecs
= REFSPEC_INIT_FETCH
;
49 static struct hashmap anonymized_seeds
;
50 static struct revision_sources revision_sources
;
52 static int parse_opt_signed_tag_mode(const struct option
*opt
,
53 const char *arg
, int unset
)
55 enum signed_tag_mode
*val
= opt
->value
;
57 if (unset
|| !strcmp(arg
, "abort"))
58 *val
= SIGNED_TAG_ABORT
;
59 else if (!strcmp(arg
, "verbatim") || !strcmp(arg
, "ignore"))
61 else if (!strcmp(arg
, "warn"))
63 else if (!strcmp(arg
, "warn-strip"))
65 else if (!strcmp(arg
, "strip"))
68 return error("Unknown signed-tags mode: %s", arg
);
72 static int parse_opt_tag_of_filtered_mode(const struct option
*opt
,
73 const char *arg
, int unset
)
75 enum tag_of_filtered_mode
*val
= opt
->value
;
77 if (unset
|| !strcmp(arg
, "abort"))
78 *val
= TAG_FILTERING_ABORT
;
79 else if (!strcmp(arg
, "drop"))
81 else if (!strcmp(arg
, "rewrite"))
84 return error("Unknown tag-of-filtered mode: %s", arg
);
88 static int parse_opt_reencode_mode(const struct option
*opt
,
89 const char *arg
, int unset
)
91 enum reencode_mode
*val
= opt
->value
;
94 *val
= REENCODE_ABORT
;
98 switch (git_parse_maybe_bool(arg
)) {
106 if (!strcasecmp(arg
, "abort"))
107 *val
= REENCODE_ABORT
;
109 return error("Unknown reencoding mode: %s", arg
);
115 static struct decoration idnums
;
116 static uint32_t last_idnum
;
117 struct anonymized_entry
{
118 struct hashmap_entry hash
;
120 const char orig
[FLEX_ARRAY
];
123 struct anonymized_entry_key
{
124 struct hashmap_entry hash
;
129 static int anonymized_entry_cmp(const void *cmp_data UNUSED
,
130 const struct hashmap_entry
*eptr
,
131 const struct hashmap_entry
*entry_or_key
,
134 const struct anonymized_entry
*a
, *b
;
136 a
= container_of(eptr
, const struct anonymized_entry
, hash
);
138 const struct anonymized_entry_key
*key
= keydata
;
139 int equal
= !xstrncmpz(a
->orig
, key
->orig
, key
->orig_len
);
143 b
= container_of(entry_or_key
, const struct anonymized_entry
, hash
);
144 return strcmp(a
->orig
, b
->orig
);
147 static struct anonymized_entry
*add_anonymized_entry(struct hashmap
*map
,
149 const char *orig
, size_t len
,
152 struct anonymized_entry
*ret
, *old
;
155 hashmap_init(map
, anonymized_entry_cmp
, NULL
, 0);
157 FLEX_ALLOC_MEM(ret
, orig
, orig
, len
);
158 hashmap_entry_init(&ret
->hash
, hash
);
160 old
= hashmap_put_entry(map
, ret
, hash
);
171 * Basically keep a cache of X->Y so that we can repeatedly replace
172 * the same anonymized string with another. The actual generation
173 * is farmed out to the generate function.
175 static const char *anonymize_str(struct hashmap
*map
,
176 char *(*generate
)(void),
177 const char *orig
, size_t len
)
179 struct anonymized_entry_key key
;
180 struct anonymized_entry
*ret
;
182 hashmap_entry_init(&key
.hash
, memhash(orig
, len
));
186 /* First check if it's a token the user configured manually... */
187 ret
= hashmap_get_entry(&anonymized_seeds
, &key
, hash
, &key
);
189 /* ...otherwise check if we've already seen it in this context... */
191 ret
= hashmap_get_entry(map
, &key
, hash
, &key
);
193 /* ...and finally generate a new mapping if necessary */
195 ret
= add_anonymized_entry(map
, key
.hash
.hash
,
196 orig
, len
, generate());
202 * We anonymize each component of a path individually,
203 * so that paths a/b and a/c will share a common root.
204 * The paths are cached via anonymize_mem so that repeated
205 * lookups for "a" will yield the same value.
207 static void anonymize_path(struct strbuf
*out
, const char *path
,
209 char *(*generate
)(void))
212 const char *end_of_component
= strchrnul(path
, '/');
213 size_t len
= end_of_component
- path
;
214 const char *c
= anonymize_str(map
, generate
, path
, len
);
215 strbuf_addstr(out
, c
);
216 path
= end_of_component
;
218 strbuf_addch(out
, *path
++);
222 static inline void *mark_to_ptr(uint32_t mark
)
224 return (void *)(uintptr_t)mark
;
227 static inline uint32_t ptr_to_mark(void * mark
)
229 return (uint32_t)(uintptr_t)mark
;
232 static inline void mark_object(struct object
*object
, uint32_t mark
)
234 add_decoration(&idnums
, object
, mark_to_ptr(mark
));
237 static inline void mark_next_object(struct object
*object
)
239 mark_object(object
, ++last_idnum
);
242 static int get_object_mark(struct object
*object
)
244 void *decoration
= lookup_decoration(&idnums
, object
);
247 return ptr_to_mark(decoration
);
250 static struct commit
*rewrite_commit(struct commit
*p
)
253 if (p
->parents
&& p
->parents
->next
)
255 if (p
->object
.flags
& UNINTERESTING
)
257 if (!(p
->object
.flags
& TREESAME
))
261 p
= p
->parents
->item
;
266 static void show_progress(void)
268 static int counter
= 0;
271 if ((++counter
% progress
) == 0)
272 printf("progress %d objects\n", counter
);
276 * Ideally we would want some transformation of the blob data here
277 * that is unreversible, but would still be the same size and have
278 * the same data relationship to other blobs (so that we get the same
279 * delta and packing behavior as the original). But the first and last
280 * requirements there are probably mutually exclusive, so let's take
281 * the easy way out for now, and just generate arbitrary content.
283 * There's no need to cache this result with anonymize_mem, since
284 * we already handle blob content caching with marks.
286 static char *anonymize_blob(unsigned long *size
)
289 struct strbuf out
= STRBUF_INIT
;
290 strbuf_addf(&out
, "anonymous blob %d", counter
++);
292 return strbuf_detach(&out
, NULL
);
295 static void export_blob(const struct object_id
*oid
)
298 enum object_type type
;
300 struct object
*object
;
306 if (is_null_oid(oid
))
309 object
= lookup_object(the_repository
, oid
);
310 if (object
&& object
->flags
& SHOWN
)
314 buf
= anonymize_blob(&size
);
315 object
= (struct object
*)lookup_blob(the_repository
, oid
);
318 buf
= repo_read_object_file(the_repository
, oid
, &type
, &size
);
320 die("could not read blob %s", oid_to_hex(oid
));
321 if (check_object_signature(the_repository
, oid
, buf
, size
,
323 die("oid mismatch in blob %s", oid_to_hex(oid
));
324 object
= parse_object_buffer(the_repository
, oid
, type
,
329 die("Could not read blob %s", oid_to_hex(oid
));
331 mark_next_object(object
);
333 printf("blob\nmark :%"PRIu32
"\n", last_idnum
);
334 if (show_original_ids
)
335 printf("original-oid %s\n", oid_to_hex(oid
));
336 printf("data %"PRIuMAX
"\n", (uintmax_t)size
);
337 if (size
&& fwrite(buf
, size
, 1, stdout
) != 1)
338 die_errno("could not write blob '%s'", oid_to_hex(oid
));
343 object
->flags
|= SHOWN
;
348 static int depth_first(const void *a_
, const void *b_
)
350 const struct diff_filepair
*a
= *((const struct diff_filepair
**)a_
);
351 const struct diff_filepair
*b
= *((const struct diff_filepair
**)b_
);
352 const char *name_a
, *name_b
;
353 int len_a
, len_b
, len
;
356 name_a
= a
->one
? a
->one
->path
: a
->two
->path
;
357 name_b
= b
->one
? b
->one
->path
: b
->two
->path
;
359 len_a
= strlen(name_a
);
360 len_b
= strlen(name_b
);
361 len
= (len_a
< len_b
) ? len_a
: len_b
;
363 /* strcmp will sort 'd' before 'd/e', we want 'd/e' before 'd' */
364 cmp
= memcmp(name_a
, name_b
, len
);
371 * Move 'R'ename entries last so that all references of the file
372 * appear in the output before it is renamed (e.g., when a file
373 * was copied and renamed in the same commit).
375 return (a
->status
== 'R') - (b
->status
== 'R');
378 static void print_path_1(const char *path
)
380 int need_quote
= quote_c_style(path
, NULL
, NULL
, 0);
382 quote_c_style(path
, NULL
, stdout
, 0);
383 else if (strchr(path
, ' '))
384 printf("\"%s\"", path
);
389 static char *anonymize_path_component(void)
392 struct strbuf out
= STRBUF_INIT
;
393 strbuf_addf(&out
, "path%d", counter
++);
394 return strbuf_detach(&out
, NULL
);
397 static void print_path(const char *path
)
402 static struct hashmap paths
;
403 static struct strbuf anon
= STRBUF_INIT
;
405 anonymize_path(&anon
, path
, &paths
, anonymize_path_component
);
406 print_path_1(anon
.buf
);
411 static char *generate_fake_oid(void)
413 static uint32_t counter
= 1; /* avoid null oid */
414 const unsigned hashsz
= the_hash_algo
->rawsz
;
415 struct object_id oid
;
416 char *hex
= xmallocz(GIT_MAX_HEXSZ
);
419 put_be32(oid
.hash
+ hashsz
- 4, counter
++);
420 return oid_to_hex_r(hex
, &oid
);
423 static const char *anonymize_oid(const char *oid_hex
)
425 static struct hashmap objs
;
426 size_t len
= strlen(oid_hex
);
427 return anonymize_str(&objs
, generate_fake_oid
, oid_hex
, len
);
430 static void show_filemodify(struct diff_queue_struct
*q
,
431 struct diff_options
*options UNUSED
, void *data
)
434 struct string_list
*changed
= data
;
437 * Handle files below a directory first, in case they are all deleted
438 * and the directory changes to a file or symlink.
440 QSORT(q
->queue
, q
->nr
, depth_first
);
442 for (i
= 0; i
< q
->nr
; i
++) {
443 struct diff_filespec
*ospec
= q
->queue
[i
]->one
;
444 struct diff_filespec
*spec
= q
->queue
[i
]->two
;
446 switch (q
->queue
[i
]->status
) {
447 case DIFF_STATUS_DELETED
:
449 print_path(spec
->path
);
450 string_list_insert(changed
, spec
->path
);
454 case DIFF_STATUS_COPIED
:
455 case DIFF_STATUS_RENAMED
:
457 * If a change in the file corresponding to ospec->path
458 * has been observed, we cannot trust its contents
459 * because the diff is calculated based on the prior
460 * contents, not the current contents. So, declare a
461 * copy or rename only if there was no change observed.
463 if (!string_list_has_string(changed
, ospec
->path
)) {
464 printf("%c ", q
->queue
[i
]->status
);
465 print_path(ospec
->path
);
467 print_path(spec
->path
);
468 string_list_insert(changed
, spec
->path
);
471 if (oideq(&ospec
->oid
, &spec
->oid
) &&
472 ospec
->mode
== spec
->mode
)
477 case DIFF_STATUS_TYPE_CHANGED
:
478 case DIFF_STATUS_MODIFIED
:
479 case DIFF_STATUS_ADDED
:
481 * Links refer to objects in another repositories;
482 * output the SHA-1 verbatim.
484 if (no_data
|| S_ISGITLINK(spec
->mode
))
485 printf("M %06o %s ", spec
->mode
,
487 anonymize_oid(oid_to_hex(&spec
->oid
)) :
488 oid_to_hex(&spec
->oid
));
490 struct object
*object
= lookup_object(the_repository
,
492 printf("M %06o :%d ", spec
->mode
,
493 get_object_mark(object
));
495 print_path(spec
->path
);
496 string_list_insert(changed
, spec
->path
);
501 die("Unexpected comparison status '%c' for %s, %s",
503 ospec
->path
? ospec
->path
: "none",
504 spec
->path
? spec
->path
: "none");
509 static const char *find_encoding(const char *begin
, const char *end
)
511 const char *needle
= "\nencoding ";
514 bol
= memmem(begin
, end
? end
- begin
: strlen(begin
),
515 needle
, strlen(needle
));
518 bol
+= strlen(needle
);
519 eol
= strchrnul(bol
, '\n');
524 static char *anonymize_ref_component(void)
527 struct strbuf out
= STRBUF_INIT
;
528 strbuf_addf(&out
, "ref%d", counter
++);
529 return strbuf_detach(&out
, NULL
);
532 static const char *anonymize_refname(const char *refname
)
535 * If any of these prefixes is found, we will leave it intact
536 * so that tags remain tags and so forth.
538 static const char *prefixes
[] = {
544 static struct hashmap refs
;
545 static struct strbuf anon
= STRBUF_INIT
;
549 for (i
= 0; i
< ARRAY_SIZE(prefixes
); i
++) {
550 if (skip_prefix(refname
, prefixes
[i
], &refname
)) {
551 strbuf_addstr(&anon
, prefixes
[i
]);
556 anonymize_path(&anon
, refname
, &refs
, anonymize_ref_component
);
561 * We do not even bother to cache commit messages, as they are unlikely
562 * to be repeated verbatim, and it is not that interesting when they are.
564 static char *anonymize_commit_message(void)
567 return xstrfmt("subject %d\n\nbody\n", counter
++);
570 static char *anonymize_ident(void)
573 struct strbuf out
= STRBUF_INIT
;
574 strbuf_addf(&out
, "User %d <user%d@example.com>", counter
, counter
);
576 return strbuf_detach(&out
, NULL
);
580 * Our strategy here is to anonymize the names and email addresses,
581 * but keep timestamps intact, as they influence things like traversal
582 * order (and by themselves should not be too revealing).
584 static void anonymize_ident_line(const char **beg
, const char **end
)
586 static struct hashmap idents
;
587 static struct strbuf buffers
[] = { STRBUF_INIT
, STRBUF_INIT
};
588 static unsigned which_buffer
;
591 struct ident_split split
;
592 const char *end_of_header
;
594 out
= &buffers
[which_buffer
++];
595 which_buffer
%= ARRAY_SIZE(buffers
);
598 /* skip "committer", "author", "tagger", etc */
599 end_of_header
= strchr(*beg
, ' ');
601 BUG("malformed line fed to anonymize_ident_line: %.*s",
602 (int)(*end
- *beg
), *beg
);
604 strbuf_add(out
, *beg
, end_of_header
- *beg
);
606 if (!split_ident_line(&split
, end_of_header
, *end
- end_of_header
) &&
611 len
= split
.mail_end
- split
.name_begin
;
612 ident
= anonymize_str(&idents
, anonymize_ident
,
613 split
.name_begin
, len
);
614 strbuf_addstr(out
, ident
);
615 strbuf_addch(out
, ' ');
616 strbuf_add(out
, split
.date_begin
, split
.tz_end
- split
.date_begin
);
618 strbuf_addstr(out
, "Malformed Ident <malformed@example.com> 0 -0000");
622 *end
= out
->buf
+ out
->len
;
625 static void handle_commit(struct commit
*commit
, struct rev_info
*rev
,
626 struct string_list
*paths_of_changed_objects
)
628 int saved_output_format
= rev
->diffopt
.output_format
;
629 const char *commit_buffer
;
630 const char *author
, *author_end
, *committer
, *committer_end
;
631 const char *encoding
, *message
;
632 char *reencoded
= NULL
;
633 struct commit_list
*p
;
637 rev
->diffopt
.output_format
= DIFF_FORMAT_CALLBACK
;
639 parse_commit_or_die(commit
);
640 commit_buffer
= repo_get_commit_buffer(the_repository
, commit
, NULL
);
641 author
= strstr(commit_buffer
, "\nauthor ");
643 die("could not find author in commit %s",
644 oid_to_hex(&commit
->object
.oid
));
646 author_end
= strchrnul(author
, '\n');
647 committer
= strstr(author_end
, "\ncommitter ");
649 die("could not find committer in commit %s",
650 oid_to_hex(&commit
->object
.oid
));
652 committer_end
= strchrnul(committer
, '\n');
653 message
= strstr(committer_end
, "\n\n");
654 encoding
= find_encoding(committer_end
, message
);
658 if (commit
->parents
&&
659 (get_object_mark(&commit
->parents
->item
->object
) != 0 ||
660 reference_excluded_commits
) &&
662 parse_commit_or_die(commit
->parents
->item
);
663 diff_tree_oid(get_commit_tree_oid(commit
->parents
->item
),
664 get_commit_tree_oid(commit
), "", &rev
->diffopt
);
667 diff_root_tree_oid(get_commit_tree_oid(commit
),
670 /* Export the referenced blobs, and remember the marks. */
671 for (i
= 0; i
< diff_queued_diff
.nr
; i
++)
672 if (!S_ISGITLINK(diff_queued_diff
.queue
[i
]->two
->mode
))
673 export_blob(&diff_queued_diff
.queue
[i
]->two
->oid
);
675 refname
= *revision_sources_at(&revision_sources
, commit
);
677 * FIXME: string_list_remove() below for each ref is overall
678 * O(N^2). Compared to a history walk and diffing trees, this is
679 * just lost in the noise in practice. However, theoretically a
680 * repo may have enough refs for this to become slow.
682 string_list_remove(&extra_refs
, refname
, 0);
684 refname
= anonymize_refname(refname
);
685 anonymize_ident_line(&committer
, &committer_end
);
686 anonymize_ident_line(&author
, &author_end
);
689 mark_next_object(&commit
->object
);
691 reencoded
= anonymize_commit_message();
692 } else if (encoding
) {
693 switch(reencode_mode
) {
695 reencoded
= reencode_string(message
, "UTF-8", encoding
);
700 die("Encountered commit-specific encoding %s in commit "
701 "%s; use --reencode=[yes|no] to handle it",
702 encoding
, oid_to_hex(&commit
->object
.oid
));
705 if (!commit
->parents
)
706 printf("reset %s\n", refname
);
707 printf("commit %s\nmark :%"PRIu32
"\n", refname
, last_idnum
);
708 if (show_original_ids
)
709 printf("original-oid %s\n", oid_to_hex(&commit
->object
.oid
));
710 printf("%.*s\n%.*s\n",
711 (int)(author_end
- author
), author
,
712 (int)(committer_end
- committer
), committer
);
713 if (!reencoded
&& encoding
)
714 printf("encoding %s\n", encoding
);
715 printf("data %u\n%s",
717 ? strlen(reencoded
) : message
718 ? strlen(message
) : 0),
719 reencoded
? reencoded
: message
? message
: "");
721 repo_unuse_commit_buffer(the_repository
, commit
, commit_buffer
);
723 for (i
= 0, p
= commit
->parents
; p
; p
= p
->next
) {
724 struct object
*obj
= &p
->item
->object
;
725 int mark
= get_object_mark(obj
);
727 if (!mark
&& !reference_excluded_commits
)
734 printf(":%d\n", mark
);
738 anonymize_oid(oid_to_hex(&obj
->oid
)) :
739 oid_to_hex(&obj
->oid
));
744 printf("deleteall\n");
745 log_tree_diff_flush(rev
);
746 string_list_clear(paths_of_changed_objects
, 0);
747 rev
->diffopt
.output_format
= saved_output_format
;
754 static char *anonymize_tag(void)
757 struct strbuf out
= STRBUF_INIT
;
758 strbuf_addf(&out
, "tag message %d", counter
++);
759 return strbuf_detach(&out
, NULL
);
763 static void handle_tag(const char *name
, struct tag
*tag
)
766 enum object_type type
;
768 const char *tagger
, *tagger_end
, *message
;
769 size_t message_size
= 0;
770 struct object
*tagged
;
774 /* Trees have no identifier in fast-export output, thus we have no way
775 * to output tags of trees, tags of tags of trees, etc. Simply omit
778 tagged
= tag
->tagged
;
779 while (tagged
->type
== OBJ_TAG
) {
780 tagged
= ((struct tag
*)tagged
)->tagged
;
782 if (tagged
->type
== OBJ_TREE
) {
783 warning("Omitting tag %s,\nsince tags of trees (or tags of tags of trees, etc.) are not supported.",
784 oid_to_hex(&tag
->object
.oid
));
788 buf
= repo_read_object_file(the_repository
, &tag
->object
.oid
, &type
,
791 die("could not read tag %s", oid_to_hex(&tag
->object
.oid
));
792 message
= memmem(buf
, size
, "\n\n", 2);
795 message_size
= strlen(message
);
797 tagger
= memmem(buf
, message
? message
- buf
: size
, "\ntagger ", 8);
799 if (fake_missing_tagger
)
800 tagger
= "tagger Unspecified Tagger "
801 "<unspecified-tagger> 0 +0000";
804 tagger_end
= tagger
+ strlen(tagger
);
807 tagger_end
= strchrnul(tagger
, '\n');
809 anonymize_ident_line(&tagger
, &tagger_end
);
813 name
= anonymize_refname(name
);
815 static struct hashmap tags
;
816 message
= anonymize_str(&tags
, anonymize_tag
,
817 message
, message_size
);
818 message_size
= strlen(message
);
822 /* handle signed tags */
824 const char *signature
= strstr(message
,
825 "\n-----BEGIN PGP SIGNATURE-----\n");
827 switch(signed_tag_mode
) {
828 case SIGNED_TAG_ABORT
:
829 die("encountered signed tag %s; use "
830 "--signed-tags=<mode> to handle it",
831 oid_to_hex(&tag
->object
.oid
));
833 warning("exporting signed tag %s",
834 oid_to_hex(&tag
->object
.oid
));
839 warning("stripping signature from tag %s",
840 oid_to_hex(&tag
->object
.oid
));
843 message_size
= signature
+ 1 - message
;
848 /* handle tag->tagged having been filtered out due to paths specified */
849 tagged
= tag
->tagged
;
850 tagged_mark
= get_object_mark(tagged
);
852 switch(tag_of_filtered_mode
) {
853 case TAG_FILTERING_ABORT
:
854 die("tag %s tags unexported object; use "
855 "--tag-of-filtered-object=<mode> to handle it",
856 oid_to_hex(&tag
->object
.oid
));
858 /* Ignore this tag altogether */
862 if (tagged
->type
== OBJ_TAG
&& !mark_tags
) {
863 die(_("Error: Cannot export nested tags unless --mark-tags is specified."));
864 } else if (tagged
->type
== OBJ_COMMIT
) {
865 p
= rewrite_commit((struct commit
*)tagged
);
867 printf("reset %s\nfrom %s\n\n",
868 name
, oid_to_hex(null_oid()));
872 tagged_mark
= get_object_mark(&p
->object
);
874 /* tagged->type is either OBJ_BLOB or OBJ_TAG */
875 tagged_mark
= get_object_mark(tagged
);
880 if (tagged
->type
== OBJ_TAG
) {
881 printf("reset %s\nfrom %s\n\n",
882 name
, oid_to_hex(null_oid()));
884 skip_prefix(name
, "refs/tags/", &name
);
885 printf("tag %s\n", name
);
887 mark_next_object(&tag
->object
);
888 printf("mark :%"PRIu32
"\n", last_idnum
);
891 printf("from :%d\n", tagged_mark
);
893 printf("from %s\n", oid_to_hex(&tagged
->oid
));
895 if (show_original_ids
)
896 printf("original-oid %s\n", oid_to_hex(&tag
->object
.oid
));
897 printf("%.*s%sdata %d\n%.*s\n",
898 (int)(tagger_end
- tagger
), tagger
,
899 tagger
== tagger_end
? "" : "\n",
900 (int)message_size
, (int)message_size
, message
? message
: "");
904 static struct commit
*get_commit(struct rev_cmdline_entry
*e
, char *full_name
)
906 switch (e
->item
->type
) {
908 return (struct commit
*)e
->item
;
910 struct tag
*tag
= (struct tag
*)e
->item
;
912 /* handle nested tags */
913 while (tag
&& tag
->object
.type
== OBJ_TAG
) {
914 parse_object(the_repository
, &tag
->object
.oid
);
915 string_list_append(&tag_refs
, full_name
)->util
= tag
;
916 tag
= (struct tag
*)tag
->tagged
;
919 die("Tag %s points nowhere?", e
->name
);
920 return (struct commit
*)tag
;
927 static void get_tags_and_duplicates(struct rev_cmdline_info
*info
)
931 for (i
= 0; i
< info
->nr
; i
++) {
932 struct rev_cmdline_entry
*e
= info
->rev
+ i
;
933 struct object_id oid
;
934 struct commit
*commit
;
937 if (e
->flags
& UNINTERESTING
)
940 if (repo_dwim_ref(the_repository
, e
->name
, strlen(e
->name
),
941 &oid
, &full_name
, 0) != 1)
946 private = apply_refspecs(&refspecs
, full_name
);
953 commit
= get_commit(e
, full_name
);
955 warning("%s: Unexpected object of type %s, skipping.",
957 type_name(e
->item
->type
));
961 switch(commit
->object
.type
) {
965 export_blob(&commit
->object
.oid
);
967 default: /* OBJ_TAG (nested tags) is already handled */
968 warning("Tag points to object of unexpected type %s, skipping.",
969 type_name(commit
->object
.type
));
974 * Make sure this ref gets properly updated eventually, whether
975 * through a commit or manually at the end.
977 if (e
->item
->type
!= OBJ_TAG
)
978 string_list_append(&extra_refs
, full_name
)->util
= commit
;
980 if (!*revision_sources_at(&revision_sources
, commit
))
981 *revision_sources_at(&revision_sources
, commit
) = full_name
;
984 string_list_sort(&extra_refs
);
985 string_list_remove_duplicates(&extra_refs
, 0);
988 static void handle_tags_and_duplicates(struct string_list
*extras
)
990 struct commit
*commit
;
993 for (i
= extras
->nr
- 1; i
>= 0; i
--) {
994 const char *name
= extras
->items
[i
].string
;
995 struct object
*object
= extras
->items
[i
].util
;
998 switch (object
->type
) {
1000 handle_tag(name
, (struct tag
*)object
);
1004 name
= anonymize_refname(name
);
1005 /* create refs pointing to already seen commits */
1006 commit
= rewrite_commit((struct commit
*)object
);
1009 * Neither this object nor any of its
1010 * ancestors touch any relevant paths, so
1011 * it has been filtered to nothing. Delete
1014 printf("reset %s\nfrom %s\n\n",
1015 name
, oid_to_hex(null_oid()));
1019 mark
= get_object_mark(&commit
->object
);
1022 * Getting here means we have a commit which
1023 * was excluded by a negative refspec (e.g.
1024 * fast-export ^HEAD HEAD). If we are
1025 * referencing excluded commits, set the ref
1026 * to the exact commit. Otherwise, the user
1027 * wants the branch exported but every commit
1028 * in its history to be deleted, which basically
1029 * just means deletion of the ref.
1031 if (!reference_excluded_commits
) {
1032 /* delete the ref */
1033 printf("reset %s\nfrom %s\n\n",
1034 name
, oid_to_hex(null_oid()));
1037 /* set ref to commit using oid, not mark */
1038 printf("reset %s\nfrom %s\n\n", name
,
1039 oid_to_hex(&commit
->object
.oid
));
1043 printf("reset %s\nfrom :%d\n\n", name
, mark
1051 static void export_marks(char *file
)
1055 struct decoration_entry
*deco
= idnums
.entries
;
1059 f
= fopen_for_writing(file
);
1061 die_errno("Unable to open marks file %s for writing.", file
);
1063 for (i
= 0; i
< idnums
.size
; i
++) {
1064 if (deco
->base
&& deco
->base
->type
== 1) {
1065 mark
= ptr_to_mark(deco
->decoration
);
1066 if (fprintf(f
, ":%"PRIu32
" %s\n", mark
,
1067 oid_to_hex(&deco
->base
->oid
)) < 0) {
1078 error("Unable to write marks file %s.", file
);
1081 static void import_marks(char *input_file
, int check_exists
)
1087 if (check_exists
&& stat(input_file
, &sb
))
1090 f
= xfopen(input_file
, "r");
1091 while (fgets(line
, sizeof(line
), f
)) {
1093 char *line_end
, *mark_end
;
1094 struct object_id oid
;
1095 struct object
*object
;
1096 struct commit
*commit
;
1097 enum object_type type
;
1099 line_end
= strchr(line
, '\n');
1100 if (line
[0] != ':' || !line_end
)
1101 die("corrupt mark line: %s", line
);
1104 mark
= strtoumax(line
+ 1, &mark_end
, 10);
1105 if (!mark
|| mark_end
== line
+ 1
1106 || *mark_end
!= ' ' || get_oid_hex(mark_end
+ 1, &oid
))
1107 die("corrupt mark line: %s", line
);
1109 if (last_idnum
< mark
)
1112 type
= oid_object_info(the_repository
, &oid
, NULL
);
1114 die("object not found: %s", oid_to_hex(&oid
));
1116 if (type
!= OBJ_COMMIT
)
1120 commit
= lookup_commit(the_repository
, &oid
);
1122 die("not a commit? can't happen: %s", oid_to_hex(&oid
));
1124 object
= &commit
->object
;
1126 if (object
->flags
& SHOWN
)
1127 error("Object %s already has a mark", oid_to_hex(&oid
));
1129 mark_object(object
, mark
);
1131 object
->flags
|= SHOWN
;
1136 static void handle_deletes(void)
1139 for (i
= 0; i
< refspecs
.nr
; i
++) {
1140 struct refspec_item
*refspec
= &refspecs
.items
[i
];
1144 printf("reset %s\nfrom %s\n\n",
1145 refspec
->dst
, oid_to_hex(null_oid()));
1149 static int parse_opt_anonymize_map(const struct option
*opt
,
1150 const char *arg
, int unset
)
1152 struct hashmap
*map
= opt
->value
;
1153 const char *delim
, *value
;
1156 BUG_ON_OPT_NEG(unset
);
1158 delim
= strchr(arg
, ':');
1160 keylen
= delim
- arg
;
1163 keylen
= strlen(arg
);
1167 if (!keylen
|| !*value
)
1168 return error(_("--anonymize-map token cannot be empty"));
1170 add_anonymized_entry(map
, memhash(arg
, keylen
), arg
, keylen
,
1176 int cmd_fast_export(int argc
, const char **argv
, const char *prefix
)
1178 struct rev_info revs
;
1179 struct commit
*commit
;
1180 char *export_filename
= NULL
,
1181 *import_filename
= NULL
,
1182 *import_filename_if_exists
= NULL
;
1183 uint32_t lastimportid
;
1184 struct string_list refspecs_list
= STRING_LIST_INIT_NODUP
;
1185 struct string_list paths_of_changed_objects
= STRING_LIST_INIT_DUP
;
1186 struct option options
[] = {
1187 OPT_INTEGER(0, "progress", &progress
,
1188 N_("show progress after <n> objects")),
1189 OPT_CALLBACK(0, "signed-tags", &signed_tag_mode
, N_("mode"),
1190 N_("select handling of signed tags"),
1191 parse_opt_signed_tag_mode
),
1192 OPT_CALLBACK(0, "tag-of-filtered-object", &tag_of_filtered_mode
, N_("mode"),
1193 N_("select handling of tags that tag filtered objects"),
1194 parse_opt_tag_of_filtered_mode
),
1195 OPT_CALLBACK(0, "reencode", &reencode_mode
, N_("mode"),
1196 N_("select handling of commit messages in an alternate encoding"),
1197 parse_opt_reencode_mode
),
1198 OPT_STRING(0, "export-marks", &export_filename
, N_("file"),
1199 N_("dump marks to this file")),
1200 OPT_STRING(0, "import-marks", &import_filename
, N_("file"),
1201 N_("import marks from this file")),
1202 OPT_STRING(0, "import-marks-if-exists",
1203 &import_filename_if_exists
,
1205 N_("import marks from this file if it exists")),
1206 OPT_BOOL(0, "fake-missing-tagger", &fake_missing_tagger
,
1207 N_("fake a tagger when tags lack one")),
1208 OPT_BOOL(0, "full-tree", &full_tree
,
1209 N_("output full tree for each commit")),
1210 OPT_BOOL(0, "use-done-feature", &use_done_feature
,
1211 N_("use the done feature to terminate the stream")),
1212 OPT_BOOL(0, "no-data", &no_data
, N_("skip output of blob data")),
1213 OPT_STRING_LIST(0, "refspec", &refspecs_list
, N_("refspec"),
1214 N_("apply refspec to exported refs")),
1215 OPT_BOOL(0, "anonymize", &anonymize
, N_("anonymize output")),
1216 OPT_CALLBACK_F(0, "anonymize-map", &anonymized_seeds
, N_("from:to"),
1217 N_("convert <from> to <to> in anonymized output"),
1218 PARSE_OPT_NONEG
, parse_opt_anonymize_map
),
1219 OPT_BOOL(0, "reference-excluded-parents",
1220 &reference_excluded_commits
, N_("reference parents which are not in fast-export stream by object id")),
1221 OPT_BOOL(0, "show-original-ids", &show_original_ids
,
1222 N_("show original object ids of blobs/commits")),
1223 OPT_BOOL(0, "mark-tags", &mark_tags
,
1224 N_("label tags with mark ids")),
1230 usage_with_options (fast_export_usage
, options
);
1232 /* we handle encodings */
1233 git_config(git_default_config
, NULL
);
1235 repo_init_revisions(the_repository
, &revs
, prefix
);
1236 init_revision_sources(&revision_sources
);
1237 revs
.topo_order
= 1;
1238 revs
.sources
= &revision_sources
;
1239 revs
.rewrite_parents
= 1;
1240 argc
= parse_options(argc
, argv
, prefix
, options
, fast_export_usage
,
1241 PARSE_OPT_KEEP_ARGV0
| PARSE_OPT_KEEP_UNKNOWN_OPT
);
1242 argc
= setup_revisions(argc
, argv
, &revs
, NULL
);
1244 usage_with_options (fast_export_usage
, options
);
1246 if (anonymized_seeds
.cmpfn
&& !anonymize
)
1247 die(_("the option '%s' requires '%s'"), "--anonymize-map", "--anonymize");
1249 if (refspecs_list
.nr
) {
1252 for (i
= 0; i
< refspecs_list
.nr
; i
++)
1253 refspec_append(&refspecs
, refspecs_list
.items
[i
].string
);
1255 string_list_clear(&refspecs_list
, 1);
1258 if (use_done_feature
)
1259 printf("feature done\n");
1261 if (import_filename
&& import_filename_if_exists
)
1262 die(_("options '%s' and '%s' cannot be used together"), "--import-marks", "--import-marks-if-exists");
1263 if (import_filename
)
1264 import_marks(import_filename
, 0);
1265 else if (import_filename_if_exists
)
1266 import_marks(import_filename_if_exists
, 1);
1267 lastimportid
= last_idnum
;
1269 if (import_filename
&& revs
.prune_data
.nr
)
1272 get_tags_and_duplicates(&revs
.cmdline
);
1274 if (prepare_revision_walk(&revs
))
1275 die("revision walk setup failed");
1278 revs
.diffopt
.format_callback
= show_filemodify
;
1279 revs
.diffopt
.format_callback_data
= &paths_of_changed_objects
;
1280 revs
.diffopt
.flags
.recursive
= 1;
1281 revs
.diffopt
.no_free
= 1;
1282 while ((commit
= get_revision(&revs
)))
1283 handle_commit(commit
, &revs
, &paths_of_changed_objects
);
1285 handle_tags_and_duplicates(&extra_refs
);
1286 handle_tags_and_duplicates(&tag_refs
);
1289 if (export_filename
&& lastimportid
!= last_idnum
)
1290 export_marks(export_filename
);
1292 if (use_done_feature
)
1295 refspec_clear(&refspecs
);
1296 release_revisions(&revs
);