summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLuiz Augusto von Dentz <luiz.dentz@openbossa.org>2008-09-11 10:51:45 -0300
committerLuiz Augusto von Dentz <luiz.dentz@openbossa.org>2008-09-11 11:18:19 -0300
commitda8ef81cf060726782614baeea5b7e2c466b2341 (patch)
treecf3682c6d90a4256e1143200c4839a735ec2985d
parent1c284b3ba427638179d936286f4c4866fff99e28 (diff)
Split code of simple search and browse.
-rw-r--r--src/device.c69
1 files changed, 43 insertions, 26 deletions
diff --git a/src/device.c b/src/device.c
index 3db69ea1..7de2e8af 100644
--- a/src/device.c
+++ b/src/device.c
@@ -89,7 +89,6 @@ struct browse_req {
GSList *uuids_removed;
sdp_list_t *records;
int search_uuid;
- gboolean browse;
};
static uint16_t uuid_list[] = {
@@ -875,17 +874,12 @@ static void store(struct btd_device *device)
g_free(str);
}
-static void browse_cb(sdp_list_t *recs, int err, gpointer user_data)
+static void search_cb(sdp_list_t *recs, int err, gpointer user_data)
{
struct browse_req *req = user_data;
struct btd_device *device = req->device;
- struct btd_adapter *adapter = device->adapter;
- bdaddr_t src, dst;
- uuid_t uuid;
DBusMessage *reply;
- adapter_get_address(adapter, &src);
-
if (err < 0) {
error("%s: error updating services: %s (%d)",
device->path, strerror(-err), -err);
@@ -894,19 +888,6 @@ static void browse_cb(sdp_list_t *recs, int err, gpointer user_data)
update_services(req, recs);
- /* Public browsing successful or Single record requested */
- if (req->browse == FALSE || (!req->search_uuid && recs))
- goto probe;
-
- if (uuid_list[++req->search_uuid]) {
- sdp_uuid16_create(&uuid, uuid_list[req->search_uuid]);
- str2ba(device->address, &dst);
- bt_search_service(&src, &dst, &uuid, browse_cb, user_data, NULL);
- return;
- }
-
-probe:
-
if (!req->uuids_added && !req->uuids_removed) {
debug("%s: No service found", device->path);
goto proceed;
@@ -967,6 +948,44 @@ cleanup:
if (req->records)
sdp_list_free(req->records, (sdp_free_func_t) sdp_record_free);
g_free(req);
+
+}
+
+static void browse_cb(sdp_list_t *recs, int err, gpointer user_data)
+{
+ struct browse_req *req = user_data;
+ struct btd_device *device = req->device;
+ struct btd_adapter *adapter = device->adapter;
+ bdaddr_t src, dst;
+ uuid_t uuid;
+
+ /* Public browsing successful or Single record requested */
+ if (err < 0 || (!req->search_uuid && recs))
+ goto done;
+
+ update_services(req, recs);
+
+ adapter_get_address(adapter, &src);
+ str2ba(device->address, &dst);
+
+ /* Search for mandatory uuids */
+ if (uuid_list[++req->search_uuid]) {
+ sdp_uuid16_create(&uuid, uuid_list[req->search_uuid]);
+ bt_search_service(&src, &dst, &uuid, browse_cb, user_data, NULL);
+ return;
+ }
+
+done:
+ search_cb(recs, err, user_data);
+}
+
+static void init_browse(struct browse_req *req)
+{
+ GSList *l;
+
+ for (l = req->device->uuids; l; l = l->next)
+ req->uuids_removed = g_slist_append(req->uuids_removed,
+ l->data);
}
int device_browse(struct btd_device *device, DBusConnection *conn,
@@ -976,7 +995,7 @@ int device_browse(struct btd_device *device, DBusConnection *conn,
struct browse_req *req;
bdaddr_t src, dst;
uuid_t uuid;
- GSList *l;
+ bt_callback_t cb;
adapter_get_address(adapter, &src);
@@ -989,13 +1008,11 @@ int device_browse(struct btd_device *device, DBusConnection *conn,
if (search) {
memcpy(&uuid, search, sizeof(uuid_t));
- req->browse = FALSE;
+ cb = search_cb;
} else {
sdp_uuid16_create(&uuid, uuid_list[req->search_uuid]);
- req->browse = TRUE;
- for (l = device->uuids; l; l = l->next)
- req->uuids_removed = g_slist_append(req->uuids_removed,
- l->data);
+ init_browse(req);
+ cb = browse_cb;
}
device->discov_active = 1;