/* -*- Mode: C; c-file-style: "gnu"; tab-width: 8 -*- */ /* Copyright (C) 2005 Carlos Garnacho * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser 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 General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. * * Authors: Carlos Garnacho Parro */ #include #include #include #include "utils.h" void utils_create_dbus_array_from_string_list (GList *list, DBusMessage *message, DBusMessageIter *iter) { DBusMessageIter array_iter; dbus_message_iter_open_container (iter, DBUS_TYPE_ARRAY, DBUS_TYPE_STRING_AS_STRING, &array_iter); while (list) { dbus_message_iter_append_basic (&array_iter, DBUS_TYPE_STRING, &list->data); list = list->next; } dbus_message_iter_close_container (iter, &array_iter); } GList* utils_get_string_list_from_dbus_reply (DBusMessage *reply, DBusMessageIter iter) { DBusMessageIter elem_iter; GList *l = NULL; gchar *elem; dbus_message_iter_recurse (&iter, &elem_iter); while (dbus_message_iter_get_arg_type (&elem_iter) == DBUS_TYPE_STRING) { dbus_message_iter_get_basic (&elem_iter, &elem); l = g_list_prepend (l, g_strdup (elem)); dbus_message_iter_next (&elem_iter); } return g_list_reverse (l); } gchar* utils_get_random_string (gint len) { gchar alphanum[] = "abcdefghijklmnopqrstuvwxyz0AB1CD2EF3GH4IJ5KL6MN7OP8QR9ST0UVWXYZ"; gchar *str; gint i, alnum_len; str = (gchar *) g_malloc0 (len + 1); alnum_len = strlen (alphanum); for (i = 0; i < len; i++) str[i] = alphanum [(gint) (((float) alnum_len * rand ()) / (RAND_MAX + 1.0))]; return str; } void utils_append_string (DBusMessageIter *iter, const gchar *str) { const gchar *empty_str = ""; /* allow null strings */ dbus_message_iter_append_basic (iter, DBUS_TYPE_STRING, (str) ? &str : &empty_str); } const gchar* utils_get_string (DBusMessageIter *iter) { const gchar *str; g_return_val_if_fail (dbus_message_iter_get_arg_type (iter) == DBUS_TYPE_STRING, NULL); dbus_message_iter_get_basic (iter, &str); if (str && *str) return str; return NULL; }