Generate crash reports on die in fast-import
[git/dscho.git] / fast-import.c
blob71b89e2036eeacf265af470a76706add51f073d2
1 /*
2 Format of STDIN stream:
4 stream ::= cmd*;
6 cmd ::= new_blob
7 | new_commit
8 | new_tag
9 | reset_branch
10 | checkpoint
11 | progress
14 new_blob ::= 'blob' lf
15 mark?
16 file_content;
17 file_content ::= data;
19 new_commit ::= 'commit' sp ref_str lf
20 mark?
21 ('author' sp name '<' email '>' when lf)?
22 'committer' sp name '<' email '>' when lf
23 commit_msg
24 ('from' sp (ref_str | hexsha1 | sha1exp_str | idnum) lf)?
25 ('merge' sp (ref_str | hexsha1 | sha1exp_str | idnum) lf)*
26 file_change*
27 lf?;
28 commit_msg ::= data;
30 file_change ::= file_clr
31 | file_del
32 | file_rnm
33 | file_cpy
34 | file_obm
35 | file_inm;
36 file_clr ::= 'deleteall' lf;
37 file_del ::= 'D' sp path_str lf;
38 file_rnm ::= 'R' sp path_str sp path_str lf;
39 file_cpy ::= 'C' sp path_str sp path_str lf;
40 file_obm ::= 'M' sp mode sp (hexsha1 | idnum) sp path_str lf;
41 file_inm ::= 'M' sp mode sp 'inline' sp path_str lf
42 data;
44 new_tag ::= 'tag' sp tag_str lf
45 'from' sp (ref_str | hexsha1 | sha1exp_str | idnum) lf
46 'tagger' sp name '<' email '>' when lf
47 tag_msg;
48 tag_msg ::= data;
50 reset_branch ::= 'reset' sp ref_str lf
51 ('from' sp (ref_str | hexsha1 | sha1exp_str | idnum) lf)?
52 lf?;
54 checkpoint ::= 'checkpoint' lf
55 lf?;
57 progress ::= 'progress' sp not_lf* lf
58 lf?;
60 # note: the first idnum in a stream should be 1 and subsequent
61 # idnums should not have gaps between values as this will cause
62 # the stream parser to reserve space for the gapped values. An
63 # idnum can be updated in the future to a new object by issuing
64 # a new mark directive with the old idnum.
66 mark ::= 'mark' sp idnum lf;
67 data ::= (delimited_data | exact_data)
68 lf?;
70 # note: delim may be any string but must not contain lf.
71 # data_line may contain any data but must not be exactly
72 # delim.
73 delimited_data ::= 'data' sp '<<' delim lf
74 (data_line lf)*
75 delim lf;
77 # note: declen indicates the length of binary_data in bytes.
78 # declen does not include the lf preceeding the binary data.
80 exact_data ::= 'data' sp declen lf
81 binary_data;
83 # note: quoted strings are C-style quoting supporting \c for
84 # common escapes of 'c' (e..g \n, \t, \\, \") or \nnn where nnn
85 # is the signed byte value in octal. Note that the only
86 # characters which must actually be escaped to protect the
87 # stream formatting is: \, " and LF. Otherwise these values
88 # are UTF8.
90 ref_str ::= ref;
91 sha1exp_str ::= sha1exp;
92 tag_str ::= tag;
93 path_str ::= path | '"' quoted(path) '"' ;
94 mode ::= '100644' | '644'
95 | '100755' | '755'
96 | '120000'
99 declen ::= # unsigned 32 bit value, ascii base10 notation;
100 bigint ::= # unsigned integer value, ascii base10 notation;
101 binary_data ::= # file content, not interpreted;
103 when ::= raw_when | rfc2822_when;
104 raw_when ::= ts sp tz;
105 rfc2822_when ::= # Valid RFC 2822 date and time;
107 sp ::= # ASCII space character;
108 lf ::= # ASCII newline (LF) character;
110 # note: a colon (':') must precede the numerical value assigned to
111 # an idnum. This is to distinguish it from a ref or tag name as
112 # GIT does not permit ':' in ref or tag strings.
114 idnum ::= ':' bigint;
115 path ::= # GIT style file path, e.g. "a/b/c";
116 ref ::= # GIT ref name, e.g. "refs/heads/MOZ_GECKO_EXPERIMENT";
117 tag ::= # GIT tag name, e.g. "FIREFOX_1_5";
118 sha1exp ::= # Any valid GIT SHA1 expression;
119 hexsha1 ::= # SHA1 in hexadecimal format;
121 # note: name and email are UTF8 strings, however name must not
122 # contain '<' or lf and email must not contain any of the
123 # following: '<', '>', lf.
125 name ::= # valid GIT author/committer name;
126 email ::= # valid GIT author/committer email;
127 ts ::= # time since the epoch in seconds, ascii base10 notation;
128 tz ::= # GIT style timezone;
130 # note: comments may appear anywhere in the input, except
131 # within a data command. Any form of the data command
132 # always escapes the related input from comment processing.
134 # In case it is not clear, the '#' that starts the comment
135 # must be the first character on that the line (an lf have
136 # preceeded it).
138 comment ::= '#' not_lf* lf;
139 not_lf ::= # Any byte that is not ASCII newline (LF);
142 #include "builtin.h"
143 #include "cache.h"
144 #include "object.h"
145 #include "blob.h"
146 #include "tree.h"
147 #include "commit.h"
148 #include "delta.h"
149 #include "pack.h"
150 #include "refs.h"
151 #include "csum-file.h"
152 #include "strbuf.h"
153 #include "quote.h"
155 #define PACK_ID_BITS 16
156 #define MAX_PACK_ID ((1<<PACK_ID_BITS)-1)
158 struct object_entry
160 struct object_entry *next;
161 uint32_t offset;
162 unsigned type : TYPE_BITS;
163 unsigned pack_id : PACK_ID_BITS;
164 unsigned char sha1[20];
167 struct object_entry_pool
169 struct object_entry_pool *next_pool;
170 struct object_entry *next_free;
171 struct object_entry *end;
172 struct object_entry entries[FLEX_ARRAY]; /* more */
175 struct mark_set
177 union {
178 struct object_entry *marked[1024];
179 struct mark_set *sets[1024];
180 } data;
181 unsigned int shift;
184 struct last_object
186 void *data;
187 unsigned long len;
188 uint32_t offset;
189 unsigned int depth;
190 unsigned no_free:1;
193 struct mem_pool
195 struct mem_pool *next_pool;
196 char *next_free;
197 char *end;
198 char space[FLEX_ARRAY]; /* more */
201 struct atom_str
203 struct atom_str *next_atom;
204 unsigned short str_len;
205 char str_dat[FLEX_ARRAY]; /* more */
208 struct tree_content;
209 struct tree_entry
211 struct tree_content *tree;
212 struct atom_str* name;
213 struct tree_entry_ms
215 uint16_t mode;
216 unsigned char sha1[20];
217 } versions[2];
220 struct tree_content
222 unsigned int entry_capacity; /* must match avail_tree_content */
223 unsigned int entry_count;
224 unsigned int delta_depth;
225 struct tree_entry *entries[FLEX_ARRAY]; /* more */
228 struct avail_tree_content
230 unsigned int entry_capacity; /* must match tree_content */
231 struct avail_tree_content *next_avail;
234 struct branch
236 struct branch *table_next_branch;
237 struct branch *active_next_branch;
238 const char *name;
239 struct tree_entry branch_tree;
240 uintmax_t last_commit;
241 unsigned active : 1;
242 unsigned pack_id : PACK_ID_BITS;
243 unsigned char sha1[20];
246 struct tag
248 struct tag *next_tag;
249 const char *name;
250 unsigned int pack_id;
251 unsigned char sha1[20];
254 struct dbuf
256 void *buffer;
257 size_t capacity;
260 struct hash_list
262 struct hash_list *next;
263 unsigned char sha1[20];
266 typedef enum {
267 WHENSPEC_RAW = 1,
268 WHENSPEC_RFC2822,
269 WHENSPEC_NOW,
270 } whenspec_type;
272 /* Configured limits on output */
273 static unsigned long max_depth = 10;
274 static off_t max_packsize = (1LL << 32) - 1;
275 static int force_update;
277 /* Stats and misc. counters */
278 static uintmax_t alloc_count;
279 static uintmax_t marks_set_count;
280 static uintmax_t object_count_by_type[1 << TYPE_BITS];
281 static uintmax_t duplicate_count_by_type[1 << TYPE_BITS];
282 static uintmax_t delta_count_by_type[1 << TYPE_BITS];
283 static unsigned long object_count;
284 static unsigned long branch_count;
285 static unsigned long branch_load_count;
286 static int failure;
287 static FILE *pack_edges;
289 /* Memory pools */
290 static size_t mem_pool_alloc = 2*1024*1024 - sizeof(struct mem_pool);
291 static size_t total_allocd;
292 static struct mem_pool *mem_pool;
294 /* Atom management */
295 static unsigned int atom_table_sz = 4451;
296 static unsigned int atom_cnt;
297 static struct atom_str **atom_table;
299 /* The .pack file being generated */
300 static unsigned int pack_id;
301 static struct packed_git *pack_data;
302 static struct packed_git **all_packs;
303 static unsigned long pack_size;
305 /* Table of objects we've written. */
306 static unsigned int object_entry_alloc = 5000;
307 static struct object_entry_pool *blocks;
308 static struct object_entry *object_table[1 << 16];
309 static struct mark_set *marks;
310 static const char* mark_file;
312 /* Our last blob */
313 static struct last_object last_blob;
315 /* Tree management */
316 static unsigned int tree_entry_alloc = 1000;
317 static void *avail_tree_entry;
318 static unsigned int avail_tree_table_sz = 100;
319 static struct avail_tree_content **avail_tree_table;
320 static struct dbuf old_tree;
321 static struct dbuf new_tree;
323 /* Branch data */
324 static unsigned long max_active_branches = 5;
325 static unsigned long cur_active_branches;
326 static unsigned long branch_table_sz = 1039;
327 static struct branch **branch_table;
328 static struct branch *active_branches;
330 /* Tag data */
331 static struct tag *first_tag;
332 static struct tag *last_tag;
334 /* Input stream parsing */
335 static whenspec_type whenspec = WHENSPEC_RAW;
336 static struct strbuf command_buf;
337 static int unread_command_buf;
338 static uintmax_t next_mark;
339 static struct dbuf new_data;
341 static void write_branch_report(FILE *rpt, struct branch *b)
343 fprintf(rpt, "%s:\n", b->name);
345 fprintf(rpt, " status :");
346 if (b->active)
347 fputs(" active", rpt);
348 if (b->branch_tree.tree)
349 fputs(" loaded", rpt);
350 if (is_null_sha1(b->branch_tree.versions[1].sha1))
351 fputs(" dirty", rpt);
352 fputc('\n', rpt);
354 fprintf(rpt, " tip commit : %s\n", sha1_to_hex(b->sha1));
355 fprintf(rpt, " old tree : %s\n", sha1_to_hex(b->branch_tree.versions[0].sha1));
356 fprintf(rpt, " cur tree : %s\n", sha1_to_hex(b->branch_tree.versions[1].sha1));
357 fprintf(rpt, " commit clock: %" PRIuMAX "\n", b->last_commit);
359 fputs(" last pack : ", rpt);
360 if (b->pack_id < MAX_PACK_ID)
361 fprintf(rpt, "%u", b->pack_id);
362 fputc('\n', rpt);
364 fputc('\n', rpt);
367 static void write_crash_report(const char *err, va_list params)
369 char *loc = git_path("fast_import_crash_%d", getpid());
370 FILE *rpt = fopen(loc, "w");
371 struct branch *b;
372 unsigned long lu;
374 if (!rpt) {
375 error("can't write crash report %s: %s", loc, strerror(errno));
376 return;
379 fprintf(stderr, "fast-import: dumping crash report to %s\n", loc);
381 fprintf(rpt, "fast-import crash report:\n");
382 fprintf(rpt, " fast-import process: %d\n", getpid());
383 fprintf(rpt, " parent process : %d\n", getppid());
384 fprintf(rpt, " at %s\n", show_date(time(NULL), 0, DATE_LOCAL));
385 fputc('\n', rpt);
387 fputs("fatal: ", rpt);
388 vfprintf(rpt, err, params);
389 fputc('\n', rpt);
391 fputc('\n', rpt);
392 fputs("Active Branch LRU\n", rpt);
393 fputs("-----------------\n", rpt);
394 fprintf(rpt, " active_branches = %lu cur, %lu max\n",
395 cur_active_branches,
396 max_active_branches);
397 fputc('\n', rpt);
398 fputs(" pos clock name\n", rpt);
399 fputs(" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n", rpt);
400 for (b = active_branches, lu = 0; b; b = b->active_next_branch)
401 fprintf(rpt, " %2lu) %6" PRIuMAX" %s\n",
402 ++lu, b->last_commit, b->name);
404 fputc('\n', rpt);
405 fputs("Inactive Branches\n", rpt);
406 fputs("-----------------\n", rpt);
407 for (lu = 0; lu < branch_table_sz; lu++) {
408 for (b = branch_table[lu]; b; b = b->table_next_branch)
409 write_branch_report(rpt, b);
412 fputc('\n', rpt);
413 fputs("-------------------\n", rpt);
414 fputs("END OF CRASH REPORT\n", rpt);
415 fclose(rpt);
418 static NORETURN void die_nicely(const char *err, va_list params)
420 static int zombie;
422 fputs("fatal: ", stderr);
423 vfprintf(stderr, err, params);
424 fputc('\n', stderr);
426 if (!zombie) {
427 zombie = 1;
428 write_crash_report(err, params);
431 exit(128);
434 static void alloc_objects(unsigned int cnt)
436 struct object_entry_pool *b;
438 b = xmalloc(sizeof(struct object_entry_pool)
439 + cnt * sizeof(struct object_entry));
440 b->next_pool = blocks;
441 b->next_free = b->entries;
442 b->end = b->entries + cnt;
443 blocks = b;
444 alloc_count += cnt;
447 static struct object_entry *new_object(unsigned char *sha1)
449 struct object_entry *e;
451 if (blocks->next_free == blocks->end)
452 alloc_objects(object_entry_alloc);
454 e = blocks->next_free++;
455 hashcpy(e->sha1, sha1);
456 return e;
459 static struct object_entry *find_object(unsigned char *sha1)
461 unsigned int h = sha1[0] << 8 | sha1[1];
462 struct object_entry *e;
463 for (e = object_table[h]; e; e = e->next)
464 if (!hashcmp(sha1, e->sha1))
465 return e;
466 return NULL;
469 static struct object_entry *insert_object(unsigned char *sha1)
471 unsigned int h = sha1[0] << 8 | sha1[1];
472 struct object_entry *e = object_table[h];
473 struct object_entry *p = NULL;
475 while (e) {
476 if (!hashcmp(sha1, e->sha1))
477 return e;
478 p = e;
479 e = e->next;
482 e = new_object(sha1);
483 e->next = NULL;
484 e->offset = 0;
485 if (p)
486 p->next = e;
487 else
488 object_table[h] = e;
489 return e;
492 static unsigned int hc_str(const char *s, size_t len)
494 unsigned int r = 0;
495 while (len-- > 0)
496 r = r * 31 + *s++;
497 return r;
500 static void *pool_alloc(size_t len)
502 struct mem_pool *p;
503 void *r;
505 for (p = mem_pool; p; p = p->next_pool)
506 if ((p->end - p->next_free >= len))
507 break;
509 if (!p) {
510 if (len >= (mem_pool_alloc/2)) {
511 total_allocd += len;
512 return xmalloc(len);
514 total_allocd += sizeof(struct mem_pool) + mem_pool_alloc;
515 p = xmalloc(sizeof(struct mem_pool) + mem_pool_alloc);
516 p->next_pool = mem_pool;
517 p->next_free = p->space;
518 p->end = p->next_free + mem_pool_alloc;
519 mem_pool = p;
522 r = p->next_free;
523 /* round out to a pointer alignment */
524 if (len & (sizeof(void*) - 1))
525 len += sizeof(void*) - (len & (sizeof(void*) - 1));
526 p->next_free += len;
527 return r;
530 static void *pool_calloc(size_t count, size_t size)
532 size_t len = count * size;
533 void *r = pool_alloc(len);
534 memset(r, 0, len);
535 return r;
538 static char *pool_strdup(const char *s)
540 char *r = pool_alloc(strlen(s) + 1);
541 strcpy(r, s);
542 return r;
545 static void size_dbuf(struct dbuf *b, size_t maxlen)
547 if (b->buffer) {
548 if (b->capacity >= maxlen)
549 return;
550 free(b->buffer);
552 b->capacity = ((maxlen / 1024) + 1) * 1024;
553 b->buffer = xmalloc(b->capacity);
556 static void insert_mark(uintmax_t idnum, struct object_entry *oe)
558 struct mark_set *s = marks;
559 while ((idnum >> s->shift) >= 1024) {
560 s = pool_calloc(1, sizeof(struct mark_set));
561 s->shift = marks->shift + 10;
562 s->data.sets[0] = marks;
563 marks = s;
565 while (s->shift) {
566 uintmax_t i = idnum >> s->shift;
567 idnum -= i << s->shift;
568 if (!s->data.sets[i]) {
569 s->data.sets[i] = pool_calloc(1, sizeof(struct mark_set));
570 s->data.sets[i]->shift = s->shift - 10;
572 s = s->data.sets[i];
574 if (!s->data.marked[idnum])
575 marks_set_count++;
576 s->data.marked[idnum] = oe;
579 static struct object_entry *find_mark(uintmax_t idnum)
581 uintmax_t orig_idnum = idnum;
582 struct mark_set *s = marks;
583 struct object_entry *oe = NULL;
584 if ((idnum >> s->shift) < 1024) {
585 while (s && s->shift) {
586 uintmax_t i = idnum >> s->shift;
587 idnum -= i << s->shift;
588 s = s->data.sets[i];
590 if (s)
591 oe = s->data.marked[idnum];
593 if (!oe)
594 die("mark :%" PRIuMAX " not declared", orig_idnum);
595 return oe;
598 static struct atom_str *to_atom(const char *s, unsigned short len)
600 unsigned int hc = hc_str(s, len) % atom_table_sz;
601 struct atom_str *c;
603 for (c = atom_table[hc]; c; c = c->next_atom)
604 if (c->str_len == len && !strncmp(s, c->str_dat, len))
605 return c;
607 c = pool_alloc(sizeof(struct atom_str) + len + 1);
608 c->str_len = len;
609 strncpy(c->str_dat, s, len);
610 c->str_dat[len] = 0;
611 c->next_atom = atom_table[hc];
612 atom_table[hc] = c;
613 atom_cnt++;
614 return c;
617 static struct branch *lookup_branch(const char *name)
619 unsigned int hc = hc_str(name, strlen(name)) % branch_table_sz;
620 struct branch *b;
622 for (b = branch_table[hc]; b; b = b->table_next_branch)
623 if (!strcmp(name, b->name))
624 return b;
625 return NULL;
628 static struct branch *new_branch(const char *name)
630 unsigned int hc = hc_str(name, strlen(name)) % branch_table_sz;
631 struct branch* b = lookup_branch(name);
633 if (b)
634 die("Invalid attempt to create duplicate branch: %s", name);
635 switch (check_ref_format(name)) {
636 case 0: break; /* its valid */
637 case -2: break; /* valid, but too few '/', allow anyway */
638 default:
639 die("Branch name doesn't conform to GIT standards: %s", name);
642 b = pool_calloc(1, sizeof(struct branch));
643 b->name = pool_strdup(name);
644 b->table_next_branch = branch_table[hc];
645 b->branch_tree.versions[0].mode = S_IFDIR;
646 b->branch_tree.versions[1].mode = S_IFDIR;
647 b->active = 0;
648 b->pack_id = MAX_PACK_ID;
649 branch_table[hc] = b;
650 branch_count++;
651 return b;
654 static unsigned int hc_entries(unsigned int cnt)
656 cnt = cnt & 7 ? (cnt / 8) + 1 : cnt / 8;
657 return cnt < avail_tree_table_sz ? cnt : avail_tree_table_sz - 1;
660 static struct tree_content *new_tree_content(unsigned int cnt)
662 struct avail_tree_content *f, *l = NULL;
663 struct tree_content *t;
664 unsigned int hc = hc_entries(cnt);
666 for (f = avail_tree_table[hc]; f; l = f, f = f->next_avail)
667 if (f->entry_capacity >= cnt)
668 break;
670 if (f) {
671 if (l)
672 l->next_avail = f->next_avail;
673 else
674 avail_tree_table[hc] = f->next_avail;
675 } else {
676 cnt = cnt & 7 ? ((cnt / 8) + 1) * 8 : cnt;
677 f = pool_alloc(sizeof(*t) + sizeof(t->entries[0]) * cnt);
678 f->entry_capacity = cnt;
681 t = (struct tree_content*)f;
682 t->entry_count = 0;
683 t->delta_depth = 0;
684 return t;
687 static void release_tree_entry(struct tree_entry *e);
688 static void release_tree_content(struct tree_content *t)
690 struct avail_tree_content *f = (struct avail_tree_content*)t;
691 unsigned int hc = hc_entries(f->entry_capacity);
692 f->next_avail = avail_tree_table[hc];
693 avail_tree_table[hc] = f;
696 static void release_tree_content_recursive(struct tree_content *t)
698 unsigned int i;
699 for (i = 0; i < t->entry_count; i++)
700 release_tree_entry(t->entries[i]);
701 release_tree_content(t);
704 static struct tree_content *grow_tree_content(
705 struct tree_content *t,
706 int amt)
708 struct tree_content *r = new_tree_content(t->entry_count + amt);
709 r->entry_count = t->entry_count;
710 r->delta_depth = t->delta_depth;
711 memcpy(r->entries,t->entries,t->entry_count*sizeof(t->entries[0]));
712 release_tree_content(t);
713 return r;
716 static struct tree_entry *new_tree_entry(void)
718 struct tree_entry *e;
720 if (!avail_tree_entry) {
721 unsigned int n = tree_entry_alloc;
722 total_allocd += n * sizeof(struct tree_entry);
723 avail_tree_entry = e = xmalloc(n * sizeof(struct tree_entry));
724 while (n-- > 1) {
725 *((void**)e) = e + 1;
726 e++;
728 *((void**)e) = NULL;
731 e = avail_tree_entry;
732 avail_tree_entry = *((void**)e);
733 return e;
736 static void release_tree_entry(struct tree_entry *e)
738 if (e->tree)
739 release_tree_content_recursive(e->tree);
740 *((void**)e) = avail_tree_entry;
741 avail_tree_entry = e;
744 static struct tree_content *dup_tree_content(struct tree_content *s)
746 struct tree_content *d;
747 struct tree_entry *a, *b;
748 unsigned int i;
750 if (!s)
751 return NULL;
752 d = new_tree_content(s->entry_count);
753 for (i = 0; i < s->entry_count; i++) {
754 a = s->entries[i];
755 b = new_tree_entry();
756 memcpy(b, a, sizeof(*a));
757 if (a->tree && is_null_sha1(b->versions[1].sha1))
758 b->tree = dup_tree_content(a->tree);
759 else
760 b->tree = NULL;
761 d->entries[i] = b;
763 d->entry_count = s->entry_count;
764 d->delta_depth = s->delta_depth;
766 return d;
769 static void start_packfile(void)
771 static char tmpfile[PATH_MAX];
772 struct packed_git *p;
773 struct pack_header hdr;
774 int pack_fd;
776 snprintf(tmpfile, sizeof(tmpfile),
777 "%s/tmp_pack_XXXXXX", get_object_directory());
778 pack_fd = xmkstemp(tmpfile);
779 p = xcalloc(1, sizeof(*p) + strlen(tmpfile) + 2);
780 strcpy(p->pack_name, tmpfile);
781 p->pack_fd = pack_fd;
783 hdr.hdr_signature = htonl(PACK_SIGNATURE);
784 hdr.hdr_version = htonl(2);
785 hdr.hdr_entries = 0;
786 write_or_die(p->pack_fd, &hdr, sizeof(hdr));
788 pack_data = p;
789 pack_size = sizeof(hdr);
790 object_count = 0;
792 all_packs = xrealloc(all_packs, sizeof(*all_packs) * (pack_id + 1));
793 all_packs[pack_id] = p;
796 static int oecmp (const void *a_, const void *b_)
798 struct object_entry *a = *((struct object_entry**)a_);
799 struct object_entry *b = *((struct object_entry**)b_);
800 return hashcmp(a->sha1, b->sha1);
803 static char *create_index(void)
805 static char tmpfile[PATH_MAX];
806 SHA_CTX ctx;
807 struct sha1file *f;
808 struct object_entry **idx, **c, **last, *e;
809 struct object_entry_pool *o;
810 uint32_t array[256];
811 int i, idx_fd;
813 /* Build the sorted table of object IDs. */
814 idx = xmalloc(object_count * sizeof(struct object_entry*));
815 c = idx;
816 for (o = blocks; o; o = o->next_pool)
817 for (e = o->next_free; e-- != o->entries;)
818 if (pack_id == e->pack_id)
819 *c++ = e;
820 last = idx + object_count;
821 if (c != last)
822 die("internal consistency error creating the index");
823 qsort(idx, object_count, sizeof(struct object_entry*), oecmp);
825 /* Generate the fan-out array. */
826 c = idx;
827 for (i = 0; i < 256; i++) {
828 struct object_entry **next = c;;
829 while (next < last) {
830 if ((*next)->sha1[0] != i)
831 break;
832 next++;
834 array[i] = htonl(next - idx);
835 c = next;
838 snprintf(tmpfile, sizeof(tmpfile),
839 "%s/tmp_idx_XXXXXX", get_object_directory());
840 idx_fd = xmkstemp(tmpfile);
841 f = sha1fd(idx_fd, tmpfile);
842 sha1write(f, array, 256 * sizeof(int));
843 SHA1_Init(&ctx);
844 for (c = idx; c != last; c++) {
845 uint32_t offset = htonl((*c)->offset);
846 sha1write(f, &offset, 4);
847 sha1write(f, (*c)->sha1, sizeof((*c)->sha1));
848 SHA1_Update(&ctx, (*c)->sha1, 20);
850 sha1write(f, pack_data->sha1, sizeof(pack_data->sha1));
851 sha1close(f, NULL, 1);
852 free(idx);
853 SHA1_Final(pack_data->sha1, &ctx);
854 return tmpfile;
857 static char *keep_pack(char *curr_index_name)
859 static char name[PATH_MAX];
860 static const char *keep_msg = "fast-import";
861 int keep_fd;
863 chmod(pack_data->pack_name, 0444);
864 chmod(curr_index_name, 0444);
866 snprintf(name, sizeof(name), "%s/pack/pack-%s.keep",
867 get_object_directory(), sha1_to_hex(pack_data->sha1));
868 keep_fd = open(name, O_RDWR|O_CREAT|O_EXCL, 0600);
869 if (keep_fd < 0)
870 die("cannot create keep file");
871 write(keep_fd, keep_msg, strlen(keep_msg));
872 close(keep_fd);
874 snprintf(name, sizeof(name), "%s/pack/pack-%s.pack",
875 get_object_directory(), sha1_to_hex(pack_data->sha1));
876 if (move_temp_to_file(pack_data->pack_name, name))
877 die("cannot store pack file");
879 snprintf(name, sizeof(name), "%s/pack/pack-%s.idx",
880 get_object_directory(), sha1_to_hex(pack_data->sha1));
881 if (move_temp_to_file(curr_index_name, name))
882 die("cannot store index file");
883 return name;
886 static void unkeep_all_packs(void)
888 static char name[PATH_MAX];
889 int k;
891 for (k = 0; k < pack_id; k++) {
892 struct packed_git *p = all_packs[k];
893 snprintf(name, sizeof(name), "%s/pack/pack-%s.keep",
894 get_object_directory(), sha1_to_hex(p->sha1));
895 unlink(name);
899 static void end_packfile(void)
901 struct packed_git *old_p = pack_data, *new_p;
903 if (object_count) {
904 char *idx_name;
905 int i;
906 struct branch *b;
907 struct tag *t;
909 fixup_pack_header_footer(pack_data->pack_fd, pack_data->sha1,
910 pack_data->pack_name, object_count);
911 close(pack_data->pack_fd);
912 idx_name = keep_pack(create_index());
914 /* Register the packfile with core git's machinary. */
915 new_p = add_packed_git(idx_name, strlen(idx_name), 1);
916 if (!new_p)
917 die("core git rejected index %s", idx_name);
918 new_p->windows = old_p->windows;
919 all_packs[pack_id] = new_p;
920 install_packed_git(new_p);
922 /* Print the boundary */
923 if (pack_edges) {
924 fprintf(pack_edges, "%s:", new_p->pack_name);
925 for (i = 0; i < branch_table_sz; i++) {
926 for (b = branch_table[i]; b; b = b->table_next_branch) {
927 if (b->pack_id == pack_id)
928 fprintf(pack_edges, " %s", sha1_to_hex(b->sha1));
931 for (t = first_tag; t; t = t->next_tag) {
932 if (t->pack_id == pack_id)
933 fprintf(pack_edges, " %s", sha1_to_hex(t->sha1));
935 fputc('\n', pack_edges);
936 fflush(pack_edges);
939 pack_id++;
941 else
942 unlink(old_p->pack_name);
943 free(old_p);
945 /* We can't carry a delta across packfiles. */
946 free(last_blob.data);
947 last_blob.data = NULL;
948 last_blob.len = 0;
949 last_blob.offset = 0;
950 last_blob.depth = 0;
953 static void cycle_packfile(void)
955 end_packfile();
956 start_packfile();
959 static size_t encode_header(
960 enum object_type type,
961 size_t size,
962 unsigned char *hdr)
964 int n = 1;
965 unsigned char c;
967 if (type < OBJ_COMMIT || type > OBJ_REF_DELTA)
968 die("bad type %d", type);
970 c = (type << 4) | (size & 15);
971 size >>= 4;
972 while (size) {
973 *hdr++ = c | 0x80;
974 c = size & 0x7f;
975 size >>= 7;
976 n++;
978 *hdr = c;
979 return n;
982 static int store_object(
983 enum object_type type,
984 void *dat,
985 size_t datlen,
986 struct last_object *last,
987 unsigned char *sha1out,
988 uintmax_t mark)
990 void *out, *delta;
991 struct object_entry *e;
992 unsigned char hdr[96];
993 unsigned char sha1[20];
994 unsigned long hdrlen, deltalen;
995 SHA_CTX c;
996 z_stream s;
998 hdrlen = sprintf((char*)hdr,"%s %lu", typename(type),
999 (unsigned long)datlen) + 1;
1000 SHA1_Init(&c);
1001 SHA1_Update(&c, hdr, hdrlen);
1002 SHA1_Update(&c, dat, datlen);
1003 SHA1_Final(sha1, &c);
1004 if (sha1out)
1005 hashcpy(sha1out, sha1);
1007 e = insert_object(sha1);
1008 if (mark)
1009 insert_mark(mark, e);
1010 if (e->offset) {
1011 duplicate_count_by_type[type]++;
1012 return 1;
1013 } else if (find_sha1_pack(sha1, packed_git)) {
1014 e->type = type;
1015 e->pack_id = MAX_PACK_ID;
1016 e->offset = 1; /* just not zero! */
1017 duplicate_count_by_type[type]++;
1018 return 1;
1021 if (last && last->data && last->depth < max_depth) {
1022 delta = diff_delta(last->data, last->len,
1023 dat, datlen,
1024 &deltalen, 0);
1025 if (delta && deltalen >= datlen) {
1026 free(delta);
1027 delta = NULL;
1029 } else
1030 delta = NULL;
1032 memset(&s, 0, sizeof(s));
1033 deflateInit(&s, zlib_compression_level);
1034 if (delta) {
1035 s.next_in = delta;
1036 s.avail_in = deltalen;
1037 } else {
1038 s.next_in = dat;
1039 s.avail_in = datlen;
1041 s.avail_out = deflateBound(&s, s.avail_in);
1042 s.next_out = out = xmalloc(s.avail_out);
1043 while (deflate(&s, Z_FINISH) == Z_OK)
1044 /* nothing */;
1045 deflateEnd(&s);
1047 /* Determine if we should auto-checkpoint. */
1048 if ((pack_size + 60 + s.total_out) > max_packsize
1049 || (pack_size + 60 + s.total_out) < pack_size) {
1051 /* This new object needs to *not* have the current pack_id. */
1052 e->pack_id = pack_id + 1;
1053 cycle_packfile();
1055 /* We cannot carry a delta into the new pack. */
1056 if (delta) {
1057 free(delta);
1058 delta = NULL;
1060 memset(&s, 0, sizeof(s));
1061 deflateInit(&s, zlib_compression_level);
1062 s.next_in = dat;
1063 s.avail_in = datlen;
1064 s.avail_out = deflateBound(&s, s.avail_in);
1065 s.next_out = out = xrealloc(out, s.avail_out);
1066 while (deflate(&s, Z_FINISH) == Z_OK)
1067 /* nothing */;
1068 deflateEnd(&s);
1072 e->type = type;
1073 e->pack_id = pack_id;
1074 e->offset = pack_size;
1075 object_count++;
1076 object_count_by_type[type]++;
1078 if (delta) {
1079 unsigned long ofs = e->offset - last->offset;
1080 unsigned pos = sizeof(hdr) - 1;
1082 delta_count_by_type[type]++;
1083 last->depth++;
1085 hdrlen = encode_header(OBJ_OFS_DELTA, deltalen, hdr);
1086 write_or_die(pack_data->pack_fd, hdr, hdrlen);
1087 pack_size += hdrlen;
1089 hdr[pos] = ofs & 127;
1090 while (ofs >>= 7)
1091 hdr[--pos] = 128 | (--ofs & 127);
1092 write_or_die(pack_data->pack_fd, hdr + pos, sizeof(hdr) - pos);
1093 pack_size += sizeof(hdr) - pos;
1094 } else {
1095 if (last)
1096 last->depth = 0;
1097 hdrlen = encode_header(type, datlen, hdr);
1098 write_or_die(pack_data->pack_fd, hdr, hdrlen);
1099 pack_size += hdrlen;
1102 write_or_die(pack_data->pack_fd, out, s.total_out);
1103 pack_size += s.total_out;
1105 free(out);
1106 free(delta);
1107 if (last) {
1108 if (!last->no_free)
1109 free(last->data);
1110 last->data = dat;
1111 last->offset = e->offset;
1112 last->len = datlen;
1114 return 0;
1117 static void *gfi_unpack_entry(
1118 struct object_entry *oe,
1119 unsigned long *sizep)
1121 enum object_type type;
1122 struct packed_git *p = all_packs[oe->pack_id];
1123 if (p == pack_data)
1124 p->pack_size = pack_size + 20;
1125 return unpack_entry(p, oe->offset, &type, sizep);
1128 static const char *get_mode(const char *str, uint16_t *modep)
1130 unsigned char c;
1131 uint16_t mode = 0;
1133 while ((c = *str++) != ' ') {
1134 if (c < '0' || c > '7')
1135 return NULL;
1136 mode = (mode << 3) + (c - '0');
1138 *modep = mode;
1139 return str;
1142 static void load_tree(struct tree_entry *root)
1144 unsigned char* sha1 = root->versions[1].sha1;
1145 struct object_entry *myoe;
1146 struct tree_content *t;
1147 unsigned long size;
1148 char *buf;
1149 const char *c;
1151 root->tree = t = new_tree_content(8);
1152 if (is_null_sha1(sha1))
1153 return;
1155 myoe = find_object(sha1);
1156 if (myoe && myoe->pack_id != MAX_PACK_ID) {
1157 if (myoe->type != OBJ_TREE)
1158 die("Not a tree: %s", sha1_to_hex(sha1));
1159 t->delta_depth = 0;
1160 buf = gfi_unpack_entry(myoe, &size);
1161 } else {
1162 enum object_type type;
1163 buf = read_sha1_file(sha1, &type, &size);
1164 if (!buf || type != OBJ_TREE)
1165 die("Can't load tree %s", sha1_to_hex(sha1));
1168 c = buf;
1169 while (c != (buf + size)) {
1170 struct tree_entry *e = new_tree_entry();
1172 if (t->entry_count == t->entry_capacity)
1173 root->tree = t = grow_tree_content(t, t->entry_count);
1174 t->entries[t->entry_count++] = e;
1176 e->tree = NULL;
1177 c = get_mode(c, &e->versions[1].mode);
1178 if (!c)
1179 die("Corrupt mode in %s", sha1_to_hex(sha1));
1180 e->versions[0].mode = e->versions[1].mode;
1181 e->name = to_atom(c, strlen(c));
1182 c += e->name->str_len + 1;
1183 hashcpy(e->versions[0].sha1, (unsigned char*)c);
1184 hashcpy(e->versions[1].sha1, (unsigned char*)c);
1185 c += 20;
1187 free(buf);
1190 static int tecmp0 (const void *_a, const void *_b)
1192 struct tree_entry *a = *((struct tree_entry**)_a);
1193 struct tree_entry *b = *((struct tree_entry**)_b);
1194 return base_name_compare(
1195 a->name->str_dat, a->name->str_len, a->versions[0].mode,
1196 b->name->str_dat, b->name->str_len, b->versions[0].mode);
1199 static int tecmp1 (const void *_a, const void *_b)
1201 struct tree_entry *a = *((struct tree_entry**)_a);
1202 struct tree_entry *b = *((struct tree_entry**)_b);
1203 return base_name_compare(
1204 a->name->str_dat, a->name->str_len, a->versions[1].mode,
1205 b->name->str_dat, b->name->str_len, b->versions[1].mode);
1208 static void mktree(struct tree_content *t,
1209 int v,
1210 unsigned long *szp,
1211 struct dbuf *b)
1213 size_t maxlen = 0;
1214 unsigned int i;
1215 char *c;
1217 if (!v)
1218 qsort(t->entries,t->entry_count,sizeof(t->entries[0]),tecmp0);
1219 else
1220 qsort(t->entries,t->entry_count,sizeof(t->entries[0]),tecmp1);
1222 for (i = 0; i < t->entry_count; i++) {
1223 if (t->entries[i]->versions[v].mode)
1224 maxlen += t->entries[i]->name->str_len + 34;
1227 size_dbuf(b, maxlen);
1228 c = b->buffer;
1229 for (i = 0; i < t->entry_count; i++) {
1230 struct tree_entry *e = t->entries[i];
1231 if (!e->versions[v].mode)
1232 continue;
1233 c += sprintf(c, "%o", (unsigned int)e->versions[v].mode);
1234 *c++ = ' ';
1235 strcpy(c, e->name->str_dat);
1236 c += e->name->str_len + 1;
1237 hashcpy((unsigned char*)c, e->versions[v].sha1);
1238 c += 20;
1240 *szp = c - (char*)b->buffer;
1243 static void store_tree(struct tree_entry *root)
1245 struct tree_content *t = root->tree;
1246 unsigned int i, j, del;
1247 unsigned long new_len;
1248 struct last_object lo;
1249 struct object_entry *le;
1251 if (!is_null_sha1(root->versions[1].sha1))
1252 return;
1254 for (i = 0; i < t->entry_count; i++) {
1255 if (t->entries[i]->tree)
1256 store_tree(t->entries[i]);
1259 le = find_object(root->versions[0].sha1);
1260 if (!S_ISDIR(root->versions[0].mode)
1261 || !le
1262 || le->pack_id != pack_id) {
1263 lo.data = NULL;
1264 lo.depth = 0;
1265 lo.no_free = 0;
1266 } else {
1267 mktree(t, 0, &lo.len, &old_tree);
1268 lo.data = old_tree.buffer;
1269 lo.offset = le->offset;
1270 lo.depth = t->delta_depth;
1271 lo.no_free = 1;
1274 mktree(t, 1, &new_len, &new_tree);
1275 store_object(OBJ_TREE, new_tree.buffer, new_len,
1276 &lo, root->versions[1].sha1, 0);
1278 t->delta_depth = lo.depth;
1279 for (i = 0, j = 0, del = 0; i < t->entry_count; i++) {
1280 struct tree_entry *e = t->entries[i];
1281 if (e->versions[1].mode) {
1282 e->versions[0].mode = e->versions[1].mode;
1283 hashcpy(e->versions[0].sha1, e->versions[1].sha1);
1284 t->entries[j++] = e;
1285 } else {
1286 release_tree_entry(e);
1287 del++;
1290 t->entry_count -= del;
1293 static int tree_content_set(
1294 struct tree_entry *root,
1295 const char *p,
1296 const unsigned char *sha1,
1297 const uint16_t mode,
1298 struct tree_content *subtree)
1300 struct tree_content *t = root->tree;
1301 const char *slash1;
1302 unsigned int i, n;
1303 struct tree_entry *e;
1305 slash1 = strchr(p, '/');
1306 if (slash1)
1307 n = slash1 - p;
1308 else
1309 n = strlen(p);
1310 if (!n)
1311 die("Empty path component found in input");
1312 if (!slash1 && !S_ISDIR(mode) && subtree)
1313 die("Non-directories cannot have subtrees");
1315 for (i = 0; i < t->entry_count; i++) {
1316 e = t->entries[i];
1317 if (e->name->str_len == n && !strncmp(p, e->name->str_dat, n)) {
1318 if (!slash1) {
1319 if (!S_ISDIR(mode)
1320 && e->versions[1].mode == mode
1321 && !hashcmp(e->versions[1].sha1, sha1))
1322 return 0;
1323 e->versions[1].mode = mode;
1324 hashcpy(e->versions[1].sha1, sha1);
1325 if (e->tree)
1326 release_tree_content_recursive(e->tree);
1327 e->tree = subtree;
1328 hashclr(root->versions[1].sha1);
1329 return 1;
1331 if (!S_ISDIR(e->versions[1].mode)) {
1332 e->tree = new_tree_content(8);
1333 e->versions[1].mode = S_IFDIR;
1335 if (!e->tree)
1336 load_tree(e);
1337 if (tree_content_set(e, slash1 + 1, sha1, mode, subtree)) {
1338 hashclr(root->versions[1].sha1);
1339 return 1;
1341 return 0;
1345 if (t->entry_count == t->entry_capacity)
1346 root->tree = t = grow_tree_content(t, t->entry_count);
1347 e = new_tree_entry();
1348 e->name = to_atom(p, n);
1349 e->versions[0].mode = 0;
1350 hashclr(e->versions[0].sha1);
1351 t->entries[t->entry_count++] = e;
1352 if (slash1) {
1353 e->tree = new_tree_content(8);
1354 e->versions[1].mode = S_IFDIR;
1355 tree_content_set(e, slash1 + 1, sha1, mode, subtree);
1356 } else {
1357 e->tree = subtree;
1358 e->versions[1].mode = mode;
1359 hashcpy(e->versions[1].sha1, sha1);
1361 hashclr(root->versions[1].sha1);
1362 return 1;
1365 static int tree_content_remove(
1366 struct tree_entry *root,
1367 const char *p,
1368 struct tree_entry *backup_leaf)
1370 struct tree_content *t = root->tree;
1371 const char *slash1;
1372 unsigned int i, n;
1373 struct tree_entry *e;
1375 slash1 = strchr(p, '/');
1376 if (slash1)
1377 n = slash1 - p;
1378 else
1379 n = strlen(p);
1381 for (i = 0; i < t->entry_count; i++) {
1382 e = t->entries[i];
1383 if (e->name->str_len == n && !strncmp(p, e->name->str_dat, n)) {
1384 if (!slash1 || !S_ISDIR(e->versions[1].mode))
1385 goto del_entry;
1386 if (!e->tree)
1387 load_tree(e);
1388 if (tree_content_remove(e, slash1 + 1, backup_leaf)) {
1389 for (n = 0; n < e->tree->entry_count; n++) {
1390 if (e->tree->entries[n]->versions[1].mode) {
1391 hashclr(root->versions[1].sha1);
1392 return 1;
1395 backup_leaf = NULL;
1396 goto del_entry;
1398 return 0;
1401 return 0;
1403 del_entry:
1404 if (backup_leaf)
1405 memcpy(backup_leaf, e, sizeof(*backup_leaf));
1406 else if (e->tree)
1407 release_tree_content_recursive(e->tree);
1408 e->tree = NULL;
1409 e->versions[1].mode = 0;
1410 hashclr(e->versions[1].sha1);
1411 hashclr(root->versions[1].sha1);
1412 return 1;
1415 static int tree_content_get(
1416 struct tree_entry *root,
1417 const char *p,
1418 struct tree_entry *leaf)
1420 struct tree_content *t = root->tree;
1421 const char *slash1;
1422 unsigned int i, n;
1423 struct tree_entry *e;
1425 slash1 = strchr(p, '/');
1426 if (slash1)
1427 n = slash1 - p;
1428 else
1429 n = strlen(p);
1431 for (i = 0; i < t->entry_count; i++) {
1432 e = t->entries[i];
1433 if (e->name->str_len == n && !strncmp(p, e->name->str_dat, n)) {
1434 if (!slash1) {
1435 memcpy(leaf, e, sizeof(*leaf));
1436 if (e->tree && is_null_sha1(e->versions[1].sha1))
1437 leaf->tree = dup_tree_content(e->tree);
1438 else
1439 leaf->tree = NULL;
1440 return 1;
1442 if (!S_ISDIR(e->versions[1].mode))
1443 return 0;
1444 if (!e->tree)
1445 load_tree(e);
1446 return tree_content_get(e, slash1 + 1, leaf);
1449 return 0;
1452 static int update_branch(struct branch *b)
1454 static const char *msg = "fast-import";
1455 struct ref_lock *lock;
1456 unsigned char old_sha1[20];
1458 if (read_ref(b->name, old_sha1))
1459 hashclr(old_sha1);
1460 lock = lock_any_ref_for_update(b->name, old_sha1, 0);
1461 if (!lock)
1462 return error("Unable to lock %s", b->name);
1463 if (!force_update && !is_null_sha1(old_sha1)) {
1464 struct commit *old_cmit, *new_cmit;
1466 old_cmit = lookup_commit_reference_gently(old_sha1, 0);
1467 new_cmit = lookup_commit_reference_gently(b->sha1, 0);
1468 if (!old_cmit || !new_cmit) {
1469 unlock_ref(lock);
1470 return error("Branch %s is missing commits.", b->name);
1473 if (!in_merge_bases(old_cmit, &new_cmit, 1)) {
1474 unlock_ref(lock);
1475 warning("Not updating %s"
1476 " (new tip %s does not contain %s)",
1477 b->name, sha1_to_hex(b->sha1), sha1_to_hex(old_sha1));
1478 return -1;
1481 if (write_ref_sha1(lock, b->sha1, msg) < 0)
1482 return error("Unable to update %s", b->name);
1483 return 0;
1486 static void dump_branches(void)
1488 unsigned int i;
1489 struct branch *b;
1491 for (i = 0; i < branch_table_sz; i++) {
1492 for (b = branch_table[i]; b; b = b->table_next_branch)
1493 failure |= update_branch(b);
1497 static void dump_tags(void)
1499 static const char *msg = "fast-import";
1500 struct tag *t;
1501 struct ref_lock *lock;
1502 char ref_name[PATH_MAX];
1504 for (t = first_tag; t; t = t->next_tag) {
1505 sprintf(ref_name, "tags/%s", t->name);
1506 lock = lock_ref_sha1(ref_name, NULL);
1507 if (!lock || write_ref_sha1(lock, t->sha1, msg) < 0)
1508 failure |= error("Unable to update %s", ref_name);
1512 static void dump_marks_helper(FILE *f,
1513 uintmax_t base,
1514 struct mark_set *m)
1516 uintmax_t k;
1517 if (m->shift) {
1518 for (k = 0; k < 1024; k++) {
1519 if (m->data.sets[k])
1520 dump_marks_helper(f, (base + k) << m->shift,
1521 m->data.sets[k]);
1523 } else {
1524 for (k = 0; k < 1024; k++) {
1525 if (m->data.marked[k])
1526 fprintf(f, ":%" PRIuMAX " %s\n", base + k,
1527 sha1_to_hex(m->data.marked[k]->sha1));
1532 static void dump_marks(void)
1534 static struct lock_file mark_lock;
1535 int mark_fd;
1536 FILE *f;
1538 if (!mark_file)
1539 return;
1541 mark_fd = hold_lock_file_for_update(&mark_lock, mark_file, 0);
1542 if (mark_fd < 0) {
1543 failure |= error("Unable to write marks file %s: %s",
1544 mark_file, strerror(errno));
1545 return;
1548 f = fdopen(mark_fd, "w");
1549 if (!f) {
1550 rollback_lock_file(&mark_lock);
1551 failure |= error("Unable to write marks file %s: %s",
1552 mark_file, strerror(errno));
1553 return;
1556 dump_marks_helper(f, 0, marks);
1557 fclose(f);
1558 if (commit_lock_file(&mark_lock))
1559 failure |= error("Unable to write marks file %s: %s",
1560 mark_file, strerror(errno));
1563 static void read_next_command(void)
1565 do {
1566 if (unread_command_buf)
1567 unread_command_buf = 0;
1568 else
1569 read_line(&command_buf, stdin, '\n');
1570 } while (!command_buf.eof && command_buf.buf[0] == '#');
1573 static void skip_optional_lf()
1575 int term_char = fgetc(stdin);
1576 if (term_char != '\n' && term_char != EOF)
1577 ungetc(term_char, stdin);
1580 static void cmd_mark(void)
1582 if (!prefixcmp(command_buf.buf, "mark :")) {
1583 next_mark = strtoumax(command_buf.buf + 6, NULL, 10);
1584 read_next_command();
1586 else
1587 next_mark = 0;
1590 static void *cmd_data (size_t *size)
1592 size_t length;
1593 char *buffer;
1595 if (prefixcmp(command_buf.buf, "data "))
1596 die("Expected 'data n' command, found: %s", command_buf.buf);
1598 if (!prefixcmp(command_buf.buf + 5, "<<")) {
1599 char *term = xstrdup(command_buf.buf + 5 + 2);
1600 size_t sz = 8192, term_len = command_buf.len - 5 - 2;
1601 length = 0;
1602 buffer = xmalloc(sz);
1603 for (;;) {
1604 read_line(&command_buf, stdin, '\n');
1605 if (command_buf.eof)
1606 die("EOF in data (terminator '%s' not found)", term);
1607 if (term_len == command_buf.len
1608 && !strcmp(term, command_buf.buf))
1609 break;
1610 ALLOC_GROW(buffer, length + command_buf.len, sz);
1611 memcpy(buffer + length,
1612 command_buf.buf,
1613 command_buf.len - 1);
1614 length += command_buf.len - 1;
1615 buffer[length++] = '\n';
1617 free(term);
1619 else {
1620 size_t n = 0;
1621 length = strtoul(command_buf.buf + 5, NULL, 10);
1622 buffer = xmalloc(length);
1623 while (n < length) {
1624 size_t s = fread(buffer + n, 1, length - n, stdin);
1625 if (!s && feof(stdin))
1626 die("EOF in data (%lu bytes remaining)",
1627 (unsigned long)(length - n));
1628 n += s;
1632 skip_optional_lf();
1633 *size = length;
1634 return buffer;
1637 static int validate_raw_date(const char *src, char *result, int maxlen)
1639 const char *orig_src = src;
1640 char *endp, sign;
1642 strtoul(src, &endp, 10);
1643 if (endp == src || *endp != ' ')
1644 return -1;
1646 src = endp + 1;
1647 if (*src != '-' && *src != '+')
1648 return -1;
1649 sign = *src;
1651 strtoul(src + 1, &endp, 10);
1652 if (endp == src || *endp || (endp - orig_src) >= maxlen)
1653 return -1;
1655 strcpy(result, orig_src);
1656 return 0;
1659 static char *parse_ident(const char *buf)
1661 const char *gt;
1662 size_t name_len;
1663 char *ident;
1665 gt = strrchr(buf, '>');
1666 if (!gt)
1667 die("Missing > in ident string: %s", buf);
1668 gt++;
1669 if (*gt != ' ')
1670 die("Missing space after > in ident string: %s", buf);
1671 gt++;
1672 name_len = gt - buf;
1673 ident = xmalloc(name_len + 24);
1674 strncpy(ident, buf, name_len);
1676 switch (whenspec) {
1677 case WHENSPEC_RAW:
1678 if (validate_raw_date(gt, ident + name_len, 24) < 0)
1679 die("Invalid raw date \"%s\" in ident: %s", gt, buf);
1680 break;
1681 case WHENSPEC_RFC2822:
1682 if (parse_date(gt, ident + name_len, 24) < 0)
1683 die("Invalid rfc2822 date \"%s\" in ident: %s", gt, buf);
1684 break;
1685 case WHENSPEC_NOW:
1686 if (strcmp("now", gt))
1687 die("Date in ident must be 'now': %s", buf);
1688 datestamp(ident + name_len, 24);
1689 break;
1692 return ident;
1695 static void cmd_new_blob(void)
1697 size_t l;
1698 void *d;
1700 read_next_command();
1701 cmd_mark();
1702 d = cmd_data(&l);
1704 if (store_object(OBJ_BLOB, d, l, &last_blob, NULL, next_mark))
1705 free(d);
1708 static void unload_one_branch(void)
1710 while (cur_active_branches
1711 && cur_active_branches >= max_active_branches) {
1712 uintmax_t min_commit = ULONG_MAX;
1713 struct branch *e, *l = NULL, *p = NULL;
1715 for (e = active_branches; e; e = e->active_next_branch) {
1716 if (e->last_commit < min_commit) {
1717 p = l;
1718 min_commit = e->last_commit;
1720 l = e;
1723 if (p) {
1724 e = p->active_next_branch;
1725 p->active_next_branch = e->active_next_branch;
1726 } else {
1727 e = active_branches;
1728 active_branches = e->active_next_branch;
1730 e->active = 0;
1731 e->active_next_branch = NULL;
1732 if (e->branch_tree.tree) {
1733 release_tree_content_recursive(e->branch_tree.tree);
1734 e->branch_tree.tree = NULL;
1736 cur_active_branches--;
1740 static void load_branch(struct branch *b)
1742 load_tree(&b->branch_tree);
1743 if (!b->active) {
1744 b->active = 1;
1745 b->active_next_branch = active_branches;
1746 active_branches = b;
1747 cur_active_branches++;
1748 branch_load_count++;
1752 static void file_change_m(struct branch *b)
1754 const char *p = command_buf.buf + 2;
1755 char *p_uq;
1756 const char *endp;
1757 struct object_entry *oe = oe;
1758 unsigned char sha1[20];
1759 uint16_t mode, inline_data = 0;
1761 p = get_mode(p, &mode);
1762 if (!p)
1763 die("Corrupt mode: %s", command_buf.buf);
1764 switch (mode) {
1765 case S_IFREG | 0644:
1766 case S_IFREG | 0755:
1767 case S_IFLNK:
1768 case 0644:
1769 case 0755:
1770 /* ok */
1771 break;
1772 default:
1773 die("Corrupt mode: %s", command_buf.buf);
1776 if (*p == ':') {
1777 char *x;
1778 oe = find_mark(strtoumax(p + 1, &x, 10));
1779 hashcpy(sha1, oe->sha1);
1780 p = x;
1781 } else if (!prefixcmp(p, "inline")) {
1782 inline_data = 1;
1783 p += 6;
1784 } else {
1785 if (get_sha1_hex(p, sha1))
1786 die("Invalid SHA1: %s", command_buf.buf);
1787 oe = find_object(sha1);
1788 p += 40;
1790 if (*p++ != ' ')
1791 die("Missing space after SHA1: %s", command_buf.buf);
1793 p_uq = unquote_c_style(p, &endp);
1794 if (p_uq) {
1795 if (*endp)
1796 die("Garbage after path in: %s", command_buf.buf);
1797 p = p_uq;
1800 if (inline_data) {
1801 size_t l;
1802 void *d;
1803 if (!p_uq)
1804 p = p_uq = xstrdup(p);
1805 read_next_command();
1806 d = cmd_data(&l);
1807 if (store_object(OBJ_BLOB, d, l, &last_blob, sha1, 0))
1808 free(d);
1809 } else if (oe) {
1810 if (oe->type != OBJ_BLOB)
1811 die("Not a blob (actually a %s): %s",
1812 command_buf.buf, typename(oe->type));
1813 } else {
1814 enum object_type type = sha1_object_info(sha1, NULL);
1815 if (type < 0)
1816 die("Blob not found: %s", command_buf.buf);
1817 if (type != OBJ_BLOB)
1818 die("Not a blob (actually a %s): %s",
1819 typename(type), command_buf.buf);
1822 tree_content_set(&b->branch_tree, p, sha1, S_IFREG | mode, NULL);
1823 free(p_uq);
1826 static void file_change_d(struct branch *b)
1828 const char *p = command_buf.buf + 2;
1829 char *p_uq;
1830 const char *endp;
1832 p_uq = unquote_c_style(p, &endp);
1833 if (p_uq) {
1834 if (*endp)
1835 die("Garbage after path in: %s", command_buf.buf);
1836 p = p_uq;
1838 tree_content_remove(&b->branch_tree, p, NULL);
1839 free(p_uq);
1842 static void file_change_cr(struct branch *b, int rename)
1844 const char *s, *d;
1845 char *s_uq, *d_uq;
1846 const char *endp;
1847 struct tree_entry leaf;
1849 s = command_buf.buf + 2;
1850 s_uq = unquote_c_style(s, &endp);
1851 if (s_uq) {
1852 if (*endp != ' ')
1853 die("Missing space after source: %s", command_buf.buf);
1855 else {
1856 endp = strchr(s, ' ');
1857 if (!endp)
1858 die("Missing space after source: %s", command_buf.buf);
1859 s_uq = xmalloc(endp - s + 1);
1860 memcpy(s_uq, s, endp - s);
1861 s_uq[endp - s] = 0;
1863 s = s_uq;
1865 endp++;
1866 if (!*endp)
1867 die("Missing dest: %s", command_buf.buf);
1869 d = endp;
1870 d_uq = unquote_c_style(d, &endp);
1871 if (d_uq) {
1872 if (*endp)
1873 die("Garbage after dest in: %s", command_buf.buf);
1874 d = d_uq;
1877 memset(&leaf, 0, sizeof(leaf));
1878 if (rename)
1879 tree_content_remove(&b->branch_tree, s, &leaf);
1880 else
1881 tree_content_get(&b->branch_tree, s, &leaf);
1882 if (!leaf.versions[1].mode)
1883 die("Path %s not in branch", s);
1884 tree_content_set(&b->branch_tree, d,
1885 leaf.versions[1].sha1,
1886 leaf.versions[1].mode,
1887 leaf.tree);
1889 free(s_uq);
1890 free(d_uq);
1893 static void file_change_deleteall(struct branch *b)
1895 release_tree_content_recursive(b->branch_tree.tree);
1896 hashclr(b->branch_tree.versions[0].sha1);
1897 hashclr(b->branch_tree.versions[1].sha1);
1898 load_tree(&b->branch_tree);
1901 static void cmd_from_commit(struct branch *b, char *buf, unsigned long size)
1903 if (!buf || size < 46)
1904 die("Not a valid commit: %s", sha1_to_hex(b->sha1));
1905 if (memcmp("tree ", buf, 5)
1906 || get_sha1_hex(buf + 5, b->branch_tree.versions[1].sha1))
1907 die("The commit %s is corrupt", sha1_to_hex(b->sha1));
1908 hashcpy(b->branch_tree.versions[0].sha1,
1909 b->branch_tree.versions[1].sha1);
1912 static void cmd_from_existing(struct branch *b)
1914 if (is_null_sha1(b->sha1)) {
1915 hashclr(b->branch_tree.versions[0].sha1);
1916 hashclr(b->branch_tree.versions[1].sha1);
1917 } else {
1918 unsigned long size;
1919 char *buf;
1921 buf = read_object_with_reference(b->sha1,
1922 commit_type, &size, b->sha1);
1923 cmd_from_commit(b, buf, size);
1924 free(buf);
1928 static int cmd_from(struct branch *b)
1930 const char *from;
1931 struct branch *s;
1933 if (prefixcmp(command_buf.buf, "from "))
1934 return 0;
1936 if (b->branch_tree.tree) {
1937 release_tree_content_recursive(b->branch_tree.tree);
1938 b->branch_tree.tree = NULL;
1941 from = strchr(command_buf.buf, ' ') + 1;
1942 s = lookup_branch(from);
1943 if (b == s)
1944 die("Can't create a branch from itself: %s", b->name);
1945 else if (s) {
1946 unsigned char *t = s->branch_tree.versions[1].sha1;
1947 hashcpy(b->sha1, s->sha1);
1948 hashcpy(b->branch_tree.versions[0].sha1, t);
1949 hashcpy(b->branch_tree.versions[1].sha1, t);
1950 } else if (*from == ':') {
1951 uintmax_t idnum = strtoumax(from + 1, NULL, 10);
1952 struct object_entry *oe = find_mark(idnum);
1953 if (oe->type != OBJ_COMMIT)
1954 die("Mark :%" PRIuMAX " not a commit", idnum);
1955 hashcpy(b->sha1, oe->sha1);
1956 if (oe->pack_id != MAX_PACK_ID) {
1957 unsigned long size;
1958 char *buf = gfi_unpack_entry(oe, &size);
1959 cmd_from_commit(b, buf, size);
1960 free(buf);
1961 } else
1962 cmd_from_existing(b);
1963 } else if (!get_sha1(from, b->sha1))
1964 cmd_from_existing(b);
1965 else
1966 die("Invalid ref name or SHA1 expression: %s", from);
1968 read_next_command();
1969 return 1;
1972 static struct hash_list *cmd_merge(unsigned int *count)
1974 struct hash_list *list = NULL, *n, *e = e;
1975 const char *from;
1976 struct branch *s;
1978 *count = 0;
1979 while (!prefixcmp(command_buf.buf, "merge ")) {
1980 from = strchr(command_buf.buf, ' ') + 1;
1981 n = xmalloc(sizeof(*n));
1982 s = lookup_branch(from);
1983 if (s)
1984 hashcpy(n->sha1, s->sha1);
1985 else if (*from == ':') {
1986 uintmax_t idnum = strtoumax(from + 1, NULL, 10);
1987 struct object_entry *oe = find_mark(idnum);
1988 if (oe->type != OBJ_COMMIT)
1989 die("Mark :%" PRIuMAX " not a commit", idnum);
1990 hashcpy(n->sha1, oe->sha1);
1991 } else if (!get_sha1(from, n->sha1)) {
1992 unsigned long size;
1993 char *buf = read_object_with_reference(n->sha1,
1994 commit_type, &size, n->sha1);
1995 if (!buf || size < 46)
1996 die("Not a valid commit: %s", from);
1997 free(buf);
1998 } else
1999 die("Invalid ref name or SHA1 expression: %s", from);
2001 n->next = NULL;
2002 if (list)
2003 e->next = n;
2004 else
2005 list = n;
2006 e = n;
2007 (*count)++;
2008 read_next_command();
2010 return list;
2013 static void cmd_new_commit(void)
2015 struct branch *b;
2016 void *msg;
2017 size_t msglen;
2018 char *sp;
2019 char *author = NULL;
2020 char *committer = NULL;
2021 struct hash_list *merge_list = NULL;
2022 unsigned int merge_count;
2024 /* Obtain the branch name from the rest of our command */
2025 sp = strchr(command_buf.buf, ' ') + 1;
2026 b = lookup_branch(sp);
2027 if (!b)
2028 b = new_branch(sp);
2030 read_next_command();
2031 cmd_mark();
2032 if (!prefixcmp(command_buf.buf, "author ")) {
2033 author = parse_ident(command_buf.buf + 7);
2034 read_next_command();
2036 if (!prefixcmp(command_buf.buf, "committer ")) {
2037 committer = parse_ident(command_buf.buf + 10);
2038 read_next_command();
2040 if (!committer)
2041 die("Expected committer but didn't get one");
2042 msg = cmd_data(&msglen);
2043 read_next_command();
2044 cmd_from(b);
2045 merge_list = cmd_merge(&merge_count);
2047 /* ensure the branch is active/loaded */
2048 if (!b->branch_tree.tree || !max_active_branches) {
2049 unload_one_branch();
2050 load_branch(b);
2053 /* file_change* */
2054 while (!command_buf.eof && command_buf.len > 1) {
2055 if (!prefixcmp(command_buf.buf, "M "))
2056 file_change_m(b);
2057 else if (!prefixcmp(command_buf.buf, "D "))
2058 file_change_d(b);
2059 else if (!prefixcmp(command_buf.buf, "R "))
2060 file_change_cr(b, 1);
2061 else if (!prefixcmp(command_buf.buf, "C "))
2062 file_change_cr(b, 0);
2063 else if (!strcmp("deleteall", command_buf.buf))
2064 file_change_deleteall(b);
2065 else {
2066 unread_command_buf = 1;
2067 break;
2069 read_next_command();
2072 /* build the tree and the commit */
2073 store_tree(&b->branch_tree);
2074 hashcpy(b->branch_tree.versions[0].sha1,
2075 b->branch_tree.versions[1].sha1);
2076 size_dbuf(&new_data, 114 + msglen
2077 + merge_count * 49
2078 + (author
2079 ? strlen(author) + strlen(committer)
2080 : 2 * strlen(committer)));
2081 sp = new_data.buffer;
2082 sp += sprintf(sp, "tree %s\n",
2083 sha1_to_hex(b->branch_tree.versions[1].sha1));
2084 if (!is_null_sha1(b->sha1))
2085 sp += sprintf(sp, "parent %s\n", sha1_to_hex(b->sha1));
2086 while (merge_list) {
2087 struct hash_list *next = merge_list->next;
2088 sp += sprintf(sp, "parent %s\n", sha1_to_hex(merge_list->sha1));
2089 free(merge_list);
2090 merge_list = next;
2092 sp += sprintf(sp, "author %s\n", author ? author : committer);
2093 sp += sprintf(sp, "committer %s\n", committer);
2094 *sp++ = '\n';
2095 memcpy(sp, msg, msglen);
2096 sp += msglen;
2097 free(author);
2098 free(committer);
2099 free(msg);
2101 if (!store_object(OBJ_COMMIT,
2102 new_data.buffer, sp - (char*)new_data.buffer,
2103 NULL, b->sha1, next_mark))
2104 b->pack_id = pack_id;
2105 b->last_commit = object_count_by_type[OBJ_COMMIT];
2108 static void cmd_new_tag(void)
2110 char *sp;
2111 const char *from;
2112 char *tagger;
2113 struct branch *s;
2114 void *msg;
2115 size_t msglen;
2116 struct tag *t;
2117 uintmax_t from_mark = 0;
2118 unsigned char sha1[20];
2120 /* Obtain the new tag name from the rest of our command */
2121 sp = strchr(command_buf.buf, ' ') + 1;
2122 t = pool_alloc(sizeof(struct tag));
2123 t->next_tag = NULL;
2124 t->name = pool_strdup(sp);
2125 if (last_tag)
2126 last_tag->next_tag = t;
2127 else
2128 first_tag = t;
2129 last_tag = t;
2130 read_next_command();
2132 /* from ... */
2133 if (prefixcmp(command_buf.buf, "from "))
2134 die("Expected from command, got %s", command_buf.buf);
2135 from = strchr(command_buf.buf, ' ') + 1;
2136 s = lookup_branch(from);
2137 if (s) {
2138 hashcpy(sha1, s->sha1);
2139 } else if (*from == ':') {
2140 struct object_entry *oe;
2141 from_mark = strtoumax(from + 1, NULL, 10);
2142 oe = find_mark(from_mark);
2143 if (oe->type != OBJ_COMMIT)
2144 die("Mark :%" PRIuMAX " not a commit", from_mark);
2145 hashcpy(sha1, oe->sha1);
2146 } else if (!get_sha1(from, sha1)) {
2147 unsigned long size;
2148 char *buf;
2150 buf = read_object_with_reference(sha1,
2151 commit_type, &size, sha1);
2152 if (!buf || size < 46)
2153 die("Not a valid commit: %s", from);
2154 free(buf);
2155 } else
2156 die("Invalid ref name or SHA1 expression: %s", from);
2157 read_next_command();
2159 /* tagger ... */
2160 if (prefixcmp(command_buf.buf, "tagger "))
2161 die("Expected tagger command, got %s", command_buf.buf);
2162 tagger = parse_ident(command_buf.buf + 7);
2164 /* tag payload/message */
2165 read_next_command();
2166 msg = cmd_data(&msglen);
2168 /* build the tag object */
2169 size_dbuf(&new_data, 67+strlen(t->name)+strlen(tagger)+msglen);
2170 sp = new_data.buffer;
2171 sp += sprintf(sp, "object %s\n", sha1_to_hex(sha1));
2172 sp += sprintf(sp, "type %s\n", commit_type);
2173 sp += sprintf(sp, "tag %s\n", t->name);
2174 sp += sprintf(sp, "tagger %s\n", tagger);
2175 *sp++ = '\n';
2176 memcpy(sp, msg, msglen);
2177 sp += msglen;
2178 free(tagger);
2179 free(msg);
2181 if (store_object(OBJ_TAG, new_data.buffer,
2182 sp - (char*)new_data.buffer,
2183 NULL, t->sha1, 0))
2184 t->pack_id = MAX_PACK_ID;
2185 else
2186 t->pack_id = pack_id;
2189 static void cmd_reset_branch(void)
2191 struct branch *b;
2192 char *sp;
2194 /* Obtain the branch name from the rest of our command */
2195 sp = strchr(command_buf.buf, ' ') + 1;
2196 b = lookup_branch(sp);
2197 if (b) {
2198 hashclr(b->sha1);
2199 hashclr(b->branch_tree.versions[0].sha1);
2200 hashclr(b->branch_tree.versions[1].sha1);
2201 if (b->branch_tree.tree) {
2202 release_tree_content_recursive(b->branch_tree.tree);
2203 b->branch_tree.tree = NULL;
2206 else
2207 b = new_branch(sp);
2208 read_next_command();
2209 if (!cmd_from(b) && command_buf.len > 1)
2210 unread_command_buf = 1;
2213 static void cmd_checkpoint(void)
2215 if (object_count) {
2216 cycle_packfile();
2217 dump_branches();
2218 dump_tags();
2219 dump_marks();
2221 skip_optional_lf();
2224 static void cmd_progress(void)
2226 fwrite(command_buf.buf, 1, command_buf.len - 1, stdout);
2227 fputc('\n', stdout);
2228 fflush(stdout);
2229 skip_optional_lf();
2232 static void import_marks(const char *input_file)
2234 char line[512];
2235 FILE *f = fopen(input_file, "r");
2236 if (!f)
2237 die("cannot read %s: %s", input_file, strerror(errno));
2238 while (fgets(line, sizeof(line), f)) {
2239 uintmax_t mark;
2240 char *end;
2241 unsigned char sha1[20];
2242 struct object_entry *e;
2244 end = strchr(line, '\n');
2245 if (line[0] != ':' || !end)
2246 die("corrupt mark line: %s", line);
2247 *end = 0;
2248 mark = strtoumax(line + 1, &end, 10);
2249 if (!mark || end == line + 1
2250 || *end != ' ' || get_sha1(end + 1, sha1))
2251 die("corrupt mark line: %s", line);
2252 e = find_object(sha1);
2253 if (!e) {
2254 enum object_type type = sha1_object_info(sha1, NULL);
2255 if (type < 0)
2256 die("object not found: %s", sha1_to_hex(sha1));
2257 e = insert_object(sha1);
2258 e->type = type;
2259 e->pack_id = MAX_PACK_ID;
2260 e->offset = 1; /* just not zero! */
2262 insert_mark(mark, e);
2264 fclose(f);
2267 static const char fast_import_usage[] =
2268 "git-fast-import [--date-format=f] [--max-pack-size=n] [--depth=n] [--active-branches=n] [--export-marks=marks.file]";
2270 int main(int argc, const char **argv)
2272 int i, show_stats = 1;
2274 git_config(git_default_config);
2275 alloc_objects(object_entry_alloc);
2276 strbuf_init(&command_buf);
2277 atom_table = xcalloc(atom_table_sz, sizeof(struct atom_str*));
2278 branch_table = xcalloc(branch_table_sz, sizeof(struct branch*));
2279 avail_tree_table = xcalloc(avail_tree_table_sz, sizeof(struct avail_tree_content*));
2280 marks = pool_calloc(1, sizeof(struct mark_set));
2282 for (i = 1; i < argc; i++) {
2283 const char *a = argv[i];
2285 if (*a != '-' || !strcmp(a, "--"))
2286 break;
2287 else if (!prefixcmp(a, "--date-format=")) {
2288 const char *fmt = a + 14;
2289 if (!strcmp(fmt, "raw"))
2290 whenspec = WHENSPEC_RAW;
2291 else if (!strcmp(fmt, "rfc2822"))
2292 whenspec = WHENSPEC_RFC2822;
2293 else if (!strcmp(fmt, "now"))
2294 whenspec = WHENSPEC_NOW;
2295 else
2296 die("unknown --date-format argument %s", fmt);
2298 else if (!prefixcmp(a, "--max-pack-size="))
2299 max_packsize = strtoumax(a + 16, NULL, 0) * 1024 * 1024;
2300 else if (!prefixcmp(a, "--depth="))
2301 max_depth = strtoul(a + 8, NULL, 0);
2302 else if (!prefixcmp(a, "--active-branches="))
2303 max_active_branches = strtoul(a + 18, NULL, 0);
2304 else if (!prefixcmp(a, "--import-marks="))
2305 import_marks(a + 15);
2306 else if (!prefixcmp(a, "--export-marks="))
2307 mark_file = a + 15;
2308 else if (!prefixcmp(a, "--export-pack-edges=")) {
2309 if (pack_edges)
2310 fclose(pack_edges);
2311 pack_edges = fopen(a + 20, "a");
2312 if (!pack_edges)
2313 die("Cannot open %s: %s", a + 20, strerror(errno));
2314 } else if (!strcmp(a, "--force"))
2315 force_update = 1;
2316 else if (!strcmp(a, "--quiet"))
2317 show_stats = 0;
2318 else if (!strcmp(a, "--stats"))
2319 show_stats = 1;
2320 else
2321 die("unknown option %s", a);
2323 if (i != argc)
2324 usage(fast_import_usage);
2326 prepare_packed_git();
2327 start_packfile();
2328 set_die_routine(die_nicely);
2329 for (;;) {
2330 read_next_command();
2331 if (command_buf.eof)
2332 break;
2333 else if (!strcmp("blob", command_buf.buf))
2334 cmd_new_blob();
2335 else if (!prefixcmp(command_buf.buf, "commit "))
2336 cmd_new_commit();
2337 else if (!prefixcmp(command_buf.buf, "tag "))
2338 cmd_new_tag();
2339 else if (!prefixcmp(command_buf.buf, "reset "))
2340 cmd_reset_branch();
2341 else if (!strcmp("checkpoint", command_buf.buf))
2342 cmd_checkpoint();
2343 else if (!prefixcmp(command_buf.buf, "progress "))
2344 cmd_progress();
2345 else
2346 die("Unsupported command: %s", command_buf.buf);
2348 end_packfile();
2350 dump_branches();
2351 dump_tags();
2352 unkeep_all_packs();
2353 dump_marks();
2355 if (pack_edges)
2356 fclose(pack_edges);
2358 if (show_stats) {
2359 uintmax_t total_count = 0, duplicate_count = 0;
2360 for (i = 0; i < ARRAY_SIZE(object_count_by_type); i++)
2361 total_count += object_count_by_type[i];
2362 for (i = 0; i < ARRAY_SIZE(duplicate_count_by_type); i++)
2363 duplicate_count += duplicate_count_by_type[i];
2365 fprintf(stderr, "%s statistics:\n", argv[0]);
2366 fprintf(stderr, "---------------------------------------------------------------------\n");
2367 fprintf(stderr, "Alloc'd objects: %10" PRIuMAX "\n", alloc_count);
2368 fprintf(stderr, "Total objects: %10" PRIuMAX " (%10" PRIuMAX " duplicates )\n", total_count, duplicate_count);
2369 fprintf(stderr, " blobs : %10" PRIuMAX " (%10" PRIuMAX " duplicates %10" PRIuMAX " deltas)\n", object_count_by_type[OBJ_BLOB], duplicate_count_by_type[OBJ_BLOB], delta_count_by_type[OBJ_BLOB]);
2370 fprintf(stderr, " trees : %10" PRIuMAX " (%10" PRIuMAX " duplicates %10" PRIuMAX " deltas)\n", object_count_by_type[OBJ_TREE], duplicate_count_by_type[OBJ_TREE], delta_count_by_type[OBJ_TREE]);
2371 fprintf(stderr, " commits: %10" PRIuMAX " (%10" PRIuMAX " duplicates %10" PRIuMAX " deltas)\n", object_count_by_type[OBJ_COMMIT], duplicate_count_by_type[OBJ_COMMIT], delta_count_by_type[OBJ_COMMIT]);
2372 fprintf(stderr, " tags : %10" PRIuMAX " (%10" PRIuMAX " duplicates %10" PRIuMAX " deltas)\n", object_count_by_type[OBJ_TAG], duplicate_count_by_type[OBJ_TAG], delta_count_by_type[OBJ_TAG]);
2373 fprintf(stderr, "Total branches: %10lu (%10lu loads )\n", branch_count, branch_load_count);
2374 fprintf(stderr, " marks: %10" PRIuMAX " (%10" PRIuMAX " unique )\n", (((uintmax_t)1) << marks->shift) * 1024, marks_set_count);
2375 fprintf(stderr, " atoms: %10u\n", atom_cnt);
2376 fprintf(stderr, "Memory total: %10" PRIuMAX " KiB\n", (total_allocd + alloc_count*sizeof(struct object_entry))/1024);
2377 fprintf(stderr, " pools: %10lu KiB\n", (unsigned long)(total_allocd/1024));
2378 fprintf(stderr, " objects: %10" PRIuMAX " KiB\n", (alloc_count*sizeof(struct object_entry))/1024);
2379 fprintf(stderr, "---------------------------------------------------------------------\n");
2380 pack_report();
2381 fprintf(stderr, "---------------------------------------------------------------------\n");
2382 fprintf(stderr, "\n");
2385 return failure ? 1 : 0;