Linus Torvalds | def88e9 | 2005-07-04 13:26:53 -0700 | [diff] [blame] | 1 | #include "cache.h" |
Linus Torvalds | fb9040c | 2005-07-04 15:29:17 -0700 | [diff] [blame] | 2 | #include "refs.h" |
Linus Torvalds | def88e9 | 2005-07-04 13:26:53 -0700 | [diff] [blame] | 3 | #include "pkt-line.h" |
Junio C Hamano | 49bb805 | 2005-10-19 14:27:02 -0700 | [diff] [blame] | 4 | #include "commit.h" |
| 5 | #include "tag.h" |
Nicolas Pitre | da093d3 | 2006-11-01 17:06:23 -0500 | [diff] [blame] | 6 | #include "exec_cmd.h" |
Junio C Hamano | 9e10fd1 | 2007-01-22 22:37:33 -0800 | [diff] [blame] | 7 | #include "pack.h" |
Nicolas Pitre | da093d3 | 2006-11-01 17:06:23 -0500 | [diff] [blame] | 8 | #include "sideband.h" |
Daniel Barkalow | 2d4177c | 2007-09-10 23:03:00 -0400 | [diff] [blame] | 9 | #include "fetch-pack.h" |
Daniel Barkalow | ba22785 | 2008-02-04 13:26:23 -0500 | [diff] [blame] | 10 | #include "remote.h" |
Johannes Sixt | 477822c | 2007-10-19 21:47:57 +0200 | [diff] [blame] | 11 | #include "run-command.h" |
Linus Torvalds | def88e9 | 2005-07-04 13:26:53 -0700 | [diff] [blame] | 12 | |
Junio C Hamano | e28714c | 2007-01-24 17:02:15 -0800 | [diff] [blame] | 13 | static int transfer_unpack_limit = -1; |
| 14 | static int fetch_unpack_limit = -1; |
Junio C Hamano | af7cf26 | 2007-01-24 16:47:24 -0800 | [diff] [blame] | 15 | static int unpack_limit = 100; |
Nicolas Pitre | f04833e | 2009-05-01 20:18:02 -0400 | [diff] [blame] | 16 | static int prefer_ofs_delta = 1; |
Daniel Barkalow | 09149c7 | 2007-10-29 22:35:08 -0400 | [diff] [blame] | 17 | static struct fetch_pack_args args = { |
| 18 | /* .uploadpack = */ "git-upload-pack", |
| 19 | }; |
Shawn O. Pearce | fa74052 | 2007-09-19 00:49:35 -0400 | [diff] [blame] | 20 | |
Junio C Hamano | 33b8303 | 2005-08-12 02:08:29 -0700 | [diff] [blame] | 21 | static const char fetch_pack_usage[] = |
Stephan Beyer | 1b1dd23 | 2008-07-13 15:36:15 +0200 | [diff] [blame] | 22 | "git fetch-pack [--all] [--quiet|-q] [--keep|-k] [--thin] [--include-tag] [--upload-pack=<git-upload-pack>] [--depth=<n>] [--no-progress] [-v] [<host>:]<directory> [<refs>...]"; |
Linus Torvalds | def88e9 | 2005-07-04 13:26:53 -0700 | [diff] [blame] | 23 | |
Johannes Schindelin | 0a8944d | 2005-10-19 16:14:34 -0700 | [diff] [blame] | 24 | #define COMPLETE (1U << 0) |
Johannes Schindelin | 23d61f8 | 2005-10-28 04:46:27 +0200 | [diff] [blame] | 25 | #define COMMON (1U << 1) |
| 26 | #define COMMON_REF (1U << 2) |
| 27 | #define SEEN (1U << 3) |
| 28 | #define POPPED (1U << 4) |
| 29 | |
Daniel Barkalow | 420e9af | 2008-03-17 22:15:02 -0400 | [diff] [blame] | 30 | static int marked; |
| 31 | |
Junio C Hamano | f061e5f | 2006-05-24 21:48:34 -0700 | [diff] [blame] | 32 | /* |
| 33 | * After sending this many "have"s if we do not get any new ACK , we |
| 34 | * give up traversing our history. |
| 35 | */ |
| 36 | #define MAX_IN_VAIN 256 |
| 37 | |
David Rientjes | 96f1e58 | 2006-08-15 10:23:48 -0700 | [diff] [blame] | 38 | static struct commit_list *rev_list; |
Nicolas Pitre | 3891f39 | 2007-11-07 17:20:22 -0500 | [diff] [blame] | 39 | static int non_common_revs, multi_ack, use_sideband; |
Johannes Schindelin | 23d61f8 | 2005-10-28 04:46:27 +0200 | [diff] [blame] | 40 | |
| 41 | static void rev_list_push(struct commit *commit, int mark) |
| 42 | { |
| 43 | if (!(commit->object.flags & mark)) { |
| 44 | commit->object.flags |= mark; |
| 45 | |
| 46 | if (!(commit->object.parsed)) |
Martin Koegler | f3ec549 | 2008-03-03 07:31:23 +0100 | [diff] [blame] | 47 | if (parse_commit(commit)) |
| 48 | return; |
Johannes Schindelin | 23d61f8 | 2005-10-28 04:46:27 +0200 | [diff] [blame] | 49 | |
| 50 | insert_by_date(commit, &rev_list); |
| 51 | |
| 52 | if (!(commit->object.flags & COMMON)) |
| 53 | non_common_revs++; |
| 54 | } |
| 55 | } |
| 56 | |
Junio C Hamano | 8da1977 | 2006-09-20 22:02:01 -0700 | [diff] [blame] | 57 | static int rev_list_insert_ref(const char *path, const unsigned char *sha1, int flag, void *cb_data) |
Johannes Schindelin | 23d61f8 | 2005-10-28 04:46:27 +0200 | [diff] [blame] | 58 | { |
Junio C Hamano | 9534f40 | 2005-11-02 15:19:13 -0800 | [diff] [blame] | 59 | struct object *o = deref_tag(parse_object(sha1), path, 0); |
Johannes Schindelin | 23d61f8 | 2005-10-28 04:46:27 +0200 | [diff] [blame] | 60 | |
Linus Torvalds | 1974632 | 2006-07-11 20:45:31 -0700 | [diff] [blame] | 61 | if (o && o->type == OBJ_COMMIT) |
Johannes Schindelin | 23d61f8 | 2005-10-28 04:46:27 +0200 | [diff] [blame] | 62 | rev_list_push((struct commit *)o, SEEN); |
| 63 | |
| 64 | return 0; |
| 65 | } |
| 66 | |
Daniel Barkalow | 420e9af | 2008-03-17 22:15:02 -0400 | [diff] [blame] | 67 | static int clear_marks(const char *path, const unsigned char *sha1, int flag, void *cb_data) |
| 68 | { |
| 69 | struct object *o = deref_tag(parse_object(sha1), path, 0); |
| 70 | |
| 71 | if (o && o->type == OBJ_COMMIT) |
| 72 | clear_commit_marks((struct commit *)o, |
| 73 | COMMON | COMMON_REF | SEEN | POPPED); |
| 74 | return 0; |
| 75 | } |
| 76 | |
Johannes Schindelin | 23d61f8 | 2005-10-28 04:46:27 +0200 | [diff] [blame] | 77 | /* |
| 78 | This function marks a rev and its ancestors as common. |
| 79 | In some cases, it is desirable to mark only the ancestors (for example |
| 80 | when only the server does not yet know that they are common). |
| 81 | */ |
| 82 | |
| 83 | static void mark_common(struct commit *commit, |
| 84 | int ancestors_only, int dont_parse) |
| 85 | { |
| 86 | if (commit != NULL && !(commit->object.flags & COMMON)) { |
| 87 | struct object *o = (struct object *)commit; |
| 88 | |
| 89 | if (!ancestors_only) |
| 90 | o->flags |= COMMON; |
| 91 | |
| 92 | if (!(o->flags & SEEN)) |
| 93 | rev_list_push(commit, SEEN); |
| 94 | else { |
| 95 | struct commit_list *parents; |
| 96 | |
| 97 | if (!ancestors_only && !(o->flags & POPPED)) |
| 98 | non_common_revs--; |
| 99 | if (!o->parsed && !dont_parse) |
Martin Koegler | f3ec549 | 2008-03-03 07:31:23 +0100 | [diff] [blame] | 100 | if (parse_commit(commit)) |
| 101 | return; |
Johannes Schindelin | 23d61f8 | 2005-10-28 04:46:27 +0200 | [diff] [blame] | 102 | |
| 103 | for (parents = commit->parents; |
| 104 | parents; |
| 105 | parents = parents->next) |
| 106 | mark_common(parents->item, 0, dont_parse); |
| 107 | } |
| 108 | } |
| 109 | } |
| 110 | |
| 111 | /* |
| 112 | Get the next rev to send, ignoring the common. |
| 113 | */ |
| 114 | |
Felipe Contreras | 4b25d09 | 2009-05-01 12:06:36 +0300 | [diff] [blame] | 115 | static const unsigned char *get_rev(void) |
Johannes Schindelin | 23d61f8 | 2005-10-28 04:46:27 +0200 | [diff] [blame] | 116 | { |
| 117 | struct commit *commit = NULL; |
| 118 | |
| 119 | while (commit == NULL) { |
| 120 | unsigned int mark; |
Linus Torvalds | 72269ad | 2008-04-28 16:27:49 -0700 | [diff] [blame] | 121 | struct commit_list *parents; |
Johannes Schindelin | 23d61f8 | 2005-10-28 04:46:27 +0200 | [diff] [blame] | 122 | |
| 123 | if (rev_list == NULL || non_common_revs == 0) |
| 124 | return NULL; |
| 125 | |
| 126 | commit = rev_list->item; |
Junio C Hamano | 2d8bed9 | 2008-04-30 11:42:05 -0700 | [diff] [blame] | 127 | if (!commit->object.parsed) |
Linus Torvalds | 72269ad | 2008-04-28 16:27:49 -0700 | [diff] [blame] | 128 | parse_commit(commit); |
| 129 | parents = commit->parents; |
Martin Koegler | f3ec549 | 2008-03-03 07:31:23 +0100 | [diff] [blame] | 130 | |
Johannes Schindelin | 23d61f8 | 2005-10-28 04:46:27 +0200 | [diff] [blame] | 131 | commit->object.flags |= POPPED; |
| 132 | if (!(commit->object.flags & COMMON)) |
| 133 | non_common_revs--; |
Junio C Hamano | a6080a0 | 2007-06-07 00:04:01 -0700 | [diff] [blame] | 134 | |
Johannes Schindelin | 23d61f8 | 2005-10-28 04:46:27 +0200 | [diff] [blame] | 135 | if (commit->object.flags & COMMON) { |
| 136 | /* do not send "have", and ignore ancestors */ |
| 137 | commit = NULL; |
| 138 | mark = COMMON | SEEN; |
| 139 | } else if (commit->object.flags & COMMON_REF) |
| 140 | /* send "have", and ignore ancestors */ |
| 141 | mark = COMMON | SEEN; |
| 142 | else |
| 143 | /* send "have", also for its ancestors */ |
| 144 | mark = SEEN; |
| 145 | |
| 146 | while (parents) { |
| 147 | if (!(parents->item->object.flags & SEEN)) |
| 148 | rev_list_push(parents->item, mark); |
| 149 | if (mark & COMMON) |
| 150 | mark_common(parents->item, 1, 0); |
| 151 | parents = parents->next; |
| 152 | } |
| 153 | |
| 154 | rev_list = rev_list->next; |
| 155 | } |
| 156 | |
| 157 | return commit->object.sha1; |
| 158 | } |
Johannes Schindelin | 0a8944d | 2005-10-19 16:14:34 -0700 | [diff] [blame] | 159 | |
Shawn O. Pearce | 78affc4 | 2009-10-30 17:47:25 -0700 | [diff] [blame] | 160 | enum ack_type { |
| 161 | NAK = 0, |
| 162 | ACK, |
| 163 | ACK_continue, |
| 164 | ACK_common, |
| 165 | ACK_ready |
| 166 | }; |
| 167 | |
Shawn O. Pearce | 249b200 | 2009-10-30 17:47:42 -0700 | [diff] [blame] | 168 | static void consume_shallow_list(int fd) |
| 169 | { |
| 170 | if (args.stateless_rpc && args.depth > 0) { |
| 171 | /* If we sent a depth we will get back "duplicate" |
| 172 | * shallow and unshallow commands every time there |
| 173 | * is a block of have lines exchanged. |
| 174 | */ |
| 175 | char line[1000]; |
| 176 | while (packet_read_line(fd, line, sizeof(line))) { |
| 177 | if (!prefixcmp(line, "shallow ")) |
| 178 | continue; |
| 179 | if (!prefixcmp(line, "unshallow ")) |
| 180 | continue; |
| 181 | die("git fetch-pack: expected shallow list"); |
| 182 | } |
| 183 | } |
| 184 | } |
| 185 | |
Shawn O. Pearce | 78affc4 | 2009-10-30 17:47:25 -0700 | [diff] [blame] | 186 | static enum ack_type get_ack(int fd, unsigned char *result_sha1) |
Shawn O. Pearce | 28754ab | 2009-10-30 17:47:24 -0700 | [diff] [blame] | 187 | { |
| 188 | static char line[1000]; |
| 189 | int len = packet_read_line(fd, line, sizeof(line)); |
| 190 | |
| 191 | if (!len) |
| 192 | die("git fetch-pack: expected ACK/NAK, got EOF"); |
| 193 | if (line[len-1] == '\n') |
| 194 | line[--len] = 0; |
| 195 | if (!strcmp(line, "NAK")) |
Shawn O. Pearce | 78affc4 | 2009-10-30 17:47:25 -0700 | [diff] [blame] | 196 | return NAK; |
Shawn O. Pearce | 28754ab | 2009-10-30 17:47:24 -0700 | [diff] [blame] | 197 | if (!prefixcmp(line, "ACK ")) { |
| 198 | if (!get_sha1_hex(line+4, result_sha1)) { |
| 199 | if (strstr(line+45, "continue")) |
Shawn O. Pearce | 78affc4 | 2009-10-30 17:47:25 -0700 | [diff] [blame] | 200 | return ACK_continue; |
| 201 | if (strstr(line+45, "common")) |
| 202 | return ACK_common; |
| 203 | if (strstr(line+45, "ready")) |
| 204 | return ACK_ready; |
| 205 | return ACK; |
Shawn O. Pearce | 28754ab | 2009-10-30 17:47:24 -0700 | [diff] [blame] | 206 | } |
| 207 | } |
| 208 | die("git fetch_pack: expected ACK/NAK, got '%s'", line); |
| 209 | } |
| 210 | |
Shawn O. Pearce | 249b200 | 2009-10-30 17:47:42 -0700 | [diff] [blame] | 211 | static void send_request(int fd, struct strbuf *buf) |
| 212 | { |
| 213 | if (args.stateless_rpc) { |
| 214 | send_sideband(fd, -1, buf->buf, buf->len, LARGE_PACKET_MAX); |
| 215 | packet_flush(fd); |
| 216 | } else |
| 217 | safe_write(fd, buf->buf, buf->len); |
| 218 | } |
| 219 | |
Junio C Hamano | 33b8303 | 2005-08-12 02:08:29 -0700 | [diff] [blame] | 220 | static int find_common(int fd[2], unsigned char *result_sha1, |
| 221 | struct ref *refs) |
Linus Torvalds | def88e9 | 2005-07-04 13:26:53 -0700 | [diff] [blame] | 222 | { |
Linus Torvalds | 2759cbc | 2005-10-18 11:35:17 -0700 | [diff] [blame] | 223 | int fetching; |
Johannes Schindelin | 23d61f8 | 2005-10-28 04:46:27 +0200 | [diff] [blame] | 224 | int count = 0, flushes = 0, retval; |
| 225 | const unsigned char *sha1; |
Junio C Hamano | f061e5f | 2006-05-24 21:48:34 -0700 | [diff] [blame] | 226 | unsigned in_vain = 0; |
| 227 | int got_continue = 0; |
Shawn O. Pearce | edace6f | 2009-10-30 17:47:23 -0700 | [diff] [blame] | 228 | struct strbuf req_buf = STRBUF_INIT; |
Shawn O. Pearce | 249b200 | 2009-10-30 17:47:42 -0700 | [diff] [blame] | 229 | size_t state_len = 0; |
Linus Torvalds | def88e9 | 2005-07-04 13:26:53 -0700 | [diff] [blame] | 230 | |
Shawn O. Pearce | 249b200 | 2009-10-30 17:47:42 -0700 | [diff] [blame] | 231 | if (args.stateless_rpc && multi_ack == 1) |
| 232 | die("--stateless-rpc requires multi_ack_detailed"); |
Daniel Barkalow | 420e9af | 2008-03-17 22:15:02 -0400 | [diff] [blame] | 233 | if (marked) |
| 234 | for_each_ref(clear_marks, NULL); |
| 235 | marked = 1; |
| 236 | |
Junio C Hamano | cb5d709 | 2006-09-20 21:47:42 -0700 | [diff] [blame] | 237 | for_each_ref(rev_list_insert_ref, NULL); |
Johannes Schindelin | 23d61f8 | 2005-10-28 04:46:27 +0200 | [diff] [blame] | 238 | |
Linus Torvalds | 2759cbc | 2005-10-18 11:35:17 -0700 | [diff] [blame] | 239 | fetching = 0; |
| 240 | for ( ; refs ; refs = refs->next) { |
Junio C Hamano | 33b8303 | 2005-08-12 02:08:29 -0700 | [diff] [blame] | 241 | unsigned char *remote = refs->old_sha1; |
Shawn O. Pearce | edace6f | 2009-10-30 17:47:23 -0700 | [diff] [blame] | 242 | const char *remote_hex; |
Junio C Hamano | 4dab94d | 2005-10-19 18:28:17 -0700 | [diff] [blame] | 243 | struct object *o; |
Linus Torvalds | 2759cbc | 2005-10-18 11:35:17 -0700 | [diff] [blame] | 244 | |
Johannes Schindelin | 0a8944d | 2005-10-19 16:14:34 -0700 | [diff] [blame] | 245 | /* |
Junio C Hamano | 4dab94d | 2005-10-19 18:28:17 -0700 | [diff] [blame] | 246 | * If that object is complete (i.e. it is an ancestor of a |
| 247 | * local ref), we tell them we have it but do not have to |
| 248 | * tell them about its ancestors, which they already know |
| 249 | * about. |
Junio C Hamano | f1f0a2b | 2005-10-19 21:55:49 -0700 | [diff] [blame] | 250 | * |
| 251 | * We use lookup_object here because we are only |
| 252 | * interested in the case we *know* the object is |
| 253 | * reachable and we have already scanned it. |
Junio C Hamano | 4dab94d | 2005-10-19 18:28:17 -0700 | [diff] [blame] | 254 | */ |
Junio C Hamano | f1f0a2b | 2005-10-19 21:55:49 -0700 | [diff] [blame] | 255 | if (((o = lookup_object(remote)) != NULL) && |
Johannes Schindelin | 1baaae5 | 2005-10-28 04:47:07 +0200 | [diff] [blame] | 256 | (o->flags & COMPLETE)) { |
Linus Torvalds | 2759cbc | 2005-10-18 11:35:17 -0700 | [diff] [blame] | 257 | continue; |
Johannes Schindelin | 0a8944d | 2005-10-19 16:14:34 -0700 | [diff] [blame] | 258 | } |
Johannes Schindelin | 23d61f8 | 2005-10-28 04:46:27 +0200 | [diff] [blame] | 259 | |
Shawn O. Pearce | edace6f | 2009-10-30 17:47:23 -0700 | [diff] [blame] | 260 | remote_hex = sha1_to_hex(remote); |
| 261 | if (!fetching) { |
| 262 | struct strbuf c = STRBUF_INIT; |
Shawn O. Pearce | 78affc4 | 2009-10-30 17:47:25 -0700 | [diff] [blame] | 263 | if (multi_ack == 2) strbuf_addstr(&c, " multi_ack_detailed"); |
| 264 | if (multi_ack == 1) strbuf_addstr(&c, " multi_ack"); |
Shawn O. Pearce | edace6f | 2009-10-30 17:47:23 -0700 | [diff] [blame] | 265 | if (use_sideband == 2) strbuf_addstr(&c, " side-band-64k"); |
| 266 | if (use_sideband == 1) strbuf_addstr(&c, " side-band"); |
| 267 | if (args.use_thin_pack) strbuf_addstr(&c, " thin-pack"); |
| 268 | if (args.no_progress) strbuf_addstr(&c, " no-progress"); |
| 269 | if (args.include_tag) strbuf_addstr(&c, " include-tag"); |
| 270 | if (prefer_ofs_delta) strbuf_addstr(&c, " ofs-delta"); |
| 271 | packet_buf_write(&req_buf, "want %s%s\n", remote_hex, c.buf); |
| 272 | strbuf_release(&c); |
| 273 | } else |
| 274 | packet_buf_write(&req_buf, "want %s\n", remote_hex); |
Linus Torvalds | 2759cbc | 2005-10-18 11:35:17 -0700 | [diff] [blame] | 275 | fetching++; |
Junio C Hamano | 33b8303 | 2005-08-12 02:08:29 -0700 | [diff] [blame] | 276 | } |
Shawn O. Pearce | edace6f | 2009-10-30 17:47:23 -0700 | [diff] [blame] | 277 | |
| 278 | if (!fetching) { |
| 279 | strbuf_release(&req_buf); |
| 280 | packet_flush(fd[1]); |
Linus Torvalds | 2759cbc | 2005-10-18 11:35:17 -0700 | [diff] [blame] | 281 | return 1; |
Shawn O. Pearce | edace6f | 2009-10-30 17:47:23 -0700 | [diff] [blame] | 282 | } |
| 283 | |
| 284 | if (is_repository_shallow()) |
| 285 | write_shallow_commits(&req_buf, 1); |
| 286 | if (args.depth > 0) |
| 287 | packet_buf_write(&req_buf, "deepen %d", args.depth); |
| 288 | packet_buf_flush(&req_buf); |
Shawn O. Pearce | 249b200 | 2009-10-30 17:47:42 -0700 | [diff] [blame] | 289 | state_len = req_buf.len; |
Johannes Schindelin | 0a8944d | 2005-10-19 16:14:34 -0700 | [diff] [blame] | 290 | |
Shawn O. Pearce | fa74052 | 2007-09-19 00:49:35 -0400 | [diff] [blame] | 291 | if (args.depth > 0) { |
Johannes Schindelin | 016e6cc | 2006-10-30 20:09:29 +0100 | [diff] [blame] | 292 | char line[1024]; |
| 293 | unsigned char sha1[20]; |
Johannes Schindelin | 016e6cc | 2006-10-30 20:09:29 +0100 | [diff] [blame] | 294 | |
Shawn O. Pearce | 249b200 | 2009-10-30 17:47:42 -0700 | [diff] [blame] | 295 | send_request(fd[1], &req_buf); |
Benjamin Kramer | eb3a9dd | 2009-03-07 21:02:10 +0100 | [diff] [blame] | 296 | while (packet_read_line(fd[0], line, sizeof(line))) { |
Junio C Hamano | 599065a | 2007-02-20 01:54:00 -0800 | [diff] [blame] | 297 | if (!prefixcmp(line, "shallow ")) { |
Johannes Schindelin | 016e6cc | 2006-10-30 20:09:29 +0100 | [diff] [blame] | 298 | if (get_sha1_hex(line + 8, sha1)) |
| 299 | die("invalid shallow line: %s", line); |
Johannes Schindelin | 016e6cc | 2006-10-30 20:09:29 +0100 | [diff] [blame] | 300 | register_shallow(sha1); |
Junio C Hamano | cf01bd5 | 2006-11-13 22:04:56 -0800 | [diff] [blame] | 301 | continue; |
| 302 | } |
Junio C Hamano | 599065a | 2007-02-20 01:54:00 -0800 | [diff] [blame] | 303 | if (!prefixcmp(line, "unshallow ")) { |
Johannes Schindelin | f53514b | 2006-10-30 20:09:53 +0100 | [diff] [blame] | 304 | if (get_sha1_hex(line + 10, sha1)) |
| 305 | die("invalid unshallow line: %s", line); |
| 306 | if (!lookup_object(sha1)) |
| 307 | die("object not found: %s", line); |
| 308 | /* make sure that it is parsed as shallow */ |
Martin Koegler | f3ec549 | 2008-03-03 07:31:23 +0100 | [diff] [blame] | 309 | if (!parse_object(sha1)) |
| 310 | die("error in object: %s", line); |
Johannes Schindelin | f53514b | 2006-10-30 20:09:53 +0100 | [diff] [blame] | 311 | if (unregister_shallow(sha1)) |
| 312 | die("no shallow found: %s", line); |
Junio C Hamano | cf01bd5 | 2006-11-13 22:04:56 -0800 | [diff] [blame] | 313 | continue; |
| 314 | } |
| 315 | die("expected shallow/unshallow, got %s", line); |
Johannes Schindelin | 016e6cc | 2006-10-30 20:09:29 +0100 | [diff] [blame] | 316 | } |
Shawn O. Pearce | 249b200 | 2009-10-30 17:47:42 -0700 | [diff] [blame] | 317 | } else if (!args.stateless_rpc) |
| 318 | send_request(fd[1], &req_buf); |
| 319 | |
| 320 | if (!args.stateless_rpc) { |
| 321 | /* If we aren't using the stateless-rpc interface |
| 322 | * we don't need to retain the headers. |
| 323 | */ |
| 324 | strbuf_setlen(&req_buf, 0); |
| 325 | state_len = 0; |
Johannes Schindelin | 016e6cc | 2006-10-30 20:09:29 +0100 | [diff] [blame] | 326 | } |
| 327 | |
Johannes Schindelin | 23d61f8 | 2005-10-28 04:46:27 +0200 | [diff] [blame] | 328 | flushes = 0; |
Linus Torvalds | 75bfc6c | 2005-07-04 16:35:13 -0700 | [diff] [blame] | 329 | retval = -1; |
Johannes Schindelin | 23d61f8 | 2005-10-28 04:46:27 +0200 | [diff] [blame] | 330 | while ((sha1 = get_rev())) { |
Shawn O. Pearce | 249b200 | 2009-10-30 17:47:42 -0700 | [diff] [blame] | 331 | packet_buf_write(&req_buf, "have %s\n", sha1_to_hex(sha1)); |
Shawn O. Pearce | fa74052 | 2007-09-19 00:49:35 -0400 | [diff] [blame] | 332 | if (args.verbose) |
Junio C Hamano | 33b8303 | 2005-08-12 02:08:29 -0700 | [diff] [blame] | 333 | fprintf(stderr, "have %s\n", sha1_to_hex(sha1)); |
Junio C Hamano | f061e5f | 2006-05-24 21:48:34 -0700 | [diff] [blame] | 334 | in_vain++; |
Linus Torvalds | def88e9 | 2005-07-04 13:26:53 -0700 | [diff] [blame] | 335 | if (!(31 & ++count)) { |
Johannes Schindelin | c4c86f0 | 2005-10-28 04:50:26 +0200 | [diff] [blame] | 336 | int ack; |
| 337 | |
Shawn O. Pearce | 249b200 | 2009-10-30 17:47:42 -0700 | [diff] [blame] | 338 | packet_buf_flush(&req_buf); |
| 339 | send_request(fd[1], &req_buf); |
| 340 | strbuf_setlen(&req_buf, state_len); |
Linus Torvalds | def88e9 | 2005-07-04 13:26:53 -0700 | [diff] [blame] | 341 | flushes++; |
| 342 | |
| 343 | /* |
| 344 | * We keep one window "ahead" of the other side, and |
| 345 | * will wait for an ACK only on the next one |
| 346 | */ |
Shawn O. Pearce | 249b200 | 2009-10-30 17:47:42 -0700 | [diff] [blame] | 347 | if (!args.stateless_rpc && count == 32) |
Linus Torvalds | def88e9 | 2005-07-04 13:26:53 -0700 | [diff] [blame] | 348 | continue; |
Johannes Schindelin | c4c86f0 | 2005-10-28 04:50:26 +0200 | [diff] [blame] | 349 | |
Shawn O. Pearce | 249b200 | 2009-10-30 17:47:42 -0700 | [diff] [blame] | 350 | consume_shallow_list(fd[0]); |
Johannes Schindelin | c4c86f0 | 2005-10-28 04:50:26 +0200 | [diff] [blame] | 351 | do { |
| 352 | ack = get_ack(fd[0], result_sha1); |
Shawn O. Pearce | fa74052 | 2007-09-19 00:49:35 -0400 | [diff] [blame] | 353 | if (args.verbose && ack) |
Johannes Schindelin | c4c86f0 | 2005-10-28 04:50:26 +0200 | [diff] [blame] | 354 | fprintf(stderr, "got ack %d %s\n", ack, |
| 355 | sha1_to_hex(result_sha1)); |
Shawn O. Pearce | 78affc4 | 2009-10-30 17:47:25 -0700 | [diff] [blame] | 356 | switch (ack) { |
| 357 | case ACK: |
Johannes Schindelin | c4c86f0 | 2005-10-28 04:50:26 +0200 | [diff] [blame] | 358 | flushes = 0; |
| 359 | multi_ack = 0; |
| 360 | retval = 0; |
| 361 | goto done; |
Shawn O. Pearce | 78affc4 | 2009-10-30 17:47:25 -0700 | [diff] [blame] | 362 | case ACK_common: |
| 363 | case ACK_ready: |
| 364 | case ACK_continue: { |
Johannes Schindelin | c4c86f0 | 2005-10-28 04:50:26 +0200 | [diff] [blame] | 365 | struct commit *commit = |
| 366 | lookup_commit(result_sha1); |
Shawn O. Pearce | 249b200 | 2009-10-30 17:47:42 -0700 | [diff] [blame] | 367 | if (args.stateless_rpc |
| 368 | && ack == ACK_common |
| 369 | && !(commit->object.flags & COMMON)) { |
| 370 | /* We need to replay the have for this object |
| 371 | * on the next RPC request so the peer knows |
| 372 | * it is in common with us. |
| 373 | */ |
| 374 | const char *hex = sha1_to_hex(result_sha1); |
| 375 | packet_buf_write(&req_buf, "have %s\n", hex); |
| 376 | state_len = req_buf.len; |
| 377 | } |
Johannes Schindelin | c4c86f0 | 2005-10-28 04:50:26 +0200 | [diff] [blame] | 378 | mark_common(commit, 0, 1); |
| 379 | retval = 0; |
Junio C Hamano | f061e5f | 2006-05-24 21:48:34 -0700 | [diff] [blame] | 380 | in_vain = 0; |
| 381 | got_continue = 1; |
Shawn O. Pearce | 78affc4 | 2009-10-30 17:47:25 -0700 | [diff] [blame] | 382 | break; |
| 383 | } |
Johannes Schindelin | c4c86f0 | 2005-10-28 04:50:26 +0200 | [diff] [blame] | 384 | } |
| 385 | } while (ack); |
Linus Torvalds | def88e9 | 2005-07-04 13:26:53 -0700 | [diff] [blame] | 386 | flushes--; |
Junio C Hamano | f061e5f | 2006-05-24 21:48:34 -0700 | [diff] [blame] | 387 | if (got_continue && MAX_IN_VAIN < in_vain) { |
Shawn O. Pearce | fa74052 | 2007-09-19 00:49:35 -0400 | [diff] [blame] | 388 | if (args.verbose) |
Junio C Hamano | f061e5f | 2006-05-24 21:48:34 -0700 | [diff] [blame] | 389 | fprintf(stderr, "giving up\n"); |
| 390 | break; /* give up */ |
| 391 | } |
Linus Torvalds | def88e9 | 2005-07-04 13:26:53 -0700 | [diff] [blame] | 392 | } |
| 393 | } |
Johannes Schindelin | c4c86f0 | 2005-10-28 04:50:26 +0200 | [diff] [blame] | 394 | done: |
Shawn O. Pearce | 249b200 | 2009-10-30 17:47:42 -0700 | [diff] [blame] | 395 | packet_buf_write(&req_buf, "done\n"); |
| 396 | send_request(fd[1], &req_buf); |
Shawn O. Pearce | fa74052 | 2007-09-19 00:49:35 -0400 | [diff] [blame] | 397 | if (args.verbose) |
Junio C Hamano | 33b8303 | 2005-08-12 02:08:29 -0700 | [diff] [blame] | 398 | fprintf(stderr, "done\n"); |
Johannes Schindelin | c4c86f0 | 2005-10-28 04:50:26 +0200 | [diff] [blame] | 399 | if (retval != 0) { |
| 400 | multi_ack = 0; |
Johannes Schindelin | 23d61f8 | 2005-10-28 04:46:27 +0200 | [diff] [blame] | 401 | flushes++; |
Johannes Schindelin | c4c86f0 | 2005-10-28 04:50:26 +0200 | [diff] [blame] | 402 | } |
Shawn O. Pearce | edace6f | 2009-10-30 17:47:23 -0700 | [diff] [blame] | 403 | strbuf_release(&req_buf); |
| 404 | |
Shawn O. Pearce | 249b200 | 2009-10-30 17:47:42 -0700 | [diff] [blame] | 405 | consume_shallow_list(fd[0]); |
Johannes Schindelin | c4c86f0 | 2005-10-28 04:50:26 +0200 | [diff] [blame] | 406 | while (flushes || multi_ack) { |
| 407 | int ack = get_ack(fd[0], result_sha1); |
| 408 | if (ack) { |
Shawn O. Pearce | fa74052 | 2007-09-19 00:49:35 -0400 | [diff] [blame] | 409 | if (args.verbose) |
Johannes Schindelin | c4c86f0 | 2005-10-28 04:50:26 +0200 | [diff] [blame] | 410 | fprintf(stderr, "got ack (%d) %s\n", ack, |
| 411 | sha1_to_hex(result_sha1)); |
Shawn O. Pearce | 78affc4 | 2009-10-30 17:47:25 -0700 | [diff] [blame] | 412 | if (ack == ACK) |
Johannes Schindelin | c4c86f0 | 2005-10-28 04:50:26 +0200 | [diff] [blame] | 413 | return 0; |
| 414 | multi_ack = 1; |
| 415 | continue; |
Junio C Hamano | 33b8303 | 2005-08-12 02:08:29 -0700 | [diff] [blame] | 416 | } |
Johannes Schindelin | c4c86f0 | 2005-10-28 04:50:26 +0200 | [diff] [blame] | 417 | flushes--; |
Linus Torvalds | def88e9 | 2005-07-04 13:26:53 -0700 | [diff] [blame] | 418 | } |
Johannes Schindelin | 8cb560f | 2008-07-02 18:06:56 +0100 | [diff] [blame] | 419 | /* it is no error to fetch into a completely empty repo */ |
| 420 | return count ? retval : 0; |
Linus Torvalds | def88e9 | 2005-07-04 13:26:53 -0700 | [diff] [blame] | 421 | } |
| 422 | |
David Rientjes | 96f1e58 | 2006-08-15 10:23:48 -0700 | [diff] [blame] | 423 | static struct commit_list *complete; |
Junio C Hamano | 49bb805 | 2005-10-19 14:27:02 -0700 | [diff] [blame] | 424 | |
Junio C Hamano | 8da1977 | 2006-09-20 22:02:01 -0700 | [diff] [blame] | 425 | static int mark_complete(const char *path, const unsigned char *sha1, int flag, void *cb_data) |
Junio C Hamano | 49bb805 | 2005-10-19 14:27:02 -0700 | [diff] [blame] | 426 | { |
| 427 | struct object *o = parse_object(sha1); |
| 428 | |
Linus Torvalds | 1974632 | 2006-07-11 20:45:31 -0700 | [diff] [blame] | 429 | while (o && o->type == OBJ_TAG) { |
Junio C Hamano | f1f0a2b | 2005-10-19 21:55:49 -0700 | [diff] [blame] | 430 | struct tag *t = (struct tag *) o; |
| 431 | if (!t->tagged) |
| 432 | break; /* broken repository */ |
Junio C Hamano | 49bb805 | 2005-10-19 14:27:02 -0700 | [diff] [blame] | 433 | o->flags |= COMPLETE; |
Junio C Hamano | f1f0a2b | 2005-10-19 21:55:49 -0700 | [diff] [blame] | 434 | o = parse_object(t->tagged->sha1); |
Junio C Hamano | 49bb805 | 2005-10-19 14:27:02 -0700 | [diff] [blame] | 435 | } |
Linus Torvalds | 1974632 | 2006-07-11 20:45:31 -0700 | [diff] [blame] | 436 | if (o && o->type == OBJ_COMMIT) { |
Junio C Hamano | 49bb805 | 2005-10-19 14:27:02 -0700 | [diff] [blame] | 437 | struct commit *commit = (struct commit *)o; |
| 438 | commit->object.flags |= COMPLETE; |
| 439 | insert_by_date(commit, &complete); |
| 440 | } |
| 441 | return 0; |
| 442 | } |
| 443 | |
| 444 | static void mark_recent_complete_commits(unsigned long cutoff) |
| 445 | { |
| 446 | while (complete && cutoff <= complete->item->date) { |
Shawn O. Pearce | fa74052 | 2007-09-19 00:49:35 -0400 | [diff] [blame] | 447 | if (args.verbose) |
Junio C Hamano | 49bb805 | 2005-10-19 14:27:02 -0700 | [diff] [blame] | 448 | fprintf(stderr, "Marking %s as complete\n", |
| 449 | sha1_to_hex(complete->item->object.sha1)); |
| 450 | pop_most_recent_commit(&complete, COMPLETE); |
| 451 | } |
| 452 | } |
| 453 | |
Johannes Schindelin | 1baaae5 | 2005-10-28 04:47:07 +0200 | [diff] [blame] | 454 | static void filter_refs(struct ref **refs, int nr_match, char **match) |
| 455 | { |
Junio C Hamano | 9546010 | 2006-05-11 15:28:44 -0700 | [diff] [blame] | 456 | struct ref **return_refs; |
| 457 | struct ref *newlist = NULL; |
| 458 | struct ref **newtail = &newlist; |
| 459 | struct ref *ref, *next; |
| 460 | struct ref *fastarray[32]; |
Johannes Schindelin | 1baaae5 | 2005-10-28 04:47:07 +0200 | [diff] [blame] | 461 | |
Shawn O. Pearce | fa74052 | 2007-09-19 00:49:35 -0400 | [diff] [blame] | 462 | if (nr_match && !args.fetch_all) { |
Junio C Hamano | 9546010 | 2006-05-11 15:28:44 -0700 | [diff] [blame] | 463 | if (ARRAY_SIZE(fastarray) < nr_match) |
| 464 | return_refs = xcalloc(nr_match, sizeof(struct ref *)); |
| 465 | else { |
| 466 | return_refs = fastarray; |
| 467 | memset(return_refs, 0, sizeof(struct ref *) * nr_match); |
| 468 | } |
Johannes Schindelin | 1baaae5 | 2005-10-28 04:47:07 +0200 | [diff] [blame] | 469 | } |
Junio C Hamano | 9546010 | 2006-05-11 15:28:44 -0700 | [diff] [blame] | 470 | else |
| 471 | return_refs = NULL; |
| 472 | |
| 473 | for (ref = *refs; ref; ref = next) { |
| 474 | next = ref->next; |
| 475 | if (!memcmp(ref->name, "refs/", 5) && |
| 476 | check_ref_format(ref->name + 5)) |
| 477 | ; /* trash */ |
Shawn O. Pearce | fa74052 | 2007-09-19 00:49:35 -0400 | [diff] [blame] | 478 | else if (args.fetch_all && |
| 479 | (!args.depth || prefixcmp(ref->name, "refs/tags/") )) { |
Junio C Hamano | 9546010 | 2006-05-11 15:28:44 -0700 | [diff] [blame] | 480 | *newtail = ref; |
| 481 | ref->next = NULL; |
| 482 | newtail = &ref->next; |
| 483 | continue; |
| 484 | } |
| 485 | else { |
| 486 | int order = path_match(ref->name, nr_match, match); |
| 487 | if (order) { |
| 488 | return_refs[order-1] = ref; |
| 489 | continue; /* we will link it later */ |
| 490 | } |
| 491 | } |
| 492 | free(ref); |
| 493 | } |
| 494 | |
Shawn O. Pearce | fa74052 | 2007-09-19 00:49:35 -0400 | [diff] [blame] | 495 | if (!args.fetch_all) { |
Junio C Hamano | 9546010 | 2006-05-11 15:28:44 -0700 | [diff] [blame] | 496 | int i; |
| 497 | for (i = 0; i < nr_match; i++) { |
| 498 | ref = return_refs[i]; |
| 499 | if (ref) { |
| 500 | *newtail = ref; |
| 501 | ref->next = NULL; |
| 502 | newtail = &ref->next; |
| 503 | } |
| 504 | } |
| 505 | if (return_refs != fastarray) |
| 506 | free(return_refs); |
| 507 | } |
| 508 | *refs = newlist; |
Johannes Schindelin | 1baaae5 | 2005-10-28 04:47:07 +0200 | [diff] [blame] | 509 | } |
| 510 | |
| 511 | static int everything_local(struct ref **refs, int nr_match, char **match) |
Linus Torvalds | 2759cbc | 2005-10-18 11:35:17 -0700 | [diff] [blame] | 512 | { |
Junio C Hamano | 49bb805 | 2005-10-19 14:27:02 -0700 | [diff] [blame] | 513 | struct ref *ref; |
Linus Torvalds | 2759cbc | 2005-10-18 11:35:17 -0700 | [diff] [blame] | 514 | int retval; |
Junio C Hamano | 49bb805 | 2005-10-19 14:27:02 -0700 | [diff] [blame] | 515 | unsigned long cutoff = 0; |
| 516 | |
Junio C Hamano | 49bb805 | 2005-10-19 14:27:02 -0700 | [diff] [blame] | 517 | save_commit_buffer = 0; |
| 518 | |
Johannes Schindelin | 1baaae5 | 2005-10-28 04:47:07 +0200 | [diff] [blame] | 519 | for (ref = *refs; ref; ref = ref->next) { |
Junio C Hamano | 49bb805 | 2005-10-19 14:27:02 -0700 | [diff] [blame] | 520 | struct object *o; |
| 521 | |
| 522 | o = parse_object(ref->old_sha1); |
| 523 | if (!o) |
| 524 | continue; |
| 525 | |
| 526 | /* We already have it -- which may mean that we were |
| 527 | * in sync with the other side at some time after |
| 528 | * that (it is OK if we guess wrong here). |
| 529 | */ |
Linus Torvalds | 1974632 | 2006-07-11 20:45:31 -0700 | [diff] [blame] | 530 | if (o->type == OBJ_COMMIT) { |
Junio C Hamano | 49bb805 | 2005-10-19 14:27:02 -0700 | [diff] [blame] | 531 | struct commit *commit = (struct commit *)o; |
| 532 | if (!cutoff || cutoff < commit->date) |
| 533 | cutoff = commit->date; |
| 534 | } |
| 535 | } |
| 536 | |
Shawn O. Pearce | fa74052 | 2007-09-19 00:49:35 -0400 | [diff] [blame] | 537 | if (!args.depth) { |
Johannes Schindelin | f53514b | 2006-10-30 20:09:53 +0100 | [diff] [blame] | 538 | for_each_ref(mark_complete, NULL); |
| 539 | if (cutoff) |
| 540 | mark_recent_complete_commits(cutoff); |
| 541 | } |
Linus Torvalds | 2759cbc | 2005-10-18 11:35:17 -0700 | [diff] [blame] | 542 | |
Johannes Schindelin | 1baaae5 | 2005-10-28 04:47:07 +0200 | [diff] [blame] | 543 | /* |
| 544 | * Mark all complete remote refs as common refs. |
| 545 | * Don't mark them common yet; the server has to be told so first. |
| 546 | */ |
| 547 | for (ref = *refs; ref; ref = ref->next) { |
Junio C Hamano | 9534f40 | 2005-11-02 15:19:13 -0800 | [diff] [blame] | 548 | struct object *o = deref_tag(lookup_object(ref->old_sha1), |
| 549 | NULL, 0); |
Johannes Schindelin | 1baaae5 | 2005-10-28 04:47:07 +0200 | [diff] [blame] | 550 | |
Linus Torvalds | 1974632 | 2006-07-11 20:45:31 -0700 | [diff] [blame] | 551 | if (!o || o->type != OBJ_COMMIT || !(o->flags & COMPLETE)) |
Johannes Schindelin | 1baaae5 | 2005-10-28 04:47:07 +0200 | [diff] [blame] | 552 | continue; |
| 553 | |
| 554 | if (!(o->flags & SEEN)) { |
| 555 | rev_list_push((struct commit *)o, COMMON_REF | SEEN); |
| 556 | |
| 557 | mark_common((struct commit *)o, 1, 1); |
| 558 | } |
| 559 | } |
| 560 | |
| 561 | filter_refs(refs, nr_match, match); |
| 562 | |
| 563 | for (retval = 1, ref = *refs; ref ; ref = ref->next) { |
| 564 | const unsigned char *remote = ref->old_sha1; |
Linus Torvalds | 2759cbc | 2005-10-18 11:35:17 -0700 | [diff] [blame] | 565 | unsigned char local[20]; |
Junio C Hamano | 49bb805 | 2005-10-19 14:27:02 -0700 | [diff] [blame] | 566 | struct object *o; |
Linus Torvalds | 2759cbc | 2005-10-18 11:35:17 -0700 | [diff] [blame] | 567 | |
Johannes Schindelin | 1baaae5 | 2005-10-28 04:47:07 +0200 | [diff] [blame] | 568 | o = lookup_object(remote); |
Junio C Hamano | 49bb805 | 2005-10-19 14:27:02 -0700 | [diff] [blame] | 569 | if (!o || !(o->flags & COMPLETE)) { |
Linus Torvalds | 2759cbc | 2005-10-18 11:35:17 -0700 | [diff] [blame] | 570 | retval = 0; |
Shawn O. Pearce | fa74052 | 2007-09-19 00:49:35 -0400 | [diff] [blame] | 571 | if (!args.verbose) |
Linus Torvalds | 2759cbc | 2005-10-18 11:35:17 -0700 | [diff] [blame] | 572 | continue; |
| 573 | fprintf(stderr, |
| 574 | "want %s (%s)\n", sha1_to_hex(remote), |
Johannes Schindelin | 1baaae5 | 2005-10-28 04:47:07 +0200 | [diff] [blame] | 575 | ref->name); |
Linus Torvalds | 2759cbc | 2005-10-18 11:35:17 -0700 | [diff] [blame] | 576 | continue; |
| 577 | } |
| 578 | |
Shawn Pearce | e702496 | 2006-08-23 02:49:00 -0400 | [diff] [blame] | 579 | hashcpy(ref->new_sha1, local); |
Shawn O. Pearce | fa74052 | 2007-09-19 00:49:35 -0400 | [diff] [blame] | 580 | if (!args.verbose) |
Linus Torvalds | 2759cbc | 2005-10-18 11:35:17 -0700 | [diff] [blame] | 581 | continue; |
| 582 | fprintf(stderr, |
| 583 | "already have %s (%s)\n", sha1_to_hex(remote), |
Johannes Schindelin | 1baaae5 | 2005-10-28 04:47:07 +0200 | [diff] [blame] | 584 | ref->name); |
Linus Torvalds | 2759cbc | 2005-10-18 11:35:17 -0700 | [diff] [blame] | 585 | } |
| 586 | return retval; |
| 587 | } |
| 588 | |
Johannes Sixt | 088fab5 | 2007-10-19 21:48:01 +0200 | [diff] [blame] | 589 | static int sideband_demux(int fd, void *data) |
Nicolas Pitre | da093d3 | 2006-11-01 17:06:23 -0500 | [diff] [blame] | 590 | { |
Johannes Sixt | 088fab5 | 2007-10-19 21:48:01 +0200 | [diff] [blame] | 591 | int *xd = data; |
Nicolas Pitre | da093d3 | 2006-11-01 17:06:23 -0500 | [diff] [blame] | 592 | |
Johannes Sixt | 3ef67cf | 2009-06-08 10:51:22 +0200 | [diff] [blame] | 593 | int ret = recv_sideband("fetch-pack", xd[0], fd); |
| 594 | close(fd); |
| 595 | return ret; |
Johannes Sixt | 088fab5 | 2007-10-19 21:48:01 +0200 | [diff] [blame] | 596 | } |
| 597 | |
Shawn O. Pearce | 1788c39 | 2007-09-14 03:31:23 -0400 | [diff] [blame] | 598 | static int get_pack(int xd[2], char **pack_lockfile) |
Nicolas Pitre | da093d3 | 2006-11-01 17:06:23 -0500 | [diff] [blame] | 599 | { |
Johannes Sixt | 088fab5 | 2007-10-19 21:48:01 +0200 | [diff] [blame] | 600 | struct async demux; |
Junio C Hamano | 9e10fd1 | 2007-01-22 22:37:33 -0800 | [diff] [blame] | 601 | const char *argv[20]; |
| 602 | char keep_arg[256]; |
| 603 | char hdr_arg[256]; |
| 604 | const char **av; |
Shawn O. Pearce | fa74052 | 2007-09-19 00:49:35 -0400 | [diff] [blame] | 605 | int do_keep = args.keep_pack; |
Johannes Sixt | 477822c | 2007-10-19 21:47:57 +0200 | [diff] [blame] | 606 | struct child_process cmd; |
Nicolas Pitre | da093d3 | 2006-11-01 17:06:23 -0500 | [diff] [blame] | 607 | |
Johannes Sixt | 1f759ee | 2007-11-17 23:09:28 +0100 | [diff] [blame] | 608 | memset(&demux, 0, sizeof(demux)); |
| 609 | if (use_sideband) { |
| 610 | /* xd[] is talking with upload-pack; subprocess reads from |
| 611 | * xd[0], spits out band#2 to stderr, and feeds us band#1 |
| 612 | * through demux->out. |
| 613 | */ |
| 614 | demux.proc = sideband_demux; |
| 615 | demux.data = xd; |
| 616 | if (start_async(&demux)) |
| 617 | die("fetch-pack: unable to fork off sideband" |
| 618 | " demultiplexer"); |
| 619 | } |
| 620 | else |
| 621 | demux.out = xd[0]; |
Junio C Hamano | 9e10fd1 | 2007-01-22 22:37:33 -0800 | [diff] [blame] | 622 | |
Johannes Sixt | 477822c | 2007-10-19 21:47:57 +0200 | [diff] [blame] | 623 | memset(&cmd, 0, sizeof(cmd)); |
| 624 | cmd.argv = argv; |
Junio C Hamano | 9e10fd1 | 2007-01-22 22:37:33 -0800 | [diff] [blame] | 625 | av = argv; |
| 626 | *hdr_arg = 0; |
Shawn O. Pearce | fa74052 | 2007-09-19 00:49:35 -0400 | [diff] [blame] | 627 | if (!args.keep_pack && unpack_limit) { |
Junio C Hamano | 9e10fd1 | 2007-01-22 22:37:33 -0800 | [diff] [blame] | 628 | struct pack_header header; |
| 629 | |
Johannes Sixt | 1f759ee | 2007-11-17 23:09:28 +0100 | [diff] [blame] | 630 | if (read_pack_header(demux.out, &header)) |
Junio C Hamano | 9e10fd1 | 2007-01-22 22:37:33 -0800 | [diff] [blame] | 631 | die("protocol error: bad pack header"); |
Ramsay Jones | 6e1c234 | 2008-07-03 16:52:09 +0100 | [diff] [blame] | 632 | snprintf(hdr_arg, sizeof(hdr_arg), |
| 633 | "--pack_header=%"PRIu32",%"PRIu32, |
Junio C Hamano | 9e10fd1 | 2007-01-22 22:37:33 -0800 | [diff] [blame] | 634 | ntohl(header.hdr_version), ntohl(header.hdr_entries)); |
Junio C Hamano | af7cf26 | 2007-01-24 16:47:24 -0800 | [diff] [blame] | 635 | if (ntohl(header.hdr_entries) < unpack_limit) |
Junio C Hamano | 9e10fd1 | 2007-01-22 22:37:33 -0800 | [diff] [blame] | 636 | do_keep = 0; |
| 637 | else |
| 638 | do_keep = 1; |
| 639 | } |
| 640 | |
| 641 | if (do_keep) { |
Johannes Sixt | 477822c | 2007-10-19 21:47:57 +0200 | [diff] [blame] | 642 | if (pack_lockfile) |
| 643 | cmd.out = -1; |
Junio C Hamano | 9e10fd1 | 2007-01-22 22:37:33 -0800 | [diff] [blame] | 644 | *av++ = "index-pack"; |
| 645 | *av++ = "--stdin"; |
Shawn O. Pearce | fa74052 | 2007-09-19 00:49:35 -0400 | [diff] [blame] | 646 | if (!args.quiet && !args.no_progress) |
Junio C Hamano | 9e10fd1 | 2007-01-22 22:37:33 -0800 | [diff] [blame] | 647 | *av++ = "-v"; |
Shawn O. Pearce | fa74052 | 2007-09-19 00:49:35 -0400 | [diff] [blame] | 648 | if (args.use_thin_pack) |
Junio C Hamano | 9e10fd1 | 2007-01-22 22:37:33 -0800 | [diff] [blame] | 649 | *av++ = "--fix-thin"; |
Shawn O. Pearce | fa74052 | 2007-09-19 00:49:35 -0400 | [diff] [blame] | 650 | if (args.lock_pack || unpack_limit) { |
Junio C Hamano | 9e10fd1 | 2007-01-22 22:37:33 -0800 | [diff] [blame] | 651 | int s = sprintf(keep_arg, |
David Soria Parra | 85e7283 | 2008-08-31 14:09:39 +0200 | [diff] [blame] | 652 | "--keep=fetch-pack %"PRIuMAX " on ", (uintmax_t) getpid()); |
Junio C Hamano | 9e10fd1 | 2007-01-22 22:37:33 -0800 | [diff] [blame] | 653 | if (gethostname(keep_arg + s, sizeof(keep_arg) - s)) |
| 654 | strcpy(keep_arg + s, "localhost"); |
| 655 | *av++ = keep_arg; |
| 656 | } |
| 657 | } |
| 658 | else { |
| 659 | *av++ = "unpack-objects"; |
Shawn O. Pearce | fa74052 | 2007-09-19 00:49:35 -0400 | [diff] [blame] | 660 | if (args.quiet) |
Junio C Hamano | 9e10fd1 | 2007-01-22 22:37:33 -0800 | [diff] [blame] | 661 | *av++ = "-q"; |
| 662 | } |
| 663 | if (*hdr_arg) |
| 664 | *av++ = hdr_arg; |
| 665 | *av++ = NULL; |
| 666 | |
Johannes Sixt | 1f759ee | 2007-11-17 23:09:28 +0100 | [diff] [blame] | 667 | cmd.in = demux.out; |
Johannes Sixt | 477822c | 2007-10-19 21:47:57 +0200 | [diff] [blame] | 668 | cmd.git_cmd = 1; |
| 669 | if (start_command(&cmd)) |
Nicolas Pitre | da093d3 | 2006-11-01 17:06:23 -0500 | [diff] [blame] | 670 | die("fetch-pack: unable to fork off %s", argv[0]); |
Johannes Sixt | e72ae28 | 2008-02-16 18:36:38 +0100 | [diff] [blame] | 671 | if (do_keep && pack_lockfile) { |
Johannes Sixt | 477822c | 2007-10-19 21:47:57 +0200 | [diff] [blame] | 672 | *pack_lockfile = index_pack_lockfile(cmd.out); |
Johannes Sixt | e72ae28 | 2008-02-16 18:36:38 +0100 | [diff] [blame] | 673 | close(cmd.out); |
| 674 | } |
Johannes Sixt | 477822c | 2007-10-19 21:47:57 +0200 | [diff] [blame] | 675 | |
| 676 | if (finish_command(&cmd)) |
| 677 | die("%s failed", argv[0]); |
Johannes Sixt | 088fab5 | 2007-10-19 21:48:01 +0200 | [diff] [blame] | 678 | if (use_sideband && finish_async(&demux)) |
| 679 | die("error in sideband demultiplexer"); |
Johannes Sixt | 477822c | 2007-10-19 21:47:57 +0200 | [diff] [blame] | 680 | return 0; |
Nicolas Pitre | da093d3 | 2006-11-01 17:06:23 -0500 | [diff] [blame] | 681 | } |
| 682 | |
Shawn O. Pearce | 1788c39 | 2007-09-14 03:31:23 -0400 | [diff] [blame] | 683 | static struct ref *do_fetch_pack(int fd[2], |
Daniel Barkalow | ba22785 | 2008-02-04 13:26:23 -0500 | [diff] [blame] | 684 | const struct ref *orig_ref, |
Shawn O. Pearce | 1788c39 | 2007-09-14 03:31:23 -0400 | [diff] [blame] | 685 | int nr_match, |
| 686 | char **match, |
| 687 | char **pack_lockfile) |
Linus Torvalds | def88e9 | 2005-07-04 13:26:53 -0700 | [diff] [blame] | 688 | { |
Daniel Barkalow | ba22785 | 2008-02-04 13:26:23 -0500 | [diff] [blame] | 689 | struct ref *ref = copy_ref_list(orig_ref); |
Linus Torvalds | d1c133f | 2005-07-16 13:55:50 -0700 | [diff] [blame] | 690 | unsigned char sha1[20]; |
Linus Torvalds | def88e9 | 2005-07-04 13:26:53 -0700 | [diff] [blame] | 691 | |
Johannes Schindelin | ed09aef | 2006-10-30 20:09:06 +0100 | [diff] [blame] | 692 | if (is_repository_shallow() && !server_supports("shallow")) |
| 693 | die("Server does not support shallow clients"); |
Shawn O. Pearce | 78affc4 | 2009-10-30 17:47:25 -0700 | [diff] [blame] | 694 | if (server_supports("multi_ack_detailed")) { |
| 695 | if (args.verbose) |
| 696 | fprintf(stderr, "Server supports multi_ack_detailed\n"); |
| 697 | multi_ack = 2; |
| 698 | } |
| 699 | else if (server_supports("multi_ack")) { |
Shawn O. Pearce | fa74052 | 2007-09-19 00:49:35 -0400 | [diff] [blame] | 700 | if (args.verbose) |
Johannes Schindelin | c4c86f0 | 2005-10-28 04:50:26 +0200 | [diff] [blame] | 701 | fprintf(stderr, "Server supports multi_ack\n"); |
| 702 | multi_ack = 1; |
| 703 | } |
Junio C Hamano | d47f3db | 2006-09-10 16:27:08 -0700 | [diff] [blame] | 704 | if (server_supports("side-band-64k")) { |
Shawn O. Pearce | fa74052 | 2007-09-19 00:49:35 -0400 | [diff] [blame] | 705 | if (args.verbose) |
Junio C Hamano | d47f3db | 2006-09-10 16:27:08 -0700 | [diff] [blame] | 706 | fprintf(stderr, "Server supports side-band-64k\n"); |
| 707 | use_sideband = 2; |
| 708 | } |
| 709 | else if (server_supports("side-band")) { |
Shawn O. Pearce | fa74052 | 2007-09-19 00:49:35 -0400 | [diff] [blame] | 710 | if (args.verbose) |
Junio C Hamano | 583b7ea | 2006-06-21 00:30:21 -0700 | [diff] [blame] | 711 | fprintf(stderr, "Server supports side-band\n"); |
| 712 | use_sideband = 1; |
| 713 | } |
Nicolas Pitre | f04833e | 2009-05-01 20:18:02 -0400 | [diff] [blame] | 714 | if (server_supports("ofs-delta")) { |
| 715 | if (args.verbose) |
| 716 | fprintf(stderr, "Server supports ofs-delta\n"); |
| 717 | } else |
| 718 | prefer_ofs_delta = 0; |
Johannes Schindelin | 1baaae5 | 2005-10-28 04:47:07 +0200 | [diff] [blame] | 719 | if (everything_local(&ref, nr_match, match)) { |
Linus Torvalds | 2759cbc | 2005-10-18 11:35:17 -0700 | [diff] [blame] | 720 | packet_flush(fd[1]); |
| 721 | goto all_done; |
| 722 | } |
Junio C Hamano | 33b8303 | 2005-08-12 02:08:29 -0700 | [diff] [blame] | 723 | if (find_common(fd, sha1, ref) < 0) |
Shawn O. Pearce | fa74052 | 2007-09-19 00:49:35 -0400 | [diff] [blame] | 724 | if (!args.keep_pack) |
Junio C Hamano | dfeff66 | 2006-03-20 00:21:10 -0800 | [diff] [blame] | 725 | /* When cloning, it is not unusual to have |
| 726 | * no common commit. |
| 727 | */ |
Miklos Vajna | 78509d2 | 2009-03-24 02:09:12 +0100 | [diff] [blame] | 728 | warning("no common commits"); |
Junio C Hamano | ad89721 | 2005-12-14 22:17:38 -0800 | [diff] [blame] | 729 | |
Shawn O. Pearce | 249b200 | 2009-10-30 17:47:42 -0700 | [diff] [blame] | 730 | if (args.stateless_rpc) |
| 731 | packet_flush(fd[1]); |
Shawn O. Pearce | 1788c39 | 2007-09-14 03:31:23 -0400 | [diff] [blame] | 732 | if (get_pack(fd, pack_lockfile)) |
Junio C Hamano | 7e44c93 | 2008-08-31 09:39:19 -0700 | [diff] [blame] | 733 | die("git fetch-pack: fetch failed."); |
Junio C Hamano | ad89721 | 2005-12-14 22:17:38 -0800 | [diff] [blame] | 734 | |
| 735 | all_done: |
Daniel Barkalow | 2d4177c | 2007-09-10 23:03:00 -0400 | [diff] [blame] | 736 | return ref; |
Linus Torvalds | def88e9 | 2005-07-04 13:26:53 -0700 | [diff] [blame] | 737 | } |
| 738 | |
Junio C Hamano | 310b86d | 2006-11-25 01:33:06 -0800 | [diff] [blame] | 739 | static int remove_duplicates(int nr_heads, char **heads) |
| 740 | { |
| 741 | int src, dst; |
| 742 | |
| 743 | for (src = dst = 0; src < nr_heads; src++) { |
| 744 | /* If heads[src] is different from any of |
| 745 | * heads[0..dst], push it in. |
| 746 | */ |
| 747 | int i; |
| 748 | for (i = 0; i < dst; i++) { |
| 749 | if (!strcmp(heads[i], heads[src])) |
| 750 | break; |
| 751 | } |
| 752 | if (i < dst) |
| 753 | continue; |
| 754 | if (src != dst) |
| 755 | heads[dst] = heads[src]; |
| 756 | dst++; |
| 757 | } |
Junio C Hamano | 310b86d | 2006-11-25 01:33:06 -0800 | [diff] [blame] | 758 | return dst; |
| 759 | } |
| 760 | |
Johannes Schindelin | ef90d6d | 2008-05-14 18:46:53 +0100 | [diff] [blame] | 761 | static int fetch_pack_config(const char *var, const char *value, void *cb) |
Junio C Hamano | af7cf26 | 2007-01-24 16:47:24 -0800 | [diff] [blame] | 762 | { |
| 763 | if (strcmp(var, "fetch.unpacklimit") == 0) { |
Junio C Hamano | e28714c | 2007-01-24 17:02:15 -0800 | [diff] [blame] | 764 | fetch_unpack_limit = git_config_int(var, value); |
| 765 | return 0; |
| 766 | } |
| 767 | |
| 768 | if (strcmp(var, "transfer.unpacklimit") == 0) { |
| 769 | transfer_unpack_limit = git_config_int(var, value); |
Junio C Hamano | af7cf26 | 2007-01-24 16:47:24 -0800 | [diff] [blame] | 770 | return 0; |
| 771 | } |
| 772 | |
Nicolas Pitre | f04833e | 2009-05-01 20:18:02 -0400 | [diff] [blame] | 773 | if (strcmp(var, "repack.usedeltabaseoffset") == 0) { |
| 774 | prefer_ofs_delta = git_config_bool(var, value); |
| 775 | return 0; |
| 776 | } |
| 777 | |
Johannes Schindelin | ef90d6d | 2008-05-14 18:46:53 +0100 | [diff] [blame] | 778 | return git_default_config(var, value, cb); |
Junio C Hamano | af7cf26 | 2007-01-24 16:47:24 -0800 | [diff] [blame] | 779 | } |
| 780 | |
Junio C Hamano | 54b9e02 | 2007-01-02 11:22:08 -0800 | [diff] [blame] | 781 | static struct lock_file lock; |
| 782 | |
Shawn O. Pearce | 50ab5fd | 2007-09-19 00:49:39 -0400 | [diff] [blame] | 783 | static void fetch_pack_setup(void) |
| 784 | { |
| 785 | static int did_setup; |
| 786 | if (did_setup) |
| 787 | return; |
Johannes Schindelin | ef90d6d | 2008-05-14 18:46:53 +0100 | [diff] [blame] | 788 | git_config(fetch_pack_config, NULL); |
Shawn O. Pearce | 50ab5fd | 2007-09-19 00:49:39 -0400 | [diff] [blame] | 789 | if (0 <= transfer_unpack_limit) |
| 790 | unpack_limit = transfer_unpack_limit; |
| 791 | else if (0 <= fetch_unpack_limit) |
| 792 | unpack_limit = fetch_unpack_limit; |
| 793 | did_setup = 1; |
| 794 | } |
| 795 | |
Daniel Barkalow | 2d4177c | 2007-09-10 23:03:00 -0400 | [diff] [blame] | 796 | int cmd_fetch_pack(int argc, const char **argv, const char *prefix) |
Linus Torvalds | def88e9 | 2005-07-04 13:26:53 -0700 | [diff] [blame] | 797 | { |
| 798 | int i, ret, nr_heads; |
Daniel Barkalow | ba22785 | 2008-02-04 13:26:23 -0500 | [diff] [blame] | 799 | struct ref *ref = NULL; |
Linus Torvalds | def88e9 | 2005-07-04 13:26:53 -0700 | [diff] [blame] | 800 | char *dest = NULL, **heads; |
Daniel Barkalow | ba22785 | 2008-02-04 13:26:23 -0500 | [diff] [blame] | 801 | int fd[2]; |
Shawn O. Pearce | 249b200 | 2009-10-30 17:47:42 -0700 | [diff] [blame] | 802 | char *pack_lockfile = NULL; |
| 803 | char **pack_lockfile_ptr = NULL; |
Daniel Barkalow | ba22785 | 2008-02-04 13:26:23 -0500 | [diff] [blame] | 804 | struct child_process *conn; |
Linus Torvalds | def88e9 | 2005-07-04 13:26:53 -0700 | [diff] [blame] | 805 | |
| 806 | nr_heads = 0; |
| 807 | heads = NULL; |
| 808 | for (i = 1; i < argc; i++) { |
Daniel Barkalow | 2d4177c | 2007-09-10 23:03:00 -0400 | [diff] [blame] | 809 | const char *arg = argv[i]; |
Linus Torvalds | def88e9 | 2005-07-04 13:26:53 -0700 | [diff] [blame] | 810 | |
| 811 | if (*arg == '-') { |
Junio C Hamano | 599065a | 2007-02-20 01:54:00 -0800 | [diff] [blame] | 812 | if (!prefixcmp(arg, "--upload-pack=")) { |
Shawn O. Pearce | fa74052 | 2007-09-19 00:49:35 -0400 | [diff] [blame] | 813 | args.uploadpack = arg + 14; |
Uwe Kleine-König | 27dca07 | 2007-01-23 09:20:17 +0100 | [diff] [blame] | 814 | continue; |
| 815 | } |
Junio C Hamano | 599065a | 2007-02-20 01:54:00 -0800 | [diff] [blame] | 816 | if (!prefixcmp(arg, "--exec=")) { |
Shawn O. Pearce | fa74052 | 2007-09-19 00:49:35 -0400 | [diff] [blame] | 817 | args.uploadpack = arg + 7; |
Junio C Hamano | 8b3d9dc | 2005-07-14 00:08:37 -0700 | [diff] [blame] | 818 | continue; |
| 819 | } |
Junio C Hamano | 2247efb | 2005-12-18 01:55:29 -0800 | [diff] [blame] | 820 | if (!strcmp("--quiet", arg) || !strcmp("-q", arg)) { |
Shawn O. Pearce | fa74052 | 2007-09-19 00:49:35 -0400 | [diff] [blame] | 821 | args.quiet = 1; |
Junio C Hamano | 33b8303 | 2005-08-12 02:08:29 -0700 | [diff] [blame] | 822 | continue; |
| 823 | } |
Junio C Hamano | 2247efb | 2005-12-18 01:55:29 -0800 | [diff] [blame] | 824 | if (!strcmp("--keep", arg) || !strcmp("-k", arg)) { |
Shawn O. Pearce | fa74052 | 2007-09-19 00:49:35 -0400 | [diff] [blame] | 825 | args.lock_pack = args.keep_pack; |
| 826 | args.keep_pack = 1; |
Junio C Hamano | 9e10fd1 | 2007-01-22 22:37:33 -0800 | [diff] [blame] | 827 | continue; |
| 828 | } |
Junio C Hamano | b19696c | 2006-02-20 00:38:39 -0800 | [diff] [blame] | 829 | if (!strcmp("--thin", arg)) { |
Shawn O. Pearce | fa74052 | 2007-09-19 00:49:35 -0400 | [diff] [blame] | 830 | args.use_thin_pack = 1; |
Junio C Hamano | b19696c | 2006-02-20 00:38:39 -0800 | [diff] [blame] | 831 | continue; |
| 832 | } |
Shawn O. Pearce | 348e390 | 2008-03-03 22:27:33 -0500 | [diff] [blame] | 833 | if (!strcmp("--include-tag", arg)) { |
| 834 | args.include_tag = 1; |
| 835 | continue; |
| 836 | } |
Junio C Hamano | dfeff66 | 2006-03-20 00:21:10 -0800 | [diff] [blame] | 837 | if (!strcmp("--all", arg)) { |
Shawn O. Pearce | fa74052 | 2007-09-19 00:49:35 -0400 | [diff] [blame] | 838 | args.fetch_all = 1; |
Junio C Hamano | dfeff66 | 2006-03-20 00:21:10 -0800 | [diff] [blame] | 839 | continue; |
| 840 | } |
Junio C Hamano | 33b8303 | 2005-08-12 02:08:29 -0700 | [diff] [blame] | 841 | if (!strcmp("-v", arg)) { |
Shawn O. Pearce | fa74052 | 2007-09-19 00:49:35 -0400 | [diff] [blame] | 842 | args.verbose = 1; |
Junio C Hamano | 33b8303 | 2005-08-12 02:08:29 -0700 | [diff] [blame] | 843 | continue; |
| 844 | } |
Junio C Hamano | 599065a | 2007-02-20 01:54:00 -0800 | [diff] [blame] | 845 | if (!prefixcmp(arg, "--depth=")) { |
Shawn O. Pearce | fa74052 | 2007-09-19 00:49:35 -0400 | [diff] [blame] | 846 | args.depth = strtol(arg + 8, NULL, 0); |
Johannes Schindelin | 016e6cc | 2006-10-30 20:09:29 +0100 | [diff] [blame] | 847 | continue; |
| 848 | } |
Johannes Schindelin | 83a5ad6 | 2007-02-20 03:01:44 +0100 | [diff] [blame] | 849 | if (!strcmp("--no-progress", arg)) { |
Shawn O. Pearce | fa74052 | 2007-09-19 00:49:35 -0400 | [diff] [blame] | 850 | args.no_progress = 1; |
Johannes Schindelin | 83a5ad6 | 2007-02-20 03:01:44 +0100 | [diff] [blame] | 851 | continue; |
| 852 | } |
Shawn O. Pearce | 249b200 | 2009-10-30 17:47:42 -0700 | [diff] [blame] | 853 | if (!strcmp("--stateless-rpc", arg)) { |
| 854 | args.stateless_rpc = 1; |
| 855 | continue; |
| 856 | } |
| 857 | if (!strcmp("--lock-pack", arg)) { |
| 858 | args.lock_pack = 1; |
| 859 | pack_lockfile_ptr = &pack_lockfile; |
| 860 | continue; |
| 861 | } |
Linus Torvalds | def88e9 | 2005-07-04 13:26:53 -0700 | [diff] [blame] | 862 | usage(fetch_pack_usage); |
| 863 | } |
Daniel Barkalow | 2d4177c | 2007-09-10 23:03:00 -0400 | [diff] [blame] | 864 | dest = (char *)arg; |
| 865 | heads = (char **)(argv + i + 1); |
Linus Torvalds | def88e9 | 2005-07-04 13:26:53 -0700 | [diff] [blame] | 866 | nr_heads = argc - i - 1; |
| 867 | break; |
| 868 | } |
| 869 | if (!dest) |
| 870 | usage(fetch_pack_usage); |
Daniel Barkalow | 2d4177c | 2007-09-10 23:03:00 -0400 | [diff] [blame] | 871 | |
Shawn O. Pearce | 249b200 | 2009-10-30 17:47:42 -0700 | [diff] [blame] | 872 | if (args.stateless_rpc) { |
| 873 | conn = NULL; |
| 874 | fd[0] = 0; |
| 875 | fd[1] = 1; |
Daniel Barkalow | ba22785 | 2008-02-04 13:26:23 -0500 | [diff] [blame] | 876 | } else { |
Shawn O. Pearce | 249b200 | 2009-10-30 17:47:42 -0700 | [diff] [blame] | 877 | conn = git_connect(fd, (char *)dest, args.uploadpack, |
| 878 | args.verbose ? CONNECT_VERBOSE : 0); |
Daniel Barkalow | ba22785 | 2008-02-04 13:26:23 -0500 | [diff] [blame] | 879 | } |
Shawn O. Pearce | 249b200 | 2009-10-30 17:47:42 -0700 | [diff] [blame] | 880 | |
| 881 | get_remote_heads(fd[0], &ref, 0, NULL, 0, NULL); |
| 882 | |
| 883 | ref = fetch_pack(&args, fd, conn, ref, dest, |
| 884 | nr_heads, heads, pack_lockfile_ptr); |
| 885 | if (pack_lockfile) { |
| 886 | printf("lock %s\n", pack_lockfile); |
| 887 | fflush(stdout); |
| 888 | } |
| 889 | close(fd[0]); |
| 890 | close(fd[1]); |
| 891 | if (finish_connect(conn)) |
| 892 | ref = NULL; |
Daniel Barkalow | ba22785 | 2008-02-04 13:26:23 -0500 | [diff] [blame] | 893 | ret = !ref; |
Junio C Hamano | 9e5d2b4 | 2005-11-06 00:09:59 -0800 | [diff] [blame] | 894 | |
| 895 | if (!ret && nr_heads) { |
| 896 | /* If the heads to pull were given, we should have |
| 897 | * consumed all of them by matching the remote. |
Heikki Orsila | 05207a2 | 2008-09-09 13:28:30 +0300 | [diff] [blame] | 898 | * Otherwise, 'git fetch remote no-such-ref' would |
Junio C Hamano | 9e5d2b4 | 2005-11-06 00:09:59 -0800 | [diff] [blame] | 899 | * silently succeed without issuing an error. |
| 900 | */ |
| 901 | for (i = 0; i < nr_heads; i++) |
| 902 | if (heads[i] && heads[i][0]) { |
| 903 | error("no such remote ref %s", heads[i]); |
| 904 | ret = 1; |
| 905 | } |
| 906 | } |
Daniel Barkalow | ba22785 | 2008-02-04 13:26:23 -0500 | [diff] [blame] | 907 | while (ref) { |
| 908 | printf("%s %s\n", |
| 909 | sha1_to_hex(ref->old_sha1), ref->name); |
| 910 | ref = ref->next; |
| 911 | } |
Junio C Hamano | 9e5d2b4 | 2005-11-06 00:09:59 -0800 | [diff] [blame] | 912 | |
Daniel Barkalow | ba22785 | 2008-02-04 13:26:23 -0500 | [diff] [blame] | 913 | return ret; |
| 914 | } |
| 915 | |
| 916 | struct ref *fetch_pack(struct fetch_pack_args *my_args, |
| 917 | int fd[], struct child_process *conn, |
| 918 | const struct ref *ref, |
| 919 | const char *dest, |
| 920 | int nr_heads, |
| 921 | char **heads, |
| 922 | char **pack_lockfile) |
| 923 | { |
| 924 | struct stat st; |
| 925 | struct ref *ref_cpy; |
| 926 | |
| 927 | fetch_pack_setup(); |
Thomas Rast | d551bba | 2008-12-06 21:50:09 +0100 | [diff] [blame] | 928 | if (&args != my_args) |
| 929 | memcpy(&args, my_args, sizeof(args)); |
Daniel Barkalow | ba22785 | 2008-02-04 13:26:23 -0500 | [diff] [blame] | 930 | if (args.depth > 0) { |
| 931 | if (stat(git_path("shallow"), &st)) |
| 932 | st.st_mtime = 0; |
| 933 | } |
| 934 | |
| 935 | if (heads && nr_heads) |
| 936 | nr_heads = remove_duplicates(nr_heads, heads); |
| 937 | if (!ref) { |
| 938 | packet_flush(fd[1]); |
| 939 | die("no matching remote head"); |
| 940 | } |
| 941 | ref_cpy = do_fetch_pack(fd, ref, nr_heads, heads, pack_lockfile); |
| 942 | |
| 943 | if (args.depth > 0) { |
Johannes Schindelin | 016e6cc | 2006-10-30 20:09:29 +0100 | [diff] [blame] | 944 | struct cache_time mtime; |
Shawn O. Pearce | edace6f | 2009-10-30 17:47:23 -0700 | [diff] [blame] | 945 | struct strbuf sb = STRBUF_INIT; |
Johannes Schindelin | 016e6cc | 2006-10-30 20:09:29 +0100 | [diff] [blame] | 946 | char *shallow = git_path("shallow"); |
| 947 | int fd; |
| 948 | |
| 949 | mtime.sec = st.st_mtime; |
Kjetil Barvik | c06ff49 | 2009-03-04 18:47:40 +0100 | [diff] [blame] | 950 | mtime.nsec = ST_MTIME_NSEC(st); |
Johannes Schindelin | 016e6cc | 2006-10-30 20:09:29 +0100 | [diff] [blame] | 951 | if (stat(shallow, &st)) { |
| 952 | if (mtime.sec) |
| 953 | die("shallow file was removed during fetch"); |
| 954 | } else if (st.st_mtime != mtime.sec |
| 955 | #ifdef USE_NSEC |
Kjetil Barvik | 5bcf109 | 2009-03-15 12:38:55 +0100 | [diff] [blame] | 956 | || ST_MTIME_NSEC(st) != mtime.nsec |
Johannes Schindelin | 016e6cc | 2006-10-30 20:09:29 +0100 | [diff] [blame] | 957 | #endif |
| 958 | ) |
| 959 | die("shallow file was changed during fetch"); |
| 960 | |
Junio C Hamano | acd3b9e | 2008-10-17 15:44:39 -0700 | [diff] [blame] | 961 | fd = hold_lock_file_for_update(&lock, shallow, |
| 962 | LOCK_DIE_ON_ERROR); |
Shawn O. Pearce | edace6f | 2009-10-30 17:47:23 -0700 | [diff] [blame] | 963 | if (!write_shallow_commits(&sb, 0) |
| 964 | || write_in_full(fd, sb.buf, sb.len) != sb.len) { |
Alex Riesen | 691f1a2 | 2009-04-29 23:22:56 +0200 | [diff] [blame] | 965 | unlink_or_warn(shallow); |
Johannes Schindelin | 016e6cc | 2006-10-30 20:09:29 +0100 | [diff] [blame] | 966 | rollback_lock_file(&lock); |
| 967 | } else { |
Johannes Schindelin | 016e6cc | 2006-10-30 20:09:29 +0100 | [diff] [blame] | 968 | commit_lock_file(&lock); |
| 969 | } |
Shawn O. Pearce | edace6f | 2009-10-30 17:47:23 -0700 | [diff] [blame] | 970 | strbuf_release(&sb); |
Johannes Schindelin | 016e6cc | 2006-10-30 20:09:29 +0100 | [diff] [blame] | 971 | } |
| 972 | |
Johan Herland | 48ec3e5 | 2008-06-15 16:04:20 +0200 | [diff] [blame] | 973 | reprepare_packed_git(); |
Daniel Barkalow | ba22785 | 2008-02-04 13:26:23 -0500 | [diff] [blame] | 974 | return ref_cpy; |
Linus Torvalds | def88e9 | 2005-07-04 13:26:53 -0700 | [diff] [blame] | 975 | } |