2 (See Documentation/git-fast-import.txt for maintained documentation.)
3 Format of STDIN stream:
15 new_blob ::= 'blob' lf
18 file_content ::= data;
20 new_commit ::= 'commit' sp ref_str lf
22 ('author' (sp name)? sp '<' email '>' sp when lf)?
23 'committer' (sp name)? sp '<' email '>' sp when lf
25 ('from' sp commit-ish lf)?
26 ('merge' sp commit-ish lf)*
31 ls ::= 'ls' sp '"' quoted(path) '"' lf;
33 file_change ::= file_clr
39 file_clr ::= 'deleteall' lf;
40 file_del ::= 'D' sp path_str lf;
41 file_rnm ::= 'R' sp path_str sp path_str lf;
42 file_cpy ::= 'C' sp path_str sp path_str lf;
43 file_obm ::= 'M' sp mode sp (hexsha1 | idnum) sp path_str lf;
44 file_inm ::= 'M' sp mode sp 'inline' sp path_str lf
46 note_obm ::= 'N' sp (hexsha1 | idnum) sp commit-ish lf;
47 note_inm ::= 'N' sp 'inline' sp commit-ish lf
50 new_tag ::= 'tag' sp tag_str lf
51 'from' sp commit-ish lf
52 ('tagger' (sp name)? sp '<' email '>' sp when lf)?
56 reset_branch ::= 'reset' sp ref_str lf
57 ('from' sp commit-ish lf)?
60 checkpoint ::= 'checkpoint' lf
63 progress ::= 'progress' sp not_lf* lf
66 # note: the first idnum in a stream should be 1 and subsequent
67 # idnums should not have gaps between values as this will cause
68 # the stream parser to reserve space for the gapped values. An
69 # idnum can be updated in the future to a new object by issuing
70 # a new mark directive with the old idnum.
72 mark ::= 'mark' sp idnum lf;
73 data ::= (delimited_data | exact_data)
76 # note: delim may be any string but must not contain lf.
77 # data_line may contain any data but must not be exactly
79 delimited_data ::= 'data' sp '<<' delim lf
83 # note: declen indicates the length of binary_data in bytes.
84 # declen does not include the lf preceding the binary data.
86 exact_data ::= 'data' sp declen lf
89 # note: quoted strings are C-style quoting supporting \c for
90 # common escapes of 'c' (e..g \n, \t, \\, \") or \nnn where nnn
91 # is the signed byte value in octal. Note that the only
92 # characters which must actually be escaped to protect the
93 # stream formatting is: \, " and LF. Otherwise these values
96 commit-ish ::= (ref_str | hexsha1 | sha1exp_str | idnum);
98 sha1exp_str ::= sha1exp;
100 path_str ::= path | '"' quoted(path) '"' ;
101 mode ::= '100644' | '644'
106 declen ::= # unsigned 32 bit value, ascii base10 notation;
107 bigint ::= # unsigned integer value, ascii base10 notation;
108 binary_data ::= # file content, not interpreted;
110 when ::= raw_when | rfc2822_when;
111 raw_when ::= ts sp tz;
112 rfc2822_when ::= # Valid RFC 2822 date and time;
114 sp ::= # ASCII space character;
115 lf ::= # ASCII newline (LF) character;
117 # note: a colon (':') must precede the numerical value assigned to
118 # an idnum. This is to distinguish it from a ref or tag name as
119 # GIT does not permit ':' in ref or tag strings.
121 idnum ::= ':' bigint;
122 path ::= # GIT style file path, e.g. "a/b/c";
123 ref ::= # GIT ref name, e.g. "refs/heads/MOZ_GECKO_EXPERIMENT";
124 tag ::= # GIT tag name, e.g. "FIREFOX_1_5";
125 sha1exp ::= # Any valid GIT SHA1 expression;
126 hexsha1 ::= # SHA1 in hexadecimal format;
128 # note: name and email are UTF8 strings, however name must not
129 # contain '<' or lf and email must not contain any of the
130 # following: '<', '>', lf.
132 name ::= # valid GIT author/committer name;
133 email ::= # valid GIT author/committer email;
134 ts ::= # time since the epoch in seconds, ascii base10 notation;
135 tz ::= # GIT style timezone;
137 # note: comments, get-mark, ls-tree, and cat-blob requests may
138 # appear anywhere in the input, except within a data command. Any
139 # form of the data command always escapes the related input from
140 # comment processing.
142 # In case it is not clear, the '#' that starts the comment
143 # must be the first character on that line (an lf
147 get_mark ::= 'get-mark' sp idnum lf;
148 cat_blob ::= 'cat-blob' sp (hexsha1 | idnum) lf;
149 ls_tree ::= 'ls' sp (hexsha1 | idnum) sp path_str lf;
151 comment ::= '#' not_lf* lf;
152 not_lf ::= # Any byte that is not ASCII newline (LF);
157 #include "repository.h"
159 #include "lockfile.h"
167 #include "csum-file.h"
170 #include "run-command.h"
171 #include "packfile.h"
172 #include "object-store.h"
173 #include "mem-pool.h"
175 #define PACK_ID_BITS 16
176 #define MAX_PACK_ID ((1<<PACK_ID_BITS)-1)
177 #define DEPTH_BITS 13
178 #define MAX_DEPTH ((1<<DEPTH_BITS)-1)
181 * We abuse the setuid bit on directories to mean "do not delta".
183 #define NO_DELTA S_ISUID
185 struct object_entry
{
186 struct pack_idx_entry idx
;
187 struct object_entry
*next
;
188 uint32_t type
: TYPE_BITS
,
189 pack_id
: PACK_ID_BITS
,
193 struct object_entry_pool
{
194 struct object_entry_pool
*next_pool
;
195 struct object_entry
*next_free
;
196 struct object_entry
*end
;
197 struct object_entry entries
[FLEX_ARRAY
]; /* more */
202 struct object_entry
*marked
[1024];
203 struct mark_set
*sets
[1024];
212 unsigned no_swap
: 1;
216 struct atom_str
*next_atom
;
217 unsigned short str_len
;
218 char str_dat
[FLEX_ARRAY
]; /* more */
223 struct tree_content
*tree
;
224 struct atom_str
*name
;
225 struct tree_entry_ms
{
227 struct object_id oid
;
231 struct tree_content
{
232 unsigned int entry_capacity
; /* must match avail_tree_content */
233 unsigned int entry_count
;
234 unsigned int delta_depth
;
235 struct tree_entry
*entries
[FLEX_ARRAY
]; /* more */
238 struct avail_tree_content
{
239 unsigned int entry_capacity
; /* must match tree_content */
240 struct avail_tree_content
*next_avail
;
244 struct branch
*table_next_branch
;
245 struct branch
*active_next_branch
;
247 struct tree_entry branch_tree
;
248 uintmax_t last_commit
;
252 unsigned pack_id
: PACK_ID_BITS
;
253 struct object_id oid
;
257 struct tag
*next_tag
;
259 unsigned int pack_id
;
260 struct object_id oid
;
264 struct hash_list
*next
;
265 struct object_id oid
;
274 struct recent_command
{
275 struct recent_command
*prev
;
276 struct recent_command
*next
;
280 /* Configured limits on output */
281 static unsigned long max_depth
= 50;
282 static off_t max_packsize
;
283 static int unpack_limit
= 100;
284 static int force_update
;
286 /* Stats and misc. counters */
287 static uintmax_t alloc_count
;
288 static uintmax_t marks_set_count
;
289 static uintmax_t object_count_by_type
[1 << TYPE_BITS
];
290 static uintmax_t duplicate_count_by_type
[1 << TYPE_BITS
];
291 static uintmax_t delta_count_by_type
[1 << TYPE_BITS
];
292 static uintmax_t delta_count_attempts_by_type
[1 << TYPE_BITS
];
293 static unsigned long object_count
;
294 static unsigned long branch_count
;
295 static unsigned long branch_load_count
;
297 static FILE *pack_edges
;
298 static unsigned int show_stats
= 1;
299 static int global_argc
;
300 static const char **global_argv
;
303 static struct mem_pool fi_mem_pool
= {NULL
, 2*1024*1024 -
304 sizeof(struct mp_block
), 0 };
306 /* Atom management */
307 static unsigned int atom_table_sz
= 4451;
308 static unsigned int atom_cnt
;
309 static struct atom_str
**atom_table
;
311 /* The .pack file being generated */
312 static struct pack_idx_option pack_idx_opts
;
313 static unsigned int pack_id
;
314 static struct hashfile
*pack_file
;
315 static struct packed_git
*pack_data
;
316 static struct packed_git
**all_packs
;
317 static off_t pack_size
;
319 /* Table of objects we've written. */
320 static unsigned int object_entry_alloc
= 5000;
321 static struct object_entry_pool
*blocks
;
322 static struct object_entry
*object_table
[1 << 16];
323 static struct mark_set
*marks
;
324 static const char *export_marks_file
;
325 static const char *import_marks_file
;
326 static int import_marks_file_from_stream
;
327 static int import_marks_file_ignore_missing
;
328 static int import_marks_file_done
;
329 static int relative_marks_paths
;
332 static struct last_object last_blob
= { STRBUF_INIT
, 0, 0, 0 };
334 /* Tree management */
335 static unsigned int tree_entry_alloc
= 1000;
336 static void *avail_tree_entry
;
337 static unsigned int avail_tree_table_sz
= 100;
338 static struct avail_tree_content
**avail_tree_table
;
339 static size_t tree_entry_allocd
;
340 static struct strbuf old_tree
= STRBUF_INIT
;
341 static struct strbuf new_tree
= STRBUF_INIT
;
344 static unsigned long max_active_branches
= 5;
345 static unsigned long cur_active_branches
;
346 static unsigned long branch_table_sz
= 1039;
347 static struct branch
**branch_table
;
348 static struct branch
*active_branches
;
351 static struct tag
*first_tag
;
352 static struct tag
*last_tag
;
354 /* Input stream parsing */
355 static whenspec_type whenspec
= WHENSPEC_RAW
;
356 static struct strbuf command_buf
= STRBUF_INIT
;
357 static int unread_command_buf
;
358 static struct recent_command cmd_hist
= {&cmd_hist
, &cmd_hist
, NULL
};
359 static struct recent_command
*cmd_tail
= &cmd_hist
;
360 static struct recent_command
*rc_free
;
361 static unsigned int cmd_save
= 100;
362 static uintmax_t next_mark
;
363 static struct strbuf new_data
= STRBUF_INIT
;
364 static int seen_data_command
;
365 static int require_explicit_termination
;
367 /* Signal handling */
368 static volatile sig_atomic_t checkpoint_requested
;
370 /* Where to write output of cat-blob commands */
371 static int cat_blob_fd
= STDOUT_FILENO
;
373 static void parse_argv(void);
374 static void parse_get_mark(const char *p
);
375 static void parse_cat_blob(const char *p
);
376 static void parse_ls(const char *p
, struct branch
*b
);
378 static void write_branch_report(FILE *rpt
, struct branch
*b
)
380 fprintf(rpt
, "%s:\n", b
->name
);
382 fprintf(rpt
, " status :");
384 fputs(" active", rpt
);
385 if (b
->branch_tree
.tree
)
386 fputs(" loaded", rpt
);
387 if (is_null_oid(&b
->branch_tree
.versions
[1].oid
))
388 fputs(" dirty", rpt
);
391 fprintf(rpt
, " tip commit : %s\n", oid_to_hex(&b
->oid
));
392 fprintf(rpt
, " old tree : %s\n",
393 oid_to_hex(&b
->branch_tree
.versions
[0].oid
));
394 fprintf(rpt
, " cur tree : %s\n",
395 oid_to_hex(&b
->branch_tree
.versions
[1].oid
));
396 fprintf(rpt
, " commit clock: %" PRIuMAX
"\n", b
->last_commit
);
398 fputs(" last pack : ", rpt
);
399 if (b
->pack_id
< MAX_PACK_ID
)
400 fprintf(rpt
, "%u", b
->pack_id
);
406 static void dump_marks_helper(FILE *, uintmax_t, struct mark_set
*);
408 static void write_crash_report(const char *err
)
410 char *loc
= git_pathdup("fast_import_crash_%"PRIuMAX
, (uintmax_t) getpid());
411 FILE *rpt
= fopen(loc
, "w");
414 struct recent_command
*rc
;
417 error_errno("can't write crash report %s", loc
);
422 fprintf(stderr
, "fast-import: dumping crash report to %s\n", loc
);
424 fprintf(rpt
, "fast-import crash report:\n");
425 fprintf(rpt
, " fast-import process: %"PRIuMAX
"\n", (uintmax_t) getpid());
426 fprintf(rpt
, " parent process : %"PRIuMAX
"\n", (uintmax_t) getppid());
427 fprintf(rpt
, " at %s\n", show_date(time(NULL
), 0, DATE_MODE(ISO8601
)));
430 fputs("fatal: ", rpt
);
435 fputs("Most Recent Commands Before Crash\n", rpt
);
436 fputs("---------------------------------\n", rpt
);
437 for (rc
= cmd_hist
.next
; rc
!= &cmd_hist
; rc
= rc
->next
) {
438 if (rc
->next
== &cmd_hist
)
447 fputs("Active Branch LRU\n", rpt
);
448 fputs("-----------------\n", rpt
);
449 fprintf(rpt
, " active_branches = %lu cur, %lu max\n",
451 max_active_branches
);
453 fputs(" pos clock name\n", rpt
);
454 fputs(" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n", rpt
);
455 for (b
= active_branches
, lu
= 0; b
; b
= b
->active_next_branch
)
456 fprintf(rpt
, " %2lu) %6" PRIuMAX
" %s\n",
457 ++lu
, b
->last_commit
, b
->name
);
460 fputs("Inactive Branches\n", rpt
);
461 fputs("-----------------\n", rpt
);
462 for (lu
= 0; lu
< branch_table_sz
; lu
++) {
463 for (b
= branch_table
[lu
]; b
; b
= b
->table_next_branch
)
464 write_branch_report(rpt
, b
);
470 fputs("Annotated Tags\n", rpt
);
471 fputs("--------------\n", rpt
);
472 for (tg
= first_tag
; tg
; tg
= tg
->next_tag
) {
473 fputs(oid_to_hex(&tg
->oid
), rpt
);
475 fputs(tg
->name
, rpt
);
481 fputs("Marks\n", rpt
);
482 fputs("-----\n", rpt
);
483 if (export_marks_file
)
484 fprintf(rpt
, " exported to %s\n", export_marks_file
);
486 dump_marks_helper(rpt
, 0, marks
);
489 fputs("-------------------\n", rpt
);
490 fputs("END OF CRASH REPORT\n", rpt
);
495 static void end_packfile(void);
496 static void unkeep_all_packs(void);
497 static void dump_marks(void);
499 static NORETURN
void die_nicely(const char *err
, va_list params
)
502 char message
[2 * PATH_MAX
];
504 vsnprintf(message
, sizeof(message
), err
, params
);
505 fputs("fatal: ", stderr
);
506 fputs(message
, stderr
);
511 write_crash_report(message
);
519 #ifndef SIGUSR1 /* Windows, for example */
521 static void set_checkpoint_signal(void)
527 static void checkpoint_signal(int signo
)
529 checkpoint_requested
= 1;
532 static void set_checkpoint_signal(void)
536 memset(&sa
, 0, sizeof(sa
));
537 sa
.sa_handler
= checkpoint_signal
;
538 sigemptyset(&sa
.sa_mask
);
539 sa
.sa_flags
= SA_RESTART
;
540 sigaction(SIGUSR1
, &sa
, NULL
);
545 static void alloc_objects(unsigned int cnt
)
547 struct object_entry_pool
*b
;
549 b
= xmalloc(sizeof(struct object_entry_pool
)
550 + cnt
* sizeof(struct object_entry
));
551 b
->next_pool
= blocks
;
552 b
->next_free
= b
->entries
;
553 b
->end
= b
->entries
+ cnt
;
558 static struct object_entry
*new_object(struct object_id
*oid
)
560 struct object_entry
*e
;
562 if (blocks
->next_free
== blocks
->end
)
563 alloc_objects(object_entry_alloc
);
565 e
= blocks
->next_free
++;
566 oidcpy(&e
->idx
.oid
, oid
);
570 static struct object_entry
*find_object(struct object_id
*oid
)
572 unsigned int h
= oid
->hash
[0] << 8 | oid
->hash
[1];
573 struct object_entry
*e
;
574 for (e
= object_table
[h
]; e
; e
= e
->next
)
575 if (!oidcmp(oid
, &e
->idx
.oid
))
580 static struct object_entry
*insert_object(struct object_id
*oid
)
582 unsigned int h
= oid
->hash
[0] << 8 | oid
->hash
[1];
583 struct object_entry
*e
= object_table
[h
];
586 if (!oidcmp(oid
, &e
->idx
.oid
))
592 e
->next
= object_table
[h
];
598 static void invalidate_pack_id(unsigned int id
)
604 for (h
= 0; h
< ARRAY_SIZE(object_table
); h
++) {
605 struct object_entry
*e
;
607 for (e
= object_table
[h
]; e
; e
= e
->next
)
608 if (e
->pack_id
== id
)
609 e
->pack_id
= MAX_PACK_ID
;
612 for (lu
= 0; lu
< branch_table_sz
; lu
++) {
615 for (b
= branch_table
[lu
]; b
; b
= b
->table_next_branch
)
616 if (b
->pack_id
== id
)
617 b
->pack_id
= MAX_PACK_ID
;
620 for (t
= first_tag
; t
; t
= t
->next_tag
)
621 if (t
->pack_id
== id
)
622 t
->pack_id
= MAX_PACK_ID
;
625 static unsigned int hc_str(const char *s
, size_t len
)
633 static char *pool_strdup(const char *s
)
635 size_t len
= strlen(s
) + 1;
636 char *r
= mem_pool_alloc(&fi_mem_pool
, len
);
641 static void insert_mark(uintmax_t idnum
, struct object_entry
*oe
)
643 struct mark_set
*s
= marks
;
644 while ((idnum
>> s
->shift
) >= 1024) {
645 s
= mem_pool_calloc(&fi_mem_pool
, 1, sizeof(struct mark_set
));
646 s
->shift
= marks
->shift
+ 10;
647 s
->data
.sets
[0] = marks
;
651 uintmax_t i
= idnum
>> s
->shift
;
652 idnum
-= i
<< s
->shift
;
653 if (!s
->data
.sets
[i
]) {
654 s
->data
.sets
[i
] = mem_pool_calloc(&fi_mem_pool
, 1, sizeof(struct mark_set
));
655 s
->data
.sets
[i
]->shift
= s
->shift
- 10;
659 if (!s
->data
.marked
[idnum
])
661 s
->data
.marked
[idnum
] = oe
;
664 static struct object_entry
*find_mark(uintmax_t idnum
)
666 uintmax_t orig_idnum
= idnum
;
667 struct mark_set
*s
= marks
;
668 struct object_entry
*oe
= NULL
;
669 if ((idnum
>> s
->shift
) < 1024) {
670 while (s
&& s
->shift
) {
671 uintmax_t i
= idnum
>> s
->shift
;
672 idnum
-= i
<< s
->shift
;
676 oe
= s
->data
.marked
[idnum
];
679 die("mark :%" PRIuMAX
" not declared", orig_idnum
);
683 static struct atom_str
*to_atom(const char *s
, unsigned short len
)
685 unsigned int hc
= hc_str(s
, len
) % atom_table_sz
;
688 for (c
= atom_table
[hc
]; c
; c
= c
->next_atom
)
689 if (c
->str_len
== len
&& !strncmp(s
, c
->str_dat
, len
))
692 c
= mem_pool_alloc(&fi_mem_pool
, sizeof(struct atom_str
) + len
+ 1);
694 memcpy(c
->str_dat
, s
, len
);
696 c
->next_atom
= atom_table
[hc
];
702 static struct branch
*lookup_branch(const char *name
)
704 unsigned int hc
= hc_str(name
, strlen(name
)) % branch_table_sz
;
707 for (b
= branch_table
[hc
]; b
; b
= b
->table_next_branch
)
708 if (!strcmp(name
, b
->name
))
713 static struct branch
*new_branch(const char *name
)
715 unsigned int hc
= hc_str(name
, strlen(name
)) % branch_table_sz
;
716 struct branch
*b
= lookup_branch(name
);
719 die("Invalid attempt to create duplicate branch: %s", name
);
720 if (check_refname_format(name
, REFNAME_ALLOW_ONELEVEL
))
721 die("Branch name doesn't conform to GIT standards: %s", name
);
723 b
= mem_pool_calloc(&fi_mem_pool
, 1, sizeof(struct branch
));
724 b
->name
= pool_strdup(name
);
725 b
->table_next_branch
= branch_table
[hc
];
726 b
->branch_tree
.versions
[0].mode
= S_IFDIR
;
727 b
->branch_tree
.versions
[1].mode
= S_IFDIR
;
730 b
->pack_id
= MAX_PACK_ID
;
731 branch_table
[hc
] = b
;
736 static unsigned int hc_entries(unsigned int cnt
)
738 cnt
= cnt
& 7 ? (cnt
/ 8) + 1 : cnt
/ 8;
739 return cnt
< avail_tree_table_sz
? cnt
: avail_tree_table_sz
- 1;
742 static struct tree_content
*new_tree_content(unsigned int cnt
)
744 struct avail_tree_content
*f
, *l
= NULL
;
745 struct tree_content
*t
;
746 unsigned int hc
= hc_entries(cnt
);
748 for (f
= avail_tree_table
[hc
]; f
; l
= f
, f
= f
->next_avail
)
749 if (f
->entry_capacity
>= cnt
)
754 l
->next_avail
= f
->next_avail
;
756 avail_tree_table
[hc
] = f
->next_avail
;
758 cnt
= cnt
& 7 ? ((cnt
/ 8) + 1) * 8 : cnt
;
759 f
= mem_pool_alloc(&fi_mem_pool
, sizeof(*t
) + sizeof(t
->entries
[0]) * cnt
);
760 f
->entry_capacity
= cnt
;
763 t
= (struct tree_content
*)f
;
769 static void release_tree_entry(struct tree_entry
*e
);
770 static void release_tree_content(struct tree_content
*t
)
772 struct avail_tree_content
*f
= (struct avail_tree_content
*)t
;
773 unsigned int hc
= hc_entries(f
->entry_capacity
);
774 f
->next_avail
= avail_tree_table
[hc
];
775 avail_tree_table
[hc
] = f
;
778 static void release_tree_content_recursive(struct tree_content
*t
)
781 for (i
= 0; i
< t
->entry_count
; i
++)
782 release_tree_entry(t
->entries
[i
]);
783 release_tree_content(t
);
786 static struct tree_content
*grow_tree_content(
787 struct tree_content
*t
,
790 struct tree_content
*r
= new_tree_content(t
->entry_count
+ amt
);
791 r
->entry_count
= t
->entry_count
;
792 r
->delta_depth
= t
->delta_depth
;
793 memcpy(r
->entries
,t
->entries
,t
->entry_count
*sizeof(t
->entries
[0]));
794 release_tree_content(t
);
798 static struct tree_entry
*new_tree_entry(void)
800 struct tree_entry
*e
;
802 if (!avail_tree_entry
) {
803 unsigned int n
= tree_entry_alloc
;
804 tree_entry_allocd
+= n
* sizeof(struct tree_entry
);
806 avail_tree_entry
= e
;
808 *((void**)e
) = e
+ 1;
814 e
= avail_tree_entry
;
815 avail_tree_entry
= *((void**)e
);
819 static void release_tree_entry(struct tree_entry
*e
)
822 release_tree_content_recursive(e
->tree
);
823 *((void**)e
) = avail_tree_entry
;
824 avail_tree_entry
= e
;
827 static struct tree_content
*dup_tree_content(struct tree_content
*s
)
829 struct tree_content
*d
;
830 struct tree_entry
*a
, *b
;
835 d
= new_tree_content(s
->entry_count
);
836 for (i
= 0; i
< s
->entry_count
; i
++) {
838 b
= new_tree_entry();
839 memcpy(b
, a
, sizeof(*a
));
840 if (a
->tree
&& is_null_oid(&b
->versions
[1].oid
))
841 b
->tree
= dup_tree_content(a
->tree
);
846 d
->entry_count
= s
->entry_count
;
847 d
->delta_depth
= s
->delta_depth
;
852 static void start_packfile(void)
854 struct strbuf tmp_file
= STRBUF_INIT
;
855 struct packed_git
*p
;
856 struct pack_header hdr
;
859 pack_fd
= odb_mkstemp(&tmp_file
, "pack/tmp_pack_XXXXXX");
860 FLEX_ALLOC_STR(p
, pack_name
, tmp_file
.buf
);
861 strbuf_release(&tmp_file
);
863 p
->pack_fd
= pack_fd
;
865 pack_file
= hashfd(pack_fd
, p
->pack_name
);
867 hdr
.hdr_signature
= htonl(PACK_SIGNATURE
);
868 hdr
.hdr_version
= htonl(2);
870 hashwrite(pack_file
, &hdr
, sizeof(hdr
));
873 pack_size
= sizeof(hdr
);
876 REALLOC_ARRAY(all_packs
, pack_id
+ 1);
877 all_packs
[pack_id
] = p
;
880 static const char *create_index(void)
883 struct pack_idx_entry
**idx
, **c
, **last
;
884 struct object_entry
*e
;
885 struct object_entry_pool
*o
;
887 /* Build the table of object IDs. */
888 ALLOC_ARRAY(idx
, object_count
);
890 for (o
= blocks
; o
; o
= o
->next_pool
)
891 for (e
= o
->next_free
; e
-- != o
->entries
;)
892 if (pack_id
== e
->pack_id
)
894 last
= idx
+ object_count
;
896 die("internal consistency error creating the index");
898 tmpfile
= write_idx_file(NULL
, idx
, object_count
, &pack_idx_opts
, pack_data
->sha1
);
903 static char *keep_pack(const char *curr_index_name
)
905 static const char *keep_msg
= "fast-import";
906 struct strbuf name
= STRBUF_INIT
;
909 odb_pack_name(&name
, pack_data
->sha1
, "keep");
910 keep_fd
= odb_pack_keep(name
.buf
);
912 die_errno("cannot create keep file");
913 write_or_die(keep_fd
, keep_msg
, strlen(keep_msg
));
915 die_errno("failed to write keep file");
917 odb_pack_name(&name
, pack_data
->sha1
, "pack");
918 if (finalize_object_file(pack_data
->pack_name
, name
.buf
))
919 die("cannot store pack file");
921 odb_pack_name(&name
, pack_data
->sha1
, "idx");
922 if (finalize_object_file(curr_index_name
, name
.buf
))
923 die("cannot store index file");
924 free((void *)curr_index_name
);
925 return strbuf_detach(&name
, NULL
);
928 static void unkeep_all_packs(void)
930 struct strbuf name
= STRBUF_INIT
;
933 for (k
= 0; k
< pack_id
; k
++) {
934 struct packed_git
*p
= all_packs
[k
];
935 odb_pack_name(&name
, p
->sha1
, "keep");
936 unlink_or_warn(name
.buf
);
938 strbuf_release(&name
);
941 static int loosen_small_pack(const struct packed_git
*p
)
943 struct child_process unpack
= CHILD_PROCESS_INIT
;
945 if (lseek(p
->pack_fd
, 0, SEEK_SET
) < 0)
946 die_errno("Failed seeking to start of '%s'", p
->pack_name
);
948 unpack
.in
= p
->pack_fd
;
950 unpack
.stdout_to_stderr
= 1;
951 argv_array_push(&unpack
.args
, "unpack-objects");
953 argv_array_push(&unpack
.args
, "-q");
955 return run_command(&unpack
);
958 static void end_packfile(void)
962 if (running
|| !pack_data
)
966 clear_delta_base_cache();
968 struct packed_git
*new_p
;
969 struct object_id cur_pack_oid
;
975 close_pack_windows(pack_data
);
976 finalize_hashfile(pack_file
, cur_pack_oid
.hash
, 0);
977 fixup_pack_header_footer(pack_data
->pack_fd
, pack_data
->sha1
,
978 pack_data
->pack_name
, object_count
,
979 cur_pack_oid
.hash
, pack_size
);
981 if (object_count
<= unpack_limit
) {
982 if (!loosen_small_pack(pack_data
)) {
983 invalidate_pack_id(pack_id
);
988 close(pack_data
->pack_fd
);
989 idx_name
= keep_pack(create_index());
991 /* Register the packfile with core git's machinery. */
992 new_p
= add_packed_git(idx_name
, strlen(idx_name
), 1);
994 die("core git rejected index %s", idx_name
);
995 all_packs
[pack_id
] = new_p
;
996 install_packed_git(the_repository
, new_p
);
999 /* Print the boundary */
1001 fprintf(pack_edges
, "%s:", new_p
->pack_name
);
1002 for (i
= 0; i
< branch_table_sz
; i
++) {
1003 for (b
= branch_table
[i
]; b
; b
= b
->table_next_branch
) {
1004 if (b
->pack_id
== pack_id
)
1005 fprintf(pack_edges
, " %s",
1006 oid_to_hex(&b
->oid
));
1009 for (t
= first_tag
; t
; t
= t
->next_tag
) {
1010 if (t
->pack_id
== pack_id
)
1011 fprintf(pack_edges
, " %s",
1012 oid_to_hex(&t
->oid
));
1014 fputc('\n', pack_edges
);
1022 close(pack_data
->pack_fd
);
1023 unlink_or_warn(pack_data
->pack_name
);
1025 FREE_AND_NULL(pack_data
);
1028 /* We can't carry a delta across packfiles. */
1029 strbuf_release(&last_blob
.data
);
1030 last_blob
.offset
= 0;
1031 last_blob
.depth
= 0;
1034 static void cycle_packfile(void)
1040 static int store_object(
1041 enum object_type type
,
1043 struct last_object
*last
,
1044 struct object_id
*oidout
,
1048 struct object_entry
*e
;
1049 unsigned char hdr
[96];
1050 struct object_id oid
;
1051 unsigned long hdrlen
, deltalen
;
1055 hdrlen
= xsnprintf((char *)hdr
, sizeof(hdr
), "%s %lu",
1056 type_name(type
), (unsigned long)dat
->len
) + 1;
1057 the_hash_algo
->init_fn(&c
);
1058 the_hash_algo
->update_fn(&c
, hdr
, hdrlen
);
1059 the_hash_algo
->update_fn(&c
, dat
->buf
, dat
->len
);
1060 the_hash_algo
->final_fn(oid
.hash
, &c
);
1062 oidcpy(oidout
, &oid
);
1064 e
= insert_object(&oid
);
1066 insert_mark(mark
, e
);
1067 if (e
->idx
.offset
) {
1068 duplicate_count_by_type
[type
]++;
1070 } else if (find_sha1_pack(oid
.hash
,
1071 get_packed_git(the_repository
))) {
1073 e
->pack_id
= MAX_PACK_ID
;
1074 e
->idx
.offset
= 1; /* just not zero! */
1075 duplicate_count_by_type
[type
]++;
1079 if (last
&& last
->data
.buf
&& last
->depth
< max_depth
1080 && dat
->len
> the_hash_algo
->rawsz
) {
1082 delta_count_attempts_by_type
[type
]++;
1083 delta
= diff_delta(last
->data
.buf
, last
->data
.len
,
1085 &deltalen
, dat
->len
- the_hash_algo
->rawsz
);
1089 git_deflate_init(&s
, pack_compression_level
);
1092 s
.avail_in
= deltalen
;
1094 s
.next_in
= (void *)dat
->buf
;
1095 s
.avail_in
= dat
->len
;
1097 s
.avail_out
= git_deflate_bound(&s
, s
.avail_in
);
1098 s
.next_out
= out
= xmalloc(s
.avail_out
);
1099 while (git_deflate(&s
, Z_FINISH
) == Z_OK
)
1101 git_deflate_end(&s
);
1103 /* Determine if we should auto-checkpoint. */
1104 if ((max_packsize
&& (pack_size
+ 60 + s
.total_out
) > max_packsize
)
1105 || (pack_size
+ 60 + s
.total_out
) < pack_size
) {
1107 /* This new object needs to *not* have the current pack_id. */
1108 e
->pack_id
= pack_id
+ 1;
1111 /* We cannot carry a delta into the new pack. */
1113 FREE_AND_NULL(delta
);
1115 git_deflate_init(&s
, pack_compression_level
);
1116 s
.next_in
= (void *)dat
->buf
;
1117 s
.avail_in
= dat
->len
;
1118 s
.avail_out
= git_deflate_bound(&s
, s
.avail_in
);
1119 s
.next_out
= out
= xrealloc(out
, s
.avail_out
);
1120 while (git_deflate(&s
, Z_FINISH
) == Z_OK
)
1122 git_deflate_end(&s
);
1127 e
->pack_id
= pack_id
;
1128 e
->idx
.offset
= pack_size
;
1130 object_count_by_type
[type
]++;
1132 crc32_begin(pack_file
);
1135 off_t ofs
= e
->idx
.offset
- last
->offset
;
1136 unsigned pos
= sizeof(hdr
) - 1;
1138 delta_count_by_type
[type
]++;
1139 e
->depth
= last
->depth
+ 1;
1141 hdrlen
= encode_in_pack_object_header(hdr
, sizeof(hdr
),
1142 OBJ_OFS_DELTA
, deltalen
);
1143 hashwrite(pack_file
, hdr
, hdrlen
);
1144 pack_size
+= hdrlen
;
1146 hdr
[pos
] = ofs
& 127;
1148 hdr
[--pos
] = 128 | (--ofs
& 127);
1149 hashwrite(pack_file
, hdr
+ pos
, sizeof(hdr
) - pos
);
1150 pack_size
+= sizeof(hdr
) - pos
;
1153 hdrlen
= encode_in_pack_object_header(hdr
, sizeof(hdr
),
1155 hashwrite(pack_file
, hdr
, hdrlen
);
1156 pack_size
+= hdrlen
;
1159 hashwrite(pack_file
, out
, s
.total_out
);
1160 pack_size
+= s
.total_out
;
1162 e
->idx
.crc32
= crc32_end(pack_file
);
1167 if (last
->no_swap
) {
1170 strbuf_swap(&last
->data
, dat
);
1172 last
->offset
= e
->idx
.offset
;
1173 last
->depth
= e
->depth
;
1178 static void truncate_pack(struct hashfile_checkpoint
*checkpoint
)
1180 if (hashfile_truncate(pack_file
, checkpoint
))
1181 die_errno("cannot truncate pack to skip duplicate");
1182 pack_size
= checkpoint
->offset
;
1185 static void stream_blob(uintmax_t len
, struct object_id
*oidout
, uintmax_t mark
)
1187 size_t in_sz
= 64 * 1024, out_sz
= 64 * 1024;
1188 unsigned char *in_buf
= xmalloc(in_sz
);
1189 unsigned char *out_buf
= xmalloc(out_sz
);
1190 struct object_entry
*e
;
1191 struct object_id oid
;
1192 unsigned long hdrlen
;
1196 struct hashfile_checkpoint checkpoint
;
1199 /* Determine if we should auto-checkpoint. */
1200 if ((max_packsize
&& (pack_size
+ 60 + len
) > max_packsize
)
1201 || (pack_size
+ 60 + len
) < pack_size
)
1204 hashfile_checkpoint(pack_file
, &checkpoint
);
1205 offset
= checkpoint
.offset
;
1207 hdrlen
= xsnprintf((char *)out_buf
, out_sz
, "blob %" PRIuMAX
, len
) + 1;
1209 the_hash_algo
->init_fn(&c
);
1210 the_hash_algo
->update_fn(&c
, out_buf
, hdrlen
);
1212 crc32_begin(pack_file
);
1214 git_deflate_init(&s
, pack_compression_level
);
1216 hdrlen
= encode_in_pack_object_header(out_buf
, out_sz
, OBJ_BLOB
, len
);
1218 s
.next_out
= out_buf
+ hdrlen
;
1219 s
.avail_out
= out_sz
- hdrlen
;
1221 while (status
!= Z_STREAM_END
) {
1222 if (0 < len
&& !s
.avail_in
) {
1223 size_t cnt
= in_sz
< len
? in_sz
: (size_t)len
;
1224 size_t n
= fread(in_buf
, 1, cnt
, stdin
);
1225 if (!n
&& feof(stdin
))
1226 die("EOF in data (%" PRIuMAX
" bytes remaining)", len
);
1228 the_hash_algo
->update_fn(&c
, in_buf
, n
);
1234 status
= git_deflate(&s
, len
? 0 : Z_FINISH
);
1236 if (!s
.avail_out
|| status
== Z_STREAM_END
) {
1237 size_t n
= s
.next_out
- out_buf
;
1238 hashwrite(pack_file
, out_buf
, n
);
1240 s
.next_out
= out_buf
;
1241 s
.avail_out
= out_sz
;
1250 die("unexpected deflate failure: %d", status
);
1253 git_deflate_end(&s
);
1254 the_hash_algo
->final_fn(oid
.hash
, &c
);
1257 oidcpy(oidout
, &oid
);
1259 e
= insert_object(&oid
);
1262 insert_mark(mark
, e
);
1264 if (e
->idx
.offset
) {
1265 duplicate_count_by_type
[OBJ_BLOB
]++;
1266 truncate_pack(&checkpoint
);
1268 } else if (find_sha1_pack(oid
.hash
,
1269 get_packed_git(the_repository
))) {
1271 e
->pack_id
= MAX_PACK_ID
;
1272 e
->idx
.offset
= 1; /* just not zero! */
1273 duplicate_count_by_type
[OBJ_BLOB
]++;
1274 truncate_pack(&checkpoint
);
1279 e
->pack_id
= pack_id
;
1280 e
->idx
.offset
= offset
;
1281 e
->idx
.crc32
= crc32_end(pack_file
);
1283 object_count_by_type
[OBJ_BLOB
]++;
1290 /* All calls must be guarded by find_object() or find_mark() to
1291 * ensure the 'struct object_entry' passed was written by this
1292 * process instance. We unpack the entry by the offset, avoiding
1293 * the need for the corresponding .idx file. This unpacking rule
1294 * works because we only use OBJ_REF_DELTA within the packfiles
1295 * created by fast-import.
1297 * oe must not be NULL. Such an oe usually comes from giving
1298 * an unknown SHA-1 to find_object() or an undefined mark to
1299 * find_mark(). Callers must test for this condition and use
1300 * the standard read_sha1_file() when it happens.
1302 * oe->pack_id must not be MAX_PACK_ID. Such an oe is usually from
1303 * find_mark(), where the mark was reloaded from an existing marks
1304 * file and is referencing an object that this fast-import process
1305 * instance did not write out to a packfile. Callers must test for
1306 * this condition and use read_sha1_file() instead.
1308 static void *gfi_unpack_entry(
1309 struct object_entry
*oe
,
1310 unsigned long *sizep
)
1312 enum object_type type
;
1313 struct packed_git
*p
= all_packs
[oe
->pack_id
];
1314 if (p
== pack_data
&& p
->pack_size
< (pack_size
+ the_hash_algo
->rawsz
)) {
1315 /* The object is stored in the packfile we are writing to
1316 * and we have modified it since the last time we scanned
1317 * back to read a previously written object. If an old
1318 * window covered [p->pack_size, p->pack_size + rawsz) its
1319 * data is stale and is not valid. Closing all windows
1320 * and updating the packfile length ensures we can read
1321 * the newly written data.
1323 close_pack_windows(p
);
1324 hashflush(pack_file
);
1326 /* We have to offer rawsz bytes additional on the end of
1327 * the packfile as the core unpacker code assumes the
1328 * footer is present at the file end and must promise
1329 * at least rawsz bytes within any window it maps. But
1330 * we don't actually create the footer here.
1332 p
->pack_size
= pack_size
+ the_hash_algo
->rawsz
;
1334 return unpack_entry(the_repository
, p
, oe
->idx
.offset
, &type
, sizep
);
1337 static const char *get_mode(const char *str
, uint16_t *modep
)
1342 while ((c
= *str
++) != ' ') {
1343 if (c
< '0' || c
> '7')
1345 mode
= (mode
<< 3) + (c
- '0');
1351 static void load_tree(struct tree_entry
*root
)
1353 struct object_id
*oid
= &root
->versions
[1].oid
;
1354 struct object_entry
*myoe
;
1355 struct tree_content
*t
;
1360 root
->tree
= t
= new_tree_content(8);
1361 if (is_null_oid(oid
))
1364 myoe
= find_object(oid
);
1365 if (myoe
&& myoe
->pack_id
!= MAX_PACK_ID
) {
1366 if (myoe
->type
!= OBJ_TREE
)
1367 die("Not a tree: %s", oid_to_hex(oid
));
1368 t
->delta_depth
= myoe
->depth
;
1369 buf
= gfi_unpack_entry(myoe
, &size
);
1371 die("Can't load tree %s", oid_to_hex(oid
));
1373 enum object_type type
;
1374 buf
= read_object_file(oid
, &type
, &size
);
1375 if (!buf
|| type
!= OBJ_TREE
)
1376 die("Can't load tree %s", oid_to_hex(oid
));
1380 while (c
!= (buf
+ size
)) {
1381 struct tree_entry
*e
= new_tree_entry();
1383 if (t
->entry_count
== t
->entry_capacity
)
1384 root
->tree
= t
= grow_tree_content(t
, t
->entry_count
);
1385 t
->entries
[t
->entry_count
++] = e
;
1388 c
= get_mode(c
, &e
->versions
[1].mode
);
1390 die("Corrupt mode in %s", oid_to_hex(oid
));
1391 e
->versions
[0].mode
= e
->versions
[1].mode
;
1392 e
->name
= to_atom(c
, strlen(c
));
1393 c
+= e
->name
->str_len
+ 1;
1394 hashcpy(e
->versions
[0].oid
.hash
, (unsigned char *)c
);
1395 hashcpy(e
->versions
[1].oid
.hash
, (unsigned char *)c
);
1396 c
+= GIT_SHA1_RAWSZ
;
1401 static int tecmp0 (const void *_a
, const void *_b
)
1403 struct tree_entry
*a
= *((struct tree_entry
**)_a
);
1404 struct tree_entry
*b
= *((struct tree_entry
**)_b
);
1405 return base_name_compare(
1406 a
->name
->str_dat
, a
->name
->str_len
, a
->versions
[0].mode
,
1407 b
->name
->str_dat
, b
->name
->str_len
, b
->versions
[0].mode
);
1410 static int tecmp1 (const void *_a
, const void *_b
)
1412 struct tree_entry
*a
= *((struct tree_entry
**)_a
);
1413 struct tree_entry
*b
= *((struct tree_entry
**)_b
);
1414 return base_name_compare(
1415 a
->name
->str_dat
, a
->name
->str_len
, a
->versions
[1].mode
,
1416 b
->name
->str_dat
, b
->name
->str_len
, b
->versions
[1].mode
);
1419 static void mktree(struct tree_content
*t
, int v
, struct strbuf
*b
)
1425 QSORT(t
->entries
, t
->entry_count
, tecmp0
);
1427 QSORT(t
->entries
, t
->entry_count
, tecmp1
);
1429 for (i
= 0; i
< t
->entry_count
; i
++) {
1430 if (t
->entries
[i
]->versions
[v
].mode
)
1431 maxlen
+= t
->entries
[i
]->name
->str_len
+ 34;
1435 strbuf_grow(b
, maxlen
);
1436 for (i
= 0; i
< t
->entry_count
; i
++) {
1437 struct tree_entry
*e
= t
->entries
[i
];
1438 if (!e
->versions
[v
].mode
)
1440 strbuf_addf(b
, "%o %s%c",
1441 (unsigned int)(e
->versions
[v
].mode
& ~NO_DELTA
),
1442 e
->name
->str_dat
, '\0');
1443 strbuf_add(b
, e
->versions
[v
].oid
.hash
, GIT_SHA1_RAWSZ
);
1447 static void store_tree(struct tree_entry
*root
)
1449 struct tree_content
*t
;
1450 unsigned int i
, j
, del
;
1451 struct last_object lo
= { STRBUF_INIT
, 0, 0, /* no_swap */ 1 };
1452 struct object_entry
*le
= NULL
;
1454 if (!is_null_oid(&root
->versions
[1].oid
))
1461 for (i
= 0; i
< t
->entry_count
; i
++) {
1462 if (t
->entries
[i
]->tree
)
1463 store_tree(t
->entries
[i
]);
1466 if (!(root
->versions
[0].mode
& NO_DELTA
))
1467 le
= find_object(&root
->versions
[0].oid
);
1468 if (S_ISDIR(root
->versions
[0].mode
) && le
&& le
->pack_id
== pack_id
) {
1469 mktree(t
, 0, &old_tree
);
1471 lo
.offset
= le
->idx
.offset
;
1472 lo
.depth
= t
->delta_depth
;
1475 mktree(t
, 1, &new_tree
);
1476 store_object(OBJ_TREE
, &new_tree
, &lo
, &root
->versions
[1].oid
, 0);
1478 t
->delta_depth
= lo
.depth
;
1479 for (i
= 0, j
= 0, del
= 0; i
< t
->entry_count
; i
++) {
1480 struct tree_entry
*e
= t
->entries
[i
];
1481 if (e
->versions
[1].mode
) {
1482 e
->versions
[0].mode
= e
->versions
[1].mode
;
1483 oidcpy(&e
->versions
[0].oid
, &e
->versions
[1].oid
);
1484 t
->entries
[j
++] = e
;
1486 release_tree_entry(e
);
1490 t
->entry_count
-= del
;
1493 static void tree_content_replace(
1494 struct tree_entry
*root
,
1495 const struct object_id
*oid
,
1496 const uint16_t mode
,
1497 struct tree_content
*newtree
)
1500 die("Root cannot be a non-directory");
1501 oidclr(&root
->versions
[0].oid
);
1502 oidcpy(&root
->versions
[1].oid
, oid
);
1504 release_tree_content_recursive(root
->tree
);
1505 root
->tree
= newtree
;
1508 static int tree_content_set(
1509 struct tree_entry
*root
,
1511 const struct object_id
*oid
,
1512 const uint16_t mode
,
1513 struct tree_content
*subtree
)
1515 struct tree_content
*t
;
1518 struct tree_entry
*e
;
1520 slash1
= strchrnul(p
, '/');
1523 die("Empty path component found in input");
1524 if (!*slash1
&& !S_ISDIR(mode
) && subtree
)
1525 die("Non-directories cannot have subtrees");
1530 for (i
= 0; i
< t
->entry_count
; i
++) {
1532 if (e
->name
->str_len
== n
&& !fspathncmp(p
, e
->name
->str_dat
, n
)) {
1535 && e
->versions
[1].mode
== mode
1536 && !oidcmp(&e
->versions
[1].oid
, oid
))
1538 e
->versions
[1].mode
= mode
;
1539 oidcpy(&e
->versions
[1].oid
, oid
);
1541 release_tree_content_recursive(e
->tree
);
1545 * We need to leave e->versions[0].sha1 alone
1546 * to avoid modifying the preimage tree used
1547 * when writing out the parent directory.
1548 * But after replacing the subdir with a
1549 * completely different one, it's not a good
1550 * delta base any more, and besides, we've
1551 * thrown away the tree entries needed to
1552 * make a delta against it.
1554 * So let's just explicitly disable deltas
1557 if (S_ISDIR(e
->versions
[0].mode
))
1558 e
->versions
[0].mode
|= NO_DELTA
;
1560 oidclr(&root
->versions
[1].oid
);
1563 if (!S_ISDIR(e
->versions
[1].mode
)) {
1564 e
->tree
= new_tree_content(8);
1565 e
->versions
[1].mode
= S_IFDIR
;
1569 if (tree_content_set(e
, slash1
+ 1, oid
, mode
, subtree
)) {
1570 oidclr(&root
->versions
[1].oid
);
1577 if (t
->entry_count
== t
->entry_capacity
)
1578 root
->tree
= t
= grow_tree_content(t
, t
->entry_count
);
1579 e
= new_tree_entry();
1580 e
->name
= to_atom(p
, n
);
1581 e
->versions
[0].mode
= 0;
1582 oidclr(&e
->versions
[0].oid
);
1583 t
->entries
[t
->entry_count
++] = e
;
1585 e
->tree
= new_tree_content(8);
1586 e
->versions
[1].mode
= S_IFDIR
;
1587 tree_content_set(e
, slash1
+ 1, oid
, mode
, subtree
);
1590 e
->versions
[1].mode
= mode
;
1591 oidcpy(&e
->versions
[1].oid
, oid
);
1593 oidclr(&root
->versions
[1].oid
);
1597 static int tree_content_remove(
1598 struct tree_entry
*root
,
1600 struct tree_entry
*backup_leaf
,
1603 struct tree_content
*t
;
1606 struct tree_entry
*e
;
1608 slash1
= strchrnul(p
, '/');
1614 if (!*p
&& allow_root
) {
1620 for (i
= 0; i
< t
->entry_count
; i
++) {
1622 if (e
->name
->str_len
== n
&& !fspathncmp(p
, e
->name
->str_dat
, n
)) {
1623 if (*slash1
&& !S_ISDIR(e
->versions
[1].mode
))
1625 * If p names a file in some subdirectory, and a
1626 * file or symlink matching the name of the
1627 * parent directory of p exists, then p cannot
1628 * exist and need not be deleted.
1631 if (!*slash1
|| !S_ISDIR(e
->versions
[1].mode
))
1635 if (tree_content_remove(e
, slash1
+ 1, backup_leaf
, 0)) {
1636 for (n
= 0; n
< e
->tree
->entry_count
; n
++) {
1637 if (e
->tree
->entries
[n
]->versions
[1].mode
) {
1638 oidclr(&root
->versions
[1].oid
);
1652 memcpy(backup_leaf
, e
, sizeof(*backup_leaf
));
1654 release_tree_content_recursive(e
->tree
);
1656 e
->versions
[1].mode
= 0;
1657 oidclr(&e
->versions
[1].oid
);
1658 oidclr(&root
->versions
[1].oid
);
1662 static int tree_content_get(
1663 struct tree_entry
*root
,
1665 struct tree_entry
*leaf
,
1668 struct tree_content
*t
;
1671 struct tree_entry
*e
;
1673 slash1
= strchrnul(p
, '/');
1675 if (!n
&& !allow_root
)
1676 die("Empty path component found in input");
1687 for (i
= 0; i
< t
->entry_count
; i
++) {
1689 if (e
->name
->str_len
== n
&& !fspathncmp(p
, e
->name
->str_dat
, n
)) {
1692 if (!S_ISDIR(e
->versions
[1].mode
))
1696 return tree_content_get(e
, slash1
+ 1, leaf
, 0);
1702 memcpy(leaf
, e
, sizeof(*leaf
));
1703 if (e
->tree
&& is_null_oid(&e
->versions
[1].oid
))
1704 leaf
->tree
= dup_tree_content(e
->tree
);
1710 static int update_branch(struct branch
*b
)
1712 static const char *msg
= "fast-import";
1713 struct ref_transaction
*transaction
;
1714 struct object_id old_oid
;
1715 struct strbuf err
= STRBUF_INIT
;
1717 if (is_null_oid(&b
->oid
)) {
1719 delete_ref(NULL
, b
->name
, NULL
, 0);
1722 if (read_ref(b
->name
, &old_oid
))
1724 if (!force_update
&& !is_null_oid(&old_oid
)) {
1725 struct commit
*old_cmit
, *new_cmit
;
1727 old_cmit
= lookup_commit_reference_gently(&old_oid
, 0);
1728 new_cmit
= lookup_commit_reference_gently(&b
->oid
, 0);
1729 if (!old_cmit
|| !new_cmit
)
1730 return error("Branch %s is missing commits.", b
->name
);
1732 if (!in_merge_bases(old_cmit
, new_cmit
)) {
1733 warning("Not updating %s"
1734 " (new tip %s does not contain %s)",
1735 b
->name
, oid_to_hex(&b
->oid
),
1736 oid_to_hex(&old_oid
));
1740 transaction
= ref_transaction_begin(&err
);
1742 ref_transaction_update(transaction
, b
->name
, &b
->oid
, &old_oid
,
1744 ref_transaction_commit(transaction
, &err
)) {
1745 ref_transaction_free(transaction
);
1746 error("%s", err
.buf
);
1747 strbuf_release(&err
);
1750 ref_transaction_free(transaction
);
1751 strbuf_release(&err
);
1755 static void dump_branches(void)
1760 for (i
= 0; i
< branch_table_sz
; i
++) {
1761 for (b
= branch_table
[i
]; b
; b
= b
->table_next_branch
)
1762 failure
|= update_branch(b
);
1766 static void dump_tags(void)
1768 static const char *msg
= "fast-import";
1770 struct strbuf ref_name
= STRBUF_INIT
;
1771 struct strbuf err
= STRBUF_INIT
;
1772 struct ref_transaction
*transaction
;
1774 transaction
= ref_transaction_begin(&err
);
1776 failure
|= error("%s", err
.buf
);
1779 for (t
= first_tag
; t
; t
= t
->next_tag
) {
1780 strbuf_reset(&ref_name
);
1781 strbuf_addf(&ref_name
, "refs/tags/%s", t
->name
);
1783 if (ref_transaction_update(transaction
, ref_name
.buf
,
1784 &t
->oid
, NULL
, 0, msg
, &err
)) {
1785 failure
|= error("%s", err
.buf
);
1789 if (ref_transaction_commit(transaction
, &err
))
1790 failure
|= error("%s", err
.buf
);
1793 ref_transaction_free(transaction
);
1794 strbuf_release(&ref_name
);
1795 strbuf_release(&err
);
1798 static void dump_marks_helper(FILE *f
,
1804 for (k
= 0; k
< 1024; k
++) {
1805 if (m
->data
.sets
[k
])
1806 dump_marks_helper(f
, base
+ (k
<< m
->shift
),
1810 for (k
= 0; k
< 1024; k
++) {
1811 if (m
->data
.marked
[k
])
1812 fprintf(f
, ":%" PRIuMAX
" %s\n", base
+ k
,
1813 oid_to_hex(&m
->data
.marked
[k
]->idx
.oid
));
1818 static void dump_marks(void)
1820 struct lock_file mark_lock
= LOCK_INIT
;
1823 if (!export_marks_file
|| (import_marks_file
&& !import_marks_file_done
))
1826 if (hold_lock_file_for_update(&mark_lock
, export_marks_file
, 0) < 0) {
1827 failure
|= error_errno("Unable to write marks file %s",
1832 f
= fdopen_lock_file(&mark_lock
, "w");
1834 int saved_errno
= errno
;
1835 rollback_lock_file(&mark_lock
);
1836 failure
|= error("Unable to write marks file %s: %s",
1837 export_marks_file
, strerror(saved_errno
));
1841 dump_marks_helper(f
, 0, marks
);
1842 if (commit_lock_file(&mark_lock
)) {
1843 failure
|= error_errno("Unable to write file %s",
1849 static void read_marks(void)
1852 FILE *f
= fopen(import_marks_file
, "r");
1855 else if (import_marks_file_ignore_missing
&& errno
== ENOENT
)
1856 goto done
; /* Marks file does not exist */
1858 die_errno("cannot read '%s'", import_marks_file
);
1859 while (fgets(line
, sizeof(line
), f
)) {
1862 struct object_id oid
;
1863 struct object_entry
*e
;
1865 end
= strchr(line
, '\n');
1866 if (line
[0] != ':' || !end
)
1867 die("corrupt mark line: %s", line
);
1869 mark
= strtoumax(line
+ 1, &end
, 10);
1870 if (!mark
|| end
== line
+ 1
1871 || *end
!= ' ' || get_oid_hex(end
+ 1, &oid
))
1872 die("corrupt mark line: %s", line
);
1873 e
= find_object(&oid
);
1875 enum object_type type
= oid_object_info(the_repository
,
1878 die("object not found: %s", oid_to_hex(&oid
));
1879 e
= insert_object(&oid
);
1881 e
->pack_id
= MAX_PACK_ID
;
1882 e
->idx
.offset
= 1; /* just not zero! */
1884 insert_mark(mark
, e
);
1888 import_marks_file_done
= 1;
1892 static int read_next_command(void)
1894 static int stdin_eof
= 0;
1897 unread_command_buf
= 0;
1904 if (unread_command_buf
) {
1905 unread_command_buf
= 0;
1907 struct recent_command
*rc
;
1909 strbuf_detach(&command_buf
, NULL
);
1910 stdin_eof
= strbuf_getline_lf(&command_buf
, stdin
);
1914 if (!seen_data_command
1915 && !starts_with(command_buf
.buf
, "feature ")
1916 && !starts_with(command_buf
.buf
, "option ")) {
1925 cmd_hist
.next
= rc
->next
;
1926 cmd_hist
.next
->prev
= &cmd_hist
;
1930 rc
->buf
= command_buf
.buf
;
1931 rc
->prev
= cmd_tail
;
1932 rc
->next
= cmd_hist
.prev
;
1933 rc
->prev
->next
= rc
;
1936 if (skip_prefix(command_buf
.buf
, "get-mark ", &p
)) {
1940 if (skip_prefix(command_buf
.buf
, "cat-blob ", &p
)) {
1944 if (command_buf
.buf
[0] == '#')
1950 static void skip_optional_lf(void)
1952 int term_char
= fgetc(stdin
);
1953 if (term_char
!= '\n' && term_char
!= EOF
)
1954 ungetc(term_char
, stdin
);
1957 static void parse_mark(void)
1960 if (skip_prefix(command_buf
.buf
, "mark :", &v
)) {
1961 next_mark
= strtoumax(v
, NULL
, 10);
1962 read_next_command();
1968 static int parse_data(struct strbuf
*sb
, uintmax_t limit
, uintmax_t *len_res
)
1973 if (!skip_prefix(command_buf
.buf
, "data ", &data
))
1974 die("Expected 'data n' command, found: %s", command_buf
.buf
);
1976 if (skip_prefix(data
, "<<", &data
)) {
1977 char *term
= xstrdup(data
);
1978 size_t term_len
= command_buf
.len
- (data
- command_buf
.buf
);
1980 strbuf_detach(&command_buf
, NULL
);
1982 if (strbuf_getline_lf(&command_buf
, stdin
) == EOF
)
1983 die("EOF in data (terminator '%s' not found)", term
);
1984 if (term_len
== command_buf
.len
1985 && !strcmp(term
, command_buf
.buf
))
1987 strbuf_addbuf(sb
, &command_buf
);
1988 strbuf_addch(sb
, '\n');
1993 uintmax_t len
= strtoumax(data
, NULL
, 10);
1994 size_t n
= 0, length
= (size_t)len
;
1996 if (limit
&& limit
< len
) {
2001 die("data is too large to use in this context");
2003 while (n
< length
) {
2004 size_t s
= strbuf_fread(sb
, length
- n
, stdin
);
2005 if (!s
&& feof(stdin
))
2006 die("EOF in data (%lu bytes remaining)",
2007 (unsigned long)(length
- n
));
2016 static int validate_raw_date(const char *src
, struct strbuf
*result
)
2018 const char *orig_src
= src
;
2024 num
= strtoul(src
, &endp
, 10);
2025 /* NEEDSWORK: perhaps check for reasonable values? */
2026 if (errno
|| endp
== src
|| *endp
!= ' ')
2030 if (*src
!= '-' && *src
!= '+')
2033 num
= strtoul(src
+ 1, &endp
, 10);
2034 if (errno
|| endp
== src
+ 1 || *endp
|| 1400 < num
)
2037 strbuf_addstr(result
, orig_src
);
2041 static char *parse_ident(const char *buf
)
2045 struct strbuf ident
= STRBUF_INIT
;
2047 /* ensure there is a space delimiter even if there is no name */
2051 ltgt
= buf
+ strcspn(buf
, "<>");
2053 die("Missing < in ident string: %s", buf
);
2054 if (ltgt
!= buf
&& ltgt
[-1] != ' ')
2055 die("Missing space before < in ident string: %s", buf
);
2056 ltgt
= ltgt
+ 1 + strcspn(ltgt
+ 1, "<>");
2058 die("Missing > in ident string: %s", buf
);
2061 die("Missing space after > in ident string: %s", buf
);
2063 name_len
= ltgt
- buf
;
2064 strbuf_add(&ident
, buf
, name_len
);
2068 if (validate_raw_date(ltgt
, &ident
) < 0)
2069 die("Invalid raw date \"%s\" in ident: %s", ltgt
, buf
);
2071 case WHENSPEC_RFC2822
:
2072 if (parse_date(ltgt
, &ident
) < 0)
2073 die("Invalid rfc2822 date \"%s\" in ident: %s", ltgt
, buf
);
2076 if (strcmp("now", ltgt
))
2077 die("Date in ident must be 'now': %s", buf
);
2082 return strbuf_detach(&ident
, NULL
);
2085 static void parse_and_store_blob(
2086 struct last_object
*last
,
2087 struct object_id
*oidout
,
2090 static struct strbuf buf
= STRBUF_INIT
;
2093 if (parse_data(&buf
, big_file_threshold
, &len
))
2094 store_object(OBJ_BLOB
, &buf
, last
, oidout
, mark
);
2097 strbuf_release(&last
->data
);
2101 stream_blob(len
, oidout
, mark
);
2106 static void parse_new_blob(void)
2108 read_next_command();
2110 parse_and_store_blob(&last_blob
, NULL
, next_mark
);
2113 static void unload_one_branch(void)
2115 while (cur_active_branches
2116 && cur_active_branches
>= max_active_branches
) {
2117 uintmax_t min_commit
= ULONG_MAX
;
2118 struct branch
*e
, *l
= NULL
, *p
= NULL
;
2120 for (e
= active_branches
; e
; e
= e
->active_next_branch
) {
2121 if (e
->last_commit
< min_commit
) {
2123 min_commit
= e
->last_commit
;
2129 e
= p
->active_next_branch
;
2130 p
->active_next_branch
= e
->active_next_branch
;
2132 e
= active_branches
;
2133 active_branches
= e
->active_next_branch
;
2136 e
->active_next_branch
= NULL
;
2137 if (e
->branch_tree
.tree
) {
2138 release_tree_content_recursive(e
->branch_tree
.tree
);
2139 e
->branch_tree
.tree
= NULL
;
2141 cur_active_branches
--;
2145 static void load_branch(struct branch
*b
)
2147 load_tree(&b
->branch_tree
);
2150 b
->active_next_branch
= active_branches
;
2151 active_branches
= b
;
2152 cur_active_branches
++;
2153 branch_load_count
++;
2157 static unsigned char convert_num_notes_to_fanout(uintmax_t num_notes
)
2159 unsigned char fanout
= 0;
2160 while ((num_notes
>>= 8))
2165 static void construct_path_with_fanout(const char *hex_sha1
,
2166 unsigned char fanout
, char *path
)
2168 unsigned int i
= 0, j
= 0;
2169 if (fanout
>= the_hash_algo
->rawsz
)
2170 die("Too large fanout (%u)", fanout
);
2172 path
[i
++] = hex_sha1
[j
++];
2173 path
[i
++] = hex_sha1
[j
++];
2177 memcpy(path
+ i
, hex_sha1
+ j
, the_hash_algo
->hexsz
- j
);
2178 path
[i
+ the_hash_algo
->hexsz
- j
] = '\0';
2181 static uintmax_t do_change_note_fanout(
2182 struct tree_entry
*orig_root
, struct tree_entry
*root
,
2183 char *hex_oid
, unsigned int hex_oid_len
,
2184 char *fullpath
, unsigned int fullpath_len
,
2185 unsigned char fanout
)
2187 struct tree_content
*t
;
2188 struct tree_entry
*e
, leaf
;
2189 unsigned int i
, tmp_hex_oid_len
, tmp_fullpath_len
;
2190 uintmax_t num_notes
= 0;
2191 struct object_id oid
;
2198 for (i
= 0; t
&& i
< t
->entry_count
; i
++) {
2200 tmp_hex_oid_len
= hex_oid_len
+ e
->name
->str_len
;
2201 tmp_fullpath_len
= fullpath_len
;
2204 * We're interested in EITHER existing note entries (entries
2205 * with exactly 40 hex chars in path, not including directory
2206 * separators), OR directory entries that may contain note
2207 * entries (with < 40 hex chars in path).
2208 * Also, each path component in a note entry must be a multiple
2211 if (!e
->versions
[1].mode
||
2212 tmp_hex_oid_len
> GIT_SHA1_HEXSZ
||
2213 e
->name
->str_len
% 2)
2216 /* This _may_ be a note entry, or a subdir containing notes */
2217 memcpy(hex_oid
+ hex_oid_len
, e
->name
->str_dat
,
2219 if (tmp_fullpath_len
)
2220 fullpath
[tmp_fullpath_len
++] = '/';
2221 memcpy(fullpath
+ tmp_fullpath_len
, e
->name
->str_dat
,
2223 tmp_fullpath_len
+= e
->name
->str_len
;
2224 fullpath
[tmp_fullpath_len
] = '\0';
2226 if (tmp_hex_oid_len
== GIT_SHA1_HEXSZ
&& !get_oid_hex(hex_oid
, &oid
)) {
2227 /* This is a note entry */
2228 if (fanout
== 0xff) {
2229 /* Counting mode, no rename */
2233 construct_path_with_fanout(hex_oid
, fanout
, realpath
);
2234 if (!strcmp(fullpath
, realpath
)) {
2235 /* Note entry is in correct location */
2240 /* Rename fullpath to realpath */
2241 if (!tree_content_remove(orig_root
, fullpath
, &leaf
, 0))
2242 die("Failed to remove path %s", fullpath
);
2243 tree_content_set(orig_root
, realpath
,
2244 &leaf
.versions
[1].oid
,
2245 leaf
.versions
[1].mode
,
2247 } else if (S_ISDIR(e
->versions
[1].mode
)) {
2248 /* This is a subdir that may contain note entries */
2249 num_notes
+= do_change_note_fanout(orig_root
, e
,
2250 hex_oid
, tmp_hex_oid_len
,
2251 fullpath
, tmp_fullpath_len
, fanout
);
2254 /* The above may have reallocated the current tree_content */
2260 static uintmax_t change_note_fanout(struct tree_entry
*root
,
2261 unsigned char fanout
)
2264 * The size of path is due to one slash between every two hex digits,
2265 * plus the terminating NUL. Note that there is no slash at the end, so
2266 * the number of slashes is one less than half the number of hex
2269 char hex_oid
[GIT_MAX_HEXSZ
], path
[GIT_MAX_HEXSZ
+ (GIT_MAX_HEXSZ
/ 2) - 1 + 1];
2270 return do_change_note_fanout(root
, root
, hex_oid
, 0, path
, 0, fanout
);
2274 * Given a pointer into a string, parse a mark reference:
2276 * idnum ::= ':' bigint;
2278 * Return the first character after the value in *endptr.
2280 * Complain if the following character is not what is expected,
2281 * either a space or end of the string.
2283 static uintmax_t parse_mark_ref(const char *p
, char **endptr
)
2289 mark
= strtoumax(p
, endptr
, 10);
2291 die("No value after ':' in mark: %s", command_buf
.buf
);
2296 * Parse the mark reference, and complain if this is not the end of
2299 static uintmax_t parse_mark_ref_eol(const char *p
)
2304 mark
= parse_mark_ref(p
, &end
);
2306 die("Garbage after mark: %s", command_buf
.buf
);
2311 * Parse the mark reference, demanding a trailing space. Return a
2312 * pointer to the space.
2314 static uintmax_t parse_mark_ref_space(const char **p
)
2319 mark
= parse_mark_ref(*p
, &end
);
2321 die("Missing space after mark: %s", command_buf
.buf
);
2326 static void file_change_m(const char *p
, struct branch
*b
)
2328 static struct strbuf uq
= STRBUF_INIT
;
2330 struct object_entry
*oe
;
2331 struct object_id oid
;
2332 uint16_t mode
, inline_data
= 0;
2334 p
= get_mode(p
, &mode
);
2336 die("Corrupt mode: %s", command_buf
.buf
);
2341 case S_IFREG
| 0644:
2342 case S_IFREG
| 0755:
2349 die("Corrupt mode: %s", command_buf
.buf
);
2353 oe
= find_mark(parse_mark_ref_space(&p
));
2354 oidcpy(&oid
, &oe
->idx
.oid
);
2355 } else if (skip_prefix(p
, "inline ", &p
)) {
2357 oe
= NULL
; /* not used with inline_data, but makes gcc happy */
2359 if (parse_oid_hex(p
, &oid
, &p
))
2360 die("Invalid dataref: %s", command_buf
.buf
);
2361 oe
= find_object(&oid
);
2363 die("Missing space after SHA1: %s", command_buf
.buf
);
2367 if (!unquote_c_style(&uq
, p
, &endp
)) {
2369 die("Garbage after path in: %s", command_buf
.buf
);
2373 /* Git does not track empty, non-toplevel directories. */
2374 if (S_ISDIR(mode
) && is_empty_tree_oid(&oid
) && *p
) {
2375 tree_content_remove(&b
->branch_tree
, p
, NULL
, 0);
2379 if (S_ISGITLINK(mode
)) {
2381 die("Git links cannot be specified 'inline': %s",
2384 if (oe
->type
!= OBJ_COMMIT
)
2385 die("Not a commit (actually a %s): %s",
2386 type_name(oe
->type
), command_buf
.buf
);
2389 * Accept the sha1 without checking; it expected to be in
2390 * another repository.
2392 } else if (inline_data
) {
2394 die("Directories cannot be specified 'inline': %s",
2397 strbuf_addstr(&uq
, p
);
2400 read_next_command();
2401 parse_and_store_blob(&last_blob
, &oid
, 0);
2403 enum object_type expected
= S_ISDIR(mode
) ?
2405 enum object_type type
= oe
? oe
->type
:
2406 oid_object_info(the_repository
, &oid
,
2409 die("%s not found: %s",
2410 S_ISDIR(mode
) ? "Tree" : "Blob",
2412 if (type
!= expected
)
2413 die("Not a %s (actually a %s): %s",
2414 type_name(expected
), type_name(type
),
2419 tree_content_replace(&b
->branch_tree
, &oid
, mode
, NULL
);
2422 tree_content_set(&b
->branch_tree
, p
, &oid
, mode
, NULL
);
2425 static void file_change_d(const char *p
, struct branch
*b
)
2427 static struct strbuf uq
= STRBUF_INIT
;
2431 if (!unquote_c_style(&uq
, p
, &endp
)) {
2433 die("Garbage after path in: %s", command_buf
.buf
);
2436 tree_content_remove(&b
->branch_tree
, p
, NULL
, 1);
2439 static void file_change_cr(const char *s
, struct branch
*b
, int rename
)
2442 static struct strbuf s_uq
= STRBUF_INIT
;
2443 static struct strbuf d_uq
= STRBUF_INIT
;
2445 struct tree_entry leaf
;
2447 strbuf_reset(&s_uq
);
2448 if (!unquote_c_style(&s_uq
, s
, &endp
)) {
2450 die("Missing space after source: %s", command_buf
.buf
);
2452 endp
= strchr(s
, ' ');
2454 die("Missing space after source: %s", command_buf
.buf
);
2455 strbuf_add(&s_uq
, s
, endp
- s
);
2461 die("Missing dest: %s", command_buf
.buf
);
2464 strbuf_reset(&d_uq
);
2465 if (!unquote_c_style(&d_uq
, d
, &endp
)) {
2467 die("Garbage after dest in: %s", command_buf
.buf
);
2471 memset(&leaf
, 0, sizeof(leaf
));
2473 tree_content_remove(&b
->branch_tree
, s
, &leaf
, 1);
2475 tree_content_get(&b
->branch_tree
, s
, &leaf
, 1);
2476 if (!leaf
.versions
[1].mode
)
2477 die("Path %s not in branch", s
);
2478 if (!*d
) { /* C "path/to/subdir" "" */
2479 tree_content_replace(&b
->branch_tree
,
2480 &leaf
.versions
[1].oid
,
2481 leaf
.versions
[1].mode
,
2485 tree_content_set(&b
->branch_tree
, d
,
2486 &leaf
.versions
[1].oid
,
2487 leaf
.versions
[1].mode
,
2491 static void note_change_n(const char *p
, struct branch
*b
, unsigned char *old_fanout
)
2493 static struct strbuf uq
= STRBUF_INIT
;
2494 struct object_entry
*oe
;
2496 struct object_id oid
, commit_oid
;
2498 uint16_t inline_data
= 0;
2499 unsigned char new_fanout
;
2502 * When loading a branch, we don't traverse its tree to count the real
2503 * number of notes (too expensive to do this for all non-note refs).
2504 * This means that recently loaded notes refs might incorrectly have
2505 * b->num_notes == 0, and consequently, old_fanout might be wrong.
2507 * Fix this by traversing the tree and counting the number of notes
2508 * when b->num_notes == 0. If the notes tree is truly empty, the
2509 * calculation should not take long.
2511 if (b
->num_notes
== 0 && *old_fanout
== 0) {
2512 /* Invoke change_note_fanout() in "counting mode". */
2513 b
->num_notes
= change_note_fanout(&b
->branch_tree
, 0xff);
2514 *old_fanout
= convert_num_notes_to_fanout(b
->num_notes
);
2517 /* Now parse the notemodify command. */
2518 /* <dataref> or 'inline' */
2520 oe
= find_mark(parse_mark_ref_space(&p
));
2521 oidcpy(&oid
, &oe
->idx
.oid
);
2522 } else if (skip_prefix(p
, "inline ", &p
)) {
2524 oe
= NULL
; /* not used with inline_data, but makes gcc happy */
2526 if (parse_oid_hex(p
, &oid
, &p
))
2527 die("Invalid dataref: %s", command_buf
.buf
);
2528 oe
= find_object(&oid
);
2530 die("Missing space after SHA1: %s", command_buf
.buf
);
2534 s
= lookup_branch(p
);
2536 if (is_null_oid(&s
->oid
))
2537 die("Can't add a note on empty branch.");
2538 oidcpy(&commit_oid
, &s
->oid
);
2539 } else if (*p
== ':') {
2540 uintmax_t commit_mark
= parse_mark_ref_eol(p
);
2541 struct object_entry
*commit_oe
= find_mark(commit_mark
);
2542 if (commit_oe
->type
!= OBJ_COMMIT
)
2543 die("Mark :%" PRIuMAX
" not a commit", commit_mark
);
2544 oidcpy(&commit_oid
, &commit_oe
->idx
.oid
);
2545 } else if (!get_oid(p
, &commit_oid
)) {
2547 char *buf
= read_object_with_reference(&commit_oid
,
2550 if (!buf
|| size
< 46)
2551 die("Not a valid commit: %s", p
);
2554 die("Invalid ref name or SHA1 expression: %s", p
);
2558 strbuf_addstr(&uq
, p
);
2561 read_next_command();
2562 parse_and_store_blob(&last_blob
, &oid
, 0);
2564 if (oe
->type
!= OBJ_BLOB
)
2565 die("Not a blob (actually a %s): %s",
2566 type_name(oe
->type
), command_buf
.buf
);
2567 } else if (!is_null_oid(&oid
)) {
2568 enum object_type type
= oid_object_info(the_repository
, &oid
,
2571 die("Blob not found: %s", command_buf
.buf
);
2572 if (type
!= OBJ_BLOB
)
2573 die("Not a blob (actually a %s): %s",
2574 type_name(type
), command_buf
.buf
);
2577 construct_path_with_fanout(oid_to_hex(&commit_oid
), *old_fanout
, path
);
2578 if (tree_content_remove(&b
->branch_tree
, path
, NULL
, 0))
2581 if (is_null_oid(&oid
))
2582 return; /* nothing to insert */
2585 new_fanout
= convert_num_notes_to_fanout(b
->num_notes
);
2586 construct_path_with_fanout(oid_to_hex(&commit_oid
), new_fanout
, path
);
2587 tree_content_set(&b
->branch_tree
, path
, &oid
, S_IFREG
| 0644, NULL
);
2590 static void file_change_deleteall(struct branch
*b
)
2592 release_tree_content_recursive(b
->branch_tree
.tree
);
2593 oidclr(&b
->branch_tree
.versions
[0].oid
);
2594 oidclr(&b
->branch_tree
.versions
[1].oid
);
2595 load_tree(&b
->branch_tree
);
2599 static void parse_from_commit(struct branch
*b
, char *buf
, unsigned long size
)
2601 if (!buf
|| size
< GIT_SHA1_HEXSZ
+ 6)
2602 die("Not a valid commit: %s", oid_to_hex(&b
->oid
));
2603 if (memcmp("tree ", buf
, 5)
2604 || get_oid_hex(buf
+ 5, &b
->branch_tree
.versions
[1].oid
))
2605 die("The commit %s is corrupt", oid_to_hex(&b
->oid
));
2606 oidcpy(&b
->branch_tree
.versions
[0].oid
,
2607 &b
->branch_tree
.versions
[1].oid
);
2610 static void parse_from_existing(struct branch
*b
)
2612 if (is_null_oid(&b
->oid
)) {
2613 oidclr(&b
->branch_tree
.versions
[0].oid
);
2614 oidclr(&b
->branch_tree
.versions
[1].oid
);
2619 buf
= read_object_with_reference(&b
->oid
, commit_type
, &size
,
2621 parse_from_commit(b
, buf
, size
);
2626 static int parse_from(struct branch
*b
)
2630 struct object_id oid
;
2632 if (!skip_prefix(command_buf
.buf
, "from ", &from
))
2635 oidcpy(&oid
, &b
->branch_tree
.versions
[1].oid
);
2637 s
= lookup_branch(from
);
2639 die("Can't create a branch from itself: %s", b
->name
);
2641 struct object_id
*t
= &s
->branch_tree
.versions
[1].oid
;
2642 oidcpy(&b
->oid
, &s
->oid
);
2643 oidcpy(&b
->branch_tree
.versions
[0].oid
, t
);
2644 oidcpy(&b
->branch_tree
.versions
[1].oid
, t
);
2645 } else if (*from
== ':') {
2646 uintmax_t idnum
= parse_mark_ref_eol(from
);
2647 struct object_entry
*oe
= find_mark(idnum
);
2648 if (oe
->type
!= OBJ_COMMIT
)
2649 die("Mark :%" PRIuMAX
" not a commit", idnum
);
2650 if (oidcmp(&b
->oid
, &oe
->idx
.oid
)) {
2651 oidcpy(&b
->oid
, &oe
->idx
.oid
);
2652 if (oe
->pack_id
!= MAX_PACK_ID
) {
2654 char *buf
= gfi_unpack_entry(oe
, &size
);
2655 parse_from_commit(b
, buf
, size
);
2658 parse_from_existing(b
);
2660 } else if (!get_oid(from
, &b
->oid
)) {
2661 parse_from_existing(b
);
2662 if (is_null_oid(&b
->oid
))
2666 die("Invalid ref name or SHA1 expression: %s", from
);
2668 if (b
->branch_tree
.tree
&& oidcmp(&oid
, &b
->branch_tree
.versions
[1].oid
)) {
2669 release_tree_content_recursive(b
->branch_tree
.tree
);
2670 b
->branch_tree
.tree
= NULL
;
2673 read_next_command();
2677 static struct hash_list
*parse_merge(unsigned int *count
)
2679 struct hash_list
*list
= NULL
, **tail
= &list
, *n
;
2684 while (skip_prefix(command_buf
.buf
, "merge ", &from
)) {
2685 n
= xmalloc(sizeof(*n
));
2686 s
= lookup_branch(from
);
2688 oidcpy(&n
->oid
, &s
->oid
);
2689 else if (*from
== ':') {
2690 uintmax_t idnum
= parse_mark_ref_eol(from
);
2691 struct object_entry
*oe
= find_mark(idnum
);
2692 if (oe
->type
!= OBJ_COMMIT
)
2693 die("Mark :%" PRIuMAX
" not a commit", idnum
);
2694 oidcpy(&n
->oid
, &oe
->idx
.oid
);
2695 } else if (!get_oid(from
, &n
->oid
)) {
2697 char *buf
= read_object_with_reference(&n
->oid
,
2700 if (!buf
|| size
< 46)
2701 die("Not a valid commit: %s", from
);
2704 die("Invalid ref name or SHA1 expression: %s", from
);
2711 read_next_command();
2716 static void parse_new_commit(const char *arg
)
2718 static struct strbuf msg
= STRBUF_INIT
;
2720 char *author
= NULL
;
2721 char *committer
= NULL
;
2722 struct hash_list
*merge_list
= NULL
;
2723 unsigned int merge_count
;
2724 unsigned char prev_fanout
, new_fanout
;
2727 b
= lookup_branch(arg
);
2729 b
= new_branch(arg
);
2731 read_next_command();
2733 if (skip_prefix(command_buf
.buf
, "author ", &v
)) {
2734 author
= parse_ident(v
);
2735 read_next_command();
2737 if (skip_prefix(command_buf
.buf
, "committer ", &v
)) {
2738 committer
= parse_ident(v
);
2739 read_next_command();
2742 die("Expected committer but didn't get one");
2743 parse_data(&msg
, 0, NULL
);
2744 read_next_command();
2746 merge_list
= parse_merge(&merge_count
);
2748 /* ensure the branch is active/loaded */
2749 if (!b
->branch_tree
.tree
|| !max_active_branches
) {
2750 unload_one_branch();
2754 prev_fanout
= convert_num_notes_to_fanout(b
->num_notes
);
2757 while (command_buf
.len
> 0) {
2758 if (skip_prefix(command_buf
.buf
, "M ", &v
))
2759 file_change_m(v
, b
);
2760 else if (skip_prefix(command_buf
.buf
, "D ", &v
))
2761 file_change_d(v
, b
);
2762 else if (skip_prefix(command_buf
.buf
, "R ", &v
))
2763 file_change_cr(v
, b
, 1);
2764 else if (skip_prefix(command_buf
.buf
, "C ", &v
))
2765 file_change_cr(v
, b
, 0);
2766 else if (skip_prefix(command_buf
.buf
, "N ", &v
))
2767 note_change_n(v
, b
, &prev_fanout
);
2768 else if (!strcmp("deleteall", command_buf
.buf
))
2769 file_change_deleteall(b
);
2770 else if (skip_prefix(command_buf
.buf
, "ls ", &v
))
2773 unread_command_buf
= 1;
2776 if (read_next_command() == EOF
)
2780 new_fanout
= convert_num_notes_to_fanout(b
->num_notes
);
2781 if (new_fanout
!= prev_fanout
)
2782 b
->num_notes
= change_note_fanout(&b
->branch_tree
, new_fanout
);
2784 /* build the tree and the commit */
2785 store_tree(&b
->branch_tree
);
2786 oidcpy(&b
->branch_tree
.versions
[0].oid
,
2787 &b
->branch_tree
.versions
[1].oid
);
2789 strbuf_reset(&new_data
);
2790 strbuf_addf(&new_data
, "tree %s\n",
2791 oid_to_hex(&b
->branch_tree
.versions
[1].oid
));
2792 if (!is_null_oid(&b
->oid
))
2793 strbuf_addf(&new_data
, "parent %s\n",
2794 oid_to_hex(&b
->oid
));
2795 while (merge_list
) {
2796 struct hash_list
*next
= merge_list
->next
;
2797 strbuf_addf(&new_data
, "parent %s\n",
2798 oid_to_hex(&merge_list
->oid
));
2802 strbuf_addf(&new_data
,
2806 author
? author
: committer
, committer
);
2807 strbuf_addbuf(&new_data
, &msg
);
2811 if (!store_object(OBJ_COMMIT
, &new_data
, NULL
, &b
->oid
, next_mark
))
2812 b
->pack_id
= pack_id
;
2813 b
->last_commit
= object_count_by_type
[OBJ_COMMIT
];
2816 static void parse_new_tag(const char *arg
)
2818 static struct strbuf msg
= STRBUF_INIT
;
2823 uintmax_t from_mark
= 0;
2824 struct object_id oid
;
2825 enum object_type type
;
2828 t
= mem_pool_alloc(&fi_mem_pool
, sizeof(struct tag
));
2829 memset(t
, 0, sizeof(struct tag
));
2830 t
->name
= pool_strdup(arg
);
2832 last_tag
->next_tag
= t
;
2836 read_next_command();
2839 if (!skip_prefix(command_buf
.buf
, "from ", &from
))
2840 die("Expected from command, got %s", command_buf
.buf
);
2841 s
= lookup_branch(from
);
2843 if (is_null_oid(&s
->oid
))
2844 die("Can't tag an empty branch.");
2845 oidcpy(&oid
, &s
->oid
);
2847 } else if (*from
== ':') {
2848 struct object_entry
*oe
;
2849 from_mark
= parse_mark_ref_eol(from
);
2850 oe
= find_mark(from_mark
);
2852 oidcpy(&oid
, &oe
->idx
.oid
);
2853 } else if (!get_oid(from
, &oid
)) {
2854 struct object_entry
*oe
= find_object(&oid
);
2856 type
= oid_object_info(the_repository
, &oid
, NULL
);
2858 die("Not a valid object: %s", from
);
2862 die("Invalid ref name or SHA1 expression: %s", from
);
2863 read_next_command();
2866 if (skip_prefix(command_buf
.buf
, "tagger ", &v
)) {
2867 tagger
= parse_ident(v
);
2868 read_next_command();
2872 /* tag payload/message */
2873 parse_data(&msg
, 0, NULL
);
2875 /* build the tag object */
2876 strbuf_reset(&new_data
);
2878 strbuf_addf(&new_data
,
2882 oid_to_hex(&oid
), type_name(type
), t
->name
);
2884 strbuf_addf(&new_data
,
2885 "tagger %s\n", tagger
);
2886 strbuf_addch(&new_data
, '\n');
2887 strbuf_addbuf(&new_data
, &msg
);
2890 if (store_object(OBJ_TAG
, &new_data
, NULL
, &t
->oid
, 0))
2891 t
->pack_id
= MAX_PACK_ID
;
2893 t
->pack_id
= pack_id
;
2896 static void parse_reset_branch(const char *arg
)
2900 b
= lookup_branch(arg
);
2903 oidclr(&b
->branch_tree
.versions
[0].oid
);
2904 oidclr(&b
->branch_tree
.versions
[1].oid
);
2905 if (b
->branch_tree
.tree
) {
2906 release_tree_content_recursive(b
->branch_tree
.tree
);
2907 b
->branch_tree
.tree
= NULL
;
2911 b
= new_branch(arg
);
2912 read_next_command();
2914 if (command_buf
.len
> 0)
2915 unread_command_buf
= 1;
2918 static void cat_blob_write(const char *buf
, unsigned long size
)
2920 if (write_in_full(cat_blob_fd
, buf
, size
) < 0)
2921 die_errno("Write to frontend failed");
2924 static void cat_blob(struct object_entry
*oe
, struct object_id
*oid
)
2926 struct strbuf line
= STRBUF_INIT
;
2928 enum object_type type
= 0;
2931 if (!oe
|| oe
->pack_id
== MAX_PACK_ID
) {
2932 buf
= read_object_file(oid
, &type
, &size
);
2935 buf
= gfi_unpack_entry(oe
, &size
);
2939 * Output based on batch_one_object() from cat-file.c.
2942 strbuf_reset(&line
);
2943 strbuf_addf(&line
, "%s missing\n", oid_to_hex(oid
));
2944 cat_blob_write(line
.buf
, line
.len
);
2945 strbuf_release(&line
);
2950 die("Can't read object %s", oid_to_hex(oid
));
2951 if (type
!= OBJ_BLOB
)
2952 die("Object %s is a %s but a blob was expected.",
2953 oid_to_hex(oid
), type_name(type
));
2954 strbuf_reset(&line
);
2955 strbuf_addf(&line
, "%s %s %lu\n", oid_to_hex(oid
),
2956 type_name(type
), size
);
2957 cat_blob_write(line
.buf
, line
.len
);
2958 strbuf_release(&line
);
2959 cat_blob_write(buf
, size
);
2960 cat_blob_write("\n", 1);
2961 if (oe
&& oe
->pack_id
== pack_id
) {
2962 last_blob
.offset
= oe
->idx
.offset
;
2963 strbuf_attach(&last_blob
.data
, buf
, size
, size
);
2964 last_blob
.depth
= oe
->depth
;
2969 static void parse_get_mark(const char *p
)
2971 struct object_entry
*oe
;
2972 char output
[GIT_MAX_HEXSZ
+ 2];
2974 /* get-mark SP <object> LF */
2976 die("Not a mark: %s", p
);
2978 oe
= find_mark(parse_mark_ref_eol(p
));
2980 die("Unknown mark: %s", command_buf
.buf
);
2982 xsnprintf(output
, sizeof(output
), "%s\n", oid_to_hex(&oe
->idx
.oid
));
2983 cat_blob_write(output
, GIT_SHA1_HEXSZ
+ 1);
2986 static void parse_cat_blob(const char *p
)
2988 struct object_entry
*oe
;
2989 struct object_id oid
;
2991 /* cat-blob SP <object> LF */
2993 oe
= find_mark(parse_mark_ref_eol(p
));
2995 die("Unknown mark: %s", command_buf
.buf
);
2996 oidcpy(&oid
, &oe
->idx
.oid
);
2998 if (parse_oid_hex(p
, &oid
, &p
))
2999 die("Invalid dataref: %s", command_buf
.buf
);
3001 die("Garbage after SHA1: %s", command_buf
.buf
);
3002 oe
= find_object(&oid
);
3008 static struct object_entry
*dereference(struct object_entry
*oe
,
3009 struct object_id
*oid
)
3014 enum object_type type
= oid_object_info(the_repository
, oid
,
3017 die("object not found: %s", oid_to_hex(oid
));
3019 oe
= insert_object(oid
);
3021 oe
->pack_id
= MAX_PACK_ID
;
3025 case OBJ_TREE
: /* easy case. */
3031 die("Not a tree-ish: %s", command_buf
.buf
);
3034 if (oe
->pack_id
!= MAX_PACK_ID
) { /* in a pack being written */
3035 buf
= gfi_unpack_entry(oe
, &size
);
3037 enum object_type unused
;
3038 buf
= read_object_file(oid
, &unused
, &size
);
3041 die("Can't load object %s", oid_to_hex(oid
));
3043 /* Peel one layer. */
3046 if (size
< GIT_SHA1_HEXSZ
+ strlen("object ") ||
3047 get_oid_hex(buf
+ strlen("object "), oid
))
3048 die("Invalid SHA1 in tag: %s", command_buf
.buf
);
3051 if (size
< GIT_SHA1_HEXSZ
+ strlen("tree ") ||
3052 get_oid_hex(buf
+ strlen("tree "), oid
))
3053 die("Invalid SHA1 in commit: %s", command_buf
.buf
);
3057 return find_object(oid
);
3060 static struct object_entry
*parse_treeish_dataref(const char **p
)
3062 struct object_id oid
;
3063 struct object_entry
*e
;
3065 if (**p
== ':') { /* <mark> */
3066 e
= find_mark(parse_mark_ref_space(p
));
3068 die("Unknown mark: %s", command_buf
.buf
);
3069 oidcpy(&oid
, &e
->idx
.oid
);
3070 } else { /* <sha1> */
3071 if (parse_oid_hex(*p
, &oid
, p
))
3072 die("Invalid dataref: %s", command_buf
.buf
);
3073 e
= find_object(&oid
);
3075 die("Missing space after tree-ish: %s", command_buf
.buf
);
3078 while (!e
|| e
->type
!= OBJ_TREE
)
3079 e
= dereference(e
, &oid
);
3083 static void print_ls(int mode
, const unsigned char *sha1
, const char *path
)
3085 static struct strbuf line
= STRBUF_INIT
;
3087 /* See show_tree(). */
3089 S_ISGITLINK(mode
) ? commit_type
:
3090 S_ISDIR(mode
) ? tree_type
:
3094 /* missing SP path LF */
3095 strbuf_reset(&line
);
3096 strbuf_addstr(&line
, "missing ");
3097 quote_c_style(path
, &line
, NULL
, 0);
3098 strbuf_addch(&line
, '\n');
3100 /* mode SP type SP object_name TAB path LF */
3101 strbuf_reset(&line
);
3102 strbuf_addf(&line
, "%06o %s %s\t",
3103 mode
& ~NO_DELTA
, type
, sha1_to_hex(sha1
));
3104 quote_c_style(path
, &line
, NULL
, 0);
3105 strbuf_addch(&line
, '\n');
3107 cat_blob_write(line
.buf
, line
.len
);
3110 static void parse_ls(const char *p
, struct branch
*b
)
3112 struct tree_entry
*root
= NULL
;
3113 struct tree_entry leaf
= {NULL
};
3115 /* ls SP (<tree-ish> SP)? <path> */
3118 die("Not in a commit: %s", command_buf
.buf
);
3119 root
= &b
->branch_tree
;
3121 struct object_entry
*e
= parse_treeish_dataref(&p
);
3122 root
= new_tree_entry();
3123 oidcpy(&root
->versions
[1].oid
, &e
->idx
.oid
);
3124 if (!is_null_oid(&root
->versions
[1].oid
))
3125 root
->versions
[1].mode
= S_IFDIR
;
3129 static struct strbuf uq
= STRBUF_INIT
;
3132 if (unquote_c_style(&uq
, p
, &endp
))
3133 die("Invalid path: %s", command_buf
.buf
);
3135 die("Garbage after path in: %s", command_buf
.buf
);
3138 tree_content_get(root
, p
, &leaf
, 1);
3140 * A directory in preparation would have a sha1 of zero
3141 * until it is saved. Save, for simplicity.
3143 if (S_ISDIR(leaf
.versions
[1].mode
))
3146 print_ls(leaf
.versions
[1].mode
, leaf
.versions
[1].oid
.hash
, p
);
3148 release_tree_content_recursive(leaf
.tree
);
3149 if (!b
|| root
!= &b
->branch_tree
)
3150 release_tree_entry(root
);
3153 static void checkpoint(void)
3155 checkpoint_requested
= 0;
3164 static void parse_checkpoint(void)
3166 checkpoint_requested
= 1;
3170 static void parse_progress(void)
3172 fwrite(command_buf
.buf
, 1, command_buf
.len
, stdout
);
3173 fputc('\n', stdout
);
3178 static char* make_fast_import_path(const char *path
)
3180 if (!relative_marks_paths
|| is_absolute_path(path
))
3181 return xstrdup(path
);
3182 return git_pathdup("info/fast-import/%s", path
);
3185 static void option_import_marks(const char *marks
,
3186 int from_stream
, int ignore_missing
)
3188 if (import_marks_file
) {
3190 die("Only one import-marks command allowed per stream");
3192 /* read previous mark file */
3193 if(!import_marks_file_from_stream
)
3197 import_marks_file
= make_fast_import_path(marks
);
3198 safe_create_leading_directories_const(import_marks_file
);
3199 import_marks_file_from_stream
= from_stream
;
3200 import_marks_file_ignore_missing
= ignore_missing
;
3203 static void option_date_format(const char *fmt
)
3205 if (!strcmp(fmt
, "raw"))
3206 whenspec
= WHENSPEC_RAW
;
3207 else if (!strcmp(fmt
, "rfc2822"))
3208 whenspec
= WHENSPEC_RFC2822
;
3209 else if (!strcmp(fmt
, "now"))
3210 whenspec
= WHENSPEC_NOW
;
3212 die("unknown --date-format argument %s", fmt
);
3215 static unsigned long ulong_arg(const char *option
, const char *arg
)
3218 unsigned long rv
= strtoul(arg
, &endptr
, 0);
3219 if (strchr(arg
, '-') || endptr
== arg
|| *endptr
)
3220 die("%s: argument must be a non-negative integer", option
);
3224 static void option_depth(const char *depth
)
3226 max_depth
= ulong_arg("--depth", depth
);
3227 if (max_depth
> MAX_DEPTH
)
3228 die("--depth cannot exceed %u", MAX_DEPTH
);
3231 static void option_active_branches(const char *branches
)
3233 max_active_branches
= ulong_arg("--active-branches", branches
);
3236 static void option_export_marks(const char *marks
)
3238 export_marks_file
= make_fast_import_path(marks
);
3239 safe_create_leading_directories_const(export_marks_file
);
3242 static void option_cat_blob_fd(const char *fd
)
3244 unsigned long n
= ulong_arg("--cat-blob-fd", fd
);
3245 if (n
> (unsigned long) INT_MAX
)
3246 die("--cat-blob-fd cannot exceed %d", INT_MAX
);
3247 cat_blob_fd
= (int) n
;
3250 static void option_export_pack_edges(const char *edges
)
3254 pack_edges
= xfopen(edges
, "a");
3257 static int parse_one_option(const char *option
)
3259 if (skip_prefix(option
, "max-pack-size=", &option
)) {
3261 if (!git_parse_ulong(option
, &v
))
3264 warning("max-pack-size is now in bytes, assuming --max-pack-size=%lum", v
);
3266 } else if (v
< 1024 * 1024) {
3267 warning("minimum max-pack-size is 1 MiB");
3271 } else if (skip_prefix(option
, "big-file-threshold=", &option
)) {
3273 if (!git_parse_ulong(option
, &v
))
3275 big_file_threshold
= v
;
3276 } else if (skip_prefix(option
, "depth=", &option
)) {
3277 option_depth(option
);
3278 } else if (skip_prefix(option
, "active-branches=", &option
)) {
3279 option_active_branches(option
);
3280 } else if (skip_prefix(option
, "export-pack-edges=", &option
)) {
3281 option_export_pack_edges(option
);
3282 } else if (starts_with(option
, "quiet")) {
3284 } else if (starts_with(option
, "stats")) {
3293 static int parse_one_feature(const char *feature
, int from_stream
)
3297 if (skip_prefix(feature
, "date-format=", &arg
)) {
3298 option_date_format(arg
);
3299 } else if (skip_prefix(feature
, "import-marks=", &arg
)) {
3300 option_import_marks(arg
, from_stream
, 0);
3301 } else if (skip_prefix(feature
, "import-marks-if-exists=", &arg
)) {
3302 option_import_marks(arg
, from_stream
, 1);
3303 } else if (skip_prefix(feature
, "export-marks=", &arg
)) {
3304 option_export_marks(arg
);
3305 } else if (!strcmp(feature
, "get-mark")) {
3306 ; /* Don't die - this feature is supported */
3307 } else if (!strcmp(feature
, "cat-blob")) {
3308 ; /* Don't die - this feature is supported */
3309 } else if (!strcmp(feature
, "relative-marks")) {
3310 relative_marks_paths
= 1;
3311 } else if (!strcmp(feature
, "no-relative-marks")) {
3312 relative_marks_paths
= 0;
3313 } else if (!strcmp(feature
, "done")) {
3314 require_explicit_termination
= 1;
3315 } else if (!strcmp(feature
, "force")) {
3317 } else if (!strcmp(feature
, "notes") || !strcmp(feature
, "ls")) {
3318 ; /* do nothing; we have the feature */
3326 static void parse_feature(const char *feature
)
3328 if (seen_data_command
)
3329 die("Got feature command '%s' after data command", feature
);
3331 if (parse_one_feature(feature
, 1))
3334 die("This version of fast-import does not support feature %s.", feature
);
3337 static void parse_option(const char *option
)
3339 if (seen_data_command
)
3340 die("Got option command '%s' after data command", option
);
3342 if (parse_one_option(option
))
3345 die("This version of fast-import does not support option: %s", option
);
3348 static void git_pack_config(void)
3350 int indexversion_value
;
3352 unsigned long packsizelimit_value
;
3354 if (!git_config_get_ulong("pack.depth", &max_depth
)) {
3355 if (max_depth
> MAX_DEPTH
)
3356 max_depth
= MAX_DEPTH
;
3358 if (!git_config_get_int("pack.indexversion", &indexversion_value
)) {
3359 pack_idx_opts
.version
= indexversion_value
;
3360 if (pack_idx_opts
.version
> 2)
3361 git_die_config("pack.indexversion",
3362 "bad pack.indexversion=%"PRIu32
, pack_idx_opts
.version
);
3364 if (!git_config_get_ulong("pack.packsizelimit", &packsizelimit_value
))
3365 max_packsize
= packsizelimit_value
;
3367 if (!git_config_get_int("fastimport.unpacklimit", &limit
))
3368 unpack_limit
= limit
;
3369 else if (!git_config_get_int("transfer.unpacklimit", &limit
))
3370 unpack_limit
= limit
;
3372 git_config(git_default_config
, NULL
);
3375 static const char fast_import_usage
[] =
3376 "git fast-import [--date-format=<f>] [--max-pack-size=<n>] [--big-file-threshold=<n>] [--depth=<n>] [--active-branches=<n>] [--export-marks=<marks.file>]";
3378 static void parse_argv(void)
3382 for (i
= 1; i
< global_argc
; i
++) {
3383 const char *a
= global_argv
[i
];
3385 if (*a
!= '-' || !strcmp(a
, "--"))
3388 if (!skip_prefix(a
, "--", &a
))
3389 die("unknown option %s", a
);
3391 if (parse_one_option(a
))
3394 if (parse_one_feature(a
, 0))
3397 if (skip_prefix(a
, "cat-blob-fd=", &a
)) {
3398 option_cat_blob_fd(a
);
3402 die("unknown option --%s", a
);
3404 if (i
!= global_argc
)
3405 usage(fast_import_usage
);
3407 seen_data_command
= 1;
3408 if (import_marks_file
)
3412 int cmd_main(int argc
, const char **argv
)
3416 if (argc
== 2 && !strcmp(argv
[1], "-h"))
3417 usage(fast_import_usage
);
3419 setup_git_directory();
3420 reset_pack_idx_option(&pack_idx_opts
);
3423 alloc_objects(object_entry_alloc
);
3424 strbuf_init(&command_buf
, 0);
3425 atom_table
= xcalloc(atom_table_sz
, sizeof(struct atom_str
*));
3426 branch_table
= xcalloc(branch_table_sz
, sizeof(struct branch
*));
3427 avail_tree_table
= xcalloc(avail_tree_table_sz
, sizeof(struct avail_tree_content
*));
3428 marks
= mem_pool_calloc(&fi_mem_pool
, 1, sizeof(struct mark_set
));
3433 rc_free
= mem_pool_alloc(&fi_mem_pool
, cmd_save
* sizeof(*rc_free
));
3434 for (i
= 0; i
< (cmd_save
- 1); i
++)
3435 rc_free
[i
].next
= &rc_free
[i
+ 1];
3436 rc_free
[cmd_save
- 1].next
= NULL
;
3439 set_die_routine(die_nicely
);
3440 set_checkpoint_signal();
3441 while (read_next_command() != EOF
) {
3443 if (!strcmp("blob", command_buf
.buf
))
3445 else if (skip_prefix(command_buf
.buf
, "ls ", &v
))
3447 else if (skip_prefix(command_buf
.buf
, "commit ", &v
))
3448 parse_new_commit(v
);
3449 else if (skip_prefix(command_buf
.buf
, "tag ", &v
))
3451 else if (skip_prefix(command_buf
.buf
, "reset ", &v
))
3452 parse_reset_branch(v
);
3453 else if (!strcmp("checkpoint", command_buf
.buf
))
3455 else if (!strcmp("done", command_buf
.buf
))
3457 else if (starts_with(command_buf
.buf
, "progress "))
3459 else if (skip_prefix(command_buf
.buf
, "feature ", &v
))
3461 else if (skip_prefix(command_buf
.buf
, "option git ", &v
))
3463 else if (starts_with(command_buf
.buf
, "option "))
3464 /* ignore non-git options*/;
3466 die("Unsupported command: %s", command_buf
.buf
);
3468 if (checkpoint_requested
)
3472 /* argv hasn't been parsed yet, do so */
3473 if (!seen_data_command
)
3476 if (require_explicit_termination
&& feof(stdin
))
3477 die("stream ends early");
3490 uintmax_t total_count
= 0, duplicate_count
= 0;
3491 for (i
= 0; i
< ARRAY_SIZE(object_count_by_type
); i
++)
3492 total_count
+= object_count_by_type
[i
];
3493 for (i
= 0; i
< ARRAY_SIZE(duplicate_count_by_type
); i
++)
3494 duplicate_count
+= duplicate_count_by_type
[i
];
3496 fprintf(stderr
, "%s statistics:\n", argv
[0]);
3497 fprintf(stderr
, "---------------------------------------------------------------------\n");
3498 fprintf(stderr
, "Alloc'd objects: %10" PRIuMAX
"\n", alloc_count
);
3499 fprintf(stderr
, "Total objects: %10" PRIuMAX
" (%10" PRIuMAX
" duplicates )\n", total_count
, duplicate_count
);
3500 fprintf(stderr
, " blobs : %10" PRIuMAX
" (%10" PRIuMAX
" duplicates %10" PRIuMAX
" deltas of %10" PRIuMAX
" attempts)\n", object_count_by_type
[OBJ_BLOB
], duplicate_count_by_type
[OBJ_BLOB
], delta_count_by_type
[OBJ_BLOB
], delta_count_attempts_by_type
[OBJ_BLOB
]);
3501 fprintf(stderr
, " trees : %10" PRIuMAX
" (%10" PRIuMAX
" duplicates %10" PRIuMAX
" deltas of %10" PRIuMAX
" attempts)\n", object_count_by_type
[OBJ_TREE
], duplicate_count_by_type
[OBJ_TREE
], delta_count_by_type
[OBJ_TREE
], delta_count_attempts_by_type
[OBJ_TREE
]);
3502 fprintf(stderr
, " commits: %10" PRIuMAX
" (%10" PRIuMAX
" duplicates %10" PRIuMAX
" deltas of %10" PRIuMAX
" attempts)\n", object_count_by_type
[OBJ_COMMIT
], duplicate_count_by_type
[OBJ_COMMIT
], delta_count_by_type
[OBJ_COMMIT
], delta_count_attempts_by_type
[OBJ_COMMIT
]);
3503 fprintf(stderr
, " tags : %10" PRIuMAX
" (%10" PRIuMAX
" duplicates %10" PRIuMAX
" deltas of %10" PRIuMAX
" attempts)\n", object_count_by_type
[OBJ_TAG
], duplicate_count_by_type
[OBJ_TAG
], delta_count_by_type
[OBJ_TAG
], delta_count_attempts_by_type
[OBJ_TAG
]);
3504 fprintf(stderr
, "Total branches: %10lu (%10lu loads )\n", branch_count
, branch_load_count
);
3505 fprintf(stderr
, " marks: %10" PRIuMAX
" (%10" PRIuMAX
" unique )\n", (((uintmax_t)1) << marks
->shift
) * 1024, marks_set_count
);
3506 fprintf(stderr
, " atoms: %10u\n", atom_cnt
);
3507 fprintf(stderr
, "Memory total: %10" PRIuMAX
" KiB\n", (tree_entry_allocd
+ fi_mem_pool
.pool_alloc
+ alloc_count
*sizeof(struct object_entry
))/1024);
3508 fprintf(stderr
, " pools: %10lu KiB\n", (unsigned long)((tree_entry_allocd
+ fi_mem_pool
.pool_alloc
) /1024));
3509 fprintf(stderr
, " objects: %10" PRIuMAX
" KiB\n", (alloc_count
*sizeof(struct object_entry
))/1024);
3510 fprintf(stderr
, "---------------------------------------------------------------------\n");
3512 fprintf(stderr
, "---------------------------------------------------------------------\n");
3513 fprintf(stderr
, "\n");
3516 return failure
? 1 : 0;