Skip to content

Commit ea19289

Browse files
pyokagangitster
authored andcommitted
path.c: implement xdg_config_home()
The XDG base dir spec[1] specifies that configuration files be stored in a subdirectory in $XDG_CONFIG_HOME. To construct such a configuration file path, home_config_paths() can be used. However, home_config_paths() combines distinct functionality: 1. Retrieve the home git config file path ~/.gitconfig 2. Construct the XDG config path of the file specified by `file`. This function was introduced in commit 21cf322 ("read (but not write) from $XDG_CONFIG_HOME/git/config file"). While the intention of the function was to allow the home directory configuration file path and the xdg directory configuration file path to be retrieved with one function call, the hard-coding of the path ~/.gitconfig prevents it from being used for other configuration files. Furthermore, retrieving a file path relative to the user's home directory can be done with expand_user_path(). Hence, it can be seen that home_config_paths() introduces unnecessary complexity, especially if a user just wants to retrieve the xdg config file path. As such, implement a simpler function xdg_config_home() for constructing the XDG base dir spec configuration file path. This function, together with expand_user_path(), can replace all uses of home_config_paths(). [1] http://standards.freedesktop.org/basedir-spec/basedir-spec-0.7.html Helped-by: Eric Sunshine <[email protected]> Signed-off-by: Paul Tan <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent efee598 commit ea19289

File tree

2 files changed

+22
-0
lines changed

2 files changed

+22
-0
lines changed

cache.h

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -828,6 +828,13 @@ char *strip_path_suffix(const char *path, const char *suffix);
828828
int daemon_avoid_alias(const char *path);
829829
extern int is_ntfs_dotgit(const char *name);
830830

831+
/**
832+
* Return a newly allocated string with the evaluation of
833+
* "$XDG_CONFIG_HOME/git/$filename" if $XDG_CONFIG_HOME is non-empty, otherwise
834+
* "$HOME/.config/git/$filename". Return NULL upon error.
835+
*/
836+
extern char *xdg_config_home(const char *filename);
837+
831838
/* object replacement */
832839
#define LOOKUP_REPLACE_OBJECT 1
833840
extern void *read_sha1_file_extended(const unsigned char *sha1, enum object_type *type, unsigned long *size, unsigned flag);

path.c

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -856,3 +856,18 @@ int is_ntfs_dotgit(const char *name)
856856
len = -1;
857857
}
858858
}
859+
860+
char *xdg_config_home(const char *filename)
861+
{
862+
const char *home, *config_home;
863+
864+
assert(filename);
865+
config_home = getenv("XDG_CONFIG_HOME");
866+
if (config_home && *config_home)
867+
return mkpathdup("%s/git/%s", config_home, filename);
868+
869+
home = getenv("HOME");
870+
if (home)
871+
return mkpathdup("%s/.config/git/%s", home, filename);
872+
return NULL;
873+
}

0 commit comments

Comments
 (0)