8 static const char pack_usage
[] = "git-pack-objects [--window=N] [--depth=N] {--stdout | base-name} < object-list";
11 unsigned char sha1
[20];
16 enum object_type type
;
17 unsigned long delta_size
;
18 struct object_entry
*delta
;
21 static struct object_entry
**sorted_by_sha
, **sorted_by_type
;
22 static struct object_entry
*objects
= NULL
;
23 static int nr_objects
= 0, nr_alloc
= 0;
24 static const char *base_name
;
25 static unsigned char pack_file_sha1
[20];
27 static void *delta_against(void *buf
, unsigned long size
, struct object_entry
*entry
)
29 unsigned long othersize
, delta_size
;
31 void *otherbuf
= read_sha1_file(entry
->delta
->sha1
, type
, &othersize
);
35 die("unable to read %s", sha1_to_hex(entry
->delta
->sha1
));
36 delta_buf
= diff_delta(otherbuf
, othersize
,
37 buf
, size
, &delta_size
, 0);
38 if (!delta_buf
|| delta_size
!= entry
->delta_size
)
39 die("delta size changed");
46 * The per-object header is a pretty dense thing, which is
47 * - first byte: low four bits are "size", then three bits of "type",
48 * and the high bit is "size continues".
49 * - each byte afterwards: low seven bits are size continuation,
50 * with the high bit being "size continues"
52 static int encode_header(enum object_type type
, unsigned long size
, unsigned char *hdr
)
57 if (type
< OBJ_COMMIT
|| type
> OBJ_DELTA
)
58 die("bad type %d", type
);
60 c
= (type
<< 4) | (size
& 15);
72 static unsigned long write_object(struct sha1file
*f
, struct object_entry
*entry
)
76 void *buf
= read_sha1_file(entry
->sha1
, type
, &size
);
77 unsigned char header
[10];
78 unsigned hdrlen
, datalen
;
79 enum object_type obj_type
;
82 die("unable to read %s", sha1_to_hex(entry
->sha1
));
83 if (size
!= entry
->size
)
84 die("object %s size inconsistency (%lu vs %lu)", sha1_to_hex(entry
->sha1
), size
, entry
->size
);
87 * The object header is a byte of 'type' followed by zero or
88 * more bytes of length. For deltas, the 20 bytes of delta sha1
91 obj_type
= entry
->type
;
93 buf
= delta_against(buf
, size
, entry
);
94 size
= entry
->delta_size
;
97 hdrlen
= encode_header(obj_type
, size
, header
);
98 sha1write(f
, header
, hdrlen
);
100 sha1write(f
, entry
->delta
, 20);
103 datalen
= sha1write_compressed(f
, buf
, size
);
105 return hdrlen
+ datalen
;
108 static unsigned long write_one(struct sha1file
*f
,
109 struct object_entry
*e
,
110 unsigned long offset
)
113 /* offset starts from header size and cannot be zero
114 * if it is written already.
118 offset
+= write_object(f
, e
);
119 /* if we are delitified, write out its base object. */
121 offset
= write_one(f
, e
->delta
, offset
);
125 static void write_pack_file(void)
129 unsigned long offset
;
131 struct pack_header hdr
;
134 f
= sha1fd(1, "<stdout>");
136 f
= sha1create("%s.%s", base_name
, "pack");
137 hdr
.hdr_signature
= htonl(PACK_SIGNATURE
);
138 hdr
.hdr_version
= htonl(PACK_VERSION
);
139 hdr
.hdr_entries
= htonl(nr_objects
);
140 sha1write(f
, &hdr
, sizeof(hdr
));
141 offset
= sizeof(hdr
);
142 for (i
= 0; i
< nr_objects
; i
++)
143 offset
= write_one(f
, objects
+ i
, offset
);
145 sha1close(f
, pack_file_sha1
, 1);
150 static void write_index_file(void)
153 struct sha1file
*f
= sha1create("%s.%s", base_name
, "idx");
154 struct object_entry
**list
= sorted_by_sha
;
155 struct object_entry
**last
= list
+ nr_objects
;
156 unsigned int array
[256];
159 * Write the first-level table (the list is sorted,
160 * but we use a 256-entry lookup to be able to avoid
161 * having to do eight extra binary search iterations).
163 for (i
= 0; i
< 256; i
++) {
164 struct object_entry
**next
= list
;
165 while (next
< last
) {
166 struct object_entry
*entry
= *next
;
167 if (entry
->sha1
[0] != i
)
171 array
[i
] = htonl(next
- sorted_by_sha
);
174 sha1write(f
, array
, 256 * sizeof(int));
177 * Write the actual SHA1 entries..
179 list
= sorted_by_sha
;
180 for (i
= 0; i
< nr_objects
; i
++) {
181 struct object_entry
*entry
= *list
++;
182 unsigned int offset
= htonl(entry
->offset
);
183 sha1write(f
, &offset
, 4);
184 sha1write(f
, entry
->sha1
, 20);
186 sha1write(f
, pack_file_sha1
, 20);
187 sha1close(f
, NULL
, 1);
190 static void add_object_entry(unsigned char *sha1
, unsigned int hash
)
192 unsigned int idx
= nr_objects
;
193 struct object_entry
*entry
;
195 if (idx
>= nr_alloc
) {
196 unsigned int needed
= (idx
+ 1024) * 3 / 2;
197 objects
= xrealloc(objects
, needed
* sizeof(*entry
));
200 entry
= objects
+ idx
;
201 memset(entry
, 0, sizeof(*entry
));
202 memcpy(entry
->sha1
, sha1
, 20);
207 static void check_object(struct object_entry
*entry
)
211 if (!sha1_object_info(entry
->sha1
, type
, &entry
->size
)) {
212 if (!strcmp(type
, "commit")) {
213 entry
->type
= OBJ_COMMIT
;
214 } else if (!strcmp(type
, "tree")) {
215 entry
->type
= OBJ_TREE
;
216 } else if (!strcmp(type
, "blob")) {
217 entry
->type
= OBJ_BLOB
;
218 } else if (!strcmp(type
, "tag")) {
219 entry
->type
= OBJ_TAG
;
221 die("unable to pack object %s of type %s",
222 sha1_to_hex(entry
->sha1
), type
);
225 die("unable to get type of object %s",
226 sha1_to_hex(entry
->sha1
));
229 static void get_object_details(void)
232 struct object_entry
*entry
= objects
;
234 for (i
= 0; i
< nr_objects
; i
++)
235 check_object(entry
++);
238 typedef int (*entry_sort_t
)(const struct object_entry
*, const struct object_entry
*);
240 static entry_sort_t current_sort
;
242 static int sort_comparator(const void *_a
, const void *_b
)
244 struct object_entry
*a
= *(struct object_entry
**)_a
;
245 struct object_entry
*b
= *(struct object_entry
**)_b
;
246 return current_sort(a
,b
);
249 static struct object_entry
**create_sorted_list(entry_sort_t sort
)
251 struct object_entry
**list
= xmalloc(nr_objects
* sizeof(struct object_entry
*));
254 for (i
= 0; i
< nr_objects
; i
++)
255 list
[i
] = objects
+ i
;
257 qsort(list
, nr_objects
, sizeof(struct object_entry
*), sort_comparator
);
261 static int sha1_sort(const struct object_entry
*a
, const struct object_entry
*b
)
263 return memcmp(a
->sha1
, b
->sha1
, 20);
266 static int type_size_sort(const struct object_entry
*a
, const struct object_entry
*b
)
268 if (a
->type
< b
->type
)
270 if (a
->type
> b
->type
)
272 if (a
->hash
< b
->hash
)
274 if (a
->hash
> b
->hash
)
276 if (a
->size
< b
->size
)
278 if (a
->size
> b
->size
)
280 return a
< b
? -1 : (a
> b
);
284 struct object_entry
*entry
;
289 * We search for deltas _backwards_ in a list sorted by type and
290 * by size, so that we see progressively smaller and smaller files.
291 * That's because we prefer deltas to be from the bigger file
292 * to the smaller - deletes are potentially cheaper, but perhaps
293 * more importantly, the bigger file is likely the more recent
296 static int try_delta(struct unpacked
*cur
, struct unpacked
*old
, unsigned max_depth
)
298 struct object_entry
*cur_entry
= cur
->entry
;
299 struct object_entry
*old_entry
= old
->entry
;
300 unsigned long size
, oldsize
, delta_size
, sizediff
;
304 /* Don't bother doing diffs between different types */
305 if (cur_entry
->type
!= old_entry
->type
)
308 size
= cur_entry
->size
;
311 oldsize
= old_entry
->size
;
312 sizediff
= oldsize
> size
? oldsize
- size
: size
- oldsize
;
313 if (sizediff
> size
/ 8)
315 if (old_entry
->depth
>= max_depth
)
321 * We always delta from the bigger to the smaller, since that's
322 * more space-efficient (deletes don't have to say _what_ they
325 max_size
= size
/ 2 - 20;
326 if (cur_entry
->delta
)
327 max_size
= cur_entry
->delta_size
-1;
328 if (sizediff
>= max_size
)
330 delta_buf
= diff_delta(old
->data
, oldsize
,
331 cur
->data
, size
, &delta_size
, max_size
);
334 cur_entry
->delta
= old_entry
;
335 cur_entry
->delta_size
= delta_size
;
336 cur_entry
->depth
= old_entry
->depth
+ 1;
341 static void find_deltas(struct object_entry
**list
, int window
, int depth
)
344 unsigned int array_size
= window
* sizeof(struct unpacked
);
345 struct unpacked
*array
= xmalloc(array_size
);
347 memset(array
, 0, array_size
);
351 struct object_entry
*entry
= list
[i
];
352 struct unpacked
*n
= array
+ idx
;
359 n
->data
= read_sha1_file(entry
->sha1
, type
, &size
);
360 if (size
!= entry
->size
)
361 die("object %s inconsistent object length (%lu vs %lu)", sha1_to_hex(entry
->sha1
), size
, entry
->size
);
364 unsigned int other_idx
= idx
+ j
;
366 if (other_idx
>= window
)
368 m
= array
+ other_idx
;
371 if (try_delta(n
, m
, depth
) < 0)
380 int main(int argc
, char **argv
)
382 char line
[PATH_MAX
+ 20];
383 int window
= 10, depth
= 10, pack_to_stdout
= 0;
386 for (i
= 1; i
< argc
; i
++) {
387 const char *arg
= argv
[i
];
390 if (!strncmp("--window=", arg
, 9)) {
392 window
= strtoul(arg
+9, &end
, 0);
397 if (!strncmp("--depth=", arg
, 8)) {
399 depth
= strtoul(arg
+8, &end
, 0);
404 if (!strcmp("--stdout", arg
)) {
415 if (pack_to_stdout
!= !base_name
)
418 while (fgets(line
, sizeof(line
), stdin
) != NULL
) {
421 unsigned char sha1
[20];
423 if (get_sha1_hex(line
, sha1
))
424 die("expected sha1, got garbage");
428 unsigned char c
= *p
++;
431 hash
= hash
* 11 + c
;
433 add_object_entry(sha1
, hash
);
435 get_object_details();
437 fprintf(stderr
, "Packing %d objects\n", nr_objects
);
439 sorted_by_sha
= create_sorted_list(sha1_sort
);
440 sorted_by_type
= create_sorted_list(type_size_sort
);
442 find_deltas(sorted_by_type
, window
+1, depth
);