/
githubmirror
/
libuser
Обзор
Документация
Войти
/
githubmirror
/
libuser
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
libuser-0.56.14
samples/testuser.c
111 строк
3 KB
Miloslav Trmač
2008-02-23 Miloslav Trmač <mitr@redhat.com>
23 фев 2008, 03:15
23 фев 2008, 03:15
93a3fa7
Код
Авторство
О чём код?
/* * Copyright (C) 2000-2002 Red Hat, Inc. * * This is free software; you can redistribute it and/or modify it under * the terms of the GNU Library General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #include <config.h> #include <libintl.h> #include <locale.h> #include <stdlib.h> #include "../lib/user_private.h" static void dump_attribute(const char *attribute, struct lu_ent *ent) { GValueArray *array; array = lu_ent_get(ent, attribute); if (array != NULL) { size_t i; for (i = 0; i < array->n_values; i++) { GValue *value; value = g_value_array_get_nth(array, i); if (G_VALUE_HOLDS_STRING(value)) g_print("attribute %s = `%s'\n", attribute, g_value_get_string(value)); else if (G_VALUE_HOLDS_LONG(value)) g_print("attribute %s = %ld\n", attribute, g_value_get_long(value)); else if (G_VALUE_HOLDS_INT64(value)) g_print("attribute %s = %lld\n", attribute, (long long)g_value_get_int64(value)); } } } int main(void) { struct lu_context *ctx; struct lu_ent *ent, *tmp, *temp; struct lu_error *error = NULL; GList *ret; size_t i; void *control; bindtextdomain(PACKAGE, LOCALEDIR); textdomain(PACKAGE); setlocale(LC_ALL, ""); control = g_malloc0(65536); ctx = lu_start(NULL, 0, NULL, NULL, lu_prompt_console, NULL, &error); if (ctx == NULL) { fprintf(stderr, gettext("Error initializing %s: %s.\n"), PACKAGE, lu_strerror(error)); exit(1); } g_print(gettext("Default user object classes:\n")); ret = lu_cfg_read(ctx, "userdefaults/objectclass", "bar"); for (i = 0; i < g_list_length(ret); i++) { g_print(" %s\n", (char *) g_list_nth(ret, i)->data); } g_print(gettext("Default user attribute names:\n")); ret = lu_cfg_read_keys(ctx, "userdefaults"); for (i = 0; i < g_list_length(ret); i++) { g_print(" %s\n", (char *) g_list_nth(ret, i)->data); } g_print(gettext("Getting default user attributes:\n")); ent = lu_ent_new(); lu_user_default(ctx, "newuser", FALSE, ent); lu_ent_dump(ent, stdout); dump_attribute(LU_UIDNUMBER, ent); g_print(gettext("Copying user structure:\n")); tmp = lu_ent_new(); lu_ent_copy(ent, tmp); temp = lu_ent_new(); lu_ent_copy(tmp, temp); lu_ent_dump(temp, stdout); lu_ent_free(ent); lu_ent_free(tmp); lu_ent_free(temp); lu_end(ctx); g_free(control); return 0; }