3 #include "fetch-pack.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] [--diag-url] [-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);
18 const int chunksz
= GIT_SHA1_HEXSZ
+ 1;
20 if (namelen
> chunksz
&& name
[chunksz
- 1] == ' ' &&
21 !get_oid_hex(name
, &oid
)) {
22 oidcpy(&ref
->old_oid
, &oid
);
27 memcpy(ref
->name
, name
, namelen
);
28 ref
->name
[namelen
] = '\0';
30 ALLOC_GROW(*sought
, *nr
, *alloc
);
31 (*sought
)[*nr
- 1] = ref
;
34 static void add_sought_entry(struct ref
***sought
, int *nr
, int *alloc
,
37 add_sought_entry_mem(sought
, nr
, alloc
, string
, strlen(string
));
40 int cmd_fetch_pack(int argc
, const char **argv
, const char *prefix
)
43 struct ref
*ref
= NULL
;
44 const char *dest
= NULL
;
45 struct ref
**sought
= NULL
;
46 int nr_sought
= 0, alloc_sought
= 0;
48 char *pack_lockfile
= NULL
;
49 char **pack_lockfile_ptr
= NULL
;
50 struct child_process
*conn
;
51 struct fetch_pack_args args
;
52 struct sha1_array shallow
= SHA1_ARRAY_INIT
;
54 packet_trace_identity("fetch-pack");
56 memset(&args
, 0, sizeof(args
));
57 args
.uploadpack
= "git-upload-pack";
59 for (i
= 1; i
< argc
&& *argv
[i
] == '-'; i
++) {
60 const char *arg
= argv
[i
];
62 if (starts_with(arg
, "--upload-pack=")) {
63 args
.uploadpack
= arg
+ 14;
66 if (starts_with(arg
, "--exec=")) {
67 args
.uploadpack
= arg
+ 7;
70 if (!strcmp("--quiet", arg
) || !strcmp("-q", arg
)) {
74 if (!strcmp("--keep", arg
) || !strcmp("-k", arg
)) {
75 args
.lock_pack
= args
.keep_pack
;
79 if (!strcmp("--thin", arg
)) {
80 args
.use_thin_pack
= 1;
83 if (!strcmp("--include-tag", arg
)) {
87 if (!strcmp("--all", arg
)) {
91 if (!strcmp("--stdin", arg
)) {
95 if (!strcmp("--diag-url", arg
)) {
99 if (!strcmp("-v", arg
)) {
103 if (starts_with(arg
, "--depth=")) {
104 args
.depth
= strtol(arg
+ 8, NULL
, 0);
107 if (!strcmp("--no-progress", arg
)) {
108 args
.no_progress
= 1;
111 if (!strcmp("--stateless-rpc", arg
)) {
112 args
.stateless_rpc
= 1;
115 if (!strcmp("--lock-pack", arg
)) {
117 pack_lockfile_ptr
= &pack_lockfile
;
120 if (!strcmp("--check-self-contained-and-connected", arg
)) {
121 args
.check_self_contained_and_connected
= 1;
124 if (!strcmp("--cloning", arg
)) {
128 if (!strcmp("--update-shallow", arg
)) {
129 args
.update_shallow
= 1;
132 usage(fetch_pack_usage
);
138 usage(fetch_pack_usage
);
141 * Copy refs from cmdline to growable list, then append any
142 * refs from the standard input:
144 for (; i
< argc
; i
++)
145 add_sought_entry(&sought
, &nr_sought
, &alloc_sought
, argv
[i
]);
146 if (args
.stdin_refs
) {
147 if (args
.stateless_rpc
) {
148 /* in stateless RPC mode we use pkt-line to read
149 * from stdin, until we get a flush packet
152 char *line
= packet_read_line(0, NULL
);
155 add_sought_entry(&sought
, &nr_sought
, &alloc_sought
, line
);
159 /* read from stdin one ref per line, until EOF */
160 struct strbuf line
= STRBUF_INIT
;
161 while (strbuf_getline(&line
, stdin
, '\n') != EOF
)
162 add_sought_entry(&sought
, &nr_sought
, &alloc_sought
, line
.buf
);
163 strbuf_release(&line
);
167 if (args
.stateless_rpc
) {
172 int flags
= args
.verbose
? CONNECT_VERBOSE
: 0;
174 flags
|= CONNECT_DIAG_URL
;
175 conn
= git_connect(fd
, dest
, args
.uploadpack
,
178 return args
.diag_url
? 0 : 1;
180 get_remote_heads(fd
[0], NULL
, 0, &ref
, 0, NULL
, &shallow
);
182 ref
= fetch_pack(&args
, fd
, conn
, ref
, dest
, sought
, nr_sought
,
183 &shallow
, pack_lockfile_ptr
);
185 printf("lock %s\n", pack_lockfile
);
188 if (args
.check_self_contained_and_connected
&&
189 args
.self_contained_and_connected
) {
190 printf("connectivity-ok\n");
195 if (finish_connect(conn
))
201 * If the heads to pull were given, we should have consumed
202 * all of them by matching the remote. Otherwise, 'git fetch
203 * remote no-such-ref' would silently succeed without issuing
206 for (i
= 0; i
< nr_sought
; i
++) {
207 if (!sought
[i
] || sought
[i
]->matched
)
209 error("no such remote ref %s", sought
[i
]->name
);
215 oid_to_hex(&ref
->old_oid
), ref
->name
);