aboutsummaryrefslogtreecommitdiffstats
path: root/binding/bluetooth-util.c
diff options
context:
space:
mode:
authorMatt Ranostay <matt.ranostay@konsulko.com>2018-09-24 14:40:32 +0800
committerMatt Ranostay <matt.ranostay@konsulko.com>2018-11-23 08:49:14 -0800
commitcfd9944c77a61215250c3b0f81978a1236d4c590 (patch)
treeb345083c1061d156b2bf1168d7474c419a18864a /binding/bluetooth-util.c
parentdfff48e48f646e021e6d2b8326cd7fdc3d706d9c (diff)
binding: bluetooth: return adapter/device versus bluez path
To allow this binding API to be bluetooth stack agnostic remove pure bluez paths, and replace with generic fields. Bug-AGL: SPEC-1630 Change-Id: Iadba73782b6339df2ca5937e16a654e7ef3e477b Signed-off-by: Matt Ranostay <matt.ranostay@konsulko.com>
Diffstat (limited to 'binding/bluetooth-util.c')
-rw-r--r--binding/bluetooth-util.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/binding/bluetooth-util.c b/binding/bluetooth-util.c
index 0af4898..e826aaf 100644
--- a/binding/bluetooth-util.c
+++ b/binding/bluetooth-util.c
@@ -1024,3 +1024,15 @@ json_object *get_named_property(const struct property_info *pi,
return jret;
}
+
+void json_process_path(json_object *jresp, const char *path) {
+ gchar *tmp;
+
+ tmp = bluez_return_adapter(path);
+ json_object_object_add(jresp, "adapter", json_object_new_string(tmp));
+ g_free(tmp);
+
+ tmp = bluez_return_device(path);
+ json_object_object_add(jresp, "device", json_object_new_string(tmp));
+ g_free(tmp);
+}