/* * NimBLERemoteCharacteristic.cpp * * Created: on Jan 27 2020 * Author H2zero * * Originally: * * BLERemoteCharacteristic.cpp * * Created on: Mar 16, 2017 * Author: kolban */ #include "nimconfig.h" #if defined(CONFIG_BT_ENABLED) && defined(CONFIG_BT_NIMBLE_ROLE_CENTRAL) # include "NimBLERemoteCharacteristic.h" # include "NimBLERemoteDescriptor.h" # include "NimBLERemoteService.h" # include "NimBLEClient.h" # include "NimBLEUtils.h" # include "NimBLELog.h" # include typedef struct { const NimBLEUUID* uuid; void* task_data; } desc_filter_t; static const char* LOG_TAG = "NimBLERemoteCharacteristic"; /** * @brief Constructor. * @param [in] svc A pointer to the service this characteristic belongs to. * @param [in] ble_gatt_chr struct defined as: * struct ble_gatt_chr { * uint16_t def_handle; * uint16_t val_handle; * uint8_t properties; * ble_uuid_any_t uuid; * }; */ NimBLERemoteCharacteristic::NimBLERemoteCharacteristic(const NimBLERemoteService* svc, const ble_gatt_chr* chr) : NimBLERemoteValueAttribute{chr->uuid, chr->val_handle}, m_pRemoteService{svc}, m_properties{chr->properties}, m_notifyCallback{}, m_vDescriptors{} {} // NimBLERemoteCharacteristic /** *@brief Destructor. */ NimBLERemoteCharacteristic::~NimBLERemoteCharacteristic() { deleteDescriptors(); } // ~NimBLERemoteCharacteristic /** * @brief Callback used by the API when a descriptor is discovered or search complete. */ int NimBLERemoteCharacteristic::descriptorDiscCB( uint16_t conn_handle, const ble_gatt_error* error, uint16_t chr_val_handle, const ble_gatt_dsc* dsc, void* arg) { int rc = error->status; NIMBLE_LOGD(LOG_TAG, "Descriptor Discovery >> status: %d handle: %d", rc, (rc == 0) ? dsc->handle : -1); auto filter = (desc_filter_t*)arg; auto pTaskData = (BleTaskData*)filter->task_data; const auto pChr = (NimBLERemoteCharacteristic*)pTaskData->pATT; const NimBLEUUID* uuidFilter = filter->uuid; if (pChr->getHandle() != chr_val_handle) { rc = BLE_HS_EDONE; // descriptor not for this characteristic } if (rc == 0) { if (uuidFilter != nullptr) { if (ble_uuid_cmp(uuidFilter->getBase(), &dsc->uuid.u) == 0) { rc = BLE_HS_EDONE; // Found the descriptor, stop the search } else { return 0; // Not the descriptor we are looking for } } pChr->m_vDescriptors.push_back(new NimBLERemoteDescriptor(pChr, dsc)); } if (rc != 0) { pTaskData->rc = rc == BLE_HS_EDONE ? 0 : rc; NIMBLE_LOGD(LOG_TAG, "<< Descriptor Discovery"); xTaskNotifyGive(pTaskData->task); } return rc; } /** * @brief Populate the descriptors (if any) for this characteristic. * @param [in] the end handle of the characteristic, or the service, whichever comes first. */ bool NimBLERemoteCharacteristic::retrieveDescriptors(const NimBLEUUID* uuidFilter) const { NIMBLE_LOGD(LOG_TAG, ">> retrieveDescriptors() for characteristic: %s", getUUID().toString().c_str()); TaskHandle_t cur_task = xTaskGetCurrentTaskHandle(); BleTaskData taskData = {const_cast(this), cur_task, 0, nullptr}; desc_filter_t filter = {uuidFilter, &taskData}; int rc = ble_gattc_disc_all_dscs(getClient()->getConnHandle(), getHandle(), getRemoteService()->getEndHandle(), NimBLERemoteCharacteristic::descriptorDiscCB, &filter); if (rc != 0) { NIMBLE_LOGE(LOG_TAG, "ble_gattc_disc_all_dscs: rc=%d %s", rc, NimBLEUtils::returnCodeToString(rc)); return false; } # ifdef ulTaskNotifyValueClear // Clear the task notification value to ensure we block ulTaskNotifyValueClear(cur_task, ULONG_MAX); # endif ulTaskNotifyTake(pdTRUE, portMAX_DELAY); if (taskData.rc != 0) { NIMBLE_LOGE(LOG_TAG, "<< retrieveDescriptors(): failed: rc=%d %s", taskData.rc, NimBLEUtils::returnCodeToString(taskData.rc)); } else { NIMBLE_LOGD(LOG_TAG, "<< retrieveDescriptors(): found %d descriptors.", m_vDescriptors.size()); } return taskData.rc == 0; } // retrieveDescriptors /** * @brief Get the descriptor instance with the given UUID that belongs to this characteristic. * @param [in] uuid The UUID of the descriptor to find. * @return The Remote descriptor (if present) or nullptr if not present. */ NimBLERemoteDescriptor* NimBLERemoteCharacteristic::getDescriptor(const NimBLEUUID& uuid) const { NIMBLE_LOGD(LOG_TAG, ">> getDescriptor: uuid: %s", uuid.toString().c_str()); NimBLERemoteDescriptor* pDsc = nullptr; size_t prev_size = m_vDescriptors.size(); for (const auto& it : m_vDescriptors) { if (it->getUUID() == uuid) { pDsc = it; goto Done; } } if (retrieveDescriptors(&uuid)) { if (m_vDescriptors.size() > prev_size) { pDsc = m_vDescriptors.back(); goto Done; } // If the request was successful but 16/32 bit uuid not found // try again with the 128 bit uuid. if (uuid.bitSize() == BLE_UUID_TYPE_16 || uuid.bitSize() == BLE_UUID_TYPE_32) { NimBLEUUID uuid128(uuid); uuid128.to128(); if (retrieveDescriptors(&uuid128)) { if (m_vDescriptors.size() > prev_size) { pDsc = m_vDescriptors.back(); } } } else { // If the request was successful but the 128 bit uuid not found // try again with the 16 bit uuid. NimBLEUUID uuid16(uuid); uuid16.to16(); // if the uuid was 128 bit but not of the BLE base type this check will fail if (uuid16.bitSize() == BLE_UUID_TYPE_16) { if (retrieveDescriptors(&uuid16)) { if (m_vDescriptors.size() > prev_size) { pDsc = m_vDescriptors.back(); } } } } } Done: NIMBLE_LOGD(LOG_TAG, "<< getDescriptor: %sfound", pDsc ? "" : "not "); return pDsc; } // getDescriptor /** * @brief Get a pointer to the vector of found descriptors. * @param [in] refresh If true the current descriptor vector will be cleared and\n * all descriptors for this characteristic retrieved from the peripheral.\n * If false the vector will be returned with the currently stored descriptors * of this characteristic. * @return A pointer to the vector of descriptors for this characteristic. */ const std::vector& NimBLERemoteCharacteristic::getDescriptors(bool refresh) const { if (refresh) { deleteDescriptors(); retrieveDescriptors(); } return m_vDescriptors; } // getDescriptors /** * @brief Get iterator to the beginning of the vector of remote descriptor pointers. * @return An iterator to the beginning of the vector of remote descriptor pointers. */ std::vector::iterator NimBLERemoteCharacteristic::begin() const { return m_vDescriptors.begin(); } /** * @brief Get iterator to the end of the vector of remote descriptor pointers. * @return An iterator to the end of the vector of remote descriptor pointers. */ std::vector::iterator NimBLERemoteCharacteristic::end() const { return m_vDescriptors.end(); } /** * @brief Get the remote service associated with this characteristic. * @return The remote service associated with this characteristic. */ const NimBLERemoteService* NimBLERemoteCharacteristic::getRemoteService() const { return m_pRemoteService; } // getRemoteService /** * @brief Subscribe or unsubscribe for notifications or indications. * @param [in] val 0x00 to unsubscribe, 0x01 for notifications, 0x02 for indications. * @param [in] notifyCallback A callback to be invoked for a notification. * @param [in] response If write response required set this to true. * If NULL is provided then no callback is performed. * @return false if writing to the descriptor failed. */ bool NimBLERemoteCharacteristic::setNotify(uint16_t val, notify_callback notifyCallback, bool response) const { NIMBLE_LOGD(LOG_TAG, ">> setNotify()"); m_notifyCallback = notifyCallback; NimBLERemoteDescriptor* desc = getDescriptor(NimBLEUUID((uint16_t)0x2902)); if (desc == nullptr) { NIMBLE_LOGW(LOG_TAG, "<< setNotify(): Callback set, CCCD not found"); return true; } NIMBLE_LOGD(LOG_TAG, "<< setNotify()"); return desc->writeValue(reinterpret_cast(&val), 2, response); } // setNotify /** * @brief Subscribe for notifications or indications. * @param [in] notifications If true, subscribe for notifications, false subscribe for indications. * @param [in] notifyCallback A callback to be invoked for a notification. * @param [in] response If true, require a write response from the descriptor write operation. * If NULL is provided then no callback is performed. * @return false if writing to the descriptor failed. */ bool NimBLERemoteCharacteristic::subscribe(bool notifications, notify_callback notifyCallback, bool response) const { return setNotify(notifications ? 0x01 : 0x02, notifyCallback, response); } // subscribe /** * @brief Unsubscribe for notifications or indications. * @param [in] response bool if true, require a write response from the descriptor write operation. * @return false if writing to the descriptor failed. */ bool NimBLERemoteCharacteristic::unsubscribe(bool response) const { return setNotify(0x00, nullptr, response); } // unsubscribe /** * @brief Delete the descriptors in the descriptor vector. * @details We maintain a vector called m_vDescriptors that contains pointers to NimBLERemoteDescriptors * object references. Since we allocated these in this class, we are also responsible for deleting * them. This method does just that. */ void NimBLERemoteCharacteristic::deleteDescriptors() const { NIMBLE_LOGD(LOG_TAG, ">> deleteDescriptors"); for (const auto& it : m_vDescriptors) { delete it; } std::vector().swap(m_vDescriptors); NIMBLE_LOGD(LOG_TAG, "<< deleteDescriptors"); } // deleteDescriptors /** * @brief Delete descriptor by UUID * @param [in] uuid The UUID of the descriptor to be deleted. * @return Number of descriptors left in the vector. */ size_t NimBLERemoteCharacteristic::deleteDescriptor(const NimBLEUUID& uuid) const { NIMBLE_LOGD(LOG_TAG, ">> deleteDescriptor"); for (auto it = m_vDescriptors.begin(); it != m_vDescriptors.end(); ++it) { if ((*it)->getUUID() == uuid) { delete (*it); m_vDescriptors.erase(it); break; } } NIMBLE_LOGD(LOG_TAG, "<< deleteDescriptor"); return m_vDescriptors.size(); } // deleteDescriptor /** * @brief Does the characteristic support value broadcasting? * @return True if supported. */ bool NimBLERemoteCharacteristic::canBroadcast() const { return (m_properties & BLE_GATT_CHR_PROP_BROADCAST) != 0; }; /** * @brief Does the characteristic support reading? * @return True if supported. */ bool NimBLERemoteCharacteristic::canRead() const { return (m_properties & BLE_GATT_CHR_PROP_READ); }; /** * @brief Does the characteristic support writing without a response? * @return True if supported. */ bool NimBLERemoteCharacteristic::canWriteNoResponse() const { return (m_properties & BLE_GATT_CHR_PROP_WRITE_NO_RSP); }; /** * @brief Does the characteristic support writing? * @return True if supported. */ bool NimBLERemoteCharacteristic::canWrite() const { return (m_properties & BLE_GATT_CHR_PROP_WRITE); }; /** * @brief Does the characteristic support reading with encryption? * @return True if supported. */ bool NimBLERemoteCharacteristic::canNotify() const { return (m_properties & BLE_GATT_CHR_PROP_NOTIFY); }; /** * @brief Does the characteristic support indication? * @return True if supported. */ bool NimBLERemoteCharacteristic::canIndicate() const { return (m_properties & BLE_GATT_CHR_PROP_INDICATE); }; /** * @brief Does the characteristic support signed writing? * @return True if supported. */ bool NimBLERemoteCharacteristic::canWriteSigned() const { return (m_properties & BLE_GATT_CHR_PROP_AUTH_SIGN_WRITE); }; /** * @brief Does the characteristic support extended properties? * @return True if supported. */ bool NimBLERemoteCharacteristic::hasExtendedProps() const { return (m_properties & BLE_GATT_CHR_PROP_EXTENDED); }; /** * @brief Convert a NimBLERemoteCharacteristic to a string representation; * @return a String representation. */ std::string NimBLERemoteCharacteristic::toString() const { std::string res = "Characteristic: uuid: " + m_uuid.toString(); char val[6]; res += ", handle: "; snprintf(val, sizeof(val), "%d", getHandle()); res += val; res += " 0x"; snprintf(val, sizeof(val), "%04x", getHandle()); res += val; res += ", props: "; res += " 0x"; snprintf(val, sizeof(val), "%02x", m_properties); res += val; for (const auto& it : m_vDescriptors) { res += "\n" + it->toString(); } return res; } // toString NimBLEClient* NimBLERemoteCharacteristic::getClient() const { return getRemoteService()->getClient(); } // getClient #endif /* CONFIG_BT_ENABLED && CONFIG_BT_NIMBLE_ROLE_CENTRAL */