send-pack.c: mark a file-local function static
[alt-git.git] / builtin / fetch-pack.c
blob81fae380e8ad8a3c2b32b023fce54cb126b81392
1 #include "builtin.h"
2 #include "pkt-line.h"
3 #include "fetch-pack.h"
4 #include "remote.h"
5 #include "connect.h"
6 #include "sha1-array.h"
8 static const char fetch_pack_usage[] =
9 "git fetch-pack [--all] [--stdin] [--quiet|-q] [--keep|-k] [--thin] "
10 "[--include-tag] [--upload-pack=<git-upload-pack>] [--depth=<n>] "
11 "[--no-progress] [-v] [<host>:]<directory> [<refs>...]";
13 static void add_sought_entry_mem(struct ref ***sought, int *nr, int *alloc,
14 const char *name, int namelen)
16 struct ref *ref = xcalloc(1, sizeof(*ref) + namelen + 1);
17 unsigned char sha1[20];
19 if (namelen > 41 && name[40] == ' ' && !get_sha1_hex(name, sha1)) {
20 hashcpy(ref->old_sha1, sha1);
21 name += 41;
22 namelen -= 41;
25 memcpy(ref->name, name, namelen);
26 ref->name[namelen] = '\0';
27 (*nr)++;
28 ALLOC_GROW(*sought, *nr, *alloc);
29 (*sought)[*nr - 1] = ref;
32 static void add_sought_entry(struct ref ***sought, int *nr, int *alloc,
33 const char *string)
35 add_sought_entry_mem(sought, nr, alloc, string, strlen(string));
38 int cmd_fetch_pack(int argc, const char **argv, const char *prefix)
40 int i, ret;
41 struct ref *ref = NULL;
42 const char *dest = NULL;
43 struct ref **sought = NULL;
44 int nr_sought = 0, alloc_sought = 0;
45 int fd[2];
46 char *pack_lockfile = NULL;
47 char **pack_lockfile_ptr = NULL;
48 struct child_process *conn;
49 struct fetch_pack_args args;
50 struct sha1_array shallow = SHA1_ARRAY_INIT;
52 packet_trace_identity("fetch-pack");
54 memset(&args, 0, sizeof(args));
55 args.uploadpack = "git-upload-pack";
57 for (i = 1; i < argc && *argv[i] == '-'; i++) {
58 const char *arg = argv[i];
60 if (!prefixcmp(arg, "--upload-pack=")) {
61 args.uploadpack = arg + 14;
62 continue;
64 if (!prefixcmp(arg, "--exec=")) {
65 args.uploadpack = arg + 7;
66 continue;
68 if (!strcmp("--quiet", arg) || !strcmp("-q", arg)) {
69 args.quiet = 1;
70 continue;
72 if (!strcmp("--keep", arg) || !strcmp("-k", arg)) {
73 args.lock_pack = args.keep_pack;
74 args.keep_pack = 1;
75 continue;
77 if (!strcmp("--thin", arg)) {
78 args.use_thin_pack = 1;
79 continue;
81 if (!strcmp("--include-tag", arg)) {
82 args.include_tag = 1;
83 continue;
85 if (!strcmp("--all", arg)) {
86 args.fetch_all = 1;
87 continue;
89 if (!strcmp("--stdin", arg)) {
90 args.stdin_refs = 1;
91 continue;
93 if (!strcmp("-v", arg)) {
94 args.verbose = 1;
95 continue;
97 if (!prefixcmp(arg, "--depth=")) {
98 args.depth = strtol(arg + 8, NULL, 0);
99 continue;
101 if (!strcmp("--no-progress", arg)) {
102 args.no_progress = 1;
103 continue;
105 if (!strcmp("--stateless-rpc", arg)) {
106 args.stateless_rpc = 1;
107 continue;
109 if (!strcmp("--lock-pack", arg)) {
110 args.lock_pack = 1;
111 pack_lockfile_ptr = &pack_lockfile;
112 continue;
114 if (!strcmp("--check-self-contained-and-connected", arg)) {
115 args.check_self_contained_and_connected = 1;
116 continue;
118 if (!strcmp("--cloning", arg)) {
119 args.cloning = 1;
120 continue;
122 if (!strcmp("--update-shallow", arg)) {
123 args.update_shallow = 1;
124 continue;
126 usage(fetch_pack_usage);
129 if (i < argc)
130 dest = argv[i++];
131 else
132 usage(fetch_pack_usage);
135 * Copy refs from cmdline to growable list, then append any
136 * refs from the standard input:
138 for (; i < argc; i++)
139 add_sought_entry(&sought, &nr_sought, &alloc_sought, argv[i]);
140 if (args.stdin_refs) {
141 if (args.stateless_rpc) {
142 /* in stateless RPC mode we use pkt-line to read
143 * from stdin, until we get a flush packet
145 for (;;) {
146 char *line = packet_read_line(0, NULL);
147 if (!line)
148 break;
149 add_sought_entry(&sought, &nr_sought, &alloc_sought, line);
152 else {
153 /* read from stdin one ref per line, until EOF */
154 struct strbuf line = STRBUF_INIT;
155 while (strbuf_getline(&line, stdin, '\n') != EOF)
156 add_sought_entry(&sought, &nr_sought, &alloc_sought, line.buf);
157 strbuf_release(&line);
161 if (args.stateless_rpc) {
162 conn = NULL;
163 fd[0] = 0;
164 fd[1] = 1;
165 } else {
166 conn = git_connect(fd, dest, args.uploadpack,
167 args.verbose ? CONNECT_VERBOSE : 0);
170 get_remote_heads(fd[0], NULL, 0, &ref, 0, NULL, &shallow);
172 ref = fetch_pack(&args, fd, conn, ref, dest, sought, nr_sought,
173 &shallow, pack_lockfile_ptr);
174 if (pack_lockfile) {
175 printf("lock %s\n", pack_lockfile);
176 fflush(stdout);
178 if (args.check_self_contained_and_connected &&
179 args.self_contained_and_connected) {
180 printf("connectivity-ok\n");
181 fflush(stdout);
183 close(fd[0]);
184 close(fd[1]);
185 if (finish_connect(conn))
186 return 1;
188 ret = !ref;
191 * If the heads to pull were given, we should have consumed
192 * all of them by matching the remote. Otherwise, 'git fetch
193 * remote no-such-ref' would silently succeed without issuing
194 * an error.
196 for (i = 0; i < nr_sought; i++) {
197 if (!sought[i] || sought[i]->matched)
198 continue;
199 error("no such remote ref %s", sought[i]->name);
200 ret = 1;
203 while (ref) {
204 printf("%s %s\n",
205 sha1_to_hex(ref->old_sha1), ref->name);
206 ref = ref->next;
209 return ret;