summaryrefslogtreecommitdiff
path: root/rpush.c
blob: 17d5ab8a60ab2ec7fa3a7dc927351e8a34de3a89 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
#include "cache.h"
#include "rsh.h"
#include <sys/socket.h>
#include <errno.h>
 
static void service(int fd_in, int fd_out) {
	ssize_t size;
	int posn;
	char unsigned sha1[20];
	unsigned long objsize;
	void *buf;
	do {
		posn = 0;
		do {
			size = read(fd_in, sha1 + posn, 20 - posn);
			if (size < 0) {
				perror("git-rpush: read ");
				return;
			}
			if (!size)
				return;
			posn += size;
		} while (posn < 20);
 
		/* fprintf(stderr, "Serving %s\n", sha1_to_hex(sha1)); */
 
		buf = map_sha1_file(sha1, &objsize);
		if (!buf) {
			fprintf(stderr, "git-rpush: could not find %s\n", 
				sha1_to_hex(sha1));
			return;
		}
		posn = 0;
		do {
			size = write(fd_out, buf + posn, objsize - posn);
			if (size <= 0) {
				if (!size) {
					fprintf(stderr, "git-rpush: write closed");
				} else {
					perror("git-rpush: write ");
				}
				return;
			}
			posn += size;
		} while (posn < objsize);
	} while (1);
}
 
int main(int argc, char **argv)
{
	int arg = 1;
        char *commit_id;
        char *url;
	int fd_in, fd_out;
	while (arg < argc && argv[arg][0] == '-') {
                arg++;
        }
        if (argc < arg + 2) {
                usage("git-rpush [-c] [-t] [-a] commit-id url");
                return 1;
        }
	commit_id = argv[arg];
	url = argv[arg + 1];
	if (setup_connection(&fd_in, &fd_out, "git-rpull", url, arg, argv + 1))
		return 1;
 
	service(fd_in, fd_out);
	return 0;
}