mirror of
https://github.com/git/git.git
synced 2024-12-04 15:34:05 +08:00
e7da938570
Use of the `the_repository` variable is deprecated nowadays, and we slowly but steadily convert the codebase to not use it anymore. Instead, callers should be passing down the repository to work on via parameters. It is hard though to prove that a given code unit does not use this variable anymore. The most trivial case, merely demonstrating that there is no direct use of `the_repository`, is already a bit of a pain during code reviews as the reviewer needs to manually verify claims made by the patch author. The bigger problem though is that we have many interfaces that implicitly rely on `the_repository`. Introduce a new `USE_THE_REPOSITORY_VARIABLE` macro that allows code units to opt into usage of `the_repository`. The intent of this macro is to demonstrate that a certain code unit does not use this variable anymore, and to keep it from new dependencies on it in future changes, be it explicit or implicit For now, the macro only guards `the_repository` itself as well as `the_hash_algo`. There are many more known interfaces where we have an implicit dependency on `the_repository`, but those are not guarded at the current point in time. Over time though, we should start to add guards as required (or even better, just remove them). Define the macro as required in our code units. As expected, most of our code still relies on the global variable. Nearly all of our builtins rely on the variable as there is no way yet to pass `the_repository` to their entry point. For now, declare the macro in "biultin.h" to keep the required changes at least a little bit more contained. Signed-off-by: Patrick Steinhardt <ps@pks.im> Signed-off-by: Junio C Hamano <gitster@pobox.com>
73 lines
1.9 KiB
C
73 lines
1.9 KiB
C
#define USE_THE_REPOSITORY_VARIABLE
|
|
|
|
#include "test-tool.h"
|
|
#include "dir.h"
|
|
#include "hex.h"
|
|
#include "read-cache-ll.h"
|
|
#include "repository.h"
|
|
#include "setup.h"
|
|
|
|
static int compare_untracked(const void *a_, const void *b_)
|
|
{
|
|
const char *const *a = a_;
|
|
const char *const *b = b_;
|
|
return strcmp(*a, *b);
|
|
}
|
|
|
|
static int compare_dir(const void *a_, const void *b_)
|
|
{
|
|
const struct untracked_cache_dir *const *a = a_;
|
|
const struct untracked_cache_dir *const *b = b_;
|
|
return strcmp((*a)->name, (*b)->name);
|
|
}
|
|
|
|
static void dump(struct untracked_cache_dir *ucd, struct strbuf *base)
|
|
{
|
|
int i, len;
|
|
QSORT(ucd->untracked, ucd->untracked_nr, compare_untracked);
|
|
QSORT(ucd->dirs, ucd->dirs_nr, compare_dir);
|
|
len = base->len;
|
|
strbuf_addf(base, "%s/", ucd->name);
|
|
printf("%s %s", base->buf,
|
|
oid_to_hex(&ucd->exclude_oid));
|
|
if (ucd->recurse)
|
|
fputs(" recurse", stdout);
|
|
if (ucd->check_only)
|
|
fputs(" check_only", stdout);
|
|
if (ucd->valid)
|
|
fputs(" valid", stdout);
|
|
printf("\n");
|
|
for (i = 0; i < ucd->untracked_nr; i++)
|
|
printf("%s\n", ucd->untracked[i]);
|
|
for (i = 0; i < ucd->dirs_nr; i++)
|
|
dump(ucd->dirs[i], base);
|
|
strbuf_setlen(base, len);
|
|
}
|
|
|
|
int cmd__dump_untracked_cache(int ac UNUSED, const char **av UNUSED)
|
|
{
|
|
struct untracked_cache *uc;
|
|
struct strbuf base = STRBUF_INIT;
|
|
|
|
/* Set core.untrackedCache=keep before setup_git_directory() */
|
|
xsetenv("GIT_CONFIG_COUNT", "1", 1);
|
|
xsetenv("GIT_CONFIG_KEY_0", "core.untrackedCache", 1);
|
|
xsetenv("GIT_CONFIG_VALUE_0", "keep", 1);
|
|
|
|
setup_git_directory();
|
|
if (repo_read_index(the_repository) < 0)
|
|
die("unable to read index file");
|
|
uc = the_repository->index->untracked;
|
|
if (!uc) {
|
|
printf("no untracked cache\n");
|
|
return 0;
|
|
}
|
|
printf("info/exclude %s\n", oid_to_hex(&uc->ss_info_exclude.oid));
|
|
printf("core.excludesfile %s\n", oid_to_hex(&uc->ss_excludes_file.oid));
|
|
printf("exclude_per_dir %s\n", uc->exclude_per_dir);
|
|
printf("flags %08x\n", uc->dir_flags);
|
|
if (uc->root)
|
|
dump(uc->root, &base);
|
|
return 0;
|
|
}
|