]> git.ipfire.org Git - thirdparty/git.git/blame - archive.c
Merge branch 'ab/config-multi-and-nonbool'
[thirdparty/git.git] / archive.c
CommitLineData
36bf1958
EN
1#include "git-compat-util.h"
2#include "alloc.h"
b2141fc1 3#include "config.h"
41771fa4 4#include "hex.h"
fb58c8d5 5#include "refs.h"
cbd53a21 6#include "object-store.h"
18125644 7#include "commit.h"
c0885435 8#include "tree-walk.h"
18125644 9#include "attr.h"
562e25ab 10#include "archive.h"
4fac1d3a 11#include "parse-options.h"
ba053ea9 12#include "unpack-trees.h"
ed22b417 13#include "dir.h"
de1f68a9 14#include "quote.h"
4fac1d3a
RS
15
16static char const * const archive_usage[] = {
9c9b4f2f 17 N_("git archive [<options>] <tree-ish> [<path>...]"),
959d670d 18 "git archive --list",
9c9b4f2f 19 N_("git archive --remote <repo> [--exec <cmd>] [<options>] <tree-ish> [<path>...]"),
0012a387 20 N_("git archive --remote <repo> [--exec <cmd>] --list"),
4fac1d3a
RS
21 NULL
22};
c0885435 23
13e0f88d
JK
24static const struct archiver **archivers;
25static int nr_archivers;
26static int alloc_archivers;
7671b632 27static int remote_allow_unreachable;
13e0f88d
JK
28
29void register_archiver(struct archiver *ar)
30{
31 ALLOC_GROW(archivers, nr_archivers + 1, alloc_archivers);
32 archivers[nr_archivers++] = ar;
33}
c0885435 34
00436bf1
JS
35void init_archivers(void)
36{
37 init_tar_archiver();
38 init_zip_archiver();
39}
40
18125644 41static void format_subst(const struct commit *commit,
ec36c42a 42 const char *src, size_t len,
96099726 43 struct strbuf *buf, struct pretty_print_context *ctx)
18125644
LH
44{
45 char *to_free = NULL;
f285a2d7 46 struct strbuf fmt = STRBUF_INIT;
18125644
LH
47
48 if (src == buf->buf)
49 to_free = strbuf_detach(buf, NULL);
18125644
LH
50 for (;;) {
51 const char *b, *c;
52
53 b = memmem(src, len, "$Format:", 8);
75b7dfbd 54 if (!b)
18125644 55 break;
75b7dfbd 56 c = memchr(b + 8, '$', (src + len) - b - 8);
18125644
LH
57 if (!c)
58 break;
59
60 strbuf_reset(&fmt);
61 strbuf_add(&fmt, b + 8, c - b - 8);
62
63 strbuf_add(buf, src, b - src);
96099726 64 format_commit_message(commit, fmt.buf, buf, ctx);
18125644
LH
65 len -= c + 1 - src;
66 src = c + 1;
67 }
68 strbuf_add(buf, src, len);
69 strbuf_release(&fmt);
70 free(to_free);
71}
72
200589ab
RS
73static void *object_file_to_archive(const struct archiver_args *args,
74 const char *path,
75 const struct object_id *oid,
76 unsigned int mode,
77 enum object_type *type,
78 unsigned long *sizep)
18125644
LH
79{
80 void *buffer;
9cb513b7 81 const struct commit *commit = args->convert ? args->commit : NULL;
c397aac0 82 struct checkout_metadata meta;
83
84 init_checkout_metadata(&meta, args->refname,
85 args->commit_oid ? args->commit_oid :
86 (args->tree ? &args->tree->object.oid : NULL), oid);
18125644 87
9cb513b7 88 path += args->baselen;
b4f5aca4 89 buffer = read_object_file(oid, type, sizep);
18125644 90 if (buffer && S_ISREG(mode)) {
f285a2d7 91 struct strbuf buf = STRBUF_INIT;
18125644
LH
92 size_t size = 0;
93
18125644 94 strbuf_attach(&buf, buffer, *sizep, *sizep + 1);
c397aac0 95 convert_to_working_tree(args->repo->index, path, buf.buf, buf.len, &buf, &meta);
1d11d5bb 96 if (commit)
96099726 97 format_subst(commit, buf.buf, buf.len, &buf, args->pretty_ctx);
18125644
LH
98 buffer = strbuf_detach(&buf, &size);
99 *sizep = size;
100 }
101
102 return buffer;
103}
104
ed22b417
NTND
105struct directory {
106 struct directory *up;
13609673 107 struct object_id oid;
ed22b417
NTND
108 int baselen, len;
109 unsigned mode;
ed22b417
NTND
110 char path[FLEX_ARRAY];
111};
112
562e25ab
RS
113struct archiver_context {
114 struct archiver_args *args;
115 write_archive_entry_fn_t write_entry;
ed22b417 116 struct directory *bottom;
562e25ab
RS
117};
118
b612ee20
NTND
119static const struct attr_check *get_archive_attrs(struct index_state *istate,
120 const char *path)
c6c08f7e
RS
121{
122 static struct attr_check *check;
123 if (!check)
124 check = attr_check_initl("export-ignore", "export-subst", NULL);
47cfc9bd 125 git_check_attr(istate, NULL, path, check);
d64324cb 126 return check;
c6c08f7e
RS
127}
128
129static int check_attr_export_ignore(const struct attr_check *check)
130{
131 return check && ATTR_TRUE(check->items[0].value);
132}
133
134static int check_attr_export_subst(const struct attr_check *check)
135{
136 return check && ATTR_TRUE(check->items[1].value);
137}
138
015ff4f8 139static int write_archive_entry(const struct object_id *oid, const char *base,
7367d882 140 int baselen, const char *filename, unsigned mode,
562e25ab
RS
141 void *context)
142{
143 static struct strbuf path = STRBUF_INIT;
144 struct archiver_context *c = context;
145 struct archiver_args *args = c->args;
146 write_archive_entry_fn_t write_entry = c->write_entry;
147 int err;
5ff247ac 148 const char *path_without_prefix;
200589ab
RS
149 unsigned long size;
150 void *buffer;
151 enum object_type type;
562e25ab 152
9cb513b7 153 args->convert = 0;
562e25ab
RS
154 strbuf_reset(&path);
155 strbuf_grow(&path, PATH_MAX);
ebfbdb34 156 strbuf_add(&path, args->base, args->baselen);
562e25ab
RS
157 strbuf_add(&path, base, baselen);
158 strbuf_addstr(&path, filename);
94bc671a
JNA
159 if (S_ISDIR(mode) || S_ISGITLINK(mode))
160 strbuf_addch(&path, '/');
1d11d5bb 161 path_without_prefix = path.buf + args->baselen;
562e25ab 162
43180940 163 if (!S_ISDIR(mode)) {
5ff247ac 164 const struct attr_check *check;
b612ee20 165 check = get_archive_attrs(args->repo->index, path_without_prefix);
5ff247ac 166 if (check_attr_export_ignore(check))
1d11d5bb 167 return 0;
5ff247ac 168 args->convert = check_attr_export_subst(check);
1d11d5bb 169 }
562e25ab 170
e3733b64
RS
171 if (args->verbose)
172 fprintf(stderr, "%.*s\n", (int)path.len, path.buf);
173
562e25ab 174 if (S_ISDIR(mode) || S_ISGITLINK(mode)) {
200589ab 175 err = write_entry(args, oid, path.buf, path.len, mode, NULL, 0);
562e25ab
RS
176 if (err)
177 return err;
d3bee161 178 return (S_ISDIR(mode) ? READ_TREE_RECURSIVE : 0);
562e25ab
RS
179 }
180
200589ab
RS
181 /* Stream it? */
182 if (S_ISREG(mode) && !args->convert &&
183 oid_object_info(args->repo, oid, &size) == OBJ_BLOB &&
184 size > big_file_threshold)
185 return write_entry(args, oid, path.buf, path.len, mode, NULL, size);
186
187 buffer = object_file_to_archive(args, path.buf, oid, mode, &type, &size);
188 if (!buffer)
c4904377 189 return error(_("cannot read '%s'"), oid_to_hex(oid));
200589ab
RS
190 err = write_entry(args, oid, path.buf, path.len, mode, buffer, size);
191 free(buffer);
192 return err;
562e25ab
RS
193}
194
e124ecf7 195static void queue_directory(const struct object_id *oid,
6a0b0b6d 196 struct strbuf *base, const char *filename,
7367d882 197 unsigned mode, struct archiver_context *c)
ed22b417
NTND
198{
199 struct directory *d;
50a6c8ef
JK
200 size_t len = st_add4(base->len, 1, strlen(filename), 1);
201 d = xmalloc(st_add(sizeof(*d), len));
ed22b417 202 d->up = c->bottom;
6a0b0b6d 203 d->baselen = base->len;
ed22b417 204 d->mode = mode;
ed22b417 205 c->bottom = d;
c7ab0ba3 206 d->len = xsnprintf(d->path, len, "%.*s%s/", (int)base->len, base->buf, filename);
e124ecf7 207 oidcpy(&d->oid, oid);
ed22b417
NTND
208}
209
210static int write_directory(struct archiver_context *c)
211{
212 struct directory *d = c->bottom;
213 int ret;
214
215 if (!d)
216 return 0;
217 c->bottom = d->up;
218 d->path[d->len - 1] = '\0'; /* no trailing slash */
219 ret =
220 write_directory(c) ||
015ff4f8 221 write_archive_entry(&d->oid, d->path, d->baselen,
ed22b417 222 d->path + d->baselen, d->mode,
7367d882 223 c) != READ_TREE_RECURSIVE;
ed22b417
NTND
224 free(d);
225 return ret ? -1 : 0;
226}
227
df46d77e 228static int queue_or_write_archive_entry(const struct object_id *oid,
6a0b0b6d 229 struct strbuf *base, const char *filename,
47957485 230 unsigned mode, void *context)
ed22b417
NTND
231{
232 struct archiver_context *c = context;
233
234 while (c->bottom &&
6a0b0b6d
NTND
235 !(base->len >= c->bottom->len &&
236 !strncmp(base->buf, c->bottom->path, c->bottom->len))) {
ed22b417
NTND
237 struct directory *next = c->bottom->up;
238 free(c->bottom);
239 c->bottom = next;
240 }
241
242 if (S_ISDIR(mode)) {
5ff247ac
RS
243 size_t baselen = base->len;
244 const struct attr_check *check;
245
246 /* Borrow base, but restore its original value when done. */
247 strbuf_addstr(base, filename);
248 strbuf_addch(base, '/');
b612ee20 249 check = get_archive_attrs(c->args->repo->index, base->buf);
5ff247ac
RS
250 strbuf_setlen(base, baselen);
251
252 if (check_attr_export_ignore(check))
253 return 0;
e124ecf7 254 queue_directory(oid, base, filename, mode, c);
ed22b417
NTND
255 return READ_TREE_RECURSIVE;
256 }
257
258 if (write_directory(c))
259 return -1;
015ff4f8 260 return write_archive_entry(oid, base->buf, base->len, filename, mode,
7367d882 261 context);
ed22b417
NTND
262}
263
2947a793
RS
264struct extra_file_info {
265 char *base;
266 struct stat stat;
237a1d13 267 void *content;
2947a793
RS
268};
269
562e25ab
RS
270int write_archive_entries(struct archiver_args *args,
271 write_archive_entry_fn_t write_entry)
272{
273 struct archiver_context context;
ba053ea9
NTND
274 struct unpack_trees_options opts;
275 struct tree_desc t;
562e25ab 276 int err;
2947a793
RS
277 struct strbuf path_in_archive = STRBUF_INIT;
278 struct strbuf content = STRBUF_INIT;
14228447 279 struct object_id fake_oid;
2947a793 280 int i;
562e25ab 281
14228447 282 oidcpy(&fake_oid, null_oid());
283
562e25ab
RS
284 if (args->baselen > 0 && args->base[args->baselen - 1] == '/') {
285 size_t len = args->baselen;
286
287 while (len > 1 && args->base[len - 2] == '/')
288 len--;
289 if (args->verbose)
290 fprintf(stderr, "%.*s\n", (int)len, args->base);
015ff4f8 291 err = write_entry(args, &args->tree->object.oid, args->base,
200589ab 292 len, 040777, NULL, 0);
562e25ab
RS
293 if (err)
294 return err;
295 }
296
ed22b417 297 memset(&context, 0, sizeof(context));
562e25ab
RS
298 context.args = args;
299 context.write_entry = write_entry;
300
ba053ea9
NTND
301 /*
302 * Setup index and instruct attr to read index only
303 */
304 if (!args->worktree_attributes) {
305 memset(&opts, 0, sizeof(opts));
306 opts.index_only = 1;
307 opts.head_idx = -1;
b612ee20
NTND
308 opts.src_index = args->repo->index;
309 opts.dst_index = args->repo->index;
ba053ea9
NTND
310 opts.fn = oneway_merge;
311 init_tree_desc(&t, args->tree->buffer, args->tree->size);
312 if (unpack_trees(1, &t, &opts))
313 return -1;
c4500e25 314 git_attr_set_direction(GIT_ATTR_INDEX);
ba053ea9
NTND
315 }
316
47957485
ÆAB
317 err = read_tree(args->repo, args->tree,
318 &args->pathspec,
319 queue_or_write_archive_entry,
320 &context);
562e25ab
RS
321 if (err == READ_TREE_RECURSIVE)
322 err = 0;
ed22b417
NTND
323 while (context.bottom) {
324 struct directory *next = context.bottom->up;
325 free(context.bottom);
326 context.bottom = next;
327 }
2947a793
RS
328
329 for (i = 0; i < args->extra_files.nr; i++) {
330 struct string_list_item *item = args->extra_files.items + i;
331 char *path = item->string;
332 struct extra_file_info *info = item->util;
333
334 put_be64(fake_oid.hash, i + 1);
335
237a1d13
JS
336 if (!info->content) {
337 strbuf_reset(&path_in_archive);
338 if (info->base)
339 strbuf_addstr(&path_in_archive, info->base);
340 strbuf_addstr(&path_in_archive, basename(path));
341
342 strbuf_reset(&content);
343 if (strbuf_read_file(&content, path, info->stat.st_size) < 0)
344 err = error_errno(_("cannot read '%s'"), path);
345 else
346 err = write_entry(args, &fake_oid, path_in_archive.buf,
347 path_in_archive.len,
348 canon_mode(info->stat.st_mode),
349 content.buf, content.len);
350 } else {
351 err = write_entry(args, &fake_oid,
352 path, strlen(path),
6a616619 353 canon_mode(info->stat.st_mode),
237a1d13
JS
354 info->content, info->stat.st_size);
355 }
356
2947a793
RS
357 if (err)
358 break;
359 }
360 strbuf_release(&path_in_archive);
361 strbuf_release(&content);
362
562e25ab
RS
363 return err;
364}
6e94e683 365
c0885435
RS
366static const struct archiver *lookup_archiver(const char *name)
367{
368 int i;
369
4fac1d3a
RS
370 if (!name)
371 return NULL;
372
13e0f88d
JK
373 for (i = 0; i < nr_archivers; i++) {
374 if (!strcmp(name, archivers[i]->name))
375 return archivers[i];
c0885435
RS
376 }
377 return NULL;
378}
379
b612ee20
NTND
380struct path_exists_context {
381 struct pathspec pathspec;
382 struct archiver_args *args;
383};
384
5cf88fd8 385static int reject_entry(const struct object_id *oid UNUSED,
555ff1c8 386 struct strbuf *base,
6a0b0b6d 387 const char *filename, unsigned mode,
7367d882 388 void *context)
d5f53d6d 389{
ed22b417 390 int ret = -1;
b612ee20
NTND
391 struct path_exists_context *ctx = context;
392
ed22b417
NTND
393 if (S_ISDIR(mode)) {
394 struct strbuf sb = STRBUF_INIT;
6a0b0b6d 395 strbuf_addbuf(&sb, base);
ed22b417 396 strbuf_addstr(&sb, filename);
b612ee20
NTND
397 if (!match_pathspec(ctx->args->repo->index,
398 &ctx->pathspec,
399 sb.buf, sb.len, 0, NULL, 1))
ed22b417
NTND
400 ret = READ_TREE_RECURSIVE;
401 strbuf_release(&sb);
402 }
403 return ret;
d5f53d6d
RS
404}
405
b612ee20 406static int path_exists(struct archiver_args *args, const char *path)
d5f53d6d 407{
f0096c06 408 const char *paths[] = { path, NULL };
b612ee20 409 struct path_exists_context ctx;
f0096c06
NTND
410 int ret;
411
b612ee20
NTND
412 ctx.args = args;
413 parse_pathspec(&ctx.pathspec, 0, 0, "", paths);
414 ctx.pathspec.recursive = 1;
47957485
ÆAB
415 ret = read_tree(args->repo, args->tree,
416 &ctx.pathspec,
417 reject_entry, &ctx);
b612ee20 418 clear_pathspec(&ctx.pathspec);
f0096c06 419 return ret != 0;
d5f53d6d
RS
420}
421
c0885435
RS
422static void parse_pathspec_arg(const char **pathspec,
423 struct archiver_args *ar_args)
424{
f3e743a0
NTND
425 /*
426 * must be consistent with parse_pathspec in path_exists()
427 * Also if pathspec patterns are dependent, we're in big
428 * trouble as we test each one separately
429 */
430 parse_pathspec(&ar_args->pathspec, 0,
431 PATHSPEC_PREFER_FULL,
432 "", pathspec);
ed22b417 433 ar_args->pathspec.recursive = 1;
d5f53d6d
RS
434 if (pathspec) {
435 while (*pathspec) {
b612ee20 436 if (**pathspec && !path_exists(ar_args, *pathspec))
f3e743a0 437 die(_("pathspec '%s' did not match any files"), *pathspec);
d5f53d6d
RS
438 pathspec++;
439 }
440 }
c0885435
RS
441}
442
443static void parse_treeish_arg(const char **argv,
ee27ca4a
JK
444 struct archiver_args *ar_args, const char *prefix,
445 int remote)
c0885435
RS
446{
447 const char *name = argv[0];
bbf05cf7 448 const struct object_id *commit_oid;
c0885435
RS
449 time_t archive_time;
450 struct tree *tree;
451 const struct commit *commit;
13609673 452 struct object_id oid;
c397aac0 453 char *ref = NULL;
c0885435 454
ee27ca4a 455 /* Remotes are only allowed to fetch actual refs */
7671b632 456 if (remote && !remote_allow_unreachable) {
2c5495f7
RM
457 const char *colon = strchrnul(name, ':');
458 int refnamelen = colon - name;
c51a351a 459
f24c30e0 460 if (!dwim_ref(name, refnamelen, &oid, &ref, 0))
c6e7965d 461 die(_("no such ref: %.*s"), refnamelen, name);
c397aac0 462 } else {
f24c30e0 463 dwim_ref(name, strlen(name), &oid, &ref, 0);
ee27ca4a 464 }
0f544ee8 465
e82caf38 466 if (get_oid(name, &oid))
c6e7965d 467 die(_("not a valid object name: %s"), name);
c0885435 468
ce3a7ec8 469 commit = lookup_commit_reference_gently(ar_args->repo, &oid, 1);
c0885435 470 if (commit) {
bbf05cf7 471 commit_oid = &commit->object.oid;
c0885435
RS
472 archive_time = commit->date;
473 } else {
bbf05cf7 474 commit_oid = NULL;
c0885435
RS
475 archive_time = time(NULL);
476 }
fd2da4b1
RS
477 if (ar_args->mtime_option)
478 archive_time = approxidate(ar_args->mtime_option);
c0885435 479
a9dbc179 480 tree = parse_tree_indirect(&oid);
afe8a907 481 if (!tree)
c6e7965d 482 die(_("not a tree object: %s"), oid_to_hex(&oid));
c0885435
RS
483
484 if (prefix) {
13609673 485 struct object_id tree_oid;
5ec1e728 486 unsigned short mode;
c0885435
RS
487 int err;
488
50ddb089
NTND
489 err = get_tree_entry(ar_args->repo,
490 &tree->object.oid,
491 prefix, &tree_oid,
916bc35b 492 &mode);
c0885435 493 if (err || !S_ISDIR(mode))
c6e7965d 494 die(_("current working directory is untracked"));
c0885435 495
a9dbc179 496 tree = parse_tree_indirect(&tree_oid);
c0885435 497 }
c397aac0 498 ar_args->refname = ref;
c0885435 499 ar_args->tree = tree;
bbf05cf7 500 ar_args->commit_oid = commit_oid;
c0885435
RS
501 ar_args->commit = commit;
502 ar_args->time = archive_time;
503}
504
1ee34710 505static void extra_file_info_clear(void *util, const char *str UNUSED)
2947a793
RS
506{
507 struct extra_file_info *info = util;
508 free(info->base);
237a1d13 509 free(info->content);
2947a793
RS
510 free(info);
511}
512
513static int add_file_cb(const struct option *opt, const char *arg, int unset)
514{
515 struct archiver_args *args = opt->value;
516 const char **basep = (const char **)opt->defval;
517 const char *base = *basep;
518 char *path;
519 struct string_list_item *item;
520 struct extra_file_info *info;
521
522 if (unset) {
523 string_list_clear_func(&args->extra_files,
524 extra_file_info_clear);
525 return 0;
526 }
527
528 if (!arg)
529 return -1;
530
237a1d13 531 info = xmalloc(sizeof(*info));
2947a793 532 info->base = xstrdup_or_null(base);
237a1d13
JS
533
534 if (!strcmp(opt->long_name, "add-file")) {
535 path = prefix_filename(args->prefix, arg);
536 if (stat(path, &info->stat))
537 die(_("File not found: %s"), path);
538 if (!S_ISREG(info->stat.st_mode))
539 die(_("Not a regular file: %s"), path);
540 info->content = NULL; /* read the file later */
541 } else if (!strcmp(opt->long_name, "add-virtual-file")) {
de1f68a9
JS
542 struct strbuf buf = STRBUF_INIT;
543 const char *p = arg;
544
545 if (*p != '"')
546 p = strchr(p, ':');
547 else if (unquote_c_style(&buf, p, &p) < 0)
548 die(_("unclosed quote: '%s'"), arg);
237a1d13 549
de1f68a9 550 if (!p || *p != ':')
237a1d13
JS
551 die(_("missing colon: '%s'"), arg);
552
de1f68a9
JS
553 if (p == arg)
554 die(_("empty file name: '%s'"), arg);
555
556 path = buf.len ?
557 strbuf_detach(&buf, NULL) : xstrndup(arg, p - arg);
558
559 if (args->prefix) {
560 char *save = path;
561 path = prefix_filename(args->prefix, path);
562 free(save);
237a1d13
JS
563 }
564 memset(&info->stat, 0, sizeof(info->stat));
565 info->stat.st_mode = S_IFREG | 0644;
de1f68a9 566 info->content = xstrdup(p + 1);
237a1d13
JS
567 info->stat.st_size = strlen(info->content);
568 } else {
569 BUG("add_file_cb() called for %s", opt->long_name);
570 }
571 item = string_list_append_nodup(&args->extra_files, path);
572 item->util = info;
573
2947a793
RS
574 return 0;
575}
576
cde8ea9c
RS
577static int number_callback(const struct option *opt, const char *arg, int unset)
578{
579 BUG_ON_OPT_NEG(unset);
580 *(int *)opt->value = strtol(arg, NULL, 10);
581 return 0;
582}
4fac1d3a 583
c0885435 584static int parse_archive_args(int argc, const char **argv,
56baa61d 585 const struct archiver **ar, struct archiver_args *args,
7b97730b 586 const char *name_hint, int is_remote)
c0885435 587{
56baa61d 588 const char *format = NULL;
4fac1d3a
RS
589 const char *base = NULL;
590 const char *remote = NULL;
591 const char *exec = NULL;
aec0c1bb 592 const char *output = NULL;
fd2da4b1 593 const char *mtime_option = NULL;
c0885435
RS
594 int compression_level = -1;
595 int verbose = 0;
596 int i;
4fac1d3a 597 int list = 0;
ba053ea9 598 int worktree_attributes = 0;
4fac1d3a
RS
599 struct option opts[] = {
600 OPT_GROUP(""),
0012a387
NTND
601 OPT_STRING(0, "format", &format, N_("fmt"), N_("archive format")),
602 OPT_STRING(0, "prefix", &base, N_("prefix"),
603 N_("prepend prefix to each pathname in the archive")),
2947a793
RS
604 { OPTION_CALLBACK, 0, "add-file", args, N_("file"),
605 N_("add untracked file to archive"), 0, add_file_cb,
606 (intptr_t)&base },
237a1d13
JS
607 { OPTION_CALLBACK, 0, "add-virtual-file", args,
608 N_("path:content"), N_("add untracked file to archive"), 0,
609 add_file_cb, (intptr_t)&base },
0012a387
NTND
610 OPT_STRING('o', "output", &output, N_("file"),
611 N_("write the archive to this file")),
f858c646 612 OPT_BOOL(0, "worktree-attributes", &worktree_attributes,
0012a387
NTND
613 N_("read .gitattributes in working directory")),
614 OPT__VERBOSE(&verbose, N_("report archived files on stderr")),
fd2da4b1
RS
615 { OPTION_STRING, 0, "mtime", &mtime_option, N_("time"),
616 N_("set modification time of archive entries"),
617 PARSE_OPT_NONEG },
cde8ea9c
RS
618 OPT_NUMBER_CALLBACK(&compression_level,
619 N_("set compression level"), number_callback),
4fac1d3a 620 OPT_GROUP(""),
f858c646 621 OPT_BOOL('l', "list", &list,
0012a387 622 N_("list supported archive formats")),
4fac1d3a 623 OPT_GROUP(""),
0012a387
NTND
624 OPT_STRING(0, "remote", &remote, N_("repo"),
625 N_("retrieve the archive from remote repository <repo>")),
b0ff9654 626 OPT_STRING(0, "exec", &exec, N_("command"),
0012a387 627 N_("path to the remote git-upload-archive command")),
4fac1d3a
RS
628 OPT_END()
629 };
630
37782920 631 argc = parse_options(argc, argv, NULL, opts, archive_usage, 0);
4fac1d3a
RS
632
633 if (remote)
5a36d00c 634 die(_("Unexpected option --remote"));
4fac1d3a 635 if (exec)
6fa00ee8 636 die(_("the option '%s' requires '%s'"), "--exec", "--remote");
52e77876 637 if (output)
5a36d00c 638 die(_("Unexpected option --output"));
2947a793 639 if (is_remote && args->extra_files.nr)
12909b6b 640 die(_("options '%s' and '%s' cannot be used together"), "--add-file", "--remote");
4fac1d3a
RS
641
642 if (!base)
643 base = "";
644
645 if (list) {
13e0f88d 646 for (i = 0; i < nr_archivers; i++)
7b97730b
JK
647 if (!is_remote || archivers[i]->flags & ARCHIVER_REMOTE)
648 printf("%s\n", archivers[i]->name);
4fac1d3a 649 exit(0);
c0885435
RS
650 }
651
56baa61d
JK
652 if (!format && name_hint)
653 format = archive_format_from_filename(name_hint);
654 if (!format)
655 format = "tar";
656
c0885435 657 /* We need at least one parameter -- tree-ish */
4fac1d3a
RS
658 if (argc < 1)
659 usage_with_options(archive_usage, opts);
c0885435 660 *ar = lookup_archiver(format);
7b97730b 661 if (!*ar || (is_remote && !((*ar)->flags & ARCHIVER_REMOTE)))
5a36d00c 662 die(_("Unknown archive format '%s'"), format);
c0885435
RS
663
664 args->compression_level = Z_DEFAULT_COMPRESSION;
665 if (compression_level != -1) {
cde8ea9c
RS
666 int levels_ok = (*ar)->flags & ARCHIVER_WANT_COMPRESSION_LEVELS;
667 int high_ok = (*ar)->flags & ARCHIVER_HIGH_COMPRESSION_LEVELS;
668 if (levels_ok && (compression_level <= 9 || high_ok))
c0885435
RS
669 args->compression_level = compression_level;
670 else {
5a36d00c 671 die(_("Argument not supported for format '%s': -%d"),
c0885435
RS
672 format, compression_level);
673 }
674 }
675 args->verbose = verbose;
676 args->base = base;
677 args->baselen = strlen(base);
ba053ea9 678 args->worktree_attributes = worktree_attributes;
fd2da4b1 679 args->mtime_option = mtime_option;
c0885435 680
4fac1d3a 681 return argc;
c0885435
RS
682}
683
6e94e683 684int write_archive(int argc, const char **argv, const char *prefix,
b612ee20 685 struct repository *repo,
eb0224c6 686 const char *name_hint, int remote)
6e94e683
RS
687{
688 const struct archiver *ar = NULL;
96099726
RS
689 struct pretty_print_describe_status describe_status = {0};
690 struct pretty_print_context ctx = {0};
6e94e683 691 struct archiver_args args;
2947a793 692 int rc;
6e94e683 693
95790ff6
TA
694 git_config_get_bool("uploadarchive.allowunreachable", &remote_allow_unreachable);
695 git_config(git_default_config, NULL);
696
96099726
RS
697 describe_status.max_invocations = 1;
698 ctx.date_mode.type = DATE_NORMAL;
699 ctx.abbrev = DEFAULT_ABBREV;
700 ctx.describe_status = &describe_status;
701 args.pretty_ctx = &ctx;
b612ee20 702 args.repo = repo;
2947a793 703 args.prefix = prefix;
bc40dfb1 704 string_list_init_dup(&args.extra_files);
7b97730b 705 argc = parse_archive_args(argc, argv, &ar, &args, name_hint, remote);
eb0224c6 706 if (!startup_info->have_repository) {
23212862
JK
707 /*
708 * We know this will die() with an error, so we could just
709 * die ourselves; but its error message will be more specific
710 * than what we could write here.
711 */
712 setup_git_directory();
713 }
6e94e683 714
ee27ca4a 715 parse_treeish_arg(argv, &args, prefix, remote);
6e94e683
RS
716 parse_pathspec_arg(argv + 1, &args);
717
2947a793
RS
718 rc = ar->write_archive(ar, &args);
719
720 string_list_clear_func(&args.extra_files, extra_file_info_clear);
1c3e4129 721 free(args.refname);
7615cf94 722 clear_pathspec(&args.pathspec);
2947a793
RS
723
724 return rc;
6e94e683 725}
56baa61d 726
08716b3c
JK
727static int match_extension(const char *filename, const char *ext)
728{
729 int prefixlen = strlen(filename) - strlen(ext);
730
731 /*
732 * We need 1 character for the '.', and 1 character to ensure that the
733 * prefix is non-empty (k.e., we don't match .tar.gz with no actual
734 * filename).
735 */
b1cdfb54 736 if (prefixlen < 2 || filename[prefixlen - 1] != '.')
08716b3c
JK
737 return 0;
738 return !strcmp(filename + prefixlen, ext);
739}
740
56baa61d
JK
741const char *archive_format_from_filename(const char *filename)
742{
08716b3c
JK
743 int i;
744
745 for (i = 0; i < nr_archivers; i++)
746 if (match_extension(filename, archivers[i]->name))
747 return archivers[i]->name;
56baa61d
JK
748 return NULL;
749}