blob: aba44655524ff722d90de09760945f5f30088752 [file] [log] [blame]
Stephen Boydc2e86ad2011-03-22 00:51:05 -07001#include "builtin.h"
Linus Torvaldsdef88e92005-07-04 13:26:53 -07002#include "pkt-line.h"
Daniel Barkalow2d4177c2007-09-10 23:03:00 -04003#include "fetch-pack.h"
Shawn O. Pearcefa740522007-09-19 00:49:35 -04004
Junio C Hamano33b83032005-08-12 02:08:29 -07005static const char fetch_pack_usage[] =
Ivan Todoroski078b8952012-04-02 17:13:48 +02006"git fetch-pack [--all] [--stdin] [--quiet|-q] [--keep|-k] [--thin] "
7"[--include-tag] [--upload-pack=<git-upload-pack>] [--depth=<n>] "
8"[--no-progress] [-v] [<host>:]<directory> [<refs>...]";
Linus Torvaldsdef88e92005-07-04 13:26:53 -07009
Junio C Hamanof2db8542013-01-29 14:02:15 -080010static void add_sought_entry_mem(struct ref ***sought, int *nr, int *alloc,
11 const char *name, int namelen)
12{
13 struct ref *ref = xcalloc(1, sizeof(*ref) + namelen + 1);
14
15 memcpy(ref->name, name, namelen);
16 ref->name[namelen] = '\0';
17 (*nr)++;
18 ALLOC_GROW(*sought, *nr, *alloc);
19 (*sought)[*nr - 1] = ref;
20}
21
22static void add_sought_entry(struct ref ***sought, int *nr, int *alloc,
23 const char *string)
24{
25 add_sought_entry_mem(sought, nr, alloc, string, strlen(string));
26}
27
Daniel Barkalow2d4177c2007-09-10 23:03:00 -040028int cmd_fetch_pack(int argc, const char **argv, const char *prefix)
Linus Torvaldsdef88e92005-07-04 13:26:53 -070029{
Michael Haggerty57e6fc692012-05-21 09:59:59 +020030 int i, ret;
Daniel Barkalowba227852008-02-04 13:26:23 -050031 struct ref *ref = NULL;
Michael Haggerty9d19c6e2012-05-21 09:59:56 +020032 const char *dest = NULL;
Junio C Hamanof2db8542013-01-29 14:02:15 -080033 struct ref **sought = NULL;
34 int nr_sought = 0, alloc_sought = 0;
Daniel Barkalowba227852008-02-04 13:26:23 -050035 int fd[2];
Shawn O. Pearce249b2002009-10-30 17:47:42 -070036 char *pack_lockfile = NULL;
37 char **pack_lockfile_ptr = NULL;
Daniel Barkalowba227852008-02-04 13:26:23 -050038 struct child_process *conn;
Nguyễn Thái Ngọc Duyf8eb3032012-10-26 22:53:54 +070039 struct fetch_pack_args args;
Linus Torvaldsdef88e92005-07-04 13:26:53 -070040
Jeff Kingbbc30f92011-02-24 09:30:19 -050041 packet_trace_identity("fetch-pack");
42
Nguyễn Thái Ngọc Duyf8eb3032012-10-26 22:53:54 +070043 memset(&args, 0, sizeof(args));
44 args.uploadpack = "git-upload-pack";
45
Michael Haggertyff22ff92012-05-21 09:59:58 +020046 for (i = 1; i < argc && *argv[i] == '-'; i++) {
Daniel Barkalow2d4177c2007-09-10 23:03:00 -040047 const char *arg = argv[i];
Linus Torvaldsdef88e92005-07-04 13:26:53 -070048
Michael Haggertyff22ff92012-05-21 09:59:58 +020049 if (!prefixcmp(arg, "--upload-pack=")) {
50 args.uploadpack = arg + 14;
51 continue;
Linus Torvaldsdef88e92005-07-04 13:26:53 -070052 }
Michael Haggertyff22ff92012-05-21 09:59:58 +020053 if (!prefixcmp(arg, "--exec=")) {
54 args.uploadpack = arg + 7;
55 continue;
56 }
57 if (!strcmp("--quiet", arg) || !strcmp("-q", arg)) {
58 args.quiet = 1;
59 continue;
60 }
61 if (!strcmp("--keep", arg) || !strcmp("-k", arg)) {
62 args.lock_pack = args.keep_pack;
63 args.keep_pack = 1;
64 continue;
65 }
66 if (!strcmp("--thin", arg)) {
67 args.use_thin_pack = 1;
68 continue;
69 }
70 if (!strcmp("--include-tag", arg)) {
71 args.include_tag = 1;
72 continue;
73 }
74 if (!strcmp("--all", arg)) {
75 args.fetch_all = 1;
76 continue;
77 }
78 if (!strcmp("--stdin", arg)) {
79 args.stdin_refs = 1;
80 continue;
81 }
82 if (!strcmp("-v", arg)) {
83 args.verbose = 1;
84 continue;
85 }
86 if (!prefixcmp(arg, "--depth=")) {
87 args.depth = strtol(arg + 8, NULL, 0);
88 continue;
89 }
90 if (!strcmp("--no-progress", arg)) {
91 args.no_progress = 1;
92 continue;
93 }
94 if (!strcmp("--stateless-rpc", arg)) {
95 args.stateless_rpc = 1;
96 continue;
97 }
98 if (!strcmp("--lock-pack", arg)) {
99 args.lock_pack = 1;
100 pack_lockfile_ptr = &pack_lockfile;
101 continue;
102 }
103 usage(fetch_pack_usage);
Linus Torvaldsdef88e92005-07-04 13:26:53 -0700104 }
Michael Haggerty4cc00fc2012-05-21 09:59:57 +0200105
106 if (i < argc)
107 dest = argv[i++];
108 else
Linus Torvaldsdef88e92005-07-04 13:26:53 -0700109 usage(fetch_pack_usage);
Daniel Barkalow2d4177c2007-09-10 23:03:00 -0400110
Michael Haggerty57e6fc692012-05-21 09:59:59 +0200111 /*
112 * Copy refs from cmdline to growable list, then append any
113 * refs from the standard input:
114 */
Michael Haggerty57e6fc692012-05-21 09:59:59 +0200115 for (; i < argc; i++)
Junio C Hamanof2db8542013-01-29 14:02:15 -0800116 add_sought_entry(&sought, &nr_sought, &alloc_sought, argv[i]);
Ivan Todoroski078b8952012-04-02 17:13:48 +0200117 if (args.stdin_refs) {
Ivan Todoroski078b8952012-04-02 17:13:48 +0200118 if (args.stateless_rpc) {
119 /* in stateless RPC mode we use pkt-line to read
120 * from stdin, until we get a flush packet
121 */
Ivan Todoroski078b8952012-04-02 17:13:48 +0200122 for (;;) {
Jeff King74543a02013-02-20 15:02:57 -0500123 char *line = packet_read_line(0, NULL);
124 if (!line)
Ivan Todoroski078b8952012-04-02 17:13:48 +0200125 break;
Junio C Hamanoe013bda2013-04-01 08:59:37 -0700126 add_sought_entry(&sought, &nr_sought, &alloc_sought, line);
Ivan Todoroski078b8952012-04-02 17:13:48 +0200127 }
128 }
129 else {
130 /* read from stdin one ref per line, until EOF */
131 struct strbuf line = STRBUF_INIT;
Michael Haggerty8bee93d2012-09-09 08:19:40 +0200132 while (strbuf_getline(&line, stdin, '\n') != EOF)
Junio C Hamanof2db8542013-01-29 14:02:15 -0800133 add_sought_entry(&sought, &nr_sought, &alloc_sought, line.buf);
Ivan Todoroski078b8952012-04-02 17:13:48 +0200134 strbuf_release(&line);
135 }
136 }
137
Shawn O. Pearce249b2002009-10-30 17:47:42 -0700138 if (args.stateless_rpc) {
139 conn = NULL;
140 fd[0] = 0;
141 fd[1] = 1;
Daniel Barkalowba227852008-02-04 13:26:23 -0500142 } else {
Michael Haggerty9d19c6e2012-05-21 09:59:56 +0200143 conn = git_connect(fd, dest, args.uploadpack,
Shawn O. Pearce249b2002009-10-30 17:47:42 -0700144 args.verbose ? CONNECT_VERBOSE : 0);
Daniel Barkalowba227852008-02-04 13:26:23 -0500145 }
Shawn O. Pearce249b2002009-10-30 17:47:42 -0700146
Jeff King85edf4f2013-02-20 15:06:45 -0500147 get_remote_heads(fd[0], NULL, 0, &ref, 0, NULL);
Shawn O. Pearce249b2002009-10-30 17:47:42 -0700148
149 ref = fetch_pack(&args, fd, conn, ref, dest,
Junio C Hamanof2db8542013-01-29 14:02:15 -0800150 sought, nr_sought, pack_lockfile_ptr);
Shawn O. Pearce249b2002009-10-30 17:47:42 -0700151 if (pack_lockfile) {
152 printf("lock %s\n", pack_lockfile);
153 fflush(stdout);
154 }
155 close(fd[0]);
156 close(fd[1]);
157 if (finish_connect(conn))
Michael Haggerty7418f1a2012-09-09 08:19:46 +0200158 return 1;
Junio C Hamano9e5d2b42005-11-06 00:09:59 -0800159
Junio C Hamanof2db8542013-01-29 14:02:15 -0800160 ret = !ref;
Michael Haggertyb2856682012-09-09 08:19:48 +0200161
162 /*
163 * If the heads to pull were given, we should have consumed
164 * all of them by matching the remote. Otherwise, 'git fetch
165 * remote no-such-ref' would silently succeed without issuing
166 * an error.
167 */
Junio C Hamanof2db8542013-01-29 14:02:15 -0800168 for (i = 0; i < nr_sought; i++) {
169 if (!sought[i] || sought[i]->matched)
170 continue;
171 error("no such remote ref %s", sought[i]->name);
172 ret = 1;
173 }
174
Daniel Barkalowba227852008-02-04 13:26:23 -0500175 while (ref) {
176 printf("%s %s\n",
177 sha1_to_hex(ref->old_sha1), ref->name);
178 ref = ref->next;
179 }
Junio C Hamano9e5d2b42005-11-06 00:09:59 -0800180
Daniel Barkalowba227852008-02-04 13:26:23 -0500181 return ret;
182}