sparse-checkout: toggle sparse index from builtin
[git] / builtin / sparse-checkout.c
1 #include "builtin.h"
2 #include "config.h"
3 #include "dir.h"
4 #include "parse-options.h"
5 #include "pathspec.h"
6 #include "repository.h"
7 #include "run-command.h"
8 #include "strbuf.h"
9 #include "string-list.h"
10 #include "cache.h"
11 #include "cache-tree.h"
12 #include "lockfile.h"
13 #include "resolve-undo.h"
14 #include "unpack-trees.h"
15 #include "wt-status.h"
16 #include "quote.h"
17 #include "sparse-index.h"
18
19 static const char *empty_base = "";
20
21 static char const * const builtin_sparse_checkout_usage[] = {
22         N_("git sparse-checkout (init|list|set|add|reapply|disable) <options>"),
23         NULL
24 };
25
26 static void write_patterns_to_file(FILE *fp, struct pattern_list *pl)
27 {
28         int i;
29
30         for (i = 0; i < pl->nr; i++) {
31                 struct path_pattern *p = pl->patterns[i];
32
33                 if (p->flags & PATTERN_FLAG_NEGATIVE)
34                         fprintf(fp, "!");
35
36                 fprintf(fp, "%s", p->pattern);
37
38                 if (p->flags & PATTERN_FLAG_MUSTBEDIR)
39                         fprintf(fp, "/");
40
41                 fprintf(fp, "\n");
42         }
43 }
44
45 static char const * const builtin_sparse_checkout_list_usage[] = {
46         N_("git sparse-checkout list"),
47         NULL
48 };
49
50 static int sparse_checkout_list(int argc, const char **argv)
51 {
52         static struct option builtin_sparse_checkout_list_options[] = {
53                 OPT_END(),
54         };
55         struct pattern_list pl;
56         char *sparse_filename;
57         int res;
58
59         argc = parse_options(argc, argv, NULL,
60                              builtin_sparse_checkout_list_options,
61                              builtin_sparse_checkout_list_usage, 0);
62
63         memset(&pl, 0, sizeof(pl));
64
65         pl.use_cone_patterns = core_sparse_checkout_cone;
66
67         sparse_filename = get_sparse_checkout_filename();
68         res = add_patterns_from_file_to_list(sparse_filename, "", 0, &pl, NULL);
69         free(sparse_filename);
70
71         if (res < 0) {
72                 warning(_("this worktree is not sparse (sparse-checkout file may not exist)"));
73                 return 0;
74         }
75
76         if (pl.use_cone_patterns) {
77                 int i;
78                 struct pattern_entry *pe;
79                 struct hashmap_iter iter;
80                 struct string_list sl = STRING_LIST_INIT_DUP;
81
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);
85                 }
86
87                 string_list_sort(&sl);
88
89                 for (i = 0; i < sl.nr; i++) {
90                         quote_c_style(sl.items[i].string, NULL, stdout, 0);
91                         printf("\n");
92                 }
93
94                 return 0;
95         }
96
97         write_patterns_to_file(stdout, &pl);
98         clear_pattern_list(&pl);
99
100         return 0;
101 }
102
103 static int update_working_directory(struct pattern_list *pl)
104 {
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;
109
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;
113
114         r->index->sparse_checkout_patterns = pl;
115
116         memset(&o, 0, sizeof(o));
117         o.verbose_update = isatty(2);
118         o.update = 1;
119         o.head_idx = -1;
120         o.src_index = r->index;
121         o.dst_index = r->index;
122         o.skip_sparse_checkout = 0;
123         o.pl = pl;
124
125         setup_work_tree();
126
127         repo_hold_locked_index(r, &lock_file, LOCK_DIE_ON_ERROR);
128
129         setup_unpack_trees_porcelain(&o, "sparse-checkout");
130         result = update_sparsity(&o);
131         clear_unpack_trees_porcelain(&o);
132
133         if (result == UPDATE_SPARSITY_WARNINGS)
134                 /*
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.
137                  */
138                 result = UPDATE_SPARSITY_SUCCESS;
139         if (result == UPDATE_SPARSITY_SUCCESS)
140                 write_locked_index(r->index, &lock_file, COMMIT_LOCK);
141         else
142                 rollback_lock_file(&lock_file);
143
144         r->index->sparse_checkout_patterns = NULL;
145         return result;
146 }
147
148 static char *escaped_pattern(char *pattern)
149 {
150         char *p = pattern;
151         struct strbuf final = STRBUF_INIT;
152
153         while (*p) {
154                 if (is_glob_special(*p))
155                         strbuf_addch(&final, '\\');
156
157                 strbuf_addch(&final, *p);
158                 p++;
159         }
160
161         return strbuf_detach(&final, NULL);
162 }
163
164 static void write_cone_to_file(FILE *fp, struct pattern_list *pl)
165 {
166         int i;
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;
171
172         hashmap_for_each_entry(&pl->parent_hashmap, &iter, pe, ent) {
173                 if (hashmap_get_entry(&pl->recursive_hashmap, pe, ent, NULL))
174                         continue;
175
176                 if (!hashmap_contains_parent(&pl->recursive_hashmap,
177                                              pe->pattern,
178                                              &parent_pattern))
179                         string_list_insert(&sl, pe->pattern);
180         }
181
182         string_list_sort(&sl);
183         string_list_remove_duplicates(&sl, 0);
184
185         fprintf(fp, "/*\n!/*/\n");
186
187         for (i = 0; i < sl.nr; i++) {
188                 char *pattern = escaped_pattern(sl.items[i].string);
189
190                 if (strlen(pattern))
191                         fprintf(fp, "%s/\n!%s/*/\n", pattern, pattern);
192                 free(pattern);
193         }
194
195         string_list_clear(&sl, 0);
196
197         hashmap_for_each_entry(&pl->recursive_hashmap, &iter, pe, ent) {
198                 if (!hashmap_contains_parent(&pl->recursive_hashmap,
199                                              pe->pattern,
200                                              &parent_pattern))
201                         string_list_insert(&sl, pe->pattern);
202         }
203
204         strbuf_release(&parent_pattern);
205
206         string_list_sort(&sl);
207         string_list_remove_duplicates(&sl, 0);
208
209         for (i = 0; i < sl.nr; i++) {
210                 char *pattern = escaped_pattern(sl.items[i].string);
211                 fprintf(fp, "%s/\n", pattern);
212                 free(pattern);
213         }
214 }
215
216 static int write_patterns_and_update(struct pattern_list *pl)
217 {
218         char *sparse_filename;
219         FILE *fp;
220         int fd;
221         struct lock_file lk = LOCK_INIT;
222         int result;
223
224         sparse_filename = get_sparse_checkout_filename();
225
226         if (safe_create_leading_directories(sparse_filename))
227                 die(_("failed to create directory for sparse-checkout file"));
228
229         fd = hold_lock_file_for_update(&lk, sparse_filename,
230                                       LOCK_DIE_ON_ERROR);
231
232         result = update_working_directory(pl);
233         if (result) {
234                 rollback_lock_file(&lk);
235                 free(sparse_filename);
236                 clear_pattern_list(pl);
237                 update_working_directory(NULL);
238                 return result;
239         }
240
241         fp = xfdopen(fd, "w");
242
243         if (core_sparse_checkout_cone)
244                 write_cone_to_file(fp, pl);
245         else
246                 write_patterns_to_file(fp, pl);
247
248         fflush(fp);
249         commit_lock_file(&lk);
250
251         free(sparse_filename);
252         clear_pattern_list(pl);
253
254         return 0;
255 }
256
257 enum sparse_checkout_mode {
258         MODE_NO_PATTERNS = 0,
259         MODE_ALL_PATTERNS = 1,
260         MODE_CONE_PATTERNS = 2,
261 };
262
263 static int set_config(enum sparse_checkout_mode mode)
264 {
265         const char *config_path;
266
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"));
271                 return 1;
272         }
273
274         config_path = git_path("config.worktree");
275         git_config_set_in_file_gently(config_path,
276                                       "core.sparseCheckout",
277                                       mode ? "true" : NULL);
278
279         git_config_set_in_file_gently(config_path,
280                                       "core.sparseCheckoutCone",
281                                       mode == MODE_CONE_PATTERNS ? "true" : NULL);
282
283         return 0;
284 }
285
286 static char const * const builtin_sparse_checkout_init_usage[] = {
287         N_("git sparse-checkout init [--cone] [--[no-]sparse-index]"),
288         NULL
289 };
290
291 static struct sparse_checkout_init_opts {
292         int cone_mode;
293         int sparse_index;
294 } init_opts;
295
296 static int sparse_checkout_init(int argc, const char **argv)
297 {
298         struct pattern_list pl;
299         char *sparse_filename;
300         int res;
301         struct object_id oid;
302         int mode;
303         struct strbuf pattern = STRBUF_INIT;
304
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")),
310                 OPT_END(),
311         };
312
313         repo_read_index(the_repository);
314
315         init_opts.sparse_index = -1;
316
317         argc = parse_options(argc, argv, NULL,
318                              builtin_sparse_checkout_init_options,
319                              builtin_sparse_checkout_init_usage, 0);
320
321         if (init_opts.cone_mode) {
322                 mode = MODE_CONE_PATTERNS;
323                 core_sparse_checkout_cone = 1;
324         } else
325                 mode = MODE_ALL_PATTERNS;
326
327         if (set_config(mode))
328                 return 1;
329
330         memset(&pl, 0, sizeof(pl));
331
332         sparse_filename = get_sparse_checkout_filename();
333         res = add_patterns_from_file_to_list(sparse_filename, "", 0, &pl, NULL);
334
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"));
338
339                 /* force an index rewrite */
340                 repo_read_index(the_repository);
341                 the_repository->index->updated_workdir = 1;
342         }
343
344         /* If we already have a sparse-checkout file, use it. */
345         if (res >= 0) {
346                 free(sparse_filename);
347                 core_apply_sparse_checkout = 1;
348                 return update_working_directory(NULL);
349         }
350
351         if (get_oid("HEAD", &oid)) {
352                 FILE *fp;
353
354                 /* assume we are in a fresh repo, but update the sparse-checkout file */
355                 fp = xfopen(sparse_filename, "w");
356                 if (!fp)
357                         die(_("failed to open '%s'"), sparse_filename);
358
359                 free(sparse_filename);
360                 fprintf(fp, "/*\n!/*/\n");
361                 fclose(fp);
362                 return 0;
363         }
364
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);
369
370         return write_patterns_and_update(&pl);
371 }
372
373 static void insert_recursive_pattern(struct pattern_list *pl, struct strbuf *path)
374 {
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,
379                            ignore_case ?
380                            strihash(e->pattern) :
381                            strhash(e->pattern));
382
383         hashmap_add(&pl->recursive_hashmap, &e->ent);
384
385         while (e->patternlen) {
386                 char *slash = strrchr(e->pattern, '/');
387                 char *oldpattern = e->pattern;
388                 size_t newlen;
389
390                 if (slash == e->pattern)
391                         break;
392
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,
398                                    ignore_case ?
399                                    strihash(e->pattern) :
400                                    strhash(e->pattern));
401
402                 if (!hashmap_get_entry(&pl->parent_hashmap, e, ent, NULL))
403                         hashmap_add(&pl->parent_hashmap, &e->ent);
404         }
405 }
406
407 static void strbuf_to_cone_pattern(struct strbuf *line, struct pattern_list *pl)
408 {
409         strbuf_trim(line);
410
411         strbuf_trim_trailing_dir_sep(line);
412
413         if (strbuf_normalize_path(line))
414                 die(_("could not normalize path %s"), line->buf);
415
416         if (!line->len)
417                 return;
418
419         if (line->buf[0] != '/')
420                 strbuf_insertstr(line, 0, "/");
421
422         insert_recursive_pattern(pl, line);
423 }
424
425 static char const * const builtin_sparse_checkout_set_usage[] = {
426         N_("git sparse-checkout (set|add) (--stdin | <patterns>)"),
427         NULL
428 };
429
430 static struct sparse_checkout_set_opts {
431         int use_stdin;
432 } set_opts;
433
434 static void add_patterns_from_input(struct pattern_list *pl,
435                                     int argc, const char **argv)
436 {
437         int i;
438         if (core_sparse_checkout_cone) {
439                 struct strbuf line = STRBUF_INIT;
440
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;
444
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'"),
452                                                 line.buf);
453
454                                         strbuf_swap(&unquoted, &line);
455                                 }
456
457                                 strbuf_to_cone_pattern(&line, pl);
458                         }
459
460                         strbuf_release(&unquoted);
461                 } else {
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);
466                         }
467                 }
468         } else {
469                 if (set_opts.use_stdin) {
470                         struct strbuf line = STRBUF_INIT;
471
472                         while (!strbuf_getline(&line, stdin)) {
473                                 size_t len;
474                                 char *buf = strbuf_detach(&line, &len);
475                                 add_pattern(buf, empty_base, 0, pl, 0);
476                         }
477                 } else {
478                         for (i = 0; i < argc; i++)
479                                 add_pattern(argv[i], empty_base, 0, pl, 0);
480                 }
481         }
482 }
483
484 enum modify_type {
485         REPLACE,
486         ADD,
487 };
488
489 static void add_patterns_cone_mode(int argc, const char **argv,
490                                    struct pattern_list *pl)
491 {
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();
497
498         add_patterns_from_input(pl, argc, argv);
499
500         memset(&existing, 0, sizeof(existing));
501         existing.use_cone_patterns = core_sparse_checkout_cone;
502
503         if (add_patterns_from_file_to_list(sparse_filename, "", 0,
504                                            &existing, NULL))
505                 die(_("unable to load existing sparse-checkout patterns"));
506         free(sparse_filename);
507
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);
516                 }
517         }
518
519         clear_pattern_list(&existing);
520         strbuf_release(&buffer);
521 }
522
523 static void add_patterns_literal(int argc, const char **argv,
524                                  struct pattern_list *pl)
525 {
526         char *sparse_filename = get_sparse_checkout_filename();
527         if (add_patterns_from_file_to_list(sparse_filename, "", 0,
528                                            pl, NULL))
529                 die(_("unable to load existing sparse-checkout patterns"));
530         free(sparse_filename);
531         add_patterns_from_input(pl, argc, argv);
532 }
533
534 static int modify_pattern_list(int argc, const char **argv, enum modify_type m)
535 {
536         int result;
537         int changed_config = 0;
538         struct pattern_list *pl = xcalloc(1, sizeof(*pl));
539
540         switch (m) {
541         case ADD:
542                 if (core_sparse_checkout_cone)
543                         add_patterns_cone_mode(argc, argv, pl);
544                 else
545                         add_patterns_literal(argc, argv, pl);
546                 break;
547
548         case REPLACE:
549                 add_patterns_from_input(pl, argc, argv);
550                 break;
551         }
552
553         if (!core_apply_sparse_checkout) {
554                 set_config(MODE_ALL_PATTERNS);
555                 core_apply_sparse_checkout = 1;
556                 changed_config = 1;
557         }
558
559         result = write_patterns_and_update(pl);
560
561         if (result && changed_config)
562                 set_config(MODE_NO_PATTERNS);
563
564         clear_pattern_list(pl);
565         free(pl);
566         return result;
567 }
568
569 static int sparse_checkout_set(int argc, const char **argv, const char *prefix,
570                                enum modify_type m)
571 {
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")),
575                 OPT_END(),
576         };
577
578         repo_read_index(the_repository);
579
580         argc = parse_options(argc, argv, prefix,
581                              builtin_sparse_checkout_set_options,
582                              builtin_sparse_checkout_set_usage,
583                              PARSE_OPT_KEEP_UNKNOWN);
584
585         return modify_pattern_list(argc, argv, m);
586 }
587
588 static char const * const builtin_sparse_checkout_reapply_usage[] = {
589         N_("git sparse-checkout reapply"),
590         NULL
591 };
592
593 static int sparse_checkout_reapply(int argc, const char **argv)
594 {
595         static struct option builtin_sparse_checkout_reapply_options[] = {
596                 OPT_END(),
597         };
598
599         argc = parse_options(argc, argv, NULL,
600                              builtin_sparse_checkout_reapply_options,
601                              builtin_sparse_checkout_reapply_usage, 0);
602
603         repo_read_index(the_repository);
604         return update_working_directory(NULL);
605 }
606
607 static char const * const builtin_sparse_checkout_disable_usage[] = {
608         N_("git sparse-checkout disable"),
609         NULL
610 };
611
612 static int sparse_checkout_disable(int argc, const char **argv)
613 {
614         static struct option builtin_sparse_checkout_disable_options[] = {
615                 OPT_END(),
616         };
617         struct pattern_list pl;
618         struct strbuf match_all = STRBUF_INIT;
619
620         argc = parse_options(argc, argv, NULL,
621                              builtin_sparse_checkout_disable_options,
622                              builtin_sparse_checkout_disable_usage, 0);
623
624         repo_read_index(the_repository);
625
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;
631
632         strbuf_addstr(&match_all, "/*");
633         add_pattern(strbuf_detach(&match_all, NULL), empty_base, 0, &pl, 0);
634
635         if (update_working_directory(&pl))
636                 die(_("error while refreshing working directory"));
637
638         clear_pattern_list(&pl);
639         return set_config(MODE_NO_PATTERNS);
640 }
641
642 int cmd_sparse_checkout(int argc, const char **argv, const char *prefix)
643 {
644         static struct option builtin_sparse_checkout_options[] = {
645                 OPT_END(),
646         };
647
648         if (argc == 2 && !strcmp(argv[1], "-h"))
649                 usage_with_options(builtin_sparse_checkout_usage,
650                                    builtin_sparse_checkout_options);
651
652         argc = parse_options(argc, argv, prefix,
653                              builtin_sparse_checkout_options,
654                              builtin_sparse_checkout_usage,
655                              PARSE_OPT_STOP_AT_NON_OPTION);
656
657         git_config(git_default_config, NULL);
658
659         if (argc > 0) {
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);
672         }
673
674         usage_with_options(builtin_sparse_checkout_usage,
675                            builtin_sparse_checkout_options);
676 }