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