Return-Path: From: Luiz Augusto von Dentz To: linux-bluetooth@vger.kernel.org Subject: [PATCH BlueZ v4 2/9] shared/gatt-db: Add gatt_db_get_attribute Date: Fri, 31 Oct 2014 15:39:47 +0200 Message-Id: <1414762794-30166-2-git-send-email-luiz.dentz@gmail.com> In-Reply-To: <1414762794-30166-1-git-send-email-luiz.dentz@gmail.com> References: <1414762794-30166-1-git-send-email-luiz.dentz@gmail.com> Sender: linux-bluetooth-owner@vger.kernel.org List-ID: From: Luiz Augusto von Dentz --- src/shared/gatt-db.c | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/src/shared/gatt-db.c b/src/shared/gatt-db.c index 3ade7a9..cc8e494 100644 --- a/src/shared/gatt-db.c +++ b/src/shared/gatt-db.c @@ -806,7 +806,25 @@ bool gatt_db_get_attribute_permissions(struct gatt_db *db, uint16_t handle, struct gatt_db_attribute *gatt_db_get_attribute(struct gatt_db *db, uint16_t handle) { - return NULL; + struct gatt_db_service *service; + uint16_t service_handle; + + if (!db || !handle) + return NULL; + + service = queue_find(db->services, find_service_for_handle, + UINT_TO_PTR(handle)); + if (!service) + return NULL; + + service_handle = service->attributes[0]->handle; + + /* + * We can safely get attribute from attributes array with offset, + * because find_service_for_handle() check if given handle is + * in service range. + */ + return service->attributes[handle - service_handle]; } const bt_uuid_t *gatt_db_attribute_get_type(struct gatt_db_attribute *attrib) -- 1.9.3