提交 520e626e 编写于 作者: F Fabiano Fidêncio

util: Rewrite virGetUserCacheDirectory() using g_get_user_cache_dir()

Signed-off-by: NFabiano Fidêncio <fidencio@redhat.com>
Reviewed-by: NCole Robinson <crobinso@redhat.com>
上级 e59b946c
...@@ -596,6 +596,16 @@ char *virGetUserConfigDirectory(void) ...@@ -596,6 +596,16 @@ char *virGetUserConfigDirectory(void)
} }
char *virGetUserCacheDirectory(void)
{
#ifdef WIN32
return g_strdup(g_get_user_cache_dir());
#else
return g_build_filename(g_get_user_cache_dir(), "libvirt", NULL);
#endif
}
#ifdef HAVE_GETPWUID_R #ifdef HAVE_GETPWUID_R
/* Look up fields from the user database for the given user. On /* Look up fields from the user database for the given user. On
* error, set errno, report the error if not instructed otherwise via @quiet, * error, set errno, report the error if not instructed otherwise via @quiet,
...@@ -746,29 +756,6 @@ char *virGetUserShell(uid_t uid) ...@@ -746,29 +756,6 @@ char *virGetUserShell(uid_t uid)
} }
static char *virGetXDGDirectory(const char *xdgenvname, const char *xdgdefdir)
{
const char *path = getenv(xdgenvname);
char *ret = NULL;
char *home = NULL;
if (path && path[0]) {
ret = g_strdup_printf("%s/libvirt", path);
} else {
home = virGetUserDirectory();
if (home)
ret = g_strdup_printf("%s/%s/libvirt", home, xdgdefdir);
}
VIR_FREE(home);
return ret;
}
char *virGetUserCacheDirectory(void)
{
return virGetXDGDirectory("XDG_CACHE_HOME", ".cache");
}
char *virGetUserRuntimeDirectory(void) char *virGetUserRuntimeDirectory(void)
{ {
const char *path = getenv("XDG_RUNTIME_DIR"); const char *path = getenv("XDG_RUNTIME_DIR");
...@@ -1192,21 +1179,6 @@ virGetUserShell(uid_t uid G_GNUC_UNUSED) ...@@ -1192,21 +1179,6 @@ virGetUserShell(uid_t uid G_GNUC_UNUSED)
return NULL; return NULL;
} }
char *
virGetUserCacheDirectory(void)
{
char *ret;
if (virGetWin32SpecialFolder(CSIDL_INTERNET_CACHE, &ret) < 0)
return NULL;
if (!ret) {
virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
_("Unable to determine config directory"));
return NULL;
}
return ret;
}
char * char *
virGetUserRuntimeDirectory(void) virGetUserRuntimeDirectory(void)
{ {
...@@ -1232,15 +1204,6 @@ virGetUserShell(uid_t uid G_GNUC_UNUSED) ...@@ -1232,15 +1204,6 @@ virGetUserShell(uid_t uid G_GNUC_UNUSED)
return NULL; return NULL;
} }
char *
virGetUserCacheDirectory(void)
{
virReportError(VIR_ERR_INTERNAL_ERROR,
"%s", _("virGetUserCacheDirectory is not available"));
return NULL;
}
char * char *
virGetUserRuntimeDirectory(void) virGetUserRuntimeDirectory(void)
{ {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册