mirror of
https://git.kernel.org/pub/scm/bluetooth/bluez.git
synced 2024-12-28 05:13:26 +08:00
android/health: Implement mcl_disconnected cb
Provide a utility to find device by mcl and update the mcl status.
This commit is contained in:
parent
f77a6b22da
commit
f13833fcb8
@ -243,6 +243,14 @@ static bool match_channel_by_id(const void *data, const void *user_data)
|
||||
return channel->id == channel_id;
|
||||
}
|
||||
|
||||
static bool match_dev_by_mcl(const void *data, const void *user_data)
|
||||
{
|
||||
const struct health_device *dev = data;
|
||||
const struct mcap_mcl *mcl = user_data;
|
||||
|
||||
return dev->mcl == mcl;
|
||||
}
|
||||
|
||||
static bool match_dev_by_addr(const void *data, const void *user_data)
|
||||
{
|
||||
const struct health_device *dev = data;
|
||||
@ -329,6 +337,36 @@ static struct health_channel *search_channel_by_id(uint16_t id)
|
||||
return search.channel;
|
||||
}
|
||||
|
||||
struct mcl_search {
|
||||
struct mcap_mcl *mcl;
|
||||
struct health_device *dev;
|
||||
};
|
||||
|
||||
static void app_search_dev(void *data, void *user_data)
|
||||
{
|
||||
struct health_app *app = data;
|
||||
struct mcl_search *search = user_data;
|
||||
|
||||
if (search->dev)
|
||||
return;
|
||||
|
||||
search->dev = queue_find(app->devices, match_dev_by_mcl, search->mcl);
|
||||
}
|
||||
|
||||
static struct health_device *search_dev_by_mcl(struct mcap_mcl *mcl)
|
||||
{
|
||||
struct mcl_search search;
|
||||
|
||||
DBG("");
|
||||
|
||||
search.mcl = mcl;
|
||||
search.dev = NULL;
|
||||
|
||||
queue_foreach(apps, app_search_dev, &search);
|
||||
|
||||
return search.dev;
|
||||
}
|
||||
|
||||
struct app_search {
|
||||
uint8_t mdepid;
|
||||
struct health_app *app;
|
||||
@ -1977,7 +2015,13 @@ static void mcl_reconnected(struct mcap_mcl *mcl, gpointer data)
|
||||
|
||||
static void mcl_disconnected(struct mcap_mcl *mcl, gpointer data)
|
||||
{
|
||||
DBG("Not implemented");
|
||||
struct health_device *dev;
|
||||
|
||||
DBG("");
|
||||
|
||||
dev = search_dev_by_mcl(mcl);
|
||||
if (dev)
|
||||
dev->mcl_conn = false;
|
||||
}
|
||||
|
||||
static void mcl_uncached(struct mcap_mcl *mcl, gpointer data)
|
||||
|
Loading…
Reference in New Issue
Block a user