2019-11-22 01:04:33 +03:00
|
|
|
#include "builtin.h"
|
|
|
|
#include "config.h"
|
|
|
|
#include "dir.h"
|
|
|
|
#include "parse-options.h"
|
|
|
|
#include "pathspec.h"
|
|
|
|
#include "repository.h"
|
|
|
|
#include "run-command.h"
|
|
|
|
#include "strbuf.h"
|
2019-11-22 01:04:42 +03:00
|
|
|
#include "string-list.h"
|
2019-11-22 01:04:33 +03:00
|
|
|
|
|
|
|
static char const * const builtin_sparse_checkout_usage[] = {
|
2019-11-22 01:04:38 +03:00
|
|
|
N_("git sparse-checkout (init|list|set|disable) <options>"),
|
2019-11-22 01:04:33 +03:00
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
static char *get_sparse_checkout_filename(void)
|
|
|
|
{
|
|
|
|
return git_pathdup("info/sparse-checkout");
|
|
|
|
}
|
|
|
|
|
|
|
|
static void write_patterns_to_file(FILE *fp, struct pattern_list *pl)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < pl->nr; i++) {
|
|
|
|
struct path_pattern *p = pl->patterns[i];
|
|
|
|
|
|
|
|
if (p->flags & PATTERN_FLAG_NEGATIVE)
|
|
|
|
fprintf(fp, "!");
|
|
|
|
|
|
|
|
fprintf(fp, "%s", p->pattern);
|
|
|
|
|
|
|
|
if (p->flags & PATTERN_FLAG_MUSTBEDIR)
|
|
|
|
fprintf(fp, "/");
|
|
|
|
|
|
|
|
fprintf(fp, "\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static int sparse_checkout_list(int argc, const char **argv)
|
|
|
|
{
|
|
|
|
struct pattern_list pl;
|
|
|
|
char *sparse_filename;
|
|
|
|
int res;
|
|
|
|
|
|
|
|
memset(&pl, 0, sizeof(pl));
|
|
|
|
|
|
|
|
sparse_filename = get_sparse_checkout_filename();
|
|
|
|
res = add_patterns_from_file_to_list(sparse_filename, "", 0, &pl, NULL);
|
|
|
|
free(sparse_filename);
|
|
|
|
|
|
|
|
if (res < 0) {
|
|
|
|
warning(_("this worktree is not sparse (sparse-checkout file may not exist)"));
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
write_patterns_to_file(stdout, &pl);
|
|
|
|
clear_pattern_list(&pl);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2019-11-22 01:04:34 +03:00
|
|
|
static int update_working_directory(void)
|
|
|
|
{
|
|
|
|
struct argv_array argv = ARGV_ARRAY_INIT;
|
|
|
|
int result = 0;
|
|
|
|
argv_array_pushl(&argv, "read-tree", "-m", "-u", "HEAD", NULL);
|
|
|
|
|
|
|
|
if (run_command_v_opt(argv.argv, RUN_GIT_CMD)) {
|
2019-11-22 01:04:36 +03:00
|
|
|
error(_("failed to update index with new sparse-checkout patterns"));
|
2019-11-22 01:04:34 +03:00
|
|
|
result = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
argv_array_clear(&argv);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2019-11-22 01:04:42 +03:00
|
|
|
static void write_cone_to_file(FILE *fp, struct pattern_list *pl)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
struct pattern_entry *pe;
|
|
|
|
struct hashmap_iter iter;
|
|
|
|
struct string_list sl = STRING_LIST_INIT_DUP;
|
|
|
|
|
|
|
|
hashmap_for_each_entry(&pl->parent_hashmap, &iter, pe, ent)
|
|
|
|
string_list_insert(&sl, pe->pattern);
|
|
|
|
|
|
|
|
string_list_sort(&sl);
|
|
|
|
string_list_remove_duplicates(&sl, 0);
|
|
|
|
|
|
|
|
fprintf(fp, "/*\n!/*/\n");
|
|
|
|
|
|
|
|
for (i = 0; i < sl.nr; i++) {
|
|
|
|
char *pattern = sl.items[i].string;
|
|
|
|
|
|
|
|
if (strlen(pattern))
|
|
|
|
fprintf(fp, "%s/\n!%s/*/\n", pattern, pattern);
|
|
|
|
}
|
|
|
|
|
|
|
|
string_list_clear(&sl, 0);
|
|
|
|
|
|
|
|
hashmap_for_each_entry(&pl->recursive_hashmap, &iter, pe, ent)
|
|
|
|
string_list_insert(&sl, pe->pattern);
|
|
|
|
|
|
|
|
string_list_sort(&sl);
|
|
|
|
string_list_remove_duplicates(&sl, 0);
|
|
|
|
|
|
|
|
for (i = 0; i < sl.nr; i++) {
|
|
|
|
char *pattern = sl.items[i].string;
|
|
|
|
fprintf(fp, "%s/\n", pattern);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static int write_patterns_and_update(struct pattern_list *pl)
|
|
|
|
{
|
|
|
|
char *sparse_filename;
|
|
|
|
FILE *fp;
|
|
|
|
|
|
|
|
sparse_filename = get_sparse_checkout_filename();
|
|
|
|
fp = fopen(sparse_filename, "w");
|
|
|
|
|
|
|
|
if (core_sparse_checkout_cone)
|
|
|
|
write_cone_to_file(fp, pl);
|
|
|
|
else
|
|
|
|
write_patterns_to_file(fp, pl);
|
|
|
|
|
|
|
|
fclose(fp);
|
|
|
|
free(sparse_filename);
|
|
|
|
|
|
|
|
return update_working_directory();
|
|
|
|
}
|
|
|
|
|
2019-11-22 01:04:34 +03:00
|
|
|
enum sparse_checkout_mode {
|
|
|
|
MODE_NO_PATTERNS = 0,
|
|
|
|
MODE_ALL_PATTERNS = 1,
|
2019-11-22 01:04:42 +03:00
|
|
|
MODE_CONE_PATTERNS = 2,
|
2019-11-22 01:04:34 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
static int set_config(enum sparse_checkout_mode mode)
|
|
|
|
{
|
|
|
|
const char *config_path;
|
|
|
|
|
|
|
|
if (git_config_set_gently("extensions.worktreeConfig", "true")) {
|
|
|
|
error(_("failed to set extensions.worktreeConfig setting"));
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
config_path = git_path("config.worktree");
|
|
|
|
git_config_set_in_file_gently(config_path,
|
|
|
|
"core.sparseCheckout",
|
|
|
|
mode ? "true" : NULL);
|
|
|
|
|
2019-11-22 01:04:42 +03:00
|
|
|
git_config_set_in_file_gently(config_path,
|
|
|
|
"core.sparseCheckoutCone",
|
|
|
|
mode == MODE_CONE_PATTERNS ? "true" : NULL);
|
|
|
|
|
2019-11-22 01:04:34 +03:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2019-11-22 01:04:42 +03:00
|
|
|
static char const * const builtin_sparse_checkout_init_usage[] = {
|
|
|
|
N_("git sparse-checkout init [--cone]"),
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct sparse_checkout_init_opts {
|
|
|
|
int cone_mode;
|
|
|
|
} init_opts;
|
|
|
|
|
2019-11-22 01:04:34 +03:00
|
|
|
static int sparse_checkout_init(int argc, const char **argv)
|
|
|
|
{
|
|
|
|
struct pattern_list pl;
|
|
|
|
char *sparse_filename;
|
|
|
|
FILE *fp;
|
|
|
|
int res;
|
2019-11-22 01:04:35 +03:00
|
|
|
struct object_id oid;
|
2019-11-22 01:04:42 +03:00
|
|
|
int mode;
|
2019-11-22 01:04:34 +03:00
|
|
|
|
2019-11-22 01:04:42 +03:00
|
|
|
static struct option builtin_sparse_checkout_init_options[] = {
|
|
|
|
OPT_BOOL(0, "cone", &init_opts.cone_mode,
|
|
|
|
N_("initialize the sparse-checkout in cone mode")),
|
|
|
|
OPT_END(),
|
|
|
|
};
|
|
|
|
|
|
|
|
argc = parse_options(argc, argv, NULL,
|
|
|
|
builtin_sparse_checkout_init_options,
|
|
|
|
builtin_sparse_checkout_init_usage, 0);
|
|
|
|
|
|
|
|
mode = init_opts.cone_mode ? MODE_CONE_PATTERNS : MODE_ALL_PATTERNS;
|
|
|
|
|
|
|
|
if (set_config(mode))
|
2019-11-22 01:04:34 +03:00
|
|
|
return 1;
|
|
|
|
|
|
|
|
memset(&pl, 0, sizeof(pl));
|
|
|
|
|
|
|
|
sparse_filename = get_sparse_checkout_filename();
|
|
|
|
res = add_patterns_from_file_to_list(sparse_filename, "", 0, &pl, NULL);
|
|
|
|
|
|
|
|
/* If we already have a sparse-checkout file, use it. */
|
|
|
|
if (res >= 0) {
|
|
|
|
free(sparse_filename);
|
|
|
|
goto reset_dir;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* initial mode: all blobs at root */
|
|
|
|
fp = xfopen(sparse_filename, "w");
|
|
|
|
if (!fp)
|
|
|
|
die(_("failed to open '%s'"), sparse_filename);
|
|
|
|
|
|
|
|
free(sparse_filename);
|
|
|
|
fprintf(fp, "/*\n!/*/\n");
|
|
|
|
fclose(fp);
|
|
|
|
|
2019-11-22 01:04:35 +03:00
|
|
|
if (get_oid("HEAD", &oid)) {
|
|
|
|
/* assume we are in a fresh repo */
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2019-11-22 01:04:34 +03:00
|
|
|
reset_dir:
|
|
|
|
return update_working_directory();
|
|
|
|
}
|
|
|
|
|
2019-11-22 01:04:42 +03:00
|
|
|
static void insert_recursive_pattern(struct pattern_list *pl, struct strbuf *path)
|
2019-11-22 01:04:36 +03:00
|
|
|
{
|
2019-11-22 01:04:42 +03:00
|
|
|
struct pattern_entry *e = xmalloc(sizeof(*e));
|
|
|
|
e->patternlen = path->len;
|
|
|
|
e->pattern = strbuf_detach(path, NULL);
|
|
|
|
hashmap_entry_init(&e->ent, memhash(e->pattern, e->patternlen));
|
2019-11-22 01:04:36 +03:00
|
|
|
|
2019-11-22 01:04:42 +03:00
|
|
|
hashmap_add(&pl->recursive_hashmap, &e->ent);
|
2019-11-22 01:04:36 +03:00
|
|
|
|
2019-11-22 01:04:42 +03:00
|
|
|
while (e->patternlen) {
|
|
|
|
char *slash = strrchr(e->pattern, '/');
|
|
|
|
char *oldpattern = e->pattern;
|
|
|
|
size_t newlen;
|
|
|
|
|
|
|
|
if (slash == e->pattern)
|
|
|
|
break;
|
|
|
|
|
|
|
|
newlen = slash - e->pattern;
|
|
|
|
e = xmalloc(sizeof(struct pattern_entry));
|
|
|
|
e->patternlen = newlen;
|
|
|
|
e->pattern = xstrndup(oldpattern, newlen);
|
|
|
|
hashmap_entry_init(&e->ent, memhash(e->pattern, e->patternlen));
|
|
|
|
|
|
|
|
if (!hashmap_get_entry(&pl->parent_hashmap, e, ent, NULL))
|
|
|
|
hashmap_add(&pl->parent_hashmap, &e->ent);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void strbuf_to_cone_pattern(struct strbuf *line, struct pattern_list *pl)
|
|
|
|
{
|
|
|
|
strbuf_trim(line);
|
|
|
|
|
|
|
|
strbuf_trim_trailing_dir_sep(line);
|
|
|
|
|
|
|
|
if (!line->len)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (line->buf[0] != '/')
|
|
|
|
strbuf_insert(line, 0, "/", 1);
|
|
|
|
|
|
|
|
insert_recursive_pattern(pl, line);
|
2019-11-22 01:04:36 +03:00
|
|
|
}
|
|
|
|
|
2019-11-22 01:04:37 +03:00
|
|
|
static char const * const builtin_sparse_checkout_set_usage[] = {
|
|
|
|
N_("git sparse-checkout set (--stdin | <patterns>)"),
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct sparse_checkout_set_opts {
|
|
|
|
int use_stdin;
|
|
|
|
} set_opts;
|
|
|
|
|
2019-11-22 01:04:36 +03:00
|
|
|
static int sparse_checkout_set(int argc, const char **argv, const char *prefix)
|
|
|
|
{
|
|
|
|
static const char *empty_base = "";
|
|
|
|
int i;
|
|
|
|
struct pattern_list pl;
|
|
|
|
int result;
|
|
|
|
int changed_config = 0;
|
2019-11-22 01:04:37 +03:00
|
|
|
|
|
|
|
static struct option builtin_sparse_checkout_set_options[] = {
|
|
|
|
OPT_BOOL(0, "stdin", &set_opts.use_stdin,
|
|
|
|
N_("read patterns from standard in")),
|
|
|
|
OPT_END(),
|
|
|
|
};
|
|
|
|
|
2019-11-22 01:04:36 +03:00
|
|
|
memset(&pl, 0, sizeof(pl));
|
|
|
|
|
2019-11-22 01:04:37 +03:00
|
|
|
argc = parse_options(argc, argv, prefix,
|
|
|
|
builtin_sparse_checkout_set_options,
|
|
|
|
builtin_sparse_checkout_set_usage,
|
|
|
|
PARSE_OPT_KEEP_UNKNOWN);
|
|
|
|
|
2019-11-22 01:04:42 +03:00
|
|
|
if (core_sparse_checkout_cone) {
|
2019-11-22 01:04:37 +03:00
|
|
|
struct strbuf line = STRBUF_INIT;
|
|
|
|
|
2019-11-22 01:04:42 +03:00
|
|
|
hashmap_init(&pl.recursive_hashmap, pl_hashmap_cmp, NULL, 0);
|
|
|
|
hashmap_init(&pl.parent_hashmap, pl_hashmap_cmp, NULL, 0);
|
|
|
|
|
|
|
|
if (set_opts.use_stdin) {
|
|
|
|
while (!strbuf_getline(&line, stdin))
|
|
|
|
strbuf_to_cone_pattern(&line, &pl);
|
|
|
|
} else {
|
|
|
|
for (i = 0; i < argc; i++) {
|
|
|
|
strbuf_setlen(&line, 0);
|
|
|
|
strbuf_addstr(&line, argv[i]);
|
|
|
|
strbuf_to_cone_pattern(&line, &pl);
|
|
|
|
}
|
2019-11-22 01:04:37 +03:00
|
|
|
}
|
|
|
|
} else {
|
2019-11-22 01:04:42 +03:00
|
|
|
if (set_opts.use_stdin) {
|
|
|
|
struct strbuf line = STRBUF_INIT;
|
|
|
|
|
|
|
|
while (!strbuf_getline(&line, stdin)) {
|
|
|
|
size_t len;
|
|
|
|
char *buf = strbuf_detach(&line, &len);
|
|
|
|
add_pattern(buf, empty_base, 0, &pl, 0);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
for (i = 0; i < argc; i++)
|
|
|
|
add_pattern(argv[i], empty_base, 0, &pl, 0);
|
|
|
|
}
|
2019-11-22 01:04:37 +03:00
|
|
|
}
|
2019-11-22 01:04:36 +03:00
|
|
|
|
|
|
|
if (!core_apply_sparse_checkout) {
|
|
|
|
set_config(MODE_ALL_PATTERNS);
|
|
|
|
core_apply_sparse_checkout = 1;
|
|
|
|
changed_config = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
result = write_patterns_and_update(&pl);
|
|
|
|
|
|
|
|
if (result && changed_config)
|
|
|
|
set_config(MODE_NO_PATTERNS);
|
|
|
|
|
|
|
|
clear_pattern_list(&pl);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2019-11-22 01:04:38 +03:00
|
|
|
static int sparse_checkout_disable(int argc, const char **argv)
|
|
|
|
{
|
|
|
|
char *sparse_filename;
|
|
|
|
FILE *fp;
|
|
|
|
|
|
|
|
if (set_config(MODE_ALL_PATTERNS))
|
|
|
|
die(_("failed to change config"));
|
|
|
|
|
|
|
|
sparse_filename = get_sparse_checkout_filename();
|
|
|
|
fp = xfopen(sparse_filename, "w");
|
|
|
|
fprintf(fp, "/*\n");
|
|
|
|
fclose(fp);
|
|
|
|
|
|
|
|
if (update_working_directory())
|
|
|
|
die(_("error while refreshing working directory"));
|
|
|
|
|
|
|
|
unlink(sparse_filename);
|
|
|
|
free(sparse_filename);
|
|
|
|
|
|
|
|
return set_config(MODE_NO_PATTERNS);
|
|
|
|
}
|
|
|
|
|
2019-11-22 01:04:33 +03:00
|
|
|
int cmd_sparse_checkout(int argc, const char **argv, const char *prefix)
|
|
|
|
{
|
|
|
|
static struct option builtin_sparse_checkout_options[] = {
|
|
|
|
OPT_END(),
|
|
|
|
};
|
|
|
|
|
|
|
|
if (argc == 2 && !strcmp(argv[1], "-h"))
|
|
|
|
usage_with_options(builtin_sparse_checkout_usage,
|
|
|
|
builtin_sparse_checkout_options);
|
|
|
|
|
|
|
|
argc = parse_options(argc, argv, prefix,
|
|
|
|
builtin_sparse_checkout_options,
|
|
|
|
builtin_sparse_checkout_usage,
|
|
|
|
PARSE_OPT_STOP_AT_NON_OPTION);
|
|
|
|
|
|
|
|
git_config(git_default_config, NULL);
|
|
|
|
|
|
|
|
if (argc > 0) {
|
|
|
|
if (!strcmp(argv[0], "list"))
|
|
|
|
return sparse_checkout_list(argc, argv);
|
2019-11-22 01:04:34 +03:00
|
|
|
if (!strcmp(argv[0], "init"))
|
|
|
|
return sparse_checkout_init(argc, argv);
|
2019-11-22 01:04:36 +03:00
|
|
|
if (!strcmp(argv[0], "set"))
|
|
|
|
return sparse_checkout_set(argc, argv, prefix);
|
2019-11-22 01:04:38 +03:00
|
|
|
if (!strcmp(argv[0], "disable"))
|
|
|
|
return sparse_checkout_disable(argc, argv);
|
2019-11-22 01:04:33 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
usage_with_options(builtin_sparse_checkout_usage,
|
|
|
|
builtin_sparse_checkout_options);
|
|
|
|
}
|