/** bmpx.c * BMPx client * * $Id$ */ #include #include #include #include #include "conky.h" #define DBUS_TYPE_G_STRING_VALUE_HASHTABLE (dbus_g_type_get_map ("GHashTable", G_TYPE_STRING, G_TYPE_VALUE)) static DBusGConnection *bus; static DBusGProxy *remote_object; static int connected = 0; void update_bmpx() { GError *error = NULL; struct information *current_info = &info; gchar *uri; GHashTable *metadata; if (connected == 0) { g_type_init(); dbus_g_type_specialized_init(); bus = dbus_g_bus_get(DBUS_BUS_SESSION, &error); if (bus == NULL) { ERR("%s\n", error->message); } remote_object = dbus_g_proxy_new_for_name(bus, BMP_DBUS_SERVICE, BMP_DBUS_PATH_SYSTEMCONTROL, BMP_DBUS_INTERFACE); if (!remote_object) { ERR("%s\n", error->message); goto fail; } else connected = 1; } if (connected == 1) { if (dbus_g_proxy_call(remote_object, "GetCurrentUri", &error, G_TYPE_INVALID, G_TYPE_STRING, &uri, G_TYPE_INVALID)) { current_info->bmpx.uri = uri; } else { ERR("%s\n", error->message); goto fail; } if (dbus_g_proxy_call(remote_object, "GetMetadataForUri", &error, G_TYPE_STRING, uri, G_TYPE_INVALID, DBUS_TYPE_G_STRING_VALUE_HASHTABLE, &metadata, G_TYPE_INVALID)) { current_info->bmpx.title= g_value_get_string(g_hash_table_lookup(metadata, "title")); current_info->bmpx.artist = g_value_get_string(g_hash_table_lookup(metadata, "artist")); current_info->bmpx.album = g_value_get_string(g_hash_table_lookup(metadata, "album")); current_info->bmpx.bitrate = g_value_get_int(g_hash_table_lookup(metadata, "bitrate")); current_info->bmpx.track = g_value_get_int(g_hash_table_lookup(metadata, "track-number")); } else { ERR("%s\n", error->message); goto fail; } if (uri) free(uri); g_hash_table_destroy(metadata); } else { fail: current_info->bmpx.title = strdup("Unknown"); current_info->bmpx.artist = strdup("Unknown"); current_info->bmpx.album = strdup("Unknown"); current_info->bmpx.bitrate = 0; current_info->bmpx.track = 0; } }