[tracker/miner-gdata: 2/3] libtracker-miner: Fix variant parsing in GDbus calls
- From: Adrien Bustany <abustany src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [tracker/miner-gdata: 2/3] libtracker-miner: Fix variant parsing in GDbus calls
- Date: Tue, 19 Jul 2011 05:36:33 +0000 (UTC)
commit f5c8fc938decced6550c8f5bbf7f297daf3956ab
Author: Adrien Bustany <abustany gnome org>
Date: Mon Jul 18 02:03:41 2011 +0300
libtracker-miner: Fix variant parsing in GDbus calls
GDbus in/out parameters are always wrapped in a tuple, this commit fixes
the hashtable parsing functions in tracker-miner-web.c in consequence.
src/libtracker-miner/tracker-miner-web.c | 12 +++++++++---
1 files changed, 9 insertions(+), 3 deletions(-)
---
diff --git a/src/libtracker-miner/tracker-miner-web.c b/src/libtracker-miner/tracker-miner-web.c
index c3fc657..3dd2fab 100644
--- a/src/libtracker-miner/tracker-miner-web.c
+++ b/src/libtracker-miner/tracker-miner-web.c
@@ -342,7 +342,9 @@ handle_method_call_get_association_data (TrackerMinerWeb *miner,
g_error_free (local_error);
} else {
tracker_dbus_request_end (request, NULL);
- g_dbus_method_invocation_return_value (invocation, variant_from_hashtable (association_data));
+ GVariant *hash_variant = variant_from_hashtable (association_data);
+ GVariant *tuple = g_variant_new_tuple (&hash_variant, 1);
+ g_dbus_method_invocation_return_value (invocation, tuple);
/* This was commented out before GDBus port too
* g_hash_table_unref (association_data); */
@@ -354,11 +356,15 @@ handle_method_call_associate (TrackerMinerWeb *miner,
GDBusMethodInvocation *invocation,
GVariant *parameters)
{
- GHashTable *association_data;
+ GHashTable *association_data = 0;
GError *local_error = NULL;
TrackerDBusRequest *request;
- association_data = hashtable_from_variant (parameters);
+ if (g_variant_n_children (parameters) != 0) {
+ GVariant *hash_variant = g_variant_get_child_value (parameters, 0);
+
+ association_data = hashtable_from_variant (hash_variant);
+ }
request = tracker_g_dbus_request_begin (invocation, "%s()", __PRETTY_FUNCTION__);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]