linux-bluetooth.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Jose Antonio Santos Cadenas <santoscadenas@gmail.com>
To: linux-bluetooth@vger.kernel.org
Cc: Jose Antonio Santos Cadenas <santoscadenas@gmail.com>
Subject: [PATCH 12/32] Complete the response dictionary in GetHealthInstances response
Date: Fri,  4 Jun 2010 10:30:05 +0200	[thread overview]
Message-ID: <1275640225-4186-13-git-send-email-santoscadenas@gmail.com> (raw)
In-Reply-To: <1275640225-4186-12-git-send-email-santoscadenas@gmail.com>

---
 health/hdp.c      |  169 ++++++++++++++++++++++++++++++++++-------------------
 health/hdp_util.c |   56 +++++++++++++++++-
 health/hdp_util.h |   12 ++++
 3 files changed, 175 insertions(+), 62 deletions(-)

diff --git a/health/hdp.c b/health/hdp.c
index 8bb6057..840af0f 100644
--- a/health/hdp.c
+++ b/health/hdp.c
@@ -46,6 +46,12 @@ struct instances_aux {
 	DBusMessage		*msg;
 };
 
+struct health_instances_aux {
+	guint32		handler;
+	guint8		data_spec;
+	GSList		*end_points;
+};
+
 static struct hdp_adapter *find_adapter(GSList *list,
 					struct btd_adapter *btd_adapter)
 {
@@ -86,41 +92,114 @@ static int hdp_instance_idcmp(gconstpointer instance, gconstpointer p)
 	return -1;
 }
 
-static void append_dict_features(DBusMessageIter *iter, GSList *end_points)
+static void fill_up_one_spec(DBusMessageIter *dict, gpointer data)
 {
-	DBusMessageIter entry, array;
-
-	dbus_message_iter_open_container(iter, DBUS_TYPE_DICT_ENTRY,
-								NULL, &entry);
-	dbus_message_iter_append_basic(&entry, DBUS_TYPE_STRING, "end_points");
-
-	dbus_message_iter_open_container(&entry, DBUS_TYPE_VARIANT,
-			DBUS_TYPE_VARIANT_AS_STRING
-			DBUS_TYPE_ARRAY_AS_STRING
-			DBUS_TYPE_ARRAY_AS_STRING
-			DBUS_DICT_ENTRY_BEGIN_CHAR_AS_STRING
-			DBUS_TYPE_STRING_AS_STRING DBUS_TYPE_VARIANT_AS_STRING
-			DBUS_DICT_ENTRY_END_CHAR_AS_STRING, &array);
-
-	dbus_message_iter_close_container(&entry, &array);
-	dbus_message_iter_close_container(iter, &entry);
+	struct hdp_feature *feature = data;
+
+	dict_append_entry(dict, "dtype", DBUS_TYPE_UINT16, &feature->dtype);
+	if (feature->dscr)
+		dict_append_entry(dict, "description", DBUS_TYPE_STRING,
+								&feature->dscr);
 }
 
-static void append_array_entry(DBusMessageIter *iter, uint32_t *handler,
-					uint8_t *spec, GSList *end_points)
+static void fill_up_specs(DBusMessageIter *dict, gpointer data)
 {
-	DBusMessageIter dict;
+	GSList *specs = data;
+	GSList *l;
+	struct hdp_feature *feature;
+
 
-	dbus_message_iter_open_container(iter, DBUS_TYPE_ARRAY,
-			DBUS_DICT_ENTRY_BEGIN_CHAR_AS_STRING
-			DBUS_TYPE_STRING_AS_STRING DBUS_TYPE_VARIANT_AS_STRING
-			DBUS_DICT_ENTRY_END_CHAR_AS_STRING, &dict);
+	for (l = specs; l; l = l->next) {
+		feature = l->data;
 
-	dict_append_entry(&dict, "id", DBUS_TYPE_UINT32, handler);
-	dict_append_entry(&dict, "data_spec", DBUS_TYPE_BYTE, spec);
-	append_dict_features(&dict, end_points);
+		hdp_append_dict(dict, fill_up_one_spec, feature);
+	}
+}
+
+static void fill_up_specs_array(DBusMessageIter *array, gpointer data)
+{
+	hdp_append_array_of_dicts(array, fill_up_specs, data);
+}
 
-	dbus_message_iter_close_container(iter, &dict);
+static void fill_up_one_end_point(DBusMessageIter *dict, gpointer data)
+{
+	struct hdp_supp_fts *fts = data;
+	const char *role;
+
+	if (fts->role == HDP_SOURCE)
+		role = HDP_SOURCE_ROLE_AS_STRING;
+	else if (fts->role == HDP_SINK)
+		role = HDP_SINK_ROLE_AS_STRING;
+
+	dict_append_entry(dict, "mdepid", DBUS_TYPE_BYTE, &fts->mdepid);
+	dict_append_entry(dict, "role", DBUS_TYPE_STRING, &role);
+	hdp_append_variant_array_entry(dict, "specs", fill_up_specs_array,
+								fts->features);
+}
+
+static void fill_up_end_points(DBusMessageIter *dict, gpointer data)
+{
+	GSList *end_points = data;
+	struct hdp_supp_fts *fts;
+	GSList *l;
+
+	for (l = end_points; l; l = l->next) {
+		fts = l->data;
+
+		if (fts->role != HDP_SOURCE && fts->role != HDP_SINK)
+			continue;
+
+		hdp_append_dict(dict, fill_up_one_end_point, fts);
+	}
+}
+
+static void fill_up_end_points_array(DBusMessageIter *iter, gpointer data)
+{
+	hdp_append_array_of_dicts(iter, fill_up_end_points, data);
+}
+
+static void fill_up_instance(DBusMessageIter *entry, gpointer data)
+{
+	struct health_instances_aux *aux = data;
+	guint32 handler = aux->handler;
+	guint8 data_spec = aux->data_spec;
+	GSList *end_points = aux->end_points;
+
+	dict_append_entry(entry, "id", DBUS_TYPE_UINT32, &handler);
+	dict_append_entry(entry, "data_spec", DBUS_TYPE_BYTE, &data_spec);
+	hdp_append_variant_array_entry(entry, "end_points",
+					fill_up_end_points_array, end_points);
+}
+
+static void fill_up_health_instances(DBusMessageIter *dict, gpointer data)
+{
+	sdp_list_t *recs = data;
+	sdp_record_t *rec;
+	sdp_list_t *l;
+	guint8 data_spec;
+	GSList *end_points;
+	struct health_instances_aux *aux;
+
+	for (l = recs; l; l = l->next) {
+		rec = l->data;
+		DBG("Record found 0x%x", rec->handle);
+
+		if (!hdp_get_data_exchange_spec(rec, &data_spec)) {
+			error("Error getting data exchange info");
+			continue;
+		}
+		end_points = hdp_get_end_points(rec);
+		if (!end_points) {
+			error("Error getting end points");
+			continue;
+		}
+		aux = g_new0(struct health_instances_aux, 1);
+		aux->handler = rec->handle;
+		aux->data_spec = data_spec;
+		aux->end_points = end_points;
+		hdp_append_dict(dict, fill_up_instance, aux);
+		g_free(aux);
+	}
 }
 
 static void sink_health_instances(sdp_list_t *recs, int err, gpointer user_data)
@@ -129,11 +208,7 @@ static void sink_health_instances(sdp_list_t *recs, int err, gpointer user_data)
 	DBusMessage *msg = cb_data->msg;
 	struct hdp_device *device = cb_data->device;
 	DBusMessage *reply;
-	sdp_record_t *rec;
-	sdp_list_t *l;
-	guint8 data_spec;
-	GSList *end_points;
-	DBusMessageIter iter, dict;
+	DBusMessageIter iter;
 
 	g_free(cb_data);
 
@@ -151,34 +226,8 @@ static void sink_health_instances(sdp_list_t *recs, int err, gpointer user_data)
 
 	dbus_message_iter_init_append(reply, &iter);
 
-	dbus_message_iter_open_container(&iter, DBUS_TYPE_ARRAY,
-			DBUS_TYPE_ARRAY_AS_STRING
-			DBUS_DICT_ENTRY_BEGIN_CHAR_AS_STRING
-			DBUS_TYPE_STRING_AS_STRING DBUS_TYPE_VARIANT_AS_STRING
-			DBUS_DICT_ENTRY_END_CHAR_AS_STRING, &dict);
-
-	for (l = recs; l; l = l->next) {
-		rec = l->data;
-		DBG("Record found 0x%x", rec->handle);
+	hdp_append_array_of_dicts(&iter, fill_up_health_instances, recs);
 
-		if (!hdp_get_data_exchange_spec(rec, &data_spec)) {
-			error("Error getting data exchange info");
-			continue;
-		}
-		end_points = hdp_get_end_points(rec);
-		if (!end_points) {
-			error("Error getting end points");
-			continue;
-		}
-		append_array_entry(&dict, &rec->handle, &data_spec,
-								end_points);
-	}
-
-	dbus_message_iter_close_container(&iter, &dict);
-/*
-	reply = g_dbus_create_error(msg, ERROR_INTERFACE ".HealthError",
-							"Not implemented yet");
-*/
 	g_dbus_send_message(device->conn, reply);
 }
 
diff --git a/health/hdp_util.c b/health/hdp_util.c
index 2f09417..921a1e1 100644
--- a/health/hdp_util.c
+++ b/health/hdp_util.c
@@ -328,9 +328,9 @@ static gboolean parse_role(DBusMessageIter *iter, GError **err, gpointer data)
 	}
 
 	dbus_message_iter_get_basic(string, &role);
-	if (g_strcmp0(role, "sink") == 0)
+	if (g_strcmp0(role, HDP_SINK_ROLE_AS_STRING) == 0)
 		fts->role = HDP_SINK;
-	else if (g_strcmp0(role, "source") == 0)
+	else if (g_strcmp0(role, HDP_SOURCE_ROLE_AS_STRING) == 0)
 		fts->role = HDP_SOURCE;
 	else {
 		g_set_error(err, HDP_ERROR, HDP_UNSPECIFIED_ERROR,
@@ -949,3 +949,55 @@ GSList *hdp_get_end_points(const sdp_record_t *rec)
 
 	return epl;
 }
+
+void hdp_append_array_of_dicts(DBusMessageIter *iter, hdp_dbus_fill_up fill_up,
+							gpointer user_data)
+{
+	DBusMessageIter dict;
+
+	dbus_message_iter_open_container(iter, DBUS_TYPE_ARRAY,
+			DBUS_TYPE_ARRAY_AS_STRING
+			DBUS_DICT_ENTRY_BEGIN_CHAR_AS_STRING
+			DBUS_TYPE_STRING_AS_STRING DBUS_TYPE_VARIANT_AS_STRING
+			DBUS_DICT_ENTRY_END_CHAR_AS_STRING, &dict);
+
+	fill_up(&dict, user_data);
+
+	dbus_message_iter_close_container(iter, &dict);
+}
+
+void hdp_append_dict(DBusMessageIter *iter, hdp_dbus_fill_up fill_up,
+							gpointer user_data)
+{
+	DBusMessageIter entry;
+
+	dbus_message_iter_open_container(iter, DBUS_TYPE_ARRAY,
+			DBUS_DICT_ENTRY_BEGIN_CHAR_AS_STRING
+			DBUS_TYPE_STRING_AS_STRING DBUS_TYPE_VARIANT_AS_STRING
+			DBUS_DICT_ENTRY_END_CHAR_AS_STRING, &entry);
+
+	fill_up(&entry, user_data);
+
+	dbus_message_iter_close_container(iter, &entry);
+}
+
+void hdp_append_variant_array_entry(DBusMessageIter *iter, char *key,
+				hdp_dbus_fill_up fill_up, gpointer user_data)
+{
+	DBusMessageIter entry, array;
+
+	dbus_message_iter_open_container(iter, DBUS_TYPE_DICT_ENTRY,
+								NULL, &entry);
+	dbus_message_iter_append_basic(&entry, DBUS_TYPE_STRING, &key);
+	dbus_message_iter_open_container(&entry, DBUS_TYPE_VARIANT,
+			DBUS_TYPE_ARRAY_AS_STRING
+			DBUS_TYPE_ARRAY_AS_STRING
+			DBUS_DICT_ENTRY_BEGIN_CHAR_AS_STRING
+			DBUS_TYPE_STRING_AS_STRING DBUS_TYPE_VARIANT_AS_STRING
+			DBUS_DICT_ENTRY_END_CHAR_AS_STRING, &array);
+
+	fill_up(&array, user_data);
+
+	dbus_message_iter_close_container(&entry, &array);
+	dbus_message_iter_close_container(iter, &entry);
+}
diff --git a/health/hdp_util.h b/health/hdp_util.h
index beafa00..08e6471 100644
--- a/health/hdp_util.h
+++ b/health/hdp_util.h
@@ -29,10 +29,22 @@
 #include <gdbus.h>
 #include "hdp_types.h"
 
+#define HDP_SINK_ROLE_AS_STRING	"sink"
+#define HDP_SOURCE_ROLE_AS_STRING	"source"
+
+typedef void (*hdp_dbus_fill_up)(DBusMessageIter *iter, gpointer data);
+
 struct hdp_config *hdp_get_config(DBusMessageIter *iter, GError **err);
 gboolean hdp_register_sdp_record(struct hdp_instance *hdps);
 gboolean hdp_get_data_exchange_spec(const sdp_record_t *rec, guint8 *val);
 GSList *hdp_get_end_points(const sdp_record_t *rec);
 void hdp_instance_free(struct hdp_instance *hdpi);
 
+void hdp_append_array_of_dicts(DBusMessageIter *iter, hdp_dbus_fill_up fill_up,
+							gpointer user_data);
+void hdp_append_dict(DBusMessageIter *iter, hdp_dbus_fill_up fil_up,
+							gpointer user_data);
+void hdp_append_variant_array_entry(DBusMessageIter *iter, char *key,
+				hdp_dbus_fill_up fill_up, gpointer user_data);
+
 #endif /* __HDP_UTIL_H__ */
-- 
1.6.3.3


  reply	other threads:[~2010-06-04  8:30 UTC|newest]

Thread overview: 34+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-06-04  8:29 [PATCH 00/32] Health Device Prifile (HDP) -- updated Jose Antonio Santos Cadenas
2010-06-04  8:29 ` [PATCH 01/32] Add Health api description Jose Antonio Santos Cadenas
2010-06-04  8:29   ` [PATCH 02/32] Initial support for HDP Jose Antonio Santos Cadenas
2010-06-04  8:29     ` [PATCH 03/32] Add functions to resiger health instances in SDP Jose Antonio Santos Cadenas
2010-06-04  8:29       ` [PATCH 04/32] Initial support for hdp_device_drivers Jose Antonio Santos Cadenas
2010-06-04  8:29         ` [PATCH 05/32] Register healt_driver interfaces in d-bus Jose Antonio Santos Cadenas
2010-06-04  8:29           ` [PATCH 06/32] Add delete instance petition Jose Antonio Santos Cadenas
2010-06-04  8:30             ` [PATCH 07/32] Add watcher to control client disconections to delete hdp instance Jose Antonio Santos Cadenas
2010-06-04  8:30               ` [PATCH 08/32] Work in getting remote SDP records Jose Antonio Santos Cadenas
2010-06-04  8:30                 ` [PATCH 09/32] Adds functions to get remote suported features from its SDP record Jose Antonio Santos Cadenas
2010-06-04  8:30                   ` [PATCH 10/32] Insert end_point in array returned by get_health_instances Jose Antonio Santos Cadenas
2010-06-04  8:30                     ` [PATCH 11/32] Initial support for connecting instances Jose Antonio Santos Cadenas
2010-06-04  8:30                       ` Jose Antonio Santos Cadenas [this message]
2010-06-04  8:30                         ` [PATCH 13/32] Implement connection of health instances Jose Antonio Santos Cadenas
2010-06-04  8:30                           ` [PATCH 14/32] Manage mcap instances Jose Antonio Santos Cadenas
2010-06-04  8:30                             ` [PATCH 15/32] Implement connect MCL callback in health instances connection Jose Antonio Santos Cadenas
2010-06-04  8:30                               ` [PATCH 16/32] Register Health link int the bus when MCL is connected Jose Antonio Santos Cadenas
2010-06-04  8:30                                 ` [PATCH 17/32] Analize remote record looking for psm Jose Antonio Santos Cadenas
2010-06-04  8:30                                   ` [PATCH 18/32] Unify the creation of health links Jose Antonio Santos Cadenas
2010-06-04  8:30                                     ` [PATCH 19/32] Remove hdp_device pointer from health link struct Jose Antonio Santos Cadenas
2010-06-04  8:30                                       ` [PATCH 20/32] Release health link resources Jose Antonio Santos Cadenas
2010-06-04  8:30                                         ` [PATCH 21/32] Manage mcap disconnections and reconnections Jose Antonio Santos Cadenas
2010-06-04  8:30                                           ` [PATCH 22/32] Initial work for disconnecting health links Jose Antonio Santos Cadenas
2010-06-04  8:30                                             ` [PATCH 23/32] Avoid multiple links with the same device Jose Antonio Santos Cadenas
2010-06-04  8:30                                               ` [PATCH 24/32] Disconnect health link petition Jose Antonio Santos Cadenas
2010-06-04  8:30                                                 ` [PATCH 25/32] Create new structure to manage data channels in HDP Jose Antonio Santos Cadenas
2010-06-04  8:30                                                   ` [PATCH 26/32] Implement connect data channel callback Jose Antonio Santos Cadenas
2010-06-04  8:30                                                     ` [PATCH 27/32] Change function name when retreiving remote SDP records Jose Antonio Santos Cadenas
2010-06-04  8:30                                                       ` [PATCH 28/32] Changed HEALTH_MANAGER_INTERFACE to HEALTH_MANAGER Jose Antonio Santos Cadenas
2010-06-04  8:30                                                         ` [PATCH 29/32] Call the agent when a new Health Link is created Jose Antonio Santos Cadenas
2010-06-04  8:30                                                           ` [PATCH 30/32] Add a test that creates a simple health agent Jose Antonio Santos Cadenas
2010-06-04  8:30                                                             ` [PATCH 31/32] Send MCL disconnect callback to agents Jose Antonio Santos Cadenas
2010-06-04  8:30                                                               ` [PATCH 32/32] Add support for mcl reconnections Jose Antonio Santos Cadenas
  -- strict thread matches above, loose matches on Subject: below --
2010-06-02 13:18 [PATCH 00/32] Health device profile (HDP) Jose Antonio Santos Cadenas
2010-06-02 13:18 ` [PATCH 01/32] Add Health api description Jose Antonio Santos Cadenas
2010-06-02 13:18   ` [PATCH 02/32] Initial support for HDP Jose Antonio Santos Cadenas
2010-06-02 13:18     ` [PATCH 03/32] Add functions to resiger health instances in SDP Jose Antonio Santos Cadenas
2010-06-02 13:19       ` [PATCH 04/32] Initial support for hdp_device_drivers Jose Antonio Santos Cadenas
2010-06-02 13:19         ` [PATCH 05/32] Register healt_driver interfaces in d-bus Jose Antonio Santos Cadenas
2010-06-02 13:19           ` [PATCH 06/32] Add delete instance petition Jose Antonio Santos Cadenas
2010-06-02 13:19             ` [PATCH 07/32] Add watcher to control client disconections to delete hdp instance Jose Antonio Santos Cadenas
2010-06-02 13:19               ` [PATCH 08/32] Work in getting remote SDP records Jose Antonio Santos Cadenas
2010-06-02 13:19                 ` [PATCH 09/32] Adds functions to get remote suported features from its SDP record Jose Antonio Santos Cadenas
2010-06-02 13:19                   ` [PATCH 10/32] Insert end_point in array returned by get_health_instances Jose Antonio Santos Cadenas
2010-06-02 13:19                     ` [PATCH 11/32] Initial support for connecting instances Jose Antonio Santos Cadenas
2010-06-02 13:19                       ` [PATCH 12/32] Complete the response dictionary in GetHealthInstances response Jose Antonio Santos Cadenas

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1275640225-4186-13-git-send-email-santoscadenas@gmail.com \
    --to=santoscadenas@gmail.com \
    --cc=linux-bluetooth@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).