提交 5084091a 编写于 作者: R Rafael Fonseca 提交者: Michal Privoznik

util: authconfig: use g_key_file_*

Replace libvirt's virKeyFile by glib's GKeyFile.
Signed-off-by: NRafael Fonseca <r4f4rfs@gmail.com>
Signed-off-by: NMichal Privoznik <mprivozn@redhat.com>
Reviewed-by: NMichal Privoznik <mprivozn@redhat.com>
上级 4cc90c2e
......@@ -22,14 +22,13 @@
#include "virauthconfig.h"
#include "virkeyfile.h"
#include "virlog.h"
#include "virerror.h"
#include "virstring.h"
#include "viralloc.h"
struct _virAuthConfig {
virKeyFilePtr keyfile;
GKeyFile *keyfile;
char *path;
};
......@@ -46,10 +45,10 @@ virAuthConfigPtr virAuthConfigNew(const char *path)
auth->path = g_strdup(path);
if (!(auth->keyfile = virKeyFileNew()))
if (!(auth->keyfile = g_key_file_new()))
goto error;
if (virKeyFileLoadFile(auth->keyfile, path) < 0)
if (!g_key_file_load_from_file(auth->keyfile, path, 0, NULL))
goto error;
return auth;
......@@ -71,10 +70,10 @@ virAuthConfigPtr virAuthConfigNewData(const char *path,
auth->path = g_strdup(path);
if (!(auth->keyfile = virKeyFileNew()))
if (!(auth->keyfile = g_key_file_new()))
goto error;
if (virKeyFileLoadData(auth->keyfile, path, data, len) < 0)
if (!g_key_file_load_from_data(auth->keyfile, data, len, 0, NULL))
goto error;
return auth;
......@@ -90,7 +89,7 @@ void virAuthConfigFree(virAuthConfigPtr auth)
if (!auth)
return;
virKeyFileFree(auth->keyfile);
g_key_file_free(auth->keyfile);
VIR_FREE(auth->path);
VIR_FREE(auth);
}
......@@ -115,15 +114,15 @@ int virAuthConfigLookup(virAuthConfigPtr auth,
authgroup = g_strdup_printf("auth-%s-%s", service, hostname);
if (!virKeyFileHasGroup(auth->keyfile, authgroup)) {
if (!g_key_file_has_group(auth->keyfile, authgroup)) {
VIR_FREE(authgroup);
authgroup = g_strdup_printf("auth-%s-%s", service, "default");
}
if (!virKeyFileHasGroup(auth->keyfile, authgroup))
if (!g_key_file_has_group(auth->keyfile, authgroup))
return 0;
if (!(authcred = virKeyFileGetValueString(auth->keyfile, authgroup, "credentials"))) {
if (!(authcred = g_key_file_get_string(auth->keyfile, authgroup, "credentials", NULL))) {
virReportError(VIR_ERR_CONF_SYNTAX,
_("Missing item 'credentials' in group '%s' in '%s'"),
authgroup, auth->path);
......@@ -132,17 +131,14 @@ int virAuthConfigLookup(virAuthConfigPtr auth,
credgroup = g_strdup_printf("credentials-%s", authcred);
if (!virKeyFileHasGroup(auth->keyfile, credgroup)) {
if (!g_key_file_has_group(auth->keyfile, credgroup)) {
virReportError(VIR_ERR_CONF_SYNTAX,
_("Missing group 'credentials-%s' referenced from group '%s' in '%s'"),
authcred, authgroup, auth->path);
return -1;
}
if (!virKeyFileHasValue(auth->keyfile, credgroup, credname))
return 0;
*value = virKeyFileGetValueString(auth->keyfile, credgroup, credname);
*value = g_key_file_get_string(auth->keyfile, credgroup, credname, NULL);
return 0;
}
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册