4 #include "parse-options.h"
6 #include "repository.h"
7 #include "run-command.h"
9 #include "string-list.h"
11 #include "cache-tree.h"
13 #include "resolve-undo.h"
14 #include "unpack-trees.h"
15 #include "wt-status.h"
17 #include "sparse-index.h"
19 static const char *empty_base = "";
21 static char const * const builtin_sparse_checkout_usage[] = {
22 N_("git sparse-checkout (init|list|set|add|reapply|disable) <options>"),
26 static void write_patterns_to_file(FILE *fp, struct pattern_list *pl)
30 for (i = 0; i < pl->nr; i++) {
31 struct path_pattern *p = pl->patterns[i];
33 if (p->flags & PATTERN_FLAG_NEGATIVE)
36 fprintf(fp, "%s", p->pattern);
38 if (p->flags & PATTERN_FLAG_MUSTBEDIR)
45 static char const * const builtin_sparse_checkout_list_usage[] = {
46 N_("git sparse-checkout list"),
50 static int sparse_checkout_list(int argc, const char **argv)
52 static struct option builtin_sparse_checkout_list_options[] = {
55 struct pattern_list pl;
56 char *sparse_filename;
59 argc = parse_options(argc, argv, NULL,
60 builtin_sparse_checkout_list_options,
61 builtin_sparse_checkout_list_usage, 0);
63 memset(&pl, 0, sizeof(pl));
65 pl.use_cone_patterns = core_sparse_checkout_cone;
67 sparse_filename = get_sparse_checkout_filename();
68 res = add_patterns_from_file_to_list(sparse_filename, "", 0, &pl, NULL);
69 free(sparse_filename);
72 warning(_("this worktree is not sparse (sparse-checkout file may not exist)"));
76 if (pl.use_cone_patterns) {
78 struct pattern_entry *pe;
79 struct hashmap_iter iter;
80 struct string_list sl = STRING_LIST_INIT_DUP;
82 hashmap_for_each_entry(&pl.recursive_hashmap, &iter, pe, ent) {
83 /* pe->pattern starts with "/", skip it */
84 string_list_insert(&sl, pe->pattern + 1);
87 string_list_sort(&sl);
89 for (i = 0; i < sl.nr; i++) {
90 quote_c_style(sl.items[i].string, NULL, stdout, 0);
97 write_patterns_to_file(stdout, &pl);
98 clear_pattern_list(&pl);
103 static int update_working_directory(struct pattern_list *pl)
105 enum update_sparsity_result result;
106 struct unpack_trees_options o;
107 struct lock_file lock_file = LOCK_INIT;
108 struct repository *r = the_repository;
110 /* If no branch has been checked out, there are no updates to make. */
111 if (is_index_unborn(r->index))
112 return UPDATE_SPARSITY_SUCCESS;
114 r->index->sparse_checkout_patterns = pl;
116 memset(&o, 0, sizeof(o));
117 o.verbose_update = isatty(2);
120 o.src_index = r->index;
121 o.dst_index = r->index;
122 o.skip_sparse_checkout = 0;
127 repo_hold_locked_index(r, &lock_file, LOCK_DIE_ON_ERROR);
129 setup_unpack_trees_porcelain(&o, "sparse-checkout");
130 result = update_sparsity(&o);
131 clear_unpack_trees_porcelain(&o);
133 if (result == UPDATE_SPARSITY_WARNINGS)
135 * We don't do any special handling of warnings from untracked
136 * files in the way or dirty entries that can't be removed.
138 result = UPDATE_SPARSITY_SUCCESS;
139 if (result == UPDATE_SPARSITY_SUCCESS)
140 write_locked_index(r->index, &lock_file, COMMIT_LOCK);
142 rollback_lock_file(&lock_file);
144 r->index->sparse_checkout_patterns = NULL;
148 static char *escaped_pattern(char *pattern)
151 struct strbuf final = STRBUF_INIT;
154 if (is_glob_special(*p))
155 strbuf_addch(&final, '\\');
157 strbuf_addch(&final, *p);
161 return strbuf_detach(&final, NULL);
164 static void write_cone_to_file(FILE *fp, struct pattern_list *pl)
167 struct pattern_entry *pe;
168 struct hashmap_iter iter;
169 struct string_list sl = STRING_LIST_INIT_DUP;
170 struct strbuf parent_pattern = STRBUF_INIT;
172 hashmap_for_each_entry(&pl->parent_hashmap, &iter, pe, ent) {
173 if (hashmap_get_entry(&pl->recursive_hashmap, pe, ent, NULL))
176 if (!hashmap_contains_parent(&pl->recursive_hashmap,
179 string_list_insert(&sl, pe->pattern);
182 string_list_sort(&sl);
183 string_list_remove_duplicates(&sl, 0);
185 fprintf(fp, "/*\n!/*/\n");
187 for (i = 0; i < sl.nr; i++) {
188 char *pattern = escaped_pattern(sl.items[i].string);
191 fprintf(fp, "%s/\n!%s/*/\n", pattern, pattern);
195 string_list_clear(&sl, 0);
197 hashmap_for_each_entry(&pl->recursive_hashmap, &iter, pe, ent) {
198 if (!hashmap_contains_parent(&pl->recursive_hashmap,
201 string_list_insert(&sl, pe->pattern);
204 strbuf_release(&parent_pattern);
206 string_list_sort(&sl);
207 string_list_remove_duplicates(&sl, 0);
209 for (i = 0; i < sl.nr; i++) {
210 char *pattern = escaped_pattern(sl.items[i].string);
211 fprintf(fp, "%s/\n", pattern);
216 static int write_patterns_and_update(struct pattern_list *pl)
218 char *sparse_filename;
221 struct lock_file lk = LOCK_INIT;
224 sparse_filename = get_sparse_checkout_filename();
226 if (safe_create_leading_directories(sparse_filename))
227 die(_("failed to create directory for sparse-checkout file"));
229 fd = hold_lock_file_for_update(&lk, sparse_filename,
232 result = update_working_directory(pl);
234 rollback_lock_file(&lk);
235 free(sparse_filename);
236 clear_pattern_list(pl);
237 update_working_directory(NULL);
241 fp = xfdopen(fd, "w");
243 if (core_sparse_checkout_cone)
244 write_cone_to_file(fp, pl);
246 write_patterns_to_file(fp, pl);
249 commit_lock_file(&lk);
251 free(sparse_filename);
252 clear_pattern_list(pl);
257 enum sparse_checkout_mode {
258 MODE_NO_PATTERNS = 0,
259 MODE_ALL_PATTERNS = 1,
260 MODE_CONE_PATTERNS = 2,
263 static int set_config(enum sparse_checkout_mode mode)
265 const char *config_path;
267 if (upgrade_repository_format(1) < 0)
268 die(_("unable to upgrade repository format to enable worktreeConfig"));
269 if (git_config_set_gently("extensions.worktreeConfig", "true")) {
270 error(_("failed to set extensions.worktreeConfig setting"));
274 config_path = git_path("config.worktree");
275 git_config_set_in_file_gently(config_path,
276 "core.sparseCheckout",
277 mode ? "true" : NULL);
279 git_config_set_in_file_gently(config_path,
280 "core.sparseCheckoutCone",
281 mode == MODE_CONE_PATTERNS ? "true" : NULL);
286 static char const * const builtin_sparse_checkout_init_usage[] = {
287 N_("git sparse-checkout init [--cone] [--[no-]sparse-index]"),
291 static struct sparse_checkout_init_opts {
296 static int sparse_checkout_init(int argc, const char **argv)
298 struct pattern_list pl;
299 char *sparse_filename;
301 struct object_id oid;
303 struct strbuf pattern = STRBUF_INIT;
305 static struct option builtin_sparse_checkout_init_options[] = {
306 OPT_BOOL(0, "cone", &init_opts.cone_mode,
307 N_("initialize the sparse-checkout in cone mode")),
308 OPT_BOOL(0, "sparse-index", &init_opts.sparse_index,
309 N_("toggle the use of a sparse index")),
313 repo_read_index(the_repository);
315 init_opts.sparse_index = -1;
317 argc = parse_options(argc, argv, NULL,
318 builtin_sparse_checkout_init_options,
319 builtin_sparse_checkout_init_usage, 0);
321 if (init_opts.cone_mode) {
322 mode = MODE_CONE_PATTERNS;
323 core_sparse_checkout_cone = 1;
325 mode = MODE_ALL_PATTERNS;
327 if (set_config(mode))
330 memset(&pl, 0, sizeof(pl));
332 sparse_filename = get_sparse_checkout_filename();
333 res = add_patterns_from_file_to_list(sparse_filename, "", 0, &pl, NULL);
335 if (init_opts.sparse_index >= 0) {
336 if (set_sparse_index_config(the_repository, init_opts.sparse_index) < 0)
337 die(_("failed to modify sparse-index config"));
339 /* force an index rewrite */
340 repo_read_index(the_repository);
341 the_repository->index->updated_workdir = 1;
344 /* If we already have a sparse-checkout file, use it. */
346 free(sparse_filename);
347 core_apply_sparse_checkout = 1;
348 return update_working_directory(NULL);
351 if (get_oid("HEAD", &oid)) {
354 /* assume we are in a fresh repo, but update the sparse-checkout file */
355 fp = xfopen(sparse_filename, "w");
357 die(_("failed to open '%s'"), sparse_filename);
359 free(sparse_filename);
360 fprintf(fp, "/*\n!/*/\n");
365 strbuf_addstr(&pattern, "/*");
366 add_pattern(strbuf_detach(&pattern, NULL), empty_base, 0, &pl, 0);
367 strbuf_addstr(&pattern, "!/*/");
368 add_pattern(strbuf_detach(&pattern, NULL), empty_base, 0, &pl, 0);
370 return write_patterns_and_update(&pl);
373 static void insert_recursive_pattern(struct pattern_list *pl, struct strbuf *path)
375 struct pattern_entry *e = xmalloc(sizeof(*e));
376 e->patternlen = path->len;
377 e->pattern = strbuf_detach(path, NULL);
378 hashmap_entry_init(&e->ent,
380 strihash(e->pattern) :
381 strhash(e->pattern));
383 hashmap_add(&pl->recursive_hashmap, &e->ent);
385 while (e->patternlen) {
386 char *slash = strrchr(e->pattern, '/');
387 char *oldpattern = e->pattern;
390 if (slash == e->pattern)
393 newlen = slash - e->pattern;
394 e = xmalloc(sizeof(struct pattern_entry));
395 e->patternlen = newlen;
396 e->pattern = xstrndup(oldpattern, newlen);
397 hashmap_entry_init(&e->ent,
399 strihash(e->pattern) :
400 strhash(e->pattern));
402 if (!hashmap_get_entry(&pl->parent_hashmap, e, ent, NULL))
403 hashmap_add(&pl->parent_hashmap, &e->ent);
407 static void strbuf_to_cone_pattern(struct strbuf *line, struct pattern_list *pl)
411 strbuf_trim_trailing_dir_sep(line);
413 if (strbuf_normalize_path(line))
414 die(_("could not normalize path %s"), line->buf);
419 if (line->buf[0] != '/')
420 strbuf_insertstr(line, 0, "/");
422 insert_recursive_pattern(pl, line);
425 static char const * const builtin_sparse_checkout_set_usage[] = {
426 N_("git sparse-checkout (set|add) (--stdin | <patterns>)"),
430 static struct sparse_checkout_set_opts {
434 static void add_patterns_from_input(struct pattern_list *pl,
435 int argc, const char **argv)
438 if (core_sparse_checkout_cone) {
439 struct strbuf line = STRBUF_INIT;
441 hashmap_init(&pl->recursive_hashmap, pl_hashmap_cmp, NULL, 0);
442 hashmap_init(&pl->parent_hashmap, pl_hashmap_cmp, NULL, 0);
443 pl->use_cone_patterns = 1;
445 if (set_opts.use_stdin) {
446 struct strbuf unquoted = STRBUF_INIT;
447 while (!strbuf_getline(&line, stdin)) {
448 if (line.buf[0] == '"') {
449 strbuf_reset(&unquoted);
450 if (unquote_c_style(&unquoted, line.buf, NULL))
451 die(_("unable to unquote C-style string '%s'"),
454 strbuf_swap(&unquoted, &line);
457 strbuf_to_cone_pattern(&line, pl);
460 strbuf_release(&unquoted);
462 for (i = 0; i < argc; i++) {
463 strbuf_setlen(&line, 0);
464 strbuf_addstr(&line, argv[i]);
465 strbuf_to_cone_pattern(&line, pl);
469 if (set_opts.use_stdin) {
470 struct strbuf line = STRBUF_INIT;
472 while (!strbuf_getline(&line, stdin)) {
474 char *buf = strbuf_detach(&line, &len);
475 add_pattern(buf, empty_base, 0, pl, 0);
478 for (i = 0; i < argc; i++)
479 add_pattern(argv[i], empty_base, 0, pl, 0);
489 static void add_patterns_cone_mode(int argc, const char **argv,
490 struct pattern_list *pl)
492 struct strbuf buffer = STRBUF_INIT;
493 struct pattern_entry *pe;
494 struct hashmap_iter iter;
495 struct pattern_list existing;
496 char *sparse_filename = get_sparse_checkout_filename();
498 add_patterns_from_input(pl, argc, argv);
500 memset(&existing, 0, sizeof(existing));
501 existing.use_cone_patterns = core_sparse_checkout_cone;
503 if (add_patterns_from_file_to_list(sparse_filename, "", 0,
505 die(_("unable to load existing sparse-checkout patterns"));
506 free(sparse_filename);
508 hashmap_for_each_entry(&existing.recursive_hashmap, &iter, pe, ent) {
509 if (!hashmap_contains_parent(&pl->recursive_hashmap,
510 pe->pattern, &buffer) ||
511 !hashmap_contains_parent(&pl->parent_hashmap,
512 pe->pattern, &buffer)) {
513 strbuf_reset(&buffer);
514 strbuf_addstr(&buffer, pe->pattern);
515 insert_recursive_pattern(pl, &buffer);
519 clear_pattern_list(&existing);
520 strbuf_release(&buffer);
523 static void add_patterns_literal(int argc, const char **argv,
524 struct pattern_list *pl)
526 char *sparse_filename = get_sparse_checkout_filename();
527 if (add_patterns_from_file_to_list(sparse_filename, "", 0,
529 die(_("unable to load existing sparse-checkout patterns"));
530 free(sparse_filename);
531 add_patterns_from_input(pl, argc, argv);
534 static int modify_pattern_list(int argc, const char **argv, enum modify_type m)
537 int changed_config = 0;
538 struct pattern_list *pl = xcalloc(1, sizeof(*pl));
542 if (core_sparse_checkout_cone)
543 add_patterns_cone_mode(argc, argv, pl);
545 add_patterns_literal(argc, argv, pl);
549 add_patterns_from_input(pl, argc, argv);
553 if (!core_apply_sparse_checkout) {
554 set_config(MODE_ALL_PATTERNS);
555 core_apply_sparse_checkout = 1;
559 result = write_patterns_and_update(pl);
561 if (result && changed_config)
562 set_config(MODE_NO_PATTERNS);
564 clear_pattern_list(pl);
569 static int sparse_checkout_set(int argc, const char **argv, const char *prefix,
572 static struct option builtin_sparse_checkout_set_options[] = {
573 OPT_BOOL(0, "stdin", &set_opts.use_stdin,
574 N_("read patterns from standard in")),
578 repo_read_index(the_repository);
580 argc = parse_options(argc, argv, prefix,
581 builtin_sparse_checkout_set_options,
582 builtin_sparse_checkout_set_usage,
583 PARSE_OPT_KEEP_UNKNOWN);
585 return modify_pattern_list(argc, argv, m);
588 static char const * const builtin_sparse_checkout_reapply_usage[] = {
589 N_("git sparse-checkout reapply"),
593 static int sparse_checkout_reapply(int argc, const char **argv)
595 static struct option builtin_sparse_checkout_reapply_options[] = {
599 argc = parse_options(argc, argv, NULL,
600 builtin_sparse_checkout_reapply_options,
601 builtin_sparse_checkout_reapply_usage, 0);
603 repo_read_index(the_repository);
604 return update_working_directory(NULL);
607 static char const * const builtin_sparse_checkout_disable_usage[] = {
608 N_("git sparse-checkout disable"),
612 static int sparse_checkout_disable(int argc, const char **argv)
614 static struct option builtin_sparse_checkout_disable_options[] = {
617 struct pattern_list pl;
618 struct strbuf match_all = STRBUF_INIT;
620 argc = parse_options(argc, argv, NULL,
621 builtin_sparse_checkout_disable_options,
622 builtin_sparse_checkout_disable_usage, 0);
624 repo_read_index(the_repository);
626 memset(&pl, 0, sizeof(pl));
627 hashmap_init(&pl.recursive_hashmap, pl_hashmap_cmp, NULL, 0);
628 hashmap_init(&pl.parent_hashmap, pl_hashmap_cmp, NULL, 0);
629 pl.use_cone_patterns = 0;
630 core_apply_sparse_checkout = 1;
632 strbuf_addstr(&match_all, "/*");
633 add_pattern(strbuf_detach(&match_all, NULL), empty_base, 0, &pl, 0);
635 if (update_working_directory(&pl))
636 die(_("error while refreshing working directory"));
638 clear_pattern_list(&pl);
639 return set_config(MODE_NO_PATTERNS);
642 int cmd_sparse_checkout(int argc, const char **argv, const char *prefix)
644 static struct option builtin_sparse_checkout_options[] = {
648 if (argc == 2 && !strcmp(argv[1], "-h"))
649 usage_with_options(builtin_sparse_checkout_usage,
650 builtin_sparse_checkout_options);
652 argc = parse_options(argc, argv, prefix,
653 builtin_sparse_checkout_options,
654 builtin_sparse_checkout_usage,
655 PARSE_OPT_STOP_AT_NON_OPTION);
657 git_config(git_default_config, NULL);
660 if (!strcmp(argv[0], "list"))
661 return sparse_checkout_list(argc, argv);
662 if (!strcmp(argv[0], "init"))
663 return sparse_checkout_init(argc, argv);
664 if (!strcmp(argv[0], "set"))
665 return sparse_checkout_set(argc, argv, prefix, REPLACE);
666 if (!strcmp(argv[0], "add"))
667 return sparse_checkout_set(argc, argv, prefix, ADD);
668 if (!strcmp(argv[0], "reapply"))
669 return sparse_checkout_reapply(argc, argv);
670 if (!strcmp(argv[0], "disable"))
671 return sparse_checkout_disable(argc, argv);
674 usage_with_options(builtin_sparse_checkout_usage,
675 builtin_sparse_checkout_options);