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 void show_filemodify(struct diff_queue_struct
*q
,
151 struct diff_options
*options
, void *data
)
154 for (i
= 0; i
< q
->nr
; i
++) {
155 struct diff_filespec
*ospec
= q
->queue
[i
]->one
;
156 struct diff_filespec
*spec
= q
->queue
[i
]->two
;
158 switch (q
->queue
[i
]->status
) {
159 case DIFF_STATUS_DELETED
:
160 printf("D %s\n", spec
->path
);
163 case DIFF_STATUS_COPIED
:
164 case DIFF_STATUS_RENAMED
:
165 printf("%c \"%s\" \"%s\"\n", q
->queue
[i
]->status
,
166 ospec
->path
, spec
->path
);
168 if (!hashcmp(ospec
->sha1
, spec
->sha1
) &&
169 ospec
->mode
== spec
->mode
)
173 case DIFF_STATUS_TYPE_CHANGED
:
174 case DIFF_STATUS_MODIFIED
:
175 case DIFF_STATUS_ADDED
:
177 * Links refer to objects in another repositories;
178 * output the SHA-1 verbatim.
180 if (no_data
|| S_ISGITLINK(spec
->mode
))
181 printf("M %06o %s %s\n", spec
->mode
,
182 sha1_to_hex(spec
->sha1
), spec
->path
);
184 struct object
*object
= lookup_object(spec
->sha1
);
185 printf("M %06o :%d %s\n", spec
->mode
,
186 get_object_mark(object
), spec
->path
);
191 die("Unexpected comparison status '%c' for %s, %s",
193 ospec
->path
? ospec
->path
: "none",
194 spec
->path
? spec
->path
: "none");
199 static const char *find_encoding(const char *begin
, const char *end
)
201 const char *needle
= "\nencoding ";
204 bol
= memmem(begin
, end
? end
- begin
: strlen(begin
),
205 needle
, strlen(needle
));
207 return git_commit_encoding
;
208 bol
+= strlen(needle
);
209 eol
= strchrnul(bol
, '\n');
214 static void handle_commit(struct commit
*commit
, struct rev_info
*rev
)
216 int saved_output_format
= rev
->diffopt
.output_format
;
217 const char *author
, *author_end
, *committer
, *committer_end
;
218 const char *encoding
, *message
;
219 char *reencoded
= NULL
;
220 struct commit_list
*p
;
223 rev
->diffopt
.output_format
= DIFF_FORMAT_CALLBACK
;
225 parse_commit(commit
);
226 author
= strstr(commit
->buffer
, "\nauthor ");
228 die ("Could not find author in commit %s",
229 sha1_to_hex(commit
->object
.sha1
));
231 author_end
= strchrnul(author
, '\n');
232 committer
= strstr(author_end
, "\ncommitter ");
234 die ("Could not find committer in commit %s",
235 sha1_to_hex(commit
->object
.sha1
));
237 committer_end
= strchrnul(committer
, '\n');
238 message
= strstr(committer_end
, "\n\n");
239 encoding
= find_encoding(committer_end
, message
);
243 if (commit
->parents
&&
244 get_object_mark(&commit
->parents
->item
->object
) != 0) {
245 parse_commit(commit
->parents
->item
);
246 diff_tree_sha1(commit
->parents
->item
->tree
->object
.sha1
,
247 commit
->tree
->object
.sha1
, "", &rev
->diffopt
);
250 diff_root_tree_sha1(commit
->tree
->object
.sha1
,
253 /* Export the referenced blobs, and remember the marks. */
254 for (i
= 0; i
< diff_queued_diff
.nr
; i
++)
255 if (!S_ISGITLINK(diff_queued_diff
.queue
[i
]->two
->mode
))
256 handle_object(diff_queued_diff
.queue
[i
]->two
->sha1
);
258 mark_next_object(&commit
->object
);
259 if (!is_encoding_utf8(encoding
))
260 reencoded
= reencode_string(message
, "UTF-8", encoding
);
261 if (!commit
->parents
)
262 printf("reset %s\n", (const char*)commit
->util
);
263 printf("commit %s\nmark :%"PRIu32
"\n%.*s\n%.*s\ndata %u\n%s",
264 (const char *)commit
->util
, last_idnum
,
265 (int)(author_end
- author
), author
,
266 (int)(committer_end
- committer
), committer
,
268 ? strlen(reencoded
) : message
269 ? strlen(message
) : 0),
270 reencoded
? reencoded
: message
? message
: "");
273 for (i
= 0, p
= commit
->parents
; p
; p
= p
->next
) {
274 int mark
= get_object_mark(&p
->item
->object
);
278 printf("from :%d\n", mark
);
280 printf("merge :%d\n", mark
);
284 log_tree_diff_flush(rev
);
285 rev
->diffopt
.output_format
= saved_output_format
;
292 static void handle_tail(struct object_array
*commits
, struct rev_info
*revs
)
294 struct commit
*commit
;
295 while (commits
->nr
) {
296 commit
= (struct commit
*)commits
->objects
[commits
->nr
- 1].item
;
297 if (has_unshown_parent(commit
))
299 handle_commit(commit
, revs
);
304 static void handle_tag(const char *name
, struct tag
*tag
)
307 enum object_type type
;
309 const char *tagger
, *tagger_end
, *message
;
310 size_t message_size
= 0;
311 struct object
*tagged
;
315 /* Trees have no identifer in fast-export output, thus we have no way
316 * to output tags of trees, tags of tags of trees, etc. Simply omit
319 tagged
= tag
->tagged
;
320 while (tagged
->type
== OBJ_TAG
) {
321 tagged
= ((struct tag
*)tagged
)->tagged
;
323 if (tagged
->type
== OBJ_TREE
) {
324 warning("Omitting tag %s,\nsince tags of trees (or tags of tags of trees, etc.) are not supported.",
325 sha1_to_hex(tag
->object
.sha1
));
329 buf
= read_sha1_file(tag
->object
.sha1
, &type
, &size
);
331 die ("Could not read tag %s", sha1_to_hex(tag
->object
.sha1
));
332 message
= memmem(buf
, size
, "\n\n", 2);
335 message_size
= strlen(message
);
337 tagger
= memmem(buf
, message
? message
- buf
: size
, "\ntagger ", 8);
339 if (fake_missing_tagger
)
340 tagger
= "tagger Unspecified Tagger "
341 "<unspecified-tagger> 0 +0000";
344 tagger_end
= tagger
+ strlen(tagger
);
347 tagger_end
= strchrnul(tagger
, '\n');
350 /* handle signed tags */
352 const char *signature
= strstr(message
,
353 "\n-----BEGIN PGP SIGNATURE-----\n");
355 switch(signed_tag_mode
) {
357 die ("Encountered signed tag %s; use "
358 "--signed-tag=<mode> to handle it.",
359 sha1_to_hex(tag
->object
.sha1
));
361 warning ("Exporting signed tag %s",
362 sha1_to_hex(tag
->object
.sha1
));
367 message_size
= signature
+ 1 - message
;
372 /* handle tag->tagged having been filtered out due to paths specified */
373 tagged
= tag
->tagged
;
374 tagged_mark
= get_object_mark(tagged
);
376 switch(tag_of_filtered_mode
) {
378 die ("Tag %s tags unexported object; use "
379 "--tag-of-filtered-object=<mode> to handle it.",
380 sha1_to_hex(tag
->object
.sha1
));
382 /* Ignore this tag altogether */
385 if (tagged
->type
!= OBJ_COMMIT
) {
386 die ("Tag %s tags unexported %s!",
387 sha1_to_hex(tag
->object
.sha1
),
388 typename(tagged
->type
));
390 p
= (struct commit
*)tagged
;
392 if (p
->parents
&& p
->parents
->next
)
394 if (p
->object
.flags
& UNINTERESTING
)
396 if (!(p
->object
.flags
& TREESAME
))
399 die ("Can't find replacement commit for tag %s\n",
400 sha1_to_hex(tag
->object
.sha1
));
401 p
= p
->parents
->item
;
403 tagged_mark
= get_object_mark(&p
->object
);
407 if (!prefixcmp(name
, "refs/tags/"))
409 printf("tag %s\nfrom :%d\n%.*s%sdata %d\n%.*s\n",
411 (int)(tagger_end
- tagger
), tagger
,
412 tagger
== tagger_end
? "" : "\n",
413 (int)message_size
, (int)message_size
, message
? message
: "");
416 static void get_tags_and_duplicates(struct object_array
*pending
,
417 struct string_list
*extra_refs
)
422 for (i
= 0; i
< pending
->nr
; i
++) {
423 struct object_array_entry
*e
= pending
->objects
+ i
;
424 unsigned char sha1
[20];
425 struct commit
*commit
= commit
;
428 if (dwim_ref(e
->name
, strlen(e
->name
), sha1
, &full_name
) != 1)
431 switch (e
->item
->type
) {
433 commit
= (struct commit
*)e
->item
;
436 tag
= (struct tag
*)e
->item
;
438 /* handle nested tags */
439 while (tag
&& tag
->object
.type
== OBJ_TAG
) {
440 parse_object(tag
->object
.sha1
);
441 string_list_append(full_name
, extra_refs
)->util
= tag
;
442 tag
= (struct tag
*)tag
->tagged
;
445 die ("Tag %s points nowhere?", e
->name
);
446 switch(tag
->object
.type
) {
448 commit
= (struct commit
*)tag
;
451 handle_object(tag
->object
.sha1
);
453 default: /* OBJ_TAG (nested tags) is already handled */
454 warning("Tag points to object of unexpected type %s, skipping.",
455 typename(tag
->object
.type
));
460 warning("%s: Unexpected object of type %s, skipping.",
462 typename(e
->item
->type
));
466 /* more than one name for the same object */
467 string_list_append(full_name
, extra_refs
)->util
= commit
;
469 commit
->util
= full_name
;
473 static void handle_tags_and_duplicates(struct string_list
*extra_refs
)
475 struct commit
*commit
;
478 for (i
= extra_refs
->nr
- 1; i
>= 0; i
--) {
479 const char *name
= extra_refs
->items
[i
].string
;
480 struct object
*object
= extra_refs
->items
[i
].util
;
481 switch (object
->type
) {
483 handle_tag(name
, (struct tag
*)object
);
486 /* create refs pointing to already seen commits */
487 commit
= (struct commit
*)object
;
488 printf("reset %s\nfrom :%d\n\n", name
,
489 get_object_mark(&commit
->object
));
496 static void export_marks(char *file
)
500 struct object_decoration
*deco
= idnums
.hash
;
504 f
= fopen(file
, "w");
506 die_errno("Unable to open marks file %s for writing.", file
);
508 for (i
= 0; i
< idnums
.size
; i
++) {
509 if (deco
->base
&& deco
->base
->type
== 1) {
510 mark
= ptr_to_mark(deco
->decoration
);
511 if (fprintf(f
, ":%"PRIu32
" %s\n", mark
,
512 sha1_to_hex(deco
->base
->sha1
)) < 0) {
523 error("Unable to write marks file %s.", file
);
526 static void import_marks(char *input_file
)
529 FILE *f
= fopen(input_file
, "r");
531 die_errno("cannot read '%s'", input_file
);
533 while (fgets(line
, sizeof(line
), f
)) {
535 char *line_end
, *mark_end
;
536 unsigned char sha1
[20];
537 struct object
*object
;
539 line_end
= strchr(line
, '\n');
540 if (line
[0] != ':' || !line_end
)
541 die("corrupt mark line: %s", line
);
544 mark
= strtoumax(line
+ 1, &mark_end
, 10);
545 if (!mark
|| mark_end
== line
+ 1
546 || *mark_end
!= ' ' || get_sha1(mark_end
+ 1, sha1
))
547 die("corrupt mark line: %s", line
);
549 object
= parse_object(sha1
);
551 die ("Could not read blob %s", sha1_to_hex(sha1
));
553 if (object
->flags
& SHOWN
)
554 error("Object %s already has a mark", sha1
);
556 mark_object(object
, mark
);
557 if (last_idnum
< mark
)
560 object
->flags
|= SHOWN
;
565 int cmd_fast_export(int argc
, const char **argv
, const char *prefix
)
567 struct rev_info revs
;
568 struct object_array commits
= { 0, 0, NULL
};
569 struct string_list extra_refs
= { NULL
, 0, 0, 0 };
570 struct commit
*commit
;
571 char *export_filename
= NULL
, *import_filename
= NULL
;
572 struct option options
[] = {
573 OPT_INTEGER(0, "progress", &progress
,
574 "show progress after <n> objects"),
575 OPT_CALLBACK(0, "signed-tags", &signed_tag_mode
, "mode",
576 "select handling of signed tags",
577 parse_opt_signed_tag_mode
),
578 OPT_CALLBACK(0, "tag-of-filtered-object", &tag_of_filtered_mode
, "mode",
579 "select handling of tags that tag filtered objects",
580 parse_opt_tag_of_filtered_mode
),
581 OPT_STRING(0, "export-marks", &export_filename
, "FILE",
582 "Dump marks to this file"),
583 OPT_STRING(0, "import-marks", &import_filename
, "FILE",
584 "Import marks from this file"),
585 OPT_BOOLEAN(0, "fake-missing-tagger", &fake_missing_tagger
,
586 "Fake a tagger when tags lack one"),
587 { OPTION_NEGBIT
, 0, "data", &no_data
, NULL
,
588 "Skip output of blob data",
589 PARSE_OPT_NOARG
| PARSE_OPT_NEGHELP
, NULL
, 1 },
594 usage_with_options (fast_export_usage
, options
);
596 /* we handle encodings */
597 git_config(git_default_config
, NULL
);
599 init_revisions(&revs
, prefix
);
601 revs
.show_source
= 1;
602 revs
.rewrite_parents
= 1;
603 argc
= setup_revisions(argc
, argv
, &revs
, NULL
);
604 argc
= parse_options(argc
, argv
, prefix
, options
, fast_export_usage
, 0);
606 usage_with_options (fast_export_usage
, options
);
609 import_marks(import_filename
);
611 get_tags_and_duplicates(&revs
.pending
, &extra_refs
);
613 if (prepare_revision_walk(&revs
))
614 die("revision walk setup failed");
615 revs
.diffopt
.format_callback
= show_filemodify
;
616 DIFF_OPT_SET(&revs
.diffopt
, RECURSIVE
);
617 while ((commit
= get_revision(&revs
))) {
618 if (has_unshown_parent(commit
)) {
619 add_object_array(&commit
->object
, NULL
, &commits
);
622 handle_commit(commit
, &revs
);
623 handle_tail(&commits
, &revs
);
627 handle_tags_and_duplicates(&extra_refs
);
630 export_marks(export_filename
);