http-pull is a program that downloads from a (normal) HTTP server a commit
and all of the tree and blob objects it refers to (but not other commits,
etc.). Options could be used to make it download a larger or different
selection of objects. It depends on libcurl, which I forgot to mention in
the README again.

Signed-Off-By: Daniel Barkalow <[EMAIL PROTECTED]>
Index: Makefile
===================================================================
--- d662b707e11391f6cfe597fd4d0bf9c41d34d01a/Makefile  (mode:100644 
sha1:b2ce7c5b63fffca59653b980d98379909f893d44)
+++ 157b46ce1d82b3579e2e1258927b0d9bdbc033ab/Makefile  (mode:100644 
sha1:940ef8578cf469354002cd8feaec25d907015267)
@@ -14,7 +14,7 @@
 
 PROG=   update-cache show-diff init-db write-tree read-tree commit-tree \
        cat-file fsck-cache checkout-cache diff-tree rev-tree show-files \
-       check-files ls-tree merge-base
+       check-files ls-tree http-pull merge-base
 
 SCRIPT=        parent-id tree-id git gitXnormid.sh gitadd.sh gitaddremote.sh \
        gitcommit.sh gitdiff-do gitdiff.sh gitlog.sh gitls.sh gitlsobj.sh \
@@ -35,6 +35,7 @@
 
 LIBS= -lssl -lz
 
+http-pull: LIBS += -lcurl
 
 $(PROG):%: %.o $(COMMON)
        $(CC) $(CFLAGS) -o $@ $^ $(LIBS)
Index: http-pull.c
===================================================================
--- /dev/null  (tree:d662b707e11391f6cfe597fd4d0bf9c41d34d01a)
+++ 157b46ce1d82b3579e2e1258927b0d9bdbc033ab/http-pull.c  (mode:100644 
sha1:106ca31239e6afe6784e7c592234406f5c149e44)
@@ -0,0 +1,126 @@
+#include <fcntl.h>
+#include <unistd.h>
+#include <string.h>
+#include <stdlib.h>
+#include "cache.h"
+#include "revision.h"
+#include <errno.h>
+#include <stdio.h>
+
+#include <curl/curl.h>
+#include <curl/easy.h>
+
+static CURL *curl;
+
+static char *base;
+
+static int fetch(unsigned char *sha1)
+{
+       char *hex = sha1_to_hex(sha1);
+       char *filename = sha1_file_name(sha1);
+
+       char *url;
+       char *posn;
+       FILE *local;
+       struct stat st;
+
+       if (!stat(filename, &st)) {
+               return 0;
+       }
+
+       local = fopen(filename, "w");
+
+       if (!local) {
+               fprintf(stderr, "Couldn't open %s\n", filename);
+               return -1;
+       }
+
+       curl_easy_setopt(curl, CURLOPT_FILE, local);
+
+       url = malloc(strlen(base) + 50);
+       strcpy(url, base);
+       posn = url + strlen(base);
+       strcpy(posn, "objects/");
+       posn += 8;
+       memcpy(posn, hex, 2);
+       posn += 2;
+       *(posn++) = '/';
+       strcpy(posn, hex + 2);
+
+       curl_easy_setopt(curl, CURLOPT_URL, url);
+
+       curl_easy_perform(curl);
+
+       fclose(local);
+       
+       return 0;
+}
+
+static int process_tree(unsigned char *sha1)
+{
+       void *buffer;
+        unsigned long size;
+        char type[20];
+
+        buffer = read_sha1_file(sha1, type, &size);
+       if (!buffer)
+               return -1;
+       if (strcmp(type, "tree"))
+               return -1;
+       while (size) {
+               int len = strlen(buffer) + 1;
+               unsigned char *sha1 = buffer + len;
+               unsigned int mode;
+               int retval;
+
+               if (size < len + 20 || sscanf(buffer, "%o", &mode) != 1)
+                       return -1;
+
+               buffer = sha1 + 20;
+               size -= len + 20;
+
+               retval = fetch(sha1);
+               if (retval)
+                       return -1;
+
+               if (S_ISDIR(mode)) {
+                       retval = process_tree(sha1);
+                       if (retval)
+                               return -1;
+               }
+       }
+       return 0;
+}
+
+static int process_commit(unsigned char *sha1)
+{
+       struct revision *rev = lookup_rev(sha1);
+       if (parse_commit_object(rev))
+               return -1;
+       
+       fetch(rev->tree);
+       process_tree(rev->tree);
+       return 0;
+}
+
+int main(int argc, char **argv)
+{
+       char *commit_id = argv[1];
+       char *url = argv[2];
+
+       unsigned char sha1[20];
+
+       get_sha1_hex(commit_id, sha1);
+
+       curl_global_init(CURL_GLOBAL_ALL);
+
+       curl = curl_easy_init();
+
+       base = url;
+
+       fetch(sha1);
+       process_commit(sha1);
+
+       curl_global_cleanup();
+       return 0;
+}

-
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to