mirror of
https://git.proxmox.com/git/libgit2
synced 2025-05-20 22:05:37 +00:00

The goal of this work is to expose the search logic for "global", "system", and "xdg" files through the git_libgit2_opts() interface. Behind the scenes, I changed the logic for finding files to have a notion of a git_strarray that represents a search path and to store a separate search path for each of the three tiers of config file. For each tier, I implemented a function to initialize it to default values (generally based on environment variables), and then general interfaces to get it, set it, reset it, and prepend new directories to it. Next, I exposed these interfaces through the git_libgit2_opts interface, reusing the GIT_CONFIG_LEVEL_SYSTEM, etc., constants for the user to control which search path they were modifying. There are alternative designs for the opts interface / argument ordering, so I'm putting this phase out for discussion. Additionally, I ended up doing a little bit of clean up regarding attr.h and attr_file.h, adding a new attrcache.h so the other two files wouldn't have to be included in so many places.
46 lines
1.3 KiB
C
46 lines
1.3 KiB
C
/*
|
|
* Copyright (C) the libgit2 contributors. All rights reserved.
|
|
*
|
|
* This file is part of libgit2, distributed under the GNU GPL v2 with
|
|
* a Linking Exception. For full terms see the included COPYING file.
|
|
*/
|
|
#ifndef INCLUDE_attr_h__
|
|
#define INCLUDE_attr_h__
|
|
|
|
#include "attr_file.h"
|
|
|
|
#define GIT_ATTR_CONFIG "core.attributesfile"
|
|
#define GIT_IGNORE_CONFIG "core.excludesfile"
|
|
|
|
typedef int (*git_attr_file_parser)(
|
|
git_repository *, void *, const char *, git_attr_file *);
|
|
|
|
extern int git_attr_cache__insert_macro(
|
|
git_repository *repo, git_attr_rule *macro);
|
|
|
|
extern git_attr_rule *git_attr_cache__lookup_macro(
|
|
git_repository *repo, const char *name);
|
|
|
|
extern int git_attr_cache__push_file(
|
|
git_repository *repo,
|
|
const char *base,
|
|
const char *filename,
|
|
git_attr_file_source source,
|
|
git_attr_file_parser parse,
|
|
void *parsedata, /* passed through to parse function */
|
|
git_vector *stack);
|
|
|
|
extern int git_attr_cache__internal_file(
|
|
git_repository *repo,
|
|
const char *key,
|
|
git_attr_file **file_ptr);
|
|
|
|
/* returns true if path is in cache */
|
|
extern bool git_attr_cache__is_cached(
|
|
git_repository *repo, git_attr_file_source source, const char *path);
|
|
|
|
extern int git_attr_cache__decide_sources(
|
|
uint32_t flags, bool has_wd, bool has_index, git_attr_file_source *srcs);
|
|
|
|
#endif
|