From f7610d058c9940564609f29ffe7cc4e4d74b7d85 Mon Sep 17 00:00:00 2001 From: Chen Ganir Date: Wed, 4 Apr 2012 11:28:55 +0300 Subject: [PATCH] DeviceInfo: Add connection logic Add connection logic to the Device Information Plugin. When the driver is loaded, it will request a connection to the remote device and release the connection request when destroyed. --- deviceinfo/deviceinfo.c | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/deviceinfo/deviceinfo.c b/deviceinfo/deviceinfo.c index fed0cc8b2..150b061b2 100644 --- a/deviceinfo/deviceinfo.c +++ b/deviceinfo/deviceinfo.c @@ -28,6 +28,8 @@ #include #include "adapter.h" #include "device.h" +#include "gattrib.h" +#include "attio.h" #include "att.h" #include "gattrib.h" #include "gatt.h" @@ -35,6 +37,8 @@ struct deviceinfo { struct btd_device *dev; /* Device reference */ + GAttrib *attrib; /* GATT connection */ + guint attioid; /* Att watcher id */ }; static GSList *servers = NULL; @@ -43,6 +47,12 @@ static void deviceinfo_free(gpointer user_data) { struct deviceinfo *d = user_data; + if (d->attioid > 0) + btd_device_remove_attio_callback(d->dev, d->attioid); + + if (d->attrib != NULL) + g_attrib_unref(d->attrib); + btd_device_unref(d->dev); g_free(d); } @@ -58,6 +68,21 @@ static gint cmp_device(gconstpointer a, gconstpointer b) return -1; } +static void attio_connected_cb(GAttrib *attrib, gpointer user_data) +{ + struct deviceinfo *d = user_data; + + d->attrib = g_attrib_ref(attrib); +} + +static void attio_disconnected_cb(gpointer user_data) +{ + struct deviceinfo *d = user_data; + + g_attrib_unref(d->attrib); + d->attrib = NULL; +} + int deviceinfo_register(struct btd_device *device) { struct deviceinfo *d; @@ -67,6 +92,8 @@ int deviceinfo_register(struct btd_device *device) servers = g_slist_prepend(servers, d); + d->attioid = btd_device_add_attio_callback(device, attio_connected_cb, + attio_disconnected_cb, d); return 0; } -- 2.47.3