2 * "git fast-export" builtin command
4 * Copyright (C) 2007 Johannes E. Schindelin
16 #include "string-list.h"
18 #include "parse-options.h"
20 static const char *fast_export_usage
[] = {
21 "git fast-export [rev-list-opts]",
26 static enum { ABORT
, VERBATIM
, WARN
, STRIP
} signed_tag_mode
= ABORT
;
27 static enum { ERROR
, DROP
, REWRITE
} tag_of_filtered_mode
= ABORT
;
28 static int fake_missing_tagger
;
31 static int parse_opt_signed_tag_mode(const struct option
*opt
,
32 const char *arg
, int unset
)
34 if (unset
|| !strcmp(arg
, "abort"))
35 signed_tag_mode
= ABORT
;
36 else if (!strcmp(arg
, "verbatim") || !strcmp(arg
, "ignore"))
37 signed_tag_mode
= VERBATIM
;
38 else if (!strcmp(arg
, "warn"))
39 signed_tag_mode
= WARN
;
40 else if (!strcmp(arg
, "strip"))
41 signed_tag_mode
= STRIP
;
43 return error("Unknown signed-tag mode: %s", arg
);
47 static int parse_opt_tag_of_filtered_mode(const struct option
*opt
,
48 const char *arg
, int unset
)
50 if (unset
|| !strcmp(arg
, "abort"))
51 tag_of_filtered_mode
= ABORT
;
52 else if (!strcmp(arg
, "drop"))
53 tag_of_filtered_mode
= DROP
;
54 else if (!strcmp(arg
, "rewrite"))
55 tag_of_filtered_mode
= REWRITE
;
57 return error("Unknown tag-of-filtered mode: %s", arg
);
61 static struct decoration idnums
;
62 static uint32_t last_idnum
;
64 static int has_unshown_parent(struct commit
*commit
)
66 struct commit_list
*parent
;
68 for (parent
= commit
->parents
; parent
; parent
= parent
->next
)
69 if (!(parent
->item
->object
.flags
& SHOWN
) &&
70 !(parent
->item
->object
.flags
& UNINTERESTING
))
75 /* Since intptr_t is C99, we do not use it here */
76 static inline uint32_t *mark_to_ptr(uint32_t mark
)
78 return ((uint32_t *)NULL
) + mark
;
81 static inline uint32_t ptr_to_mark(void * mark
)
83 return (uint32_t *)mark
- (uint32_t *)NULL
;
86 static inline void mark_object(struct object
*object
, uint32_t mark
)
88 add_decoration(&idnums
, object
, mark_to_ptr(mark
));
91 static inline void mark_next_object(struct object
*object
)
93 mark_object(object
, ++last_idnum
);
96 static int get_object_mark(struct object
*object
)
98 void *decoration
= lookup_decoration(&idnums
, object
);
101 return ptr_to_mark(decoration
);
104 static void show_progress(void)
106 static int counter
= 0;
109 if ((++counter
% progress
) == 0)
110 printf("progress %d objects\n", counter
);
113 static void handle_object(const unsigned char *sha1
)
116 enum object_type type
;
118 struct object
*object
;
123 if (is_null_sha1(sha1
))
126 object
= parse_object(sha1
);
128 die ("Could not read blob %s", sha1_to_hex(sha1
));
130 if (object
->flags
& SHOWN
)
133 buf
= read_sha1_file(sha1
, &type
, &size
);
135 die ("Could not read blob %s", sha1_to_hex(sha1
));
137 mark_next_object(object
);
139 printf("blob\nmark :%"PRIu32
"\ndata %lu\n", last_idnum
, size
);
140 if (size
&& fwrite(buf
, size
, 1, stdout
) != 1)
141 die_errno ("Could not write blob '%s'", sha1_to_hex(sha1
));
146 object
->flags
|= SHOWN
;
150 static int depth_first(const void *a_
, const void *b_
)
152 const struct diff_filepair
*a
= *((const struct diff_filepair
**)a_
);
153 const struct diff_filepair
*b
= *((const struct diff_filepair
**)b_
);
154 const char *name_a
, *name_b
;
155 int len_a
, len_b
, len
;
158 name_a
= a
->one
? a
->one
->path
: a
->two
->path
;
159 name_b
= b
->one
? b
->one
->path
: b
->two
->path
;
161 len_a
= strlen(name_a
);
162 len_b
= strlen(name_b
);
163 len
= (len_a
< len_b
) ? len_a
: len_b
;
165 /* strcmp will sort 'd' before 'd/e', we want 'd/e' before 'd' */
166 cmp
= memcmp(name_a
, name_b
, len
);
169 return (len_b
- len_a
);
172 static void show_filemodify(struct diff_queue_struct
*q
,
173 struct diff_options
*options
, void *data
)
178 * Handle files below a directory first, in case they are all deleted
179 * and the directory changes to a file or symlink.
181 qsort(q
->queue
, q
->nr
, sizeof(q
->queue
[0]), depth_first
);
183 for (i
= 0; i
< q
->nr
; i
++) {
184 struct diff_filespec
*ospec
= q
->queue
[i
]->one
;
185 struct diff_filespec
*spec
= q
->queue
[i
]->two
;
187 switch (q
->queue
[i
]->status
) {
188 case DIFF_STATUS_DELETED
:
189 printf("D %s\n", spec
->path
);
192 case DIFF_STATUS_COPIED
:
193 case DIFF_STATUS_RENAMED
:
194 printf("%c \"%s\" \"%s\"\n", q
->queue
[i
]->status
,
195 ospec
->path
, spec
->path
);
197 if (!hashcmp(ospec
->sha1
, spec
->sha1
) &&
198 ospec
->mode
== spec
->mode
)
202 case DIFF_STATUS_TYPE_CHANGED
:
203 case DIFF_STATUS_MODIFIED
:
204 case DIFF_STATUS_ADDED
:
206 * Links refer to objects in another repositories;
207 * output the SHA-1 verbatim.
209 if (no_data
|| S_ISGITLINK(spec
->mode
))
210 printf("M %06o %s %s\n", spec
->mode
,
211 sha1_to_hex(spec
->sha1
), spec
->path
);
213 struct object
*object
= lookup_object(spec
->sha1
);
214 printf("M %06o :%d %s\n", spec
->mode
,
215 get_object_mark(object
), spec
->path
);
220 die("Unexpected comparison status '%c' for %s, %s",
222 ospec
->path
? ospec
->path
: "none",
223 spec
->path
? spec
->path
: "none");
228 static const char *find_encoding(const char *begin
, const char *end
)
230 const char *needle
= "\nencoding ";
233 bol
= memmem(begin
, end
? end
- begin
: strlen(begin
),
234 needle
, strlen(needle
));
236 return git_commit_encoding
;
237 bol
+= strlen(needle
);
238 eol
= strchrnul(bol
, '\n');
243 static void handle_commit(struct commit
*commit
, struct rev_info
*rev
)
245 int saved_output_format
= rev
->diffopt
.output_format
;
246 const char *author
, *author_end
, *committer
, *committer_end
;
247 const char *encoding
, *message
;
248 char *reencoded
= NULL
;
249 struct commit_list
*p
;
252 rev
->diffopt
.output_format
= DIFF_FORMAT_CALLBACK
;
254 parse_commit(commit
);
255 author
= strstr(commit
->buffer
, "\nauthor ");
257 die ("Could not find author in commit %s",
258 sha1_to_hex(commit
->object
.sha1
));
260 author_end
= strchrnul(author
, '\n');
261 committer
= strstr(author_end
, "\ncommitter ");
263 die ("Could not find committer in commit %s",
264 sha1_to_hex(commit
->object
.sha1
));
266 committer_end
= strchrnul(committer
, '\n');
267 message
= strstr(committer_end
, "\n\n");
268 encoding
= find_encoding(committer_end
, message
);
272 if (commit
->parents
&&
273 get_object_mark(&commit
->parents
->item
->object
) != 0) {
274 parse_commit(commit
->parents
->item
);
275 diff_tree_sha1(commit
->parents
->item
->tree
->object
.sha1
,
276 commit
->tree
->object
.sha1
, "", &rev
->diffopt
);
279 diff_root_tree_sha1(commit
->tree
->object
.sha1
,
282 /* Export the referenced blobs, and remember the marks. */
283 for (i
= 0; i
< diff_queued_diff
.nr
; i
++)
284 if (!S_ISGITLINK(diff_queued_diff
.queue
[i
]->two
->mode
))
285 handle_object(diff_queued_diff
.queue
[i
]->two
->sha1
);
287 mark_next_object(&commit
->object
);
288 if (!is_encoding_utf8(encoding
))
289 reencoded
= reencode_string(message
, "UTF-8", encoding
);
290 if (!commit
->parents
)
291 printf("reset %s\n", (const char*)commit
->util
);
292 printf("commit %s\nmark :%"PRIu32
"\n%.*s\n%.*s\ndata %u\n%s",
293 (const char *)commit
->util
, last_idnum
,
294 (int)(author_end
- author
), author
,
295 (int)(committer_end
- committer
), committer
,
297 ? strlen(reencoded
) : message
298 ? strlen(message
) : 0),
299 reencoded
? reencoded
: message
? message
: "");
302 for (i
= 0, p
= commit
->parents
; p
; p
= p
->next
) {
303 int mark
= get_object_mark(&p
->item
->object
);
307 printf("from :%d\n", mark
);
309 printf("merge :%d\n", mark
);
313 log_tree_diff_flush(rev
);
314 rev
->diffopt
.output_format
= saved_output_format
;
321 static void handle_tail(struct object_array
*commits
, struct rev_info
*revs
)
323 struct commit
*commit
;
324 while (commits
->nr
) {
325 commit
= (struct commit
*)commits
->objects
[commits
->nr
- 1].item
;
326 if (has_unshown_parent(commit
))
328 handle_commit(commit
, revs
);
333 static void handle_tag(const char *name
, struct tag
*tag
)
336 enum object_type type
;
338 const char *tagger
, *tagger_end
, *message
;
339 size_t message_size
= 0;
340 struct object
*tagged
;
344 /* Trees have no identifer in fast-export output, thus we have no way
345 * to output tags of trees, tags of tags of trees, etc. Simply omit
348 tagged
= tag
->tagged
;
349 while (tagged
->type
== OBJ_TAG
) {
350 tagged
= ((struct tag
*)tagged
)->tagged
;
352 if (tagged
->type
== OBJ_TREE
) {
353 warning("Omitting tag %s,\nsince tags of trees (or tags of tags of trees, etc.) are not supported.",
354 sha1_to_hex(tag
->object
.sha1
));
358 buf
= read_sha1_file(tag
->object
.sha1
, &type
, &size
);
360 die ("Could not read tag %s", sha1_to_hex(tag
->object
.sha1
));
361 message
= memmem(buf
, size
, "\n\n", 2);
364 message_size
= strlen(message
);
366 tagger
= memmem(buf
, message
? message
- buf
: size
, "\ntagger ", 8);
368 if (fake_missing_tagger
)
369 tagger
= "tagger Unspecified Tagger "
370 "<unspecified-tagger> 0 +0000";
373 tagger_end
= tagger
+ strlen(tagger
);
376 tagger_end
= strchrnul(tagger
, '\n');
379 /* handle signed tags */
381 const char *signature
= strstr(message
,
382 "\n-----BEGIN PGP SIGNATURE-----\n");
384 switch(signed_tag_mode
) {
386 die ("Encountered signed tag %s; use "
387 "--signed-tag=<mode> to handle it.",
388 sha1_to_hex(tag
->object
.sha1
));
390 warning ("Exporting signed tag %s",
391 sha1_to_hex(tag
->object
.sha1
));
396 message_size
= signature
+ 1 - message
;
401 /* handle tag->tagged having been filtered out due to paths specified */
402 tagged
= tag
->tagged
;
403 tagged_mark
= get_object_mark(tagged
);
405 switch(tag_of_filtered_mode
) {
407 die ("Tag %s tags unexported object; use "
408 "--tag-of-filtered-object=<mode> to handle it.",
409 sha1_to_hex(tag
->object
.sha1
));
411 /* Ignore this tag altogether */
414 if (tagged
->type
!= OBJ_COMMIT
) {
415 die ("Tag %s tags unexported %s!",
416 sha1_to_hex(tag
->object
.sha1
),
417 typename(tagged
->type
));
419 p
= (struct commit
*)tagged
;
421 if (p
->parents
&& p
->parents
->next
)
423 if (p
->object
.flags
& UNINTERESTING
)
425 if (!(p
->object
.flags
& TREESAME
))
428 die ("Can't find replacement commit for tag %s\n",
429 sha1_to_hex(tag
->object
.sha1
));
430 p
= p
->parents
->item
;
432 tagged_mark
= get_object_mark(&p
->object
);
436 if (!prefixcmp(name
, "refs/tags/"))
438 printf("tag %s\nfrom :%d\n%.*s%sdata %d\n%.*s\n",
440 (int)(tagger_end
- tagger
), tagger
,
441 tagger
== tagger_end
? "" : "\n",
442 (int)message_size
, (int)message_size
, message
? message
: "");
445 static void get_tags_and_duplicates(struct object_array
*pending
,
446 struct string_list
*extra_refs
)
451 for (i
= 0; i
< pending
->nr
; i
++) {
452 struct object_array_entry
*e
= pending
->objects
+ i
;
453 unsigned char sha1
[20];
454 struct commit
*commit
= commit
;
457 if (dwim_ref(e
->name
, strlen(e
->name
), sha1
, &full_name
) != 1)
460 switch (e
->item
->type
) {
462 commit
= (struct commit
*)e
->item
;
465 tag
= (struct tag
*)e
->item
;
467 /* handle nested tags */
468 while (tag
&& tag
->object
.type
== OBJ_TAG
) {
469 parse_object(tag
->object
.sha1
);
470 string_list_append(full_name
, extra_refs
)->util
= tag
;
471 tag
= (struct tag
*)tag
->tagged
;
474 die ("Tag %s points nowhere?", e
->name
);
475 switch(tag
->object
.type
) {
477 commit
= (struct commit
*)tag
;
480 handle_object(tag
->object
.sha1
);
482 default: /* OBJ_TAG (nested tags) is already handled */
483 warning("Tag points to object of unexpected type %s, skipping.",
484 typename(tag
->object
.type
));
489 warning("%s: Unexpected object of type %s, skipping.",
491 typename(e
->item
->type
));
495 /* more than one name for the same object */
496 string_list_append(full_name
, extra_refs
)->util
= commit
;
498 commit
->util
= full_name
;
502 static void handle_tags_and_duplicates(struct string_list
*extra_refs
)
504 struct commit
*commit
;
507 for (i
= extra_refs
->nr
- 1; i
>= 0; i
--) {
508 const char *name
= extra_refs
->items
[i
].string
;
509 struct object
*object
= extra_refs
->items
[i
].util
;
510 switch (object
->type
) {
512 handle_tag(name
, (struct tag
*)object
);
515 /* create refs pointing to already seen commits */
516 commit
= (struct commit
*)object
;
517 printf("reset %s\nfrom :%d\n\n", name
,
518 get_object_mark(&commit
->object
));
525 static void export_marks(char *file
)
529 struct object_decoration
*deco
= idnums
.hash
;
533 f
= fopen(file
, "w");
535 die_errno("Unable to open marks file %s for writing.", file
);
537 for (i
= 0; i
< idnums
.size
; i
++) {
538 if (deco
->base
&& deco
->base
->type
== 1) {
539 mark
= ptr_to_mark(deco
->decoration
);
540 if (fprintf(f
, ":%"PRIu32
" %s\n", mark
,
541 sha1_to_hex(deco
->base
->sha1
)) < 0) {
552 error("Unable to write marks file %s.", file
);
555 static void import_marks(char *input_file
)
558 FILE *f
= fopen(input_file
, "r");
560 die_errno("cannot read '%s'", input_file
);
562 while (fgets(line
, sizeof(line
), f
)) {
564 char *line_end
, *mark_end
;
565 unsigned char sha1
[20];
566 struct object
*object
;
568 line_end
= strchr(line
, '\n');
569 if (line
[0] != ':' || !line_end
)
570 die("corrupt mark line: %s", line
);
573 mark
= strtoumax(line
+ 1, &mark_end
, 10);
574 if (!mark
|| mark_end
== line
+ 1
575 || *mark_end
!= ' ' || get_sha1(mark_end
+ 1, sha1
))
576 die("corrupt mark line: %s", line
);
578 object
= parse_object(sha1
);
580 die ("Could not read blob %s", sha1_to_hex(sha1
));
582 if (object
->flags
& SHOWN
)
583 error("Object %s already has a mark", sha1
);
585 mark_object(object
, mark
);
586 if (last_idnum
< mark
)
589 object
->flags
|= SHOWN
;
594 int cmd_fast_export(int argc
, const char **argv
, const char *prefix
)
596 struct rev_info revs
;
597 struct object_array commits
= { 0, 0, NULL
};
598 struct string_list extra_refs
= { NULL
, 0, 0, 0 };
599 struct commit
*commit
;
600 char *export_filename
= NULL
, *import_filename
= NULL
;
601 struct option options
[] = {
602 OPT_INTEGER(0, "progress", &progress
,
603 "show progress after <n> objects"),
604 OPT_CALLBACK(0, "signed-tags", &signed_tag_mode
, "mode",
605 "select handling of signed tags",
606 parse_opt_signed_tag_mode
),
607 OPT_CALLBACK(0, "tag-of-filtered-object", &tag_of_filtered_mode
, "mode",
608 "select handling of tags that tag filtered objects",
609 parse_opt_tag_of_filtered_mode
),
610 OPT_STRING(0, "export-marks", &export_filename
, "FILE",
611 "Dump marks to this file"),
612 OPT_STRING(0, "import-marks", &import_filename
, "FILE",
613 "Import marks from this file"),
614 OPT_BOOLEAN(0, "fake-missing-tagger", &fake_missing_tagger
,
615 "Fake a tagger when tags lack one"),
616 { OPTION_NEGBIT
, 0, "data", &no_data
, NULL
,
617 "Skip output of blob data",
618 PARSE_OPT_NOARG
| PARSE_OPT_NEGHELP
, NULL
, 1 },
623 usage_with_options (fast_export_usage
, options
);
625 /* we handle encodings */
626 git_config(git_default_config
, NULL
);
628 init_revisions(&revs
, prefix
);
630 revs
.show_source
= 1;
631 revs
.rewrite_parents
= 1;
632 argc
= setup_revisions(argc
, argv
, &revs
, NULL
);
633 argc
= parse_options(argc
, argv
, prefix
, options
, fast_export_usage
, 0);
635 usage_with_options (fast_export_usage
, options
);
638 import_marks(import_filename
);
640 get_tags_and_duplicates(&revs
.pending
, &extra_refs
);
642 if (prepare_revision_walk(&revs
))
643 die("revision walk setup failed");
644 revs
.diffopt
.format_callback
= show_filemodify
;
645 DIFF_OPT_SET(&revs
.diffopt
, RECURSIVE
);
646 while ((commit
= get_revision(&revs
))) {
647 if (has_unshown_parent(commit
)) {
648 add_object_array(&commit
->object
, NULL
, &commits
);
651 handle_commit(commit
, &revs
);
652 handle_tail(&commits
, &revs
);
656 handle_tags_and_duplicates(&extra_refs
);
659 export_marks(export_filename
);