summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohan Hedberg <johan.hedberg@intel.com>2012-10-12 10:55:37 +0200
committerMarcel Holtmann <marcel@holtmann.org>2012-11-26 15:03:33 +0100
commit74f945e5de07a5f2294c15b11b4f9c1107d89a7d (patch)
treee2c6da12b35510d69b9a2554413d9f1e462ee242
parent451b9fea56d6ab7ab63348327093efe60142ae6b (diff)
downloadobexd-74f945e5de07a5f2294c15b11b4f9c1107d89a7d.tar.gz
gdbus: Add g_dbus_get_properties function
This function can be used to construct custom D-Bus messages containing the properties for a specific interface on a given path.
-rw-r--r--gdbus/gdbus.h2
-rw-r--r--gdbus/object.c19
2 files changed, 21 insertions, 0 deletions
diff --git a/gdbus/gdbus.h b/gdbus/gdbus.h
index a96c97f..8251947 100644
--- a/gdbus/gdbus.h
+++ b/gdbus/gdbus.h
@@ -257,6 +257,8 @@ void g_dbus_pending_property_error(DBusConnection *connection,
void g_dbus_emit_property_changed(DBusConnection *connection,
const char *path, const char *interface,
const char *name);
+gboolean g_dbus_get_properties(DBusConnection *connection, const char *path,
+ const char *interface, DBusMessageIter *iter);
#ifdef __cplusplus
}
diff --git a/gdbus/object.c b/gdbus/object.c
index 7acb563..aa38c07 100644
--- a/gdbus/object.c
+++ b/gdbus/object.c
@@ -1615,3 +1615,22 @@ void g_dbus_emit_property_changed(DBusConnection *connection,
return;
}
}
+
+gboolean g_dbus_get_properties(DBusConnection *connection, const char *path,
+ const char *interface, DBusMessageIter *iter)
+{
+ struct generic_data *data;
+ struct interface_data *iface;
+
+ if (!dbus_connection_get_object_path_data(connection, path,
+ (void **) &data) || data == NULL)
+ return FALSE;
+
+ iface = find_interface(data->interfaces, interface);
+ if (iface == NULL)
+ return FALSE;
+
+ append_properties(iface, iter);
+
+ return TRUE;
+}