11 static const char fetch_pack_usage
[] =
12 "git-fetch-pack [--all] [-q] [-v] [-k] [--thin] [--exec=upload-pack] [host:]directory <refs>...";
13 static const char *exec
= "git-upload-pack";
15 #define COMPLETE (1U << 0)
16 #define COMMON (1U << 1)
17 #define COMMON_REF (1U << 2)
18 #define SEEN (1U << 3)
19 #define POPPED (1U << 4)
22 * After sending this many "have"s if we do not get any new ACK , we
23 * give up traversing our history.
25 #define MAX_IN_VAIN 256
27 static struct commit_list
*rev_list
;
28 static int non_common_revs
, multi_ack
, use_thin_pack
, use_sideband
;
30 static void rev_list_push(struct commit
*commit
, int mark
)
32 if (!(commit
->object
.flags
& mark
)) {
33 commit
->object
.flags
|= mark
;
35 if (!(commit
->object
.parsed
))
38 insert_by_date(commit
, &rev_list
);
40 if (!(commit
->object
.flags
& COMMON
))
45 static int rev_list_insert_ref(const char *path
, const unsigned char *sha1
)
47 struct object
*o
= deref_tag(parse_object(sha1
), path
, 0);
49 if (o
&& o
->type
== OBJ_COMMIT
)
50 rev_list_push((struct commit
*)o
, SEEN
);
56 This function marks a rev and its ancestors as common.
57 In some cases, it is desirable to mark only the ancestors (for example
58 when only the server does not yet know that they are common).
61 static void mark_common(struct commit
*commit
,
62 int ancestors_only
, int dont_parse
)
64 if (commit
!= NULL
&& !(commit
->object
.flags
& COMMON
)) {
65 struct object
*o
= (struct object
*)commit
;
70 if (!(o
->flags
& SEEN
))
71 rev_list_push(commit
, SEEN
);
73 struct commit_list
*parents
;
75 if (!ancestors_only
&& !(o
->flags
& POPPED
))
77 if (!o
->parsed
&& !dont_parse
)
80 for (parents
= commit
->parents
;
82 parents
= parents
->next
)
83 mark_common(parents
->item
, 0, dont_parse
);
89 Get the next rev to send, ignoring the common.
92 static const unsigned char* get_rev(void)
94 struct commit
*commit
= NULL
;
96 while (commit
== NULL
) {
98 struct commit_list
* parents
;
100 if (rev_list
== NULL
|| non_common_revs
== 0)
103 commit
= rev_list
->item
;
104 if (!(commit
->object
.parsed
))
105 parse_commit(commit
);
106 commit
->object
.flags
|= POPPED
;
107 if (!(commit
->object
.flags
& COMMON
))
110 parents
= commit
->parents
;
112 if (commit
->object
.flags
& COMMON
) {
113 /* do not send "have", and ignore ancestors */
115 mark
= COMMON
| SEEN
;
116 } else if (commit
->object
.flags
& COMMON_REF
)
117 /* send "have", and ignore ancestors */
118 mark
= COMMON
| SEEN
;
120 /* send "have", also for its ancestors */
124 if (!(parents
->item
->object
.flags
& SEEN
))
125 rev_list_push(parents
->item
, mark
);
127 mark_common(parents
->item
, 1, 0);
128 parents
= parents
->next
;
131 rev_list
= rev_list
->next
;
134 return commit
->object
.sha1
;
137 static int find_common(int fd
[2], unsigned char *result_sha1
,
141 int count
= 0, flushes
= 0, retval
;
142 const unsigned char *sha1
;
143 unsigned in_vain
= 0;
144 int got_continue
= 0;
146 for_each_ref(rev_list_insert_ref
);
149 for ( ; refs
; refs
= refs
->next
) {
150 unsigned char *remote
= refs
->old_sha1
;
154 * If that object is complete (i.e. it is an ancestor of a
155 * local ref), we tell them we have it but do not have to
156 * tell them about its ancestors, which they already know
159 * We use lookup_object here because we are only
160 * interested in the case we *know* the object is
161 * reachable and we have already scanned it.
163 if (((o
= lookup_object(remote
)) != NULL
) &&
164 (o
->flags
& COMPLETE
)) {
169 packet_write(fd
[1], "want %s%s%s%s%s\n",
171 (multi_ack
? " multi_ack" : ""),
172 (use_sideband
== 2 ? " side-band-64k" : ""),
173 (use_sideband
== 1 ? " side-band" : ""),
174 (use_thin_pack
? " thin-pack" : ""));
176 packet_write(fd
[1], "want %s\n", sha1_to_hex(remote
));
185 while ((sha1
= get_rev())) {
186 packet_write(fd
[1], "have %s\n", sha1_to_hex(sha1
));
188 fprintf(stderr
, "have %s\n", sha1_to_hex(sha1
));
190 if (!(31 & ++count
)) {
197 * We keep one window "ahead" of the other side, and
198 * will wait for an ACK only on the next one
204 ack
= get_ack(fd
[0], result_sha1
);
206 fprintf(stderr
, "got ack %d %s\n", ack
,
207 sha1_to_hex(result_sha1
));
213 } else if (ack
== 2) {
214 struct commit
*commit
=
215 lookup_commit(result_sha1
);
216 mark_common(commit
, 0, 1);
223 if (got_continue
&& MAX_IN_VAIN
< in_vain
) {
225 fprintf(stderr
, "giving up\n");
231 packet_write(fd
[1], "done\n");
233 fprintf(stderr
, "done\n");
238 while (flushes
|| multi_ack
) {
239 int ack
= get_ack(fd
[0], result_sha1
);
242 fprintf(stderr
, "got ack (%d) %s\n", ack
,
243 sha1_to_hex(result_sha1
));
254 static struct commit_list
*complete
;
256 static int mark_complete(const char *path
, const unsigned char *sha1
)
258 struct object
*o
= parse_object(sha1
);
260 while (o
&& o
->type
== OBJ_TAG
) {
261 struct tag
*t
= (struct tag
*) o
;
263 break; /* broken repository */
264 o
->flags
|= COMPLETE
;
265 o
= parse_object(t
->tagged
->sha1
);
267 if (o
&& o
->type
== OBJ_COMMIT
) {
268 struct commit
*commit
= (struct commit
*)o
;
269 commit
->object
.flags
|= COMPLETE
;
270 insert_by_date(commit
, &complete
);
275 static void mark_recent_complete_commits(unsigned long cutoff
)
277 while (complete
&& cutoff
<= complete
->item
->date
) {
279 fprintf(stderr
, "Marking %s as complete\n",
280 sha1_to_hex(complete
->item
->object
.sha1
));
281 pop_most_recent_commit(&complete
, COMPLETE
);
285 static void filter_refs(struct ref
**refs
, int nr_match
, char **match
)
287 struct ref
**return_refs
;
288 struct ref
*newlist
= NULL
;
289 struct ref
**newtail
= &newlist
;
290 struct ref
*ref
, *next
;
291 struct ref
*fastarray
[32];
293 if (nr_match
&& !fetch_all
) {
294 if (ARRAY_SIZE(fastarray
) < nr_match
)
295 return_refs
= xcalloc(nr_match
, sizeof(struct ref
*));
297 return_refs
= fastarray
;
298 memset(return_refs
, 0, sizeof(struct ref
*) * nr_match
);
304 for (ref
= *refs
; ref
; ref
= next
) {
306 if (!memcmp(ref
->name
, "refs/", 5) &&
307 check_ref_format(ref
->name
+ 5))
309 else if (fetch_all
) {
312 newtail
= &ref
->next
;
316 int order
= path_match(ref
->name
, nr_match
, match
);
318 return_refs
[order
-1] = ref
;
319 continue; /* we will link it later */
327 for (i
= 0; i
< nr_match
; i
++) {
328 ref
= return_refs
[i
];
332 newtail
= &ref
->next
;
335 if (return_refs
!= fastarray
)
341 static int everything_local(struct ref
**refs
, int nr_match
, char **match
)
345 unsigned long cutoff
= 0;
347 track_object_refs
= 0;
348 save_commit_buffer
= 0;
350 for (ref
= *refs
; ref
; ref
= ref
->next
) {
353 o
= parse_object(ref
->old_sha1
);
357 /* We already have it -- which may mean that we were
358 * in sync with the other side at some time after
359 * that (it is OK if we guess wrong here).
361 if (o
->type
== OBJ_COMMIT
) {
362 struct commit
*commit
= (struct commit
*)o
;
363 if (!cutoff
|| cutoff
< commit
->date
)
364 cutoff
= commit
->date
;
368 for_each_ref(mark_complete
);
370 mark_recent_complete_commits(cutoff
);
373 * Mark all complete remote refs as common refs.
374 * Don't mark them common yet; the server has to be told so first.
376 for (ref
= *refs
; ref
; ref
= ref
->next
) {
377 struct object
*o
= deref_tag(lookup_object(ref
->old_sha1
),
380 if (!o
|| o
->type
!= OBJ_COMMIT
|| !(o
->flags
& COMPLETE
))
383 if (!(o
->flags
& SEEN
)) {
384 rev_list_push((struct commit
*)o
, COMMON_REF
| SEEN
);
386 mark_common((struct commit
*)o
, 1, 1);
390 filter_refs(refs
, nr_match
, match
);
392 for (retval
= 1, ref
= *refs
; ref
; ref
= ref
->next
) {
393 const unsigned char *remote
= ref
->old_sha1
;
394 unsigned char local
[20];
397 o
= lookup_object(remote
);
398 if (!o
|| !(o
->flags
& COMPLETE
)) {
403 "want %s (%s)\n", sha1_to_hex(remote
),
408 hashcpy(ref
->new_sha1
, local
);
412 "already have %s (%s)\n", sha1_to_hex(remote
),
418 static int fetch_pack(int fd
[2], int nr_match
, char **match
)
421 unsigned char sha1
[20];
424 get_remote_heads(fd
[0], &ref
, 0, NULL
, 0);
425 if (server_supports("multi_ack")) {
427 fprintf(stderr
, "Server supports multi_ack\n");
430 if (server_supports("side-band-64k")) {
432 fprintf(stderr
, "Server supports side-band-64k\n");
435 else if (server_supports("side-band")) {
437 fprintf(stderr
, "Server supports side-band\n");
442 die("no matching remote head");
444 if (everything_local(&ref
, nr_match
, match
)) {
448 if (find_common(fd
, sha1
, ref
) < 0)
450 /* When cloning, it is not unusual to have
453 fprintf(stderr
, "warning: no common commits\n");
456 status
= receive_keep_pack(fd
, "git-fetch-pack", quiet
, use_sideband
);
458 status
= receive_unpack_pack(fd
, "git-fetch-pack", quiet
, use_sideband
);
461 die("git-fetch-pack: fetch failed.");
466 sha1_to_hex(ref
->old_sha1
), ref
->name
);
472 int main(int argc
, char **argv
)
474 int i
, ret
, nr_heads
;
475 char *dest
= NULL
, **heads
;
479 setup_git_directory();
483 for (i
= 1; i
< argc
; i
++) {
487 if (!strncmp("--exec=", arg
, 7)) {
491 if (!strcmp("--quiet", arg
) || !strcmp("-q", arg
)) {
495 if (!strcmp("--keep", arg
) || !strcmp("-k", arg
)) {
499 if (!strcmp("--thin", arg
)) {
503 if (!strcmp("--all", arg
)) {
507 if (!strcmp("-v", arg
)) {
511 usage(fetch_pack_usage
);
514 heads
= argv
+ i
+ 1;
515 nr_heads
= argc
- i
- 1;
519 usage(fetch_pack_usage
);
522 pid
= git_connect(fd
, dest
, exec
);
525 ret
= fetch_pack(fd
, nr_heads
, heads
);
528 ret
|= finish_connect(pid
);
530 if (!ret
&& nr_heads
) {
531 /* If the heads to pull were given, we should have
532 * consumed all of them by matching the remote.
533 * Otherwise, 'git-fetch remote no-such-ref' would
534 * silently succeed without issuing an error.
536 for (i
= 0; i
< nr_heads
; i
++)
537 if (heads
[i
] && heads
[i
][0]) {
538 error("no such remote ref %s", heads
[i
]);