Commit 2c982daa2eec64b80c7940bfe1142295bd72edd8

Carlos Martín Nieto 2011-10-05T20:09:49

fetch: add a generic pack-download function Taken mostly from the git transport's version, this can be used by any transport that takes its pack data from the network. Signed-off-by: Carlos Martín Nieto <carlos@cmartin.tk>

diff --git a/src/fetch.c b/src/fetch.c
index 8602cd7..ac72828 100644
--- a/src/fetch.c
+++ b/src/fetch.c
@@ -15,6 +15,7 @@
 #include "remote.h"
 #include "refspec.h"
 #include "fetch.h"
+#include "netops.h"
 
 static int filter_wants(git_remote *remote)
 {
@@ -131,3 +132,60 @@ int git_fetch_download_pack(char **out, git_remote *remote)
 
 	return remote->transport->download_pack(out, remote->transport, remote->repo);
 }
+
+/* Receiving data from a socket and storing it is pretty much the same for git and HTTP */
+int git_fetch__download_pack(char **out, const char *buffered, size_t buffered_size,
+                             GIT_SOCKET fd, git_repository *repo)
+{
+	git_filebuf file;
+	int error;
+	char buff[1024], path[GIT_PATH_MAX];
+	static const char suff[] = "/objects/pack/pack-received";
+	gitno_buffer buf;
+
+
+	git_path_join(path, repo->path_repository, suff);
+
+	gitno_buffer_setup(&buf, buff, sizeof(buff), fd);
+
+	if (memcmp(buffered, "PACK", strlen("PACK"))) {
+		return git__throw(GIT_ERROR, "The pack doesn't start with the signature");
+	}
+
+	error = git_filebuf_open(&file, path, GIT_FILEBUF_TEMPORARY);
+	if (error < GIT_SUCCESS)
+		goto cleanup;
+
+	/* Part of the packfile has been received, don't loose it */
+	error = git_filebuf_write(&file, buffered, buffered_size);
+	if (error < GIT_SUCCESS)
+		goto cleanup;
+
+	while (1) {
+		error = git_filebuf_write(&file, buf.data, buf.offset);
+		if (error < GIT_SUCCESS)
+			goto cleanup;
+
+		gitno_consume_n(&buf, buf.offset);
+		error = gitno_recv(&buf);
+		if (error < GIT_SUCCESS)
+			goto cleanup;
+		if (error == 0) /* Orderly shutdown */
+			break;
+	}
+
+	*out = git__strdup(file.path_lock);
+	if (*out == NULL) {
+		error = GIT_ENOMEM;
+		goto cleanup;
+	}
+
+	/* A bit dodgy, but we need to keep the pack at the temporary path */
+	error = git_filebuf_commit_at(&file, file.path_lock);
+cleanup:
+	if (error < GIT_SUCCESS)
+		git_filebuf_cleanup(&file);
+
+	return error;
+
+}
diff --git a/src/fetch.h b/src/fetch.h
index 6ca21d5..a45d936 100644
--- a/src/fetch.h
+++ b/src/fetch.h
@@ -7,7 +7,12 @@
 #ifndef INCLUDE_fetch_h__
 #define INCLUDE_fetch_h__
 
+#include "netops.h"
+
 int git_fetch_negotiate(git_remote *remote);
 int git_fetch_download_pack(char **out, git_remote *remote);
 
+int git_fetch__download_pack(char **out, const char *buffered, size_t buffered_size,
+                             GIT_SOCKET fd, git_repository *repo);
+
 #endif