stdpaths: Add documentation

This commit is contained in:
ZyX
2015-10-17 21:30:52 +03:00
parent 89a10b3e7c
commit aadaa1fed4
2 changed files with 31 additions and 6 deletions

View File

@@ -5,6 +5,7 @@
#include "nvim/path.h" #include "nvim/path.h"
#include "nvim/memory.h" #include "nvim/memory.h"
/// Names of the environment variables, mapped to XDGVarType values
static const char *xdg_env_vars[] = { static const char *xdg_env_vars[] = {
[kXDGConfigHome] = "XDG_CONFIG_HOME", [kXDGConfigHome] = "XDG_CONFIG_HOME",
[kXDGDataHome] = "XDG_DATA_HOME", [kXDGDataHome] = "XDG_DATA_HOME",
@@ -14,6 +15,9 @@ static const char *xdg_env_vars[] = {
[kXDGDataDirs] = "XDG_DATA_DIRS", [kXDGDataDirs] = "XDG_DATA_DIRS",
}; };
/// Defaults for XDGVarType values
///
/// Used in case environment variables contain nothing. Need to be expanded.
static const char *const xdg_defaults[] = { static const char *const xdg_defaults[] = {
// Windows, Apple stuff are just shims right now // Windows, Apple stuff are just shims right now
#ifdef WIN32 #ifdef WIN32
@@ -37,6 +41,11 @@ static const char *const xdg_defaults[] = {
}; };
#endif #endif
/// Return XDG variable value
///
/// @param[in] idx XDG variable to use.
///
/// @return [allocated] variable value.
char *stdpaths_get_xdg_var(const XDGVarType idx) char *stdpaths_get_xdg_var(const XDGVarType idx)
FUNC_ATTR_WARN_UNUSED_RESULT FUNC_ATTR_WARN_UNUSED_RESULT
{ {
@@ -54,6 +63,11 @@ char *stdpaths_get_xdg_var(const XDGVarType idx)
return ret; return ret;
} }
/// Return nvim-specific XDG directory subpath
///
/// @param[in] idx XDG directory to use.
///
/// @return [allocated] `{xdg_directory}/nvim`
static char *get_xdg_home(const XDGVarType idx) static char *get_xdg_home(const XDGVarType idx)
FUNC_ATTR_WARN_UNUSED_RESULT FUNC_ATTR_WARN_UNUSED_RESULT
{ {
@@ -64,12 +78,22 @@ static char *get_xdg_home(const XDGVarType idx)
return dir; return dir;
} }
/// Return subpath of $XDG_CONFIG_HOME
///
/// @param[in] fname New component of the path.
///
/// @return [allocated] `$XDG_CONFIG_HOME/nvim/{fname}`
char *stdpaths_user_conf_subpath(const char *fname) char *stdpaths_user_conf_subpath(const char *fname)
FUNC_ATTR_WARN_UNUSED_RESULT FUNC_ATTR_NONNULL_ALL FUNC_ATTR_WARN_UNUSED_RESULT FUNC_ATTR_NONNULL_ALL
{ {
return concat_fnames_realloc(get_xdg_home(kXDGConfigHome), fname, true); return concat_fnames_realloc(get_xdg_home(kXDGConfigHome), fname, true);
} }
/// Return subpath of $XDG_DATA_HOME
///
/// @param[in] fname New component of the path.
///
/// @return [allocated] `$XDG_DATA_HOME/nvim/{fname}`
char *stdpaths_user_data_subpath(const char *fname) char *stdpaths_user_data_subpath(const char *fname)
FUNC_ATTR_WARN_UNUSED_RESULT FUNC_ATTR_NONNULL_ALL FUNC_ATTR_WARN_UNUSED_RESULT FUNC_ATTR_NONNULL_ALL
{ {

View File

@@ -1,13 +1,14 @@
#ifndef NVIM_OS_STDPATHS_DEFS_H #ifndef NVIM_OS_STDPATHS_DEFS_H
#define NVIM_OS_STDPATHS_DEFS_H #define NVIM_OS_STDPATHS_DEFS_H
/// List of possible XDG variables
typedef enum { typedef enum {
kXDGConfigHome, kXDGConfigHome, ///< XDG_CONFIG_HOME
kXDGDataHome, kXDGDataHome, ///< XDG_DATA_HOME
kXDGCacheHome, kXDGCacheHome, ///< XDG_CACHE_HOME
kXDGRuntimeDir, kXDGRuntimeDir, ///< XDG_RUNTIME_DIR
kXDGConfigDirs, kXDGConfigDirs, ///< XDG_CONFIG_DIRS
kXDGDataDirs, kXDGDataDirs, ///< XDG_DATA_DIRS
} XDGVarType; } XDGVarType;
#endif // NVIM_OS_STDPATHS_DEFS_H #endif // NVIM_OS_STDPATHS_DEFS_H