linux-bluetooth.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* (no subject)
@ 2011-09-19  8:52 Santiago Carot-Nemesio
  2011-09-19  8:52 ` [PATCH 1/9] Load device driver if thermometer service attribute appears in GATT Santiago Carot-Nemesio
  0 siblings, 1 reply; 20+ messages in thread
From: Santiago Carot-Nemesio @ 2011-09-19  8:52 UTC (permalink / raw)
  To: linux-bluetooth

Next set of patches enhances support for health thermometer thermomter profile.

[PATCH 1/9] Load device driver if thermometer service attribute
[PATCH 2/9] Register Health Thermometer Interface
[PATCH 3/9] Unregister Health Thermometer Interface
[PATCH 4/9] Add functions to manage attio callbacks
[PATCH 5/9] Add handler function to manage GATT indications
[PATCH 6/9] Get all characteristics in thermometer service
[PATCH 7/9] Read temperature type characteristic
[PATCH 8/9] Read measurement interval characteristic
[PATCH 9/9] Set Intermediate property if intermediate temp.

^ permalink raw reply	[flat|nested] 20+ messages in thread

* [PATCH 1/9] Load device driver if thermometer service attribute appears in GATT
  2011-09-19  8:52 Santiago Carot-Nemesio
@ 2011-09-19  8:52 ` Santiago Carot-Nemesio
  2011-09-19  8:52   ` [PATCH 2/9] Register Health Thermometer Interface Santiago Carot-Nemesio
  2011-09-19 11:39   ` [PATCH 1/9] Load device driver if thermometer service attribute appears in GATT Anderson Lizardo
  0 siblings, 2 replies; 20+ messages in thread
From: Santiago Carot-Nemesio @ 2011-09-19  8:52 UTC (permalink / raw)
  To: linux-bluetooth; +Cc: Santiago Carot-Nemesio

---
 thermometer/manager.c     |   25 ++++++++++++++++++++++++-
 thermometer/thermometer.c |    5 ++++-
 thermometer/thermometer.h |    3 ++-
 3 files changed, 30 insertions(+), 3 deletions(-)

diff --git a/thermometer/manager.c b/thermometer/manager.c
index 08f0e0a..0062ea1 100644
--- a/thermometer/manager.c
+++ b/thermometer/manager.c
@@ -21,19 +21,42 @@
  */
 
 #include <gdbus.h>
+#include <bluetooth/uuid.h>
 
 #include "adapter.h"
 #include "device.h"
+#include "att.h"
 #include "thermometer.h"
 #include "manager.h"
 
+#define HEALTH_THERMOMETER_SVC_UUID	"1809"
 #define HEALTH_THERMOMETER_UUID		"00001809-0000-1000-8000-00805f9b34fb"
 
 static DBusConnection *connection = NULL;
 
+static gint primary_uuid_cmp(gconstpointer a, gconstpointer b)
+{
+	const struct att_primary *prim = a;
+	const char *uuid = b;
+
+	return g_strcmp0(prim->uuid, uuid);
+}
+
 static int thermometer_driver_probe(struct btd_device *device, GSList *uuids)
 {
-	return thermometer_register(connection, device);
+	struct att_primary *tattr;
+	GSList *l, *primaries;
+
+	primaries = btd_device_get_primaries(device);
+
+	l = g_slist_find_custom(primaries, HEALTH_THERMOMETER_SVC_UUID,
+							primary_uuid_cmp);
+	if (!l)
+		return -1;
+
+	tattr = l->data;
+
+	return thermometer_register(connection, device, tattr);
 }
 
 static void thermometer_driver_remove(struct btd_device *device)
diff --git a/thermometer/thermometer.c b/thermometer/thermometer.c
index 3cd821a..027ae02 100644
--- a/thermometer/thermometer.c
+++ b/thermometer/thermometer.c
@@ -21,12 +21,15 @@
  */
 
 #include <gdbus.h>
+#include <bluetooth/uuid.h>
 
 #include "adapter.h"
 #include "device.h"
+#include "att.h"
 #include "thermometer.h"
 
-int thermometer_register(DBusConnection *connection, struct btd_device *device)
+int thermometer_register(DBusConnection *connection, struct btd_device *device,
+						struct att_primary *tattr)
 {
 	/* TODO: Register Health Thermometer Interface */
 	return 0;
diff --git a/thermometer/thermometer.h b/thermometer/thermometer.h
index 0937444..298c9ad 100644
--- a/thermometer/thermometer.h
+++ b/thermometer/thermometer.h
@@ -20,5 +20,6 @@
  *
  */
 
-int thermometer_register(DBusConnection *connection, struct btd_device *device);
+int thermometer_register(DBusConnection *connection, struct btd_device *device,
+						struct att_primary *tattr);
 void thermometer_unregister(struct btd_device *device);
-- 
1.7.6.1


^ permalink raw reply related	[flat|nested] 20+ messages in thread

* [PATCH 2/9] Register Health Thermometer Interface
  2011-09-19  8:52 ` [PATCH 1/9] Load device driver if thermometer service attribute appears in GATT Santiago Carot-Nemesio
@ 2011-09-19  8:52   ` Santiago Carot-Nemesio
  2011-09-19  8:52     ` [PATCH 3/9] Unregister " Santiago Carot-Nemesio
  2011-09-19 11:39   ` [PATCH 1/9] Load device driver if thermometer service attribute appears in GATT Anderson Lizardo
  1 sibling, 1 reply; 20+ messages in thread
From: Santiago Carot-Nemesio @ 2011-09-19  8:52 UTC (permalink / raw)
  To: linux-bluetooth; +Cc: Santiago Carot-Nemesio

---
 thermometer/thermometer.c |  108 ++++++++++++++++++++++++++++++++++++++++++++-
 1 files changed, 107 insertions(+), 1 deletions(-)

diff --git a/thermometer/thermometer.c b/thermometer/thermometer.c
index 027ae02..a89d8a9 100644
--- a/thermometer/thermometer.c
+++ b/thermometer/thermometer.c
@@ -25,13 +25,119 @@
 
 #include "adapter.h"
 #include "device.h"
+#include "error.h"
+#include "log.h"
+#include "gattrib.h"
 #include "att.h"
 #include "thermometer.h"
 
+#define THERMOMETER_INTERFACE "org.bluez.Thermometer"
+
+struct thermometer {
+	DBusConnection          *conn;		/* The connection to the bus */
+	struct btd_device       *dev;		/* Device reference */
+	struct att_range	*svc_range;	/* Thermometer range */
+};
+
+static GSList *thermometers = NULL;
+
+static void destroy_thermometer(gpointer user_data)
+{
+	struct thermometer *t = user_data;
+
+	dbus_connection_unref(t->conn);
+	btd_device_unref(t->dev);
+	g_free(t->svc_range);
+        g_free(t);
+}
+
+static DBusMessage *get_properties(DBusConnection *conn, DBusMessage *msg,
+								void *data)
+{
+	/* TODO: */
+	return g_dbus_create_error(msg, ERROR_INTERFACE ".ThermometerError",
+						"Function not implemented.");
+}
+
+static DBusMessage *set_property(DBusConnection *conn, DBusMessage *msg,
+								void *data)
+{
+	/* TODO: */
+	return g_dbus_create_error(msg, ERROR_INTERFACE ".ThermometerError",
+						"Function not implemented.");
+}
+
+static DBusMessage *register_watcher(DBusConnection *conn, DBusMessage *msg,
+								void *data)
+{
+	/* TODO: */
+	return g_dbus_create_error(msg, ERROR_INTERFACE ".ThermometerError",
+						"Function not implemented.");
+}
+
+static DBusMessage *unregister_watcher(DBusConnection *conn, DBusMessage *msg,
+								void *data)
+{
+	/* TODO: */
+	return g_dbus_create_error(msg, ERROR_INTERFACE ".ThermometerError",
+						"Function not implemented.");
+}
+
+static DBusMessage *enable_intermediate(DBusConnection *conn, DBusMessage *msg,
+								void *data)
+{
+	/* TODO: */
+	return g_dbus_create_error(msg, ERROR_INTERFACE ".ThermometerError",
+						"Function not implemented.");
+}
+
+static DBusMessage *disable_intermediate(DBusConnection *conn, DBusMessage *msg,
+								void *data)
+{
+	/* TODO: */
+	return g_dbus_create_error(msg, ERROR_INTERFACE ".ThermometerError",
+						"Function not implemented.");
+}
+
+static GDBusMethodTable thermometer_methods[] = {
+	{ "GetProperties",	"",	"a{sv}",	get_properties },
+	{ "SetProperty",	"sv",	"",		set_property,
+						G_DBUS_METHOD_FLAG_ASYNC },
+	{ "RegisterWatcher",	"o",	"",		register_watcher },
+	{ "UnregisterWatcher",	"o",	"",		unregister_watcher },
+	{ "EnableIntermediateMeasurement", "o", "", enable_intermediate },
+	{ "DisableIntermediateMeasurement","o",	"", disable_intermediate },
+	{ }
+};
+
+static GDBusSignalTable thermometer_signals[] = {
+	{ "PropertyChanged",	"sv"	},
+	{ }
+};
+
 int thermometer_register(DBusConnection *connection, struct btd_device *device,
 						struct att_primary *tattr)
 {
-	/* TODO: Register Health Thermometer Interface */
+	const gchar *path = device_get_path(device);
+	struct thermometer *t;
+
+	t = g_new0(struct thermometer, 1);
+	t->conn = dbus_connection_ref(connection);
+	t->dev = btd_device_ref(device);
+	t->svc_range = g_new0(struct att_range, 1);
+	t->svc_range->start = tattr->start;
+	t->svc_range->end = tattr->end;
+
+	if (!g_dbus_register_interface(t->conn, path, THERMOMETER_INTERFACE,
+				thermometer_methods, thermometer_signals,
+				NULL, t, destroy_thermometer)) {
+		error("D-Bus failed to register %s interface",
+							THERMOMETER_INTERFACE);
+		destroy_thermometer(t);
+		return -1;
+	}
+
+	thermometers = g_slist_prepend(thermometers, t);
 	return 0;
 }
 
-- 
1.7.6.1


^ permalink raw reply related	[flat|nested] 20+ messages in thread

* [PATCH 3/9] Unregister Health Thermometer Interface
  2011-09-19  8:52   ` [PATCH 2/9] Register Health Thermometer Interface Santiago Carot-Nemesio
@ 2011-09-19  8:52     ` Santiago Carot-Nemesio
  2011-09-19  8:52       ` [PATCH 4/9] Add functions to manage attio callbacks Santiago Carot-Nemesio
  0 siblings, 1 reply; 20+ messages in thread
From: Santiago Carot-Nemesio @ 2011-09-19  8:52 UTC (permalink / raw)
  To: linux-bluetooth; +Cc: Santiago Carot-Nemesio

---
 thermometer/thermometer.c |   23 ++++++++++++++++++++++-
 1 files changed, 22 insertions(+), 1 deletions(-)

diff --git a/thermometer/thermometer.c b/thermometer/thermometer.c
index a89d8a9..cdfe455 100644
--- a/thermometer/thermometer.c
+++ b/thermometer/thermometer.c
@@ -51,6 +51,17 @@ static void destroy_thermometer(gpointer user_data)
         g_free(t);
 }
 
+static gint cmp_device(gconstpointer a, gconstpointer b)
+{
+	const struct thermometer *t = a;
+	const struct btd_device *dev = b;
+
+	if (dev == t->dev)
+		return 0;
+
+	return -1;
+}
+
 static DBusMessage *get_properties(DBusConnection *conn, DBusMessage *msg,
 								void *data)
 {
@@ -143,5 +154,15 @@ int thermometer_register(DBusConnection *connection, struct btd_device *device,
 
 void thermometer_unregister(struct btd_device *device)
 {
-	/* TODO: Unregister Health Thermometer Interface */
+	struct thermometer *t;
+	GSList *l;
+
+	l = g_slist_find_custom(thermometers, device, cmp_device);
+	if (!l)
+		return;
+
+	t = l->data;
+	thermometers = g_slist_remove(thermometers, t);
+	g_dbus_unregister_interface(t->conn, device_get_path(t->dev),
+							THERMOMETER_INTERFACE);
 }
-- 
1.7.6.1


^ permalink raw reply related	[flat|nested] 20+ messages in thread

* [PATCH 4/9] Add functions to manage attio callbacks
  2011-09-19  8:52     ` [PATCH 3/9] Unregister " Santiago Carot-Nemesio
@ 2011-09-19  8:52       ` Santiago Carot-Nemesio
  2011-09-19  8:52         ` [PATCH 5/9] Add handler function to manage GATT indications Santiago Carot-Nemesio
  0 siblings, 1 reply; 20+ messages in thread
From: Santiago Carot-Nemesio @ 2011-09-19  8:52 UTC (permalink / raw)
  To: linux-bluetooth; +Cc: Santiago Carot-Nemesio

---
 thermometer/thermometer.c |   29 +++++++++++++++++++++++++++++
 1 files changed, 29 insertions(+), 0 deletions(-)

diff --git a/thermometer/thermometer.c b/thermometer/thermometer.c
index cdfe455..e06c6da 100644
--- a/thermometer/thermometer.c
+++ b/thermometer/thermometer.c
@@ -28,6 +28,7 @@
 #include "error.h"
 #include "log.h"
 #include "gattrib.h"
+#include "attio.h"
 #include "att.h"
 #include "thermometer.h"
 
@@ -36,7 +37,9 @@
 struct thermometer {
 	DBusConnection          *conn;		/* The connection to the bus */
 	struct btd_device       *dev;		/* Device reference */
+	GAttrib			*attrib;	/* GATT connection */
 	struct att_range	*svc_range;	/* Thermometer range */
+	gint                    attioid;	/* Att watcher id */
 };
 
 static GSList *thermometers = NULL;
@@ -45,6 +48,12 @@ static void destroy_thermometer(gpointer user_data)
 {
 	struct thermometer *t = user_data;
 
+	if (t->attioid)
+		btd_device_remove_attio_callback(t->dev, t->attioid);
+
+	if (t->attrib)
+		g_attrib_unref(t->attrib);
+
 	dbus_connection_unref(t->conn);
 	btd_device_unref(t->dev);
 	g_free(t->svc_range);
@@ -126,6 +135,23 @@ static GDBusSignalTable thermometer_signals[] = {
 	{ }
 };
 
+static void attio_connected_cb(GAttrib *attrib, gpointer user_data)
+{
+	struct thermometer *t = user_data;
+
+	t->attrib = g_attrib_ref(attrib);
+}
+
+static void attio_disconnected_cb(gpointer user_data)
+{
+	struct thermometer *t = user_data;
+
+	DBG("GATT Disconnected");
+
+	g_attrib_unref(t->attrib);
+	t->attrib = NULL;
+}
+
 int thermometer_register(DBusConnection *connection, struct btd_device *device,
 						struct att_primary *tattr)
 {
@@ -149,6 +175,9 @@ int thermometer_register(DBusConnection *connection, struct btd_device *device,
 	}
 
 	thermometers = g_slist_prepend(thermometers, t);
+
+	t->attioid = btd_device_add_attio_callback(device, attio_connected_cb,
+						attio_disconnected_cb, t);
 	return 0;
 }
 
-- 
1.7.6.1


^ permalink raw reply related	[flat|nested] 20+ messages in thread

* [PATCH 5/9] Add handler function to manage GATT indications
  2011-09-19  8:52       ` [PATCH 4/9] Add functions to manage attio callbacks Santiago Carot-Nemesio
@ 2011-09-19  8:52         ` Santiago Carot-Nemesio
  2011-09-19  8:52           ` [PATCH 6/9] Get all characteristics in thermometer service Santiago Carot-Nemesio
  0 siblings, 1 reply; 20+ messages in thread
From: Santiago Carot-Nemesio @ 2011-09-19  8:52 UTC (permalink / raw)
  To: linux-bluetooth; +Cc: Santiago Carot-Nemesio

---
 thermometer/thermometer.c |   17 +++++++++++++++++
 1 files changed, 17 insertions(+), 0 deletions(-)

diff --git a/thermometer/thermometer.c b/thermometer/thermometer.c
index e06c6da..f8c17c6 100644
--- a/thermometer/thermometer.c
+++ b/thermometer/thermometer.c
@@ -40,6 +40,7 @@ struct thermometer {
 	GAttrib			*attrib;	/* GATT connection */
 	struct att_range	*svc_range;	/* Thermometer range */
 	gint                    attioid;	/* Att watcher id */
+	gint			attindid;	/* Att incications id */
 };
 
 static GSList *thermometers = NULL;
@@ -51,6 +52,9 @@ static void destroy_thermometer(gpointer user_data)
 	if (t->attioid)
 		btd_device_remove_attio_callback(t->dev, t->attioid);
 
+	if (t->attindid)
+		g_attrib_unregister(t->attrib, t->attindid);
+
 	if (t->attrib)
 		g_attrib_unref(t->attrib);
 
@@ -135,11 +139,19 @@ static GDBusSignalTable thermometer_signals[] = {
 	{ }
 };
 
+static void ind_handler(const uint8_t *pdu, uint16_t len, gpointer user_data)
+{
+	/* TODO: Process indication */
+}
+
 static void attio_connected_cb(GAttrib *attrib, gpointer user_data)
 {
 	struct thermometer *t = user_data;
 
 	t->attrib = g_attrib_ref(attrib);
+
+	t->attindid = g_attrib_register(t->attrib, ATT_OP_HANDLE_IND,
+							ind_handler, t, NULL);
 }
 
 static void attio_disconnected_cb(gpointer user_data)
@@ -148,6 +160,11 @@ static void attio_disconnected_cb(gpointer user_data)
 
 	DBG("GATT Disconnected");
 
+	if (t->attindid) {
+		g_attrib_unregister(t->attrib, t->attindid);
+		t->attindid = 0;
+	}
+
 	g_attrib_unref(t->attrib);
 	t->attrib = NULL;
 }
-- 
1.7.6.1


^ permalink raw reply related	[flat|nested] 20+ messages in thread

* [PATCH 6/9] Get all characteristics in thermometer service
  2011-09-19  8:52         ` [PATCH 5/9] Add handler function to manage GATT indications Santiago Carot-Nemesio
@ 2011-09-19  8:52           ` Santiago Carot-Nemesio
  2011-09-19  8:52             ` [PATCH 7/9] Read temperature type characteristic Santiago Carot-Nemesio
  0 siblings, 1 reply; 20+ messages in thread
From: Santiago Carot-Nemesio @ 2011-09-19  8:52 UTC (permalink / raw)
  To: linux-bluetooth; +Cc: Santiago Carot-Nemesio

---
 thermometer/thermometer.c |  110 +++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 110 insertions(+), 0 deletions(-)

diff --git a/thermometer/thermometer.c b/thermometer/thermometer.c
index f8c17c6..f0b977e 100644
--- a/thermometer/thermometer.c
+++ b/thermometer/thermometer.c
@@ -30,10 +30,15 @@
 #include "gattrib.h"
 #include "attio.h"
 #include "att.h"
+#include "gatt.h"
 #include "thermometer.h"
 
 #define THERMOMETER_INTERFACE "org.bluez.Thermometer"
 
+#define TEMPERATURE_TYPE_UUID		"00002a1d-0000-1000-8000-00805f9b34fb"
+#define INTERMEDIATE_TEMPERATURE_UUID	"00002a1e-0000-1000-8000-00805f9b34fb"
+#define MEASUREMENT_INTERVAL_UUID	"00002a21-0000-1000-8000-00805f9b34fb"
+
 struct thermometer {
 	DBusConnection          *conn;		/* The connection to the bus */
 	struct btd_device       *dev;		/* Device reference */
@@ -41,10 +46,31 @@ struct thermometer {
 	struct att_range	*svc_range;	/* Thermometer range */
 	gint                    attioid;	/* Att watcher id */
 	gint			attindid;	/* Att incications id */
+	GSList			*chars;		/* Characteristics */
+};
+
+struct characteristic {
+	struct att_char		attr;	/* Characteristic */
+	GSList			*desc;	/* Descriptors */
+	struct thermometer	*t;	/* Thermometer where the char belongs */
+};
+
+struct descriptor {
+	struct characteristic	*ch;
+	uint16_t		handle;
+	bt_uuid_t		uuid;
 };
 
 static GSList *thermometers = NULL;
 
+static void destroy_char(gpointer user_data)
+{
+	struct characteristic *c = user_data;
+
+	g_slist_free_full(c->desc, g_free);
+	g_free(c);
+}
+
 static void destroy_thermometer(gpointer user_data)
 {
 	struct thermometer *t = user_data;
@@ -58,6 +84,9 @@ static void destroy_thermometer(gpointer user_data)
 	if (t->attrib)
 		g_attrib_unref(t->attrib);
 
+	if (t->chars)
+		g_slist_free_full(t->chars, destroy_char);
+
 	dbus_connection_unref(t->conn);
 	btd_device_unref(t->dev);
 	g_free(t->svc_range);
@@ -75,6 +104,85 @@ static gint cmp_device(gconstpointer a, gconstpointer b)
 	return -1;
 }
 
+static void discover_desc_cb(guint8 status, const guint8 *pdu, guint16 len,
+							gpointer user_data)
+{
+	/* TODO */
+}
+
+static void read_temp_type_cb(guint8 status, const guint8 *pdu, guint16 len,
+							gpointer user_data)
+{
+	/* TODO */
+}
+
+static void read_interval_cb(guint8 status, const guint8 *pdu, guint16 len,
+							gpointer user_data)
+{
+	/* TODO */
+}
+
+static void process_thermometer_char(struct characteristic *ch)
+{
+	GAttribResultFunc func;
+
+	if (g_strcmp0(ch->attr.uuid, INTERMEDIATE_TEMPERATURE_UUID) == 0) {
+		/* TODO: Change intermediate property and emit signal */
+		return;
+	} else if (g_strcmp0(ch->attr.uuid, TEMPERATURE_TYPE_UUID) == 0)
+		func = read_temp_type_cb;
+	else if (g_strcmp0(ch->attr.uuid, MEASUREMENT_INTERVAL_UUID) == 0)
+		func = read_interval_cb;
+	else
+		return;
+
+	gatt_read_char(ch->t->attrib, ch->attr.value_handle, 0, func, ch);
+}
+
+static void configure_thermometer_cb(GSList *characteristics, guint8 status,
+							gpointer user_data)
+{
+	struct thermometer *t = user_data;
+	GSList *l;
+
+	if (status) {
+		error("Discover thermometer characteristics: %s",
+							att_ecode2str(status));
+		return;
+	}
+
+	for (l = characteristics; l; l = l->next) {
+		struct att_char *c = l->data;
+		struct characteristic *ch;
+		uint16_t start, end;
+
+		ch = g_new0(struct characteristic, 1);
+		ch->attr.handle = c->handle;
+		ch->attr.properties = c->properties;
+		ch->attr.value_handle = c->value_handle;
+		memcpy(ch->attr.uuid, c->uuid, MAX_LEN_UUID_STR + 1);
+		ch->t = t;
+
+		t->chars = g_slist_append(t->chars, ch);
+
+		process_thermometer_char(ch);
+
+		start = c->value_handle + 1;
+
+		if (l->next) {
+			struct att_char *c = l->next->data;
+			if (start == c->handle)
+				continue;
+			end = c->handle - 1;
+		} else if (c->value_handle != t->svc_range->end)
+			end = t->svc_range->end;
+		else
+			continue;
+
+		gatt_find_info(t->attrib, start, end, discover_desc_cb, ch);
+	}
+}
+
 static DBusMessage *get_properties(DBusConnection *conn, DBusMessage *msg,
 								void *data)
 {
@@ -152,6 +260,8 @@ static void attio_connected_cb(GAttrib *attrib, gpointer user_data)
 
 	t->attindid = g_attrib_register(t->attrib, ATT_OP_HANDLE_IND,
 							ind_handler, t, NULL);
+	gatt_discover_char(t->attrib, t->svc_range->start, t->svc_range->end,
+					NULL, configure_thermometer_cb, t);
 }
 
 static void attio_disconnected_cb(gpointer user_data)
-- 
1.7.6.1


^ permalink raw reply related	[flat|nested] 20+ messages in thread

* [PATCH 7/9] Read temperature type characteristic
  2011-09-19  8:52           ` [PATCH 6/9] Get all characteristics in thermometer service Santiago Carot-Nemesio
@ 2011-09-19  8:52             ` Santiago Carot-Nemesio
  2011-09-19  8:52               ` [PATCH 8/9] Read measurement interval characteristic Santiago Carot-Nemesio
  0 siblings, 1 reply; 20+ messages in thread
From: Santiago Carot-Nemesio @ 2011-09-19  8:52 UTC (permalink / raw)
  To: linux-bluetooth; +Cc: Santiago Carot-Nemesio

---
 thermometer/thermometer.c |   54 ++++++++++++++++++++++++++++++++++++++++++++-
 1 files changed, 53 insertions(+), 1 deletions(-)

diff --git a/thermometer/thermometer.c b/thermometer/thermometer.c
index f0b977e..2dcc4ba 100644
--- a/thermometer/thermometer.c
+++ b/thermometer/thermometer.c
@@ -39,6 +39,14 @@
 #define INTERMEDIATE_TEMPERATURE_UUID	"00002a1e-0000-1000-8000-00805f9b34fb"
 #define MEASUREMENT_INTERVAL_UUID	"00002a21-0000-1000-8000-00805f9b34fb"
 
+struct properties {
+	gboolean	intermediate;
+	guint8		*type;
+	guint16		*interval;
+	guint16		*max;
+	guint16		*min;
+};
+
 struct thermometer {
 	DBusConnection          *conn;		/* The connection to the bus */
 	struct btd_device       *dev;		/* Device reference */
@@ -47,6 +55,7 @@ struct thermometer {
 	gint                    attioid;	/* Att watcher id */
 	gint			attindid;	/* Att incications id */
 	GSList			*chars;		/* Characteristics */
+	struct properties	properties;	/* Thermometer's properties */
 };
 
 struct characteristic {
@@ -63,6 +72,24 @@ struct descriptor {
 
 static GSList *thermometers = NULL;
 
+static gchar* temptype2str(uint8_t value)
+{
+	switch (value) {
+	case 1: return "Armpit";
+	case 2: return "Body";
+	case 3: return "Ear";
+	case 4: return "Finger";
+	case 5: return "Intestines";
+	case 6: return "Mouth";
+	case 7: return "Rectum";
+	case 8: return "Toe";
+	case 9: return "Tympanum";
+	default:
+		error("Temperature type %d reserved for future use", value);
+		return NULL;
+	};
+}
+
 static void destroy_char(gpointer user_data)
 {
 	struct characteristic *c = user_data;
@@ -87,6 +114,11 @@ static void destroy_thermometer(gpointer user_data)
 	if (t->chars)
 		g_slist_free_full(t->chars, destroy_char);
 
+	g_free(t->properties.type);
+	g_free(t->properties.interval);
+	g_free(t->properties.max);
+	g_free(t->properties.min);
+
 	dbus_connection_unref(t->conn);
 	btd_device_unref(t->dev);
 	g_free(t->svc_range);
@@ -113,7 +145,27 @@ static void discover_desc_cb(guint8 status, const guint8 *pdu, guint16 len,
 static void read_temp_type_cb(guint8 status, const guint8 *pdu, guint16 len,
 							gpointer user_data)
 {
-	/* TODO */
+	struct characteristic *ch = user_data;
+	struct thermometer *t = ch->t;
+	uint8_t value;
+	int vlen;
+
+	if (status != 0) {
+		DBG("Temperature Type value read failed: %s",
+							att_ecode2str(status));
+		return;
+	}
+
+	if (!dec_read_resp(pdu, len, &value, &vlen)) {
+		DBG("Protocol error");
+		return;
+	}
+
+	DBG("TEMPERATURE TYPE: %s", temptype2str(value));
+	if (!t->properties.type)
+		t->properties.type = g_new0(guint8, 1);
+
+	*t->properties.type = value;
 }
 
 static void read_interval_cb(guint8 status, const guint8 *pdu, guint16 len,
-- 
1.7.6.1


^ permalink raw reply related	[flat|nested] 20+ messages in thread

* [PATCH 8/9] Read measurement interval characteristic
  2011-09-19  8:52             ` [PATCH 7/9] Read temperature type characteristic Santiago Carot-Nemesio
@ 2011-09-19  8:52               ` Santiago Carot-Nemesio
  2011-09-19  8:52                 ` [PATCH 9/9] Set Intermediate property if intermediate temp. characteristic is supported Santiago Carot-Nemesio
  0 siblings, 1 reply; 20+ messages in thread
From: Santiago Carot-Nemesio @ 2011-09-19  8:52 UTC (permalink / raw)
  To: linux-bluetooth; +Cc: Santiago Carot-Nemesio

---
 thermometer/thermometer.c |   81 ++++++++++++++++++++++++++++++++++++++++++++-
 1 files changed, 80 insertions(+), 1 deletions(-)

diff --git a/thermometer/thermometer.c b/thermometer/thermometer.c
index 2dcc4ba..0178e99 100644
--- a/thermometer/thermometer.c
+++ b/thermometer/thermometer.c
@@ -23,6 +23,7 @@
 #include <gdbus.h>
 #include <bluetooth/uuid.h>
 
+#include "dbus-common.h"
 #include "adapter.h"
 #include "device.h"
 #include "error.h"
@@ -136,6 +137,60 @@ static gint cmp_device(gconstpointer a, gconstpointer b)
 	return -1;
 }
 
+static void change_property(struct thermometer *t, const gchar *name,
+							gpointer value) {
+	if (g_strcmp0(name, "Intermediate") == 0) {
+		gboolean *intermediate = value;
+		if (t->properties.intermediate == *intermediate)
+			return;
+
+		t->properties.intermediate = *intermediate;
+		emit_property_changed(t->conn, device_get_path(t->dev),
+					THERMOMETER_INTERFACE, name,
+					DBUS_TYPE_BOOLEAN,
+					&t->properties.intermediate);
+	} else if (g_strcmp0(name, "Interval") == 0) {
+		uint16_t *interval = value;
+		if (t->properties.interval &&
+					*t->properties.interval == *interval)
+			return;
+
+		if (!t->properties.interval)
+			t->properties.interval = g_new0(guint16, 1);
+
+		*t->properties.interval = *interval;
+		emit_property_changed(t->conn, device_get_path(t->dev),
+					THERMOMETER_INTERFACE, name,
+					DBUS_TYPE_UINT16,
+					t->properties.interval);
+	} else if (g_strcmp0(name, "Maximum") == 0) {
+		uint16_t *max = value;
+		if (t->properties.max && *t->properties.max == *max)
+			return;
+
+		if (!t->properties.max)
+			t->properties.max = g_new0(guint16, 1);
+
+		*t->properties.max = *max;
+		emit_property_changed(t->conn, device_get_path(t->dev),
+					THERMOMETER_INTERFACE, name,
+					DBUS_TYPE_UINT16, t->properties.max);
+	} else if (g_strcmp0(name, "Minimum") == 0) {
+		uint16_t *min = value;
+		if (t->properties.min && *t->properties.min == *min)
+			return;
+
+		if (!t->properties.min)
+			t->properties.min = g_new0(guint16, 1);
+
+		*t->properties.min = *min;
+		emit_property_changed(t->conn, device_get_path(t->dev),
+					THERMOMETER_INTERFACE, name,
+					DBUS_TYPE_UINT16, t->properties.min);
+	} else
+		DBG("%s is not a thermometer property", name);
+}
+
 static void discover_desc_cb(guint8 status, const guint8 *pdu, guint16 len,
 							gpointer user_data)
 {
@@ -171,7 +226,31 @@ static void read_temp_type_cb(guint8 status, const guint8 *pdu, guint16 len,
 static void read_interval_cb(guint8 status, const guint8 *pdu, guint16 len,
 							gpointer user_data)
 {
-	/* TODO */
+	struct characteristic *ch = user_data;
+	uint8_t value[ATT_MAX_MTU];
+	uint16_t *p, interval;
+	int vlen;
+
+	if (status != 0) {
+		DBG("Measurement Interval value read failed: %s",
+							att_ecode2str(status));
+		return;
+	}
+
+	if (!dec_read_resp(pdu, len, value, &vlen)) {
+		DBG("Protocol error\n");
+		return;
+	}
+
+	if (vlen < 2) {
+		DBG("Invalid Interval received");
+		return;
+	}
+
+	p = (uint16_t *) value;
+	interval = btohs(*p);
+
+	change_property(ch->t, "Interval", &interval);
 }
 
 static void process_thermometer_char(struct characteristic *ch)
-- 
1.7.6.1


^ permalink raw reply related	[flat|nested] 20+ messages in thread

* [PATCH 9/9] Set Intermediate property if intermediate temp. characteristic is supported
  2011-09-19  8:52               ` [PATCH 8/9] Read measurement interval characteristic Santiago Carot-Nemesio
@ 2011-09-19  8:52                 ` Santiago Carot-Nemesio
  0 siblings, 0 replies; 20+ messages in thread
From: Santiago Carot-Nemesio @ 2011-09-19  8:52 UTC (permalink / raw)
  To: linux-bluetooth; +Cc: Santiago Carot-Nemesio

---
 thermometer/thermometer.c |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/thermometer/thermometer.c b/thermometer/thermometer.c
index 0178e99..fdf459e 100644
--- a/thermometer/thermometer.c
+++ b/thermometer/thermometer.c
@@ -258,7 +258,8 @@ static void process_thermometer_char(struct characteristic *ch)
 	GAttribResultFunc func;
 
 	if (g_strcmp0(ch->attr.uuid, INTERMEDIATE_TEMPERATURE_UUID) == 0) {
-		/* TODO: Change intermediate property and emit signal */
+		gboolean intermediate = TRUE;
+		change_property(ch->t, "Intermediate", &intermediate);
 		return;
 	} else if (g_strcmp0(ch->attr.uuid, TEMPERATURE_TYPE_UUID) == 0)
 		func = read_temp_type_cb;
-- 
1.7.6.1


^ permalink raw reply related	[flat|nested] 20+ messages in thread

* Re: [PATCH 1/9] Load device driver if thermometer service attribute appears in GATT
  2011-09-19  8:52 ` [PATCH 1/9] Load device driver if thermometer service attribute appears in GATT Santiago Carot-Nemesio
  2011-09-19  8:52   ` [PATCH 2/9] Register Health Thermometer Interface Santiago Carot-Nemesio
@ 2011-09-19 11:39   ` Anderson Lizardo
  2011-09-19 12:57     ` Santiago Carot
  1 sibling, 1 reply; 20+ messages in thread
From: Anderson Lizardo @ 2011-09-19 11:39 UTC (permalink / raw)
  To: Santiago Carot-Nemesio; +Cc: linux-bluetooth

Hi Santiago,

On Mon, Sep 19, 2011 at 4:52 AM, Santiago Carot-Nemesio
<sancane@gmail.com> wrote:
> ---
>  thermometer/manager.c     |   25 ++++++++++++++++++++++++-
>  thermometer/thermometer.c |    5 ++++-
>  thermometer/thermometer.h |    3 ++-
>  3 files changed, 30 insertions(+), 3 deletions(-)
>
> diff --git a/thermometer/manager.c b/thermometer/manager.c
> index 08f0e0a..0062ea1 100644
> --- a/thermometer/manager.c
> +++ b/thermometer/manager.c
> @@ -21,19 +21,42 @@
>  */
>
>  #include <gdbus.h>
> +#include <bluetooth/uuid.h>
>
>  #include "adapter.h"
>  #include "device.h"
> +#include "att.h"
>  #include "thermometer.h"
>  #include "manager.h"
>
> +#define HEALTH_THERMOMETER_SVC_UUID    "1809"
>  #define HEALTH_THERMOMETER_UUID                "00001809-0000-1000-8000-00805f9b34fb"
>
>  static DBusConnection *connection = NULL;
>
> +static gint primary_uuid_cmp(gconstpointer a, gconstpointer b)
> +{
> +       const struct att_primary *prim = a;
> +       const char *uuid = b;
> +
> +       return g_strcmp0(prim->uuid, uuid);
> +}
> +
>  static int thermometer_driver_probe(struct btd_device *device, GSList *uuids)
>  {
> -       return thermometer_register(connection, device);
> +       struct att_primary *tattr;
> +       GSList *l, *primaries;
> +
> +       primaries = btd_device_get_primaries(device);
> +
> +       l = g_slist_find_custom(primaries, HEALTH_THERMOMETER_SVC_UUID,
> +                                                       primary_uuid_cmp);

I think this is incorrect. You should compare against the 128-bit
UUID, not the 16-bit one. I.e. use HEALTH_THERMOMETER_UUID here.

> +       if (!l)
> +               return -1;
> +
> +       tattr = l->data;
> +
> +       return thermometer_register(connection, device, tattr);
>  }
>
>  static void thermometer_driver_remove(struct btd_device *device)
> diff --git a/thermometer/thermometer.c b/thermometer/thermometer.c
> index 3cd821a..027ae02 100644
> --- a/thermometer/thermometer.c
> +++ b/thermometer/thermometer.c
> @@ -21,12 +21,15 @@
>  */
>
>  #include <gdbus.h>
> +#include <bluetooth/uuid.h>
>
>  #include "adapter.h"
>  #include "device.h"
> +#include "att.h"
>  #include "thermometer.h"
>
> -int thermometer_register(DBusConnection *connection, struct btd_device *device)
> +int thermometer_register(DBusConnection *connection, struct btd_device *device,
> +                                               struct att_primary *tattr)
>  {
>        /* TODO: Register Health Thermometer Interface */
>        return 0;
> diff --git a/thermometer/thermometer.h b/thermometer/thermometer.h
> index 0937444..298c9ad 100644
> --- a/thermometer/thermometer.h
> +++ b/thermometer/thermometer.h
> @@ -20,5 +20,6 @@
>  *
>  */
>
> -int thermometer_register(DBusConnection *connection, struct btd_device *device);
> +int thermometer_register(DBusConnection *connection, struct btd_device *device,
> +                                               struct att_primary *tattr);
>  void thermometer_unregister(struct btd_device *device);
> --
> 1.7.6.1
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
>



-- 
Anderson Lizardo
Instituto Nokia de Tecnologia - INdT
Manaus - Brazil

^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: [PATCH 1/9] Load device driver if thermometer service attribute appears in GATT
  2011-09-19 11:39   ` [PATCH 1/9] Load device driver if thermometer service attribute appears in GATT Anderson Lizardo
@ 2011-09-19 12:57     ` Santiago Carot
  2011-09-19 14:39       ` Anderson Lizardo
  0 siblings, 1 reply; 20+ messages in thread
From: Santiago Carot @ 2011-09-19 12:57 UTC (permalink / raw)
  To: Anderson Lizardo; +Cc: linux-bluetooth

Hi,

See comment below.

2011/9/19 Anderson Lizardo <anderson.lizardo@openbossa.org>:
> Hi Santiago,
>
> On Mon, Sep 19, 2011 at 4:52 AM, Santiago Carot-Nemesio
> <sancane@gmail.com> wrote:
>> ---
>>  thermometer/manager.c     |   25 ++++++++++++++++++++++++-
>>  thermometer/thermometer.c |    5 ++++-
>>  thermometer/thermometer.h |    3 ++-
>>  3 files changed, 30 insertions(+), 3 deletions(-)
>>
>> diff --git a/thermometer/manager.c b/thermometer/manager.c
>> index 08f0e0a..0062ea1 100644
>> --- a/thermometer/manager.c
>> +++ b/thermometer/manager.c
>> @@ -21,19 +21,42 @@
>>  */
>>
>>  #include <gdbus.h>
>> +#include <bluetooth/uuid.h>
>>
>>  #include "adapter.h"
>>  #include "device.h"
>> +#include "att.h"
>>  #include "thermometer.h"
>>  #include "manager.h"
>>
>> +#define HEALTH_THERMOMETER_SVC_UUID    "1809"
>>  #define HEALTH_THERMOMETER_UUID                "00001809-0000-1000-8000-00805f9b34fb"
>>
>>  static DBusConnection *connection = NULL;
>>
>> +static gint primary_uuid_cmp(gconstpointer a, gconstpointer b)
>> +{
>> +       const struct att_primary *prim = a;
>> +       const char *uuid = b;
>> +
>> +       return g_strcmp0(prim->uuid, uuid);
>> +}
>> +
>>  static int thermometer_driver_probe(struct btd_device *device, GSList *uuids)
>>  {
>> -       return thermometer_register(connection, device);
>> +       struct att_primary *tattr;
>> +       GSList *l, *primaries;
>> +
>> +       primaries = btd_device_get_primaries(device);
>> +
>> +       l = g_slist_find_custom(primaries, HEALTH_THERMOMETER_SVC_UUID,
>> +                                                       primary_uuid_cmp);
>
> I think this is incorrect. You should compare against the 128-bit
> UUID, not the 16-bit one. I.e. use HEALTH_THERMOMETER_UUID here.

Are you sure?. In my tests, the function btd_device_get_primaries only
gives me 16-bit UUIDs. If I try the 128-bit ones it doesn't work. That
the reason wich I did this. Do you have any idea for this?

Regards.

^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: [PATCH 1/9] Load device driver if thermometer service attribute appears in GATT
  2011-09-19 12:57     ` Santiago Carot
@ 2011-09-19 14:39       ` Anderson Lizardo
  2011-09-19 16:13         ` Claudio Takahasi
  0 siblings, 1 reply; 20+ messages in thread
From: Anderson Lizardo @ 2011-09-19 14:39 UTC (permalink / raw)
  To: Santiago Carot; +Cc: linux-bluetooth

Hi,

On Mon, Sep 19, 2011 at 8:57 AM, Santiago Carot <sancane@gmail.com> wrote:
>>>  static int thermometer_driver_probe(struct btd_device *device, GSList *uuids)
>>>  {
>>> -       return thermometer_register(connection, device);
>>> +       struct att_primary *tattr;
>>> +       GSList *l, *primaries;
>>> +
>>> +       primaries = btd_device_get_primaries(device);
>>> +
>>> +       l = g_slist_find_custom(primaries, HEALTH_THERMOMETER_SVC_UUID,
>>> +                                                       primary_uuid_cmp);
>>
>> I think this is incorrect. You should compare against the 128-bit
>> UUID, not the 16-bit one. I.e. use HEALTH_THERMOMETER_UUID here.
>
> Are you sure?. In my tests, the function btd_device_get_primaries only
> gives me 16-bit UUIDs. If I try the 128-bit ones it doesn't work. That
> the reason wich I did this. Do you have any idea for this?

A bug maybe? See the proximity monitor manager.c, it uses 128-bit
string. Claudio, any comments?

Regards,
-- 
Anderson Lizardo
Instituto Nokia de Tecnologia - INdT
Manaus - Brazil

^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: [PATCH 1/9] Load device driver if thermometer service attribute appears in GATT
  2011-09-19 14:39       ` Anderson Lizardo
@ 2011-09-19 16:13         ` Claudio Takahasi
  2011-09-19 17:31           ` Santiago Carot
  2011-09-19 17:52           ` Santiago Carot
  0 siblings, 2 replies; 20+ messages in thread
From: Claudio Takahasi @ 2011-09-19 16:13 UTC (permalink / raw)
  To: Santiago Carot; +Cc: Anderson Lizardo, BlueZ development

Hi Santiago,

On Mon, Sep 19, 2011 at 11:39 AM, Anderson Lizardo
<anderson.lizardo@openbossa.org> wrote:
> Hi,
>
> On Mon, Sep 19, 2011 at 8:57 AM, Santiago Carot <sancane@gmail.com> wrote:
>>>>  static int thermometer_driver_probe(struct btd_device *device, GSList *uuids)
>>>>  {
>>>> -       return thermometer_register(connection, device);
>>>> +       struct att_primary *tattr;
>>>> +       GSList *l, *primaries;
>>>> +
>>>> +       primaries = btd_device_get_primaries(device);
>>>> +
>>>> +       l = g_slist_find_custom(primaries, HEALTH_THERMOMETER_SVC_UUID,
>>>> +                                                       primary_uuid_cmp);
>>>
>>> I think this is incorrect. You should compare against the 128-bit
>>> UUID, not the 16-bit one. I.e. use HEALTH_THERMOMETER_UUID here.
>>
>> Are you sure?. In my tests, the function btd_device_get_primaries only
>> gives me 16-bit UUIDs. If I try the 128-bit ones it doesn't work. That
>> the reason wich I did this. Do you have any idea for this?
>
> A bug maybe? See the proximity monitor manager.c, it uses 128-bit
> string. Claudio, any comments?
>
> Regards,
> --
> Anderson Lizardo
> Instituto Nokia de Tecnologia - INdT
> Manaus - Brazil


Are you testing over Basic Rate? Looking quickly the code, the
function which extract the primary service UUID from the service
record doesn't convert the UUIDs to UUUID128 before converting to
string.
BTW: why are you checking again if the thermometer UUID is in the
list? The driver will only be probed if at least one UUID matches.

BR,
Claudio.

^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: [PATCH 1/9] Load device driver if thermometer service attribute appears in GATT
  2011-09-19 16:13         ` Claudio Takahasi
@ 2011-09-19 17:31           ` Santiago Carot
  2011-09-19 17:52           ` Santiago Carot
  1 sibling, 0 replies; 20+ messages in thread
From: Santiago Carot @ 2011-09-19 17:31 UTC (permalink / raw)
  To: Claudio Takahasi; +Cc: Anderson Lizardo, BlueZ development

Hi,

2011/9/19 Claudio Takahasi <claudio.takahasi@openbossa.org>:
> Hi Santiago,
>
> On Mon, Sep 19, 2011 at 11:39 AM, Anderson Lizardo
> <anderson.lizardo@openbossa.org> wrote:
>> Hi,
>>
>> On Mon, Sep 19, 2011 at 8:57 AM, Santiago Carot <sancane@gmail.com> wrote:
>>>>>  static int thermometer_driver_probe(struct btd_device *device, GSList *uuids)
>>>>>  {
>>>>> -       return thermometer_register(connection, device);
>>>>> +       struct att_primary *tattr;
>>>>> +       GSList *l, *primaries;
>>>>> +
>>>>> +       primaries = btd_device_get_primaries(device);
>>>>> +
>>>>> +       l = g_slist_find_custom(primaries, HEALTH_THERMOMETER_SVC_UUID,
>>>>> +                                                       primary_uuid_cmp);
>>>>
>>>> I think this is incorrect. You should compare against the 128-bit
>>>> UUID, not the 16-bit one. I.e. use HEALTH_THERMOMETER_UUID here.
>>>
>>> Are you sure?. In my tests, the function btd_device_get_primaries only
>>> gives me 16-bit UUIDs. If I try the 128-bit ones it doesn't work. That
>>> the reason wich I did this. Do you have any idea for this?
>>
>> A bug maybe? See the proximity monitor manager.c, it uses 128-bit
>> string. Claudio, any comments?
>>
>> Regards,
>> --
>> Anderson Lizardo
>> Instituto Nokia de Tecnologia - INdT
>> Manaus - Brazil
>
>
> Are you testing over Basic Rate? Looking quickly the code, the
> function which extract the primary service UUID from the service
> record doesn't convert the UUIDs to UUUID128 before converting to
> string.
> BTW: why are you checking again if the thermometer UUID is in the
> list? The driver will only be probed if at least one UUID matches.
>

Yes, I'm testing over Basic rate by now, but you are rigth, that code
would'nt be needed because the driver is being already proved. I'm
going to change for next set of patches.

Thank you very much.

BR
Santi

^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: [PATCH 1/9] Load device driver if thermometer service attribute appears in GATT
  2011-09-19 16:13         ` Claudio Takahasi
  2011-09-19 17:31           ` Santiago Carot
@ 2011-09-19 17:52           ` Santiago Carot
  1 sibling, 0 replies; 20+ messages in thread
From: Santiago Carot @ 2011-09-19 17:52 UTC (permalink / raw)
  To: Claudio Takahasi; +Cc: Anderson Lizardo, BlueZ development

Hello Caludio

2011/9/19 Claudio Takahasi <claudio.takahasi@openbossa.org>:
> Hi Santiago,
>
> On Mon, Sep 19, 2011 at 11:39 AM, Anderson Lizardo
> <anderson.lizardo@openbossa.org> wrote:
>> Hi,
>>
>> On Mon, Sep 19, 2011 at 8:57 AM, Santiago Carot <sancane@gmail.com> wrote:
>>>>>  static int thermometer_driver_probe(struct btd_device *device, GSList *uuids)
>>>>>  {
>>>>> -       return thermometer_register(connection, device);
>>>>> +       struct att_primary *tattr;
>>>>> +       GSList *l, *primaries;
>>>>> +
>>>>> +       primaries = btd_device_get_primaries(device);
>>>>> +
>>>>> +       l = g_slist_find_custom(primaries, HEALTH_THERMOMETER_SVC_UUID,
>>>>> +                                                       primary_uuid_cmp);
>>>>
>>>> I think this is incorrect. You should compare against the 128-bit
>>>> UUID, not the 16-bit one. I.e. use HEALTH_THERMOMETER_UUID here.
>>>
>>> Are you sure?. In my tests, the function btd_device_get_primaries only
>>> gives me 16-bit UUIDs. If I try the 128-bit ones it doesn't work. That
>>> the reason wich I did this. Do you have any idea for this?
>>
>> A bug maybe? See the proximity monitor manager.c, it uses 128-bit
>> string. Claudio, any comments?
>>
>> Regards,
>> --
>> Anderson Lizardo
>> Instituto Nokia de Tecnologia - INdT
>> Manaus - Brazil
>
>
> Are you testing over Basic Rate? Looking quickly the code, the
> function which extract the primary service UUID from the service
> record doesn't convert the UUIDs to UUUID128 before converting to
> string.
> BTW: why are you checking again if the thermometer UUID is in the
> list? The driver will only be probed if at least one UUID matches.
>

I use it because I need the thermomete sevice range which is provided
in the att_primary struct. Do you know any other way to get it?.

Regards

^ permalink raw reply	[flat|nested] 20+ messages in thread

* [PATCH 4/9] Add functions to manage attio callbacks
  2011-09-28 17:48     ` [PATCH 3/9] Unregister " Santiago Carot-Nemesio
@ 2011-09-28 17:48       ` Santiago Carot-Nemesio
  0 siblings, 0 replies; 20+ messages in thread
From: Santiago Carot-Nemesio @ 2011-09-28 17:48 UTC (permalink / raw)
  To: linux-bluetooth; +Cc: Santiago Carot-Nemesio

---
 thermometer/thermometer.c |   29 +++++++++++++++++++++++++++++
 1 files changed, 29 insertions(+), 0 deletions(-)

diff --git a/thermometer/thermometer.c b/thermometer/thermometer.c
index cdfe455..e06c6da 100644
--- a/thermometer/thermometer.c
+++ b/thermometer/thermometer.c
@@ -28,6 +28,7 @@
 #include "error.h"
 #include "log.h"
 #include "gattrib.h"
+#include "attio.h"
 #include "att.h"
 #include "thermometer.h"
 
@@ -36,7 +37,9 @@
 struct thermometer {
 	DBusConnection          *conn;		/* The connection to the bus */
 	struct btd_device       *dev;		/* Device reference */
+	GAttrib			*attrib;	/* GATT connection */
 	struct att_range	*svc_range;	/* Thermometer range */
+	gint                    attioid;	/* Att watcher id */
 };
 
 static GSList *thermometers = NULL;
@@ -45,6 +48,12 @@ static void destroy_thermometer(gpointer user_data)
 {
 	struct thermometer *t = user_data;
 
+	if (t->attioid)
+		btd_device_remove_attio_callback(t->dev, t->attioid);
+
+	if (t->attrib)
+		g_attrib_unref(t->attrib);
+
 	dbus_connection_unref(t->conn);
 	btd_device_unref(t->dev);
 	g_free(t->svc_range);
@@ -126,6 +135,23 @@ static GDBusSignalTable thermometer_signals[] = {
 	{ }
 };
 
+static void attio_connected_cb(GAttrib *attrib, gpointer user_data)
+{
+	struct thermometer *t = user_data;
+
+	t->attrib = g_attrib_ref(attrib);
+}
+
+static void attio_disconnected_cb(gpointer user_data)
+{
+	struct thermometer *t = user_data;
+
+	DBG("GATT Disconnected");
+
+	g_attrib_unref(t->attrib);
+	t->attrib = NULL;
+}
+
 int thermometer_register(DBusConnection *connection, struct btd_device *device,
 						struct att_primary *tattr)
 {
@@ -149,6 +175,9 @@ int thermometer_register(DBusConnection *connection, struct btd_device *device,
 	}
 
 	thermometers = g_slist_prepend(thermometers, t);
+
+	t->attioid = btd_device_add_attio_callback(device, attio_connected_cb,
+						attio_disconnected_cb, t);
 	return 0;
 }
 
-- 
1.7.6.1


^ permalink raw reply related	[flat|nested] 20+ messages in thread

* [PATCH 4/9] Add functions to manage attio callbacks
  2011-09-29 13:46     ` [PATCH 3/9] Unregister " Santiago Carot-Nemesio
@ 2011-09-29 13:46       ` Santiago Carot-Nemesio
  2011-10-10  7:22         ` Johan Hedberg
  0 siblings, 1 reply; 20+ messages in thread
From: Santiago Carot-Nemesio @ 2011-09-29 13:46 UTC (permalink / raw)
  To: linux-bluetooth; +Cc: Santiago Carot-Nemesio

---
 thermometer/thermometer.c |   29 +++++++++++++++++++++++++++++
 1 files changed, 29 insertions(+), 0 deletions(-)

diff --git a/thermometer/thermometer.c b/thermometer/thermometer.c
index cdfe455..e06c6da 100644
--- a/thermometer/thermometer.c
+++ b/thermometer/thermometer.c
@@ -28,6 +28,7 @@
 #include "error.h"
 #include "log.h"
 #include "gattrib.h"
+#include "attio.h"
 #include "att.h"
 #include "thermometer.h"
 
@@ -36,7 +37,9 @@
 struct thermometer {
 	DBusConnection          *conn;		/* The connection to the bus */
 	struct btd_device       *dev;		/* Device reference */
+	GAttrib			*attrib;	/* GATT connection */
 	struct att_range	*svc_range;	/* Thermometer range */
+	gint                    attioid;	/* Att watcher id */
 };
 
 static GSList *thermometers = NULL;
@@ -45,6 +48,12 @@ static void destroy_thermometer(gpointer user_data)
 {
 	struct thermometer *t = user_data;
 
+	if (t->attioid)
+		btd_device_remove_attio_callback(t->dev, t->attioid);
+
+	if (t->attrib)
+		g_attrib_unref(t->attrib);
+
 	dbus_connection_unref(t->conn);
 	btd_device_unref(t->dev);
 	g_free(t->svc_range);
@@ -126,6 +135,23 @@ static GDBusSignalTable thermometer_signals[] = {
 	{ }
 };
 
+static void attio_connected_cb(GAttrib *attrib, gpointer user_data)
+{
+	struct thermometer *t = user_data;
+
+	t->attrib = g_attrib_ref(attrib);
+}
+
+static void attio_disconnected_cb(gpointer user_data)
+{
+	struct thermometer *t = user_data;
+
+	DBG("GATT Disconnected");
+
+	g_attrib_unref(t->attrib);
+	t->attrib = NULL;
+}
+
 int thermometer_register(DBusConnection *connection, struct btd_device *device,
 						struct att_primary *tattr)
 {
@@ -149,6 +175,9 @@ int thermometer_register(DBusConnection *connection, struct btd_device *device,
 	}
 
 	thermometers = g_slist_prepend(thermometers, t);
+
+	t->attioid = btd_device_add_attio_callback(device, attio_connected_cb,
+						attio_disconnected_cb, t);
 	return 0;
 }
 
-- 
1.7.6.1


^ permalink raw reply related	[flat|nested] 20+ messages in thread

* Re: [PATCH 4/9] Add functions to manage attio callbacks
  2011-09-29 13:46       ` [PATCH 4/9] Add functions to manage attio callbacks Santiago Carot-Nemesio
@ 2011-10-10  7:22         ` Johan Hedberg
  0 siblings, 0 replies; 20+ messages in thread
From: Johan Hedberg @ 2011-10-10  7:22 UTC (permalink / raw)
  To: Santiago Carot-Nemesio; +Cc: linux-bluetooth

Hi Santiago,

On Thu, Sep 29, 2011, Santiago Carot-Nemesio wrote:
> @@ -36,7 +37,9 @@
>  struct thermometer {
>  	DBusConnection          *conn;		/* The connection to the bus */
>  	struct btd_device       *dev;		/* Device reference */
> +	GAttrib			*attrib;	/* GATT connection */
>  	struct att_range	*svc_range;	/* Thermometer range */
> +	gint                    attioid;	/* Att watcher id */
>  };

Looking at the attio.h API, the attioid should be guint and not gint,
right? Also, this struct has the same inconsistency in indentation. Some
lines use spaces whereas other use tabs. Please fix this (though
potentially in a separate coding-style cleanup patch since the
inconsistency exists there already before this patch).

> +	if (t->attioid)
> +		btd_device_remove_attio_callback(t->dev, t->attioid);

Please use if (t->attioid > 0)

Johan

^ permalink raw reply	[flat|nested] 20+ messages in thread

* [PATCH 4/9] Add functions to manage attio callbacks
  2011-10-13 15:29     ` [PATCH 3/9] Unregister " Santiago Carot-Nemesio
@ 2011-10-13 15:29       ` Santiago Carot-Nemesio
  0 siblings, 0 replies; 20+ messages in thread
From: Santiago Carot-Nemesio @ 2011-10-13 15:29 UTC (permalink / raw)
  To: linux-bluetooth; +Cc: Santiago Carot-Nemesio

---
 thermometer/thermometer.c |   28 ++++++++++++++++++++++++++++
 1 files changed, 28 insertions(+), 0 deletions(-)

diff --git a/thermometer/thermometer.c b/thermometer/thermometer.c
index d43eb59..33a2b7b 100644
--- a/thermometer/thermometer.c
+++ b/thermometer/thermometer.c
@@ -29,6 +29,7 @@
 #include "error.h"
 #include "log.h"
 #include "gattrib.h"
+#include "attio.h"
 #include "att.h"
 #include "thermometer.h"
 
@@ -37,7 +38,9 @@
 struct thermometer {
 	DBusConnection		*conn;		/* The connection to the bus */
 	struct btd_device	*dev;		/* Device reference */
+	GAttrib			*attrib;	/* GATT connection */
 	struct att_range	*svc_range;	/* Thermometer range */
+	guint			attioid;	/* Att watcher id */
 };
 
 static GSList *thermometers = NULL;
@@ -46,6 +49,12 @@ static void destroy_thermometer(gpointer user_data)
 {
 	struct thermometer *t = user_data;
 
+	if (t->attioid > 0)
+		btd_device_remove_attio_callback(t->dev, t->attioid);
+
+	if (t->attrib != NULL)
+		g_attrib_unref(t->attrib);
+
 	dbus_connection_unref(t->conn);
 	btd_device_unref(t->dev);
 	g_free(t->svc_range);
@@ -127,6 +136,23 @@ static GDBusSignalTable thermometer_signals[] = {
 	{ }
 };
 
+static void attio_connected_cb(GAttrib *attrib, gpointer user_data)
+{
+	struct thermometer *t = user_data;
+
+	t->attrib = g_attrib_ref(attrib);
+}
+
+static void attio_disconnected_cb(gpointer user_data)
+{
+	struct thermometer *t = user_data;
+
+	DBG("GATT Disconnected");
+
+	g_attrib_unref(t->attrib);
+	t->attrib = NULL;
+}
+
 int thermometer_register(DBusConnection *connection, struct btd_device *device,
 						struct att_primary *tattr)
 {
@@ -151,6 +177,8 @@ int thermometer_register(DBusConnection *connection, struct btd_device *device,
 
 	thermometers = g_slist_prepend(thermometers, t);
 
+	t->attioid = btd_device_add_attio_callback(device, attio_connected_cb,
+						attio_disconnected_cb, t);
 	return 0;
 }
 
-- 
1.7.6.1


^ permalink raw reply related	[flat|nested] 20+ messages in thread

end of thread, other threads:[~2011-10-13 15:29 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-09-19  8:52 Santiago Carot-Nemesio
2011-09-19  8:52 ` [PATCH 1/9] Load device driver if thermometer service attribute appears in GATT Santiago Carot-Nemesio
2011-09-19  8:52   ` [PATCH 2/9] Register Health Thermometer Interface Santiago Carot-Nemesio
2011-09-19  8:52     ` [PATCH 3/9] Unregister " Santiago Carot-Nemesio
2011-09-19  8:52       ` [PATCH 4/9] Add functions to manage attio callbacks Santiago Carot-Nemesio
2011-09-19  8:52         ` [PATCH 5/9] Add handler function to manage GATT indications Santiago Carot-Nemesio
2011-09-19  8:52           ` [PATCH 6/9] Get all characteristics in thermometer service Santiago Carot-Nemesio
2011-09-19  8:52             ` [PATCH 7/9] Read temperature type characteristic Santiago Carot-Nemesio
2011-09-19  8:52               ` [PATCH 8/9] Read measurement interval characteristic Santiago Carot-Nemesio
2011-09-19  8:52                 ` [PATCH 9/9] Set Intermediate property if intermediate temp. characteristic is supported Santiago Carot-Nemesio
2011-09-19 11:39   ` [PATCH 1/9] Load device driver if thermometer service attribute appears in GATT Anderson Lizardo
2011-09-19 12:57     ` Santiago Carot
2011-09-19 14:39       ` Anderson Lizardo
2011-09-19 16:13         ` Claudio Takahasi
2011-09-19 17:31           ` Santiago Carot
2011-09-19 17:52           ` Santiago Carot
  -- strict thread matches above, loose matches on Subject: below --
2011-09-28 17:48 Health Thermometer Profile patches Santiago Carot-Nemesio
2011-09-28 17:48 ` [PATCH 1/9] Get thermometer service range to load the driver Santiago Carot-Nemesio
2011-09-28 17:48   ` [PATCH 2/9] Register Health Thermometer Interface Santiago Carot-Nemesio
2011-09-28 17:48     ` [PATCH 3/9] Unregister " Santiago Carot-Nemesio
2011-09-28 17:48       ` [PATCH 4/9] Add functions to manage attio callbacks Santiago Carot-Nemesio
2011-09-29 13:46 Health Thermometer Profile patches Santiago Carot-Nemesio
2011-09-29 13:46 ` [PATCH 1/9] Get thermometer service range to load the driver Santiago Carot-Nemesio
2011-09-29 13:46   ` [PATCH 2/9] Register Health Thermometer Interface Santiago Carot-Nemesio
2011-09-29 13:46     ` [PATCH 3/9] Unregister " Santiago Carot-Nemesio
2011-09-29 13:46       ` [PATCH 4/9] Add functions to manage attio callbacks Santiago Carot-Nemesio
2011-10-10  7:22         ` Johan Hedberg
2011-10-13 15:29 Health Thermometer Profile Santiago Carot-Nemesio
2011-10-13 15:29 ` [PATCH 1/9] Get thermometer service range to load the driver Santiago Carot-Nemesio
2011-10-13 15:29   ` [PATCH 2/9] Register Health Thermometer Interface Santiago Carot-Nemesio
2011-10-13 15:29     ` [PATCH 3/9] Unregister " Santiago Carot-Nemesio
2011-10-13 15:29       ` [PATCH 4/9] Add functions to manage attio callbacks Santiago Carot-Nemesio

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).