summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: f5a5e9b)
raw | patch | inline | side by side (parent: f5a5e9b)
author | Daniel Barkalow <barkalow@iabervon.org> | |
Tue, 4 Oct 2005 04:24:55 +0000 (00:24 -0400) | ||
committer | Junio C Hamano <junkio@cox.net> | |
Tue, 4 Oct 2005 04:55:31 +0000 (21:55 -0700) |
This completes fetches if there are more than 100 outstanding requests
and there are more to prefetch.
Signed-off-by: Daniel Barkalow <barkalow@iabervon.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
and there are more to prefetch.
Signed-off-by: Daniel Barkalow <barkalow@iabervon.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
ssh-fetch.c | patch | blob | history |
diff --git a/ssh-fetch.c b/ssh-fetch.c
index 05d3e49f25bc2d5dbce4bcd86c0292e07135063d..bf01fbc00d649231cb7ba49aba9432afe570b319 100644 (file)
--- a/ssh-fetch.c
+++ b/ssh-fetch.c
return ret;
}
+static int prefetches = 0;
+
+static struct object_list *in_transit = NULL;
+static struct object_list **end_of_transit = &in_transit;
+
void prefetch(unsigned char *sha1)
{
char type = 'o';
+ struct object_list *node;
+ if (prefetches > 100) {
+ fetch(in_transit->item->sha1);
+ }
+ node = xmalloc(sizeof(struct object_list));
+ node->next = NULL;
+ node->item = lookup_unknown_object(sha1);
+ *end_of_transit = node;
+ end_of_transit = &node->next;
force_write(fd_out, &type, 1);
force_write(fd_out, sha1, 20);
- //memcpy(requested + 20 * prefetches++, sha1, 20);
+ prefetches++;
}
static char conn_buf[4096];
{
int ret;
signed char remote;
+ struct object_list *temp;
+
+ if (memcmp(sha1, in_transit->item->sha1, 20)) {
+ // we must have already fetched it to clean the queue
+ return has_sha1_file(sha1) ? 0 : -1;
+ }
+ prefetches--;
+ temp = in_transit;
+ in_transit = in_transit->next;
+ if (!in_transit)
+ end_of_transit = &in_transit;
+ free(temp);
if (conn_buf_posn) {
remote = conn_buf[0];