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