summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohan Hedberg <johan.hedberg@nokia.com>2009-03-15 10:49:19 -0300
committerJohan Hedberg <johan.hedberg@nokia.com>2009-03-15 10:49:19 -0300
commitfee17aefe6b727ec790568aa4994039ff94bf44e (patch)
tree7dad739549bc0bcd902bcb2475aa5d88ffeef99c
parent1ac96952d178f9fbb6ba6865bd2c4912b36282dd (diff)
Include the Paired property in the DeviceFound signals
Include the Paired property in the DeviceFound signals so that a UI doesn't have to do any special lookups to know if the device is paired or not.
-rw-r--r--src/dbus-hci.c20
-rw-r--r--src/device.c2
-rw-r--r--src/device.h1
3 files changed, 18 insertions, 5 deletions
diff --git a/src/dbus-hci.c b/src/dbus-hci.c
index 65919083..2a16ad65 100644
--- a/src/dbus-hci.c
+++ b/src/dbus-hci.c
@@ -679,12 +679,13 @@ void hcid_dbus_inquiry_result(bdaddr_t *local, bdaddr_t *peer, uint32_t class,
{
char filename[PATH_MAX + 1];
struct btd_adapter *adapter;
+ struct btd_device *device;
char local_addr[18], peer_addr[18], *alias, *name, *tmp_name;
const char *real_alias;
const char *path, *icon, *paddr = peer_addr;
struct remote_dev_info *dev, match;
dbus_int16_t tmp_rssi = rssi;
- dbus_bool_t legacy = TRUE;
+ dbus_bool_t paired, legacy = TRUE;
uint8_t name_type = 0x00;
name_status_t name_status;
int state;
@@ -692,12 +693,16 @@ void hcid_dbus_inquiry_result(bdaddr_t *local, bdaddr_t *peer, uint32_t class,
ba2str(local, local_addr);
ba2str(peer, peer_addr);
- adapter = manager_find_adapter(local);
- if (!adapter) {
+ if (!get_adapter_and_device(local, peer, &adapter, &device, FALSE)) {
error("No matching adapter found");
return;
}
+ if (device)
+ paired = device_is_paired(device);
+ else
+ paired = FALSE;
+
write_remote_class(local, peer, class);
if (data) {
@@ -779,6 +784,7 @@ void hcid_dbus_inquiry_result(bdaddr_t *local, bdaddr_t *peer, uint32_t class,
"Name", DBUS_TYPE_STRING, &name,
"Alias", DBUS_TYPE_STRING, &alias,
"LegacyPairing", DBUS_TYPE_BOOLEAN, &legacy,
+ "Paired", DBUS_TYPE_BOOLEAN, &paired,
NULL);
if (name && name_type != 0x08)
@@ -843,7 +849,7 @@ void hcid_dbus_remote_name(bdaddr_t *local, bdaddr_t *peer, uint8_t status,
const char *icon = class_to_icon(dev_info->class);
const char *alias, *paddr = dstaddr;
dbus_int16_t rssi = dev_info->rssi;
- dbus_bool_t legacy;
+ dbus_bool_t legacy, paired;
if (dev_info->alias)
alias = dev_info->alias;
@@ -855,6 +861,11 @@ void hcid_dbus_remote_name(bdaddr_t *local, bdaddr_t *peer, uint8_t status,
else
legacy = FALSE;
+ if (device)
+ paired = device_is_paired(device);
+ else
+ paired = FALSE;
+
emit_device_found(adapter_path, dstaddr,
"Address", DBUS_TYPE_STRING, &paddr,
"Class", DBUS_TYPE_UINT32, &dev_info->class,
@@ -863,6 +874,7 @@ void hcid_dbus_remote_name(bdaddr_t *local, bdaddr_t *peer, uint8_t status,
"Name", DBUS_TYPE_STRING, &name,
"Alias", DBUS_TYPE_STRING, &alias,
"LegacyPairing", DBUS_TYPE_BOOLEAN, &legacy,
+ "Paired", DBUS_TYPE_BOOLEAN, &paired,
NULL);
}
diff --git a/src/device.c b/src/device.c
index 9b32379a..1f1898ac 100644
--- a/src/device.c
+++ b/src/device.c
@@ -194,7 +194,7 @@ static void device_free(gpointer user_data)
g_free(device);
}
-static gboolean device_is_paired(struct btd_device *device)
+gboolean device_is_paired(struct btd_device *device)
{
struct btd_adapter *adapter = device->adapter;
char filename[PATH_MAX + 1], *str;
diff --git a/src/device.h b/src/device.h
index 5c230b81..3d57356b 100644
--- a/src/device.h
+++ b/src/device.h
@@ -53,6 +53,7 @@ struct agent *device_get_agent(struct btd_device *device);
void device_set_agent(struct btd_device *device, struct agent *agent);
gboolean device_is_busy(struct btd_device *device);
gboolean device_is_temporary(struct btd_device *device);
+gboolean device_is_paired(struct btd_device *device);
void device_set_temporary(struct btd_device *device, gboolean temporary);
void device_set_cap(struct btd_device *device, uint8_t cap);
uint8_t device_get_cap(struct btd_device *device);