LinkNode_SimpleChat
Dependents: LinkNode_SimpleChatwithSerial
Fork of BLE_API by
public/GattClient.h@503:4e69a47047c5, 2015-06-19 (annotated)
- Committer:
- rgrover1
- Date:
- Fri Jun 19 15:52:03 2015 +0100
- Revision:
- 503:4e69a47047c5
- Parent:
- 501:ff6801633d2c
- Child:
- 504:817c6240e9d9
Synchronized with git rev d2501918
Author: Rohit Grover
remove extraneous header include.
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
rgrover1 | 490:58a0313fffb5 | 1 | /* mbed Microcontroller Library |
rgrover1 | 490:58a0313fffb5 | 2 | * Copyright (c) 2006-2013 ARM Limited |
rgrover1 | 490:58a0313fffb5 | 3 | * |
rgrover1 | 490:58a0313fffb5 | 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
rgrover1 | 490:58a0313fffb5 | 5 | * you may not use this file except in compliance with the License. |
rgrover1 | 490:58a0313fffb5 | 6 | * You may obtain a copy of the License at |
rgrover1 | 490:58a0313fffb5 | 7 | * |
rgrover1 | 490:58a0313fffb5 | 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
rgrover1 | 490:58a0313fffb5 | 9 | * |
rgrover1 | 490:58a0313fffb5 | 10 | * Unless required by applicable law or agreed to in writing, software |
rgrover1 | 490:58a0313fffb5 | 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
rgrover1 | 490:58a0313fffb5 | 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
rgrover1 | 490:58a0313fffb5 | 13 | * See the License for the specific language governing permissions and |
rgrover1 | 490:58a0313fffb5 | 14 | * limitations under the License. |
rgrover1 | 490:58a0313fffb5 | 15 | */ |
rgrover1 | 490:58a0313fffb5 | 16 | |
rgrover1 | 490:58a0313fffb5 | 17 | #ifndef __GATT_CLIENT_H__ |
rgrover1 | 490:58a0313fffb5 | 18 | #define __GATT_CLIENT_H__ |
rgrover1 | 490:58a0313fffb5 | 19 | |
rgrover1 | 495:b0d77b1db2df | 20 | #include "Gap.h" |
rgrover1 | 495:b0d77b1db2df | 21 | #include "GattAttribute.h" |
rgrover1 | 497:926d444599e8 | 22 | #include "ServiceDiscovery.h" |
rgrover1 | 495:b0d77b1db2df | 23 | |
rgrover1 | 490:58a0313fffb5 | 24 | class GattClient { |
rgrover1 | 495:b0d77b1db2df | 25 | public: |
rgrover1 | 497:926d444599e8 | 26 | enum Command_t { |
rgrover1 | 497:926d444599e8 | 27 | OP_WRITE_CMD |
rgrover1 | 497:926d444599e8 | 28 | }; |
rgrover1 | 497:926d444599e8 | 29 | |
rgrover1 | 501:ff6801633d2c | 30 | struct ReadResponse_t { |
rgrover1 | 501:ff6801633d2c | 31 | GattAttribute::Handle_t handle; /**< Attribute Handle. */ |
rgrover1 | 501:ff6801633d2c | 32 | uint16_t offset; /**< Offset of the attribute data. */ |
rgrover1 | 501:ff6801633d2c | 33 | uint16_t len; /**< Attribute data length. */ |
rgrover1 | 501:ff6801633d2c | 34 | const uint8_t *data; /**< Attribute data, variable length. */ |
rgrover1 | 501:ff6801633d2c | 35 | }; |
rgrover1 | 501:ff6801633d2c | 36 | typedef void (*ReadCallback_t)(const ReadResponse_t *params); |
rgrover1 | 501:ff6801633d2c | 37 | |
rgrover1 | 497:926d444599e8 | 38 | public: |
rgrover1 | 497:926d444599e8 | 39 | /** |
rgrover1 | 497:926d444599e8 | 40 | * Launch service discovery. Once launched, service discovery will remain |
rgrover1 | 497:926d444599e8 | 41 | * active with callbacks being issued back into the application for matching |
rgrover1 | 497:926d444599e8 | 42 | * services/characteristics. isActive() can be used to determine status; and |
rgrover1 | 497:926d444599e8 | 43 | * a termination callback (if setup) will be invoked at the end. Service |
rgrover1 | 497:926d444599e8 | 44 | * discovery can be terminated prematurely if needed using terminate(). |
rgrover1 | 497:926d444599e8 | 45 | * |
rgrover1 | 497:926d444599e8 | 46 | * @param connectionHandle |
rgrover1 | 497:926d444599e8 | 47 | * Handle for the connection with the peer. |
rgrover1 | 497:926d444599e8 | 48 | * @param sc |
rgrover1 | 497:926d444599e8 | 49 | * This is the application callback for matching service. |
rgrover1 | 497:926d444599e8 | 50 | * @param cc |
rgrover1 | 497:926d444599e8 | 51 | * This is the application callback for matching characteristic. |
rgrover1 | 497:926d444599e8 | 52 | * @param matchingServiceUUID |
rgrover1 | 497:926d444599e8 | 53 | * UUID based filter for specifying a service in which the application is |
rgrover1 | 497:926d444599e8 | 54 | * interested. |
rgrover1 | 497:926d444599e8 | 55 | * @param matchingCharacteristicUUIDIn |
rgrover1 | 497:926d444599e8 | 56 | * UUID based filter for specifying characteristic in which the application |
rgrover1 | 497:926d444599e8 | 57 | * is interested. |
rgrover1 | 497:926d444599e8 | 58 | * |
rgrover1 | 497:926d444599e8 | 59 | * @Note Using wildcard values for both service-UUID and characteristic- |
rgrover1 | 497:926d444599e8 | 60 | * UUID will result in complete service discovery--callbacks being |
rgrover1 | 497:926d444599e8 | 61 | * called for every service and characteristic. |
rgrover1 | 497:926d444599e8 | 62 | * |
rgrover1 | 497:926d444599e8 | 63 | * @return |
rgrover1 | 497:926d444599e8 | 64 | * BLE_ERROR_NONE if service discovery is launched successfully; else an appropriate error. |
rgrover1 | 497:926d444599e8 | 65 | */ |
rgrover1 | 497:926d444599e8 | 66 | virtual ble_error_t launchServiceDiscovery(Gap::Handle_t connectionHandle, |
rgrover1 | 497:926d444599e8 | 67 | ServiceDiscovery::ServiceCallback_t sc = NULL, |
rgrover1 | 497:926d444599e8 | 68 | ServiceDiscovery::CharacteristicCallback_t cc = NULL, |
rgrover1 | 497:926d444599e8 | 69 | const UUID &matchingServiceUUID = UUID::ShortUUIDBytes_t(BLE_UUID_UNKNOWN), |
rgrover1 | 497:926d444599e8 | 70 | const UUID &matchingCharacteristicUUIDIn = UUID::ShortUUIDBytes_t(BLE_UUID_UNKNOWN)) = 0; |
rgrover1 | 497:926d444599e8 | 71 | |
rgrover1 | 497:926d444599e8 | 72 | virtual void onServiceDiscoveryTermination(ServiceDiscovery::TerminationCallback_t callback) = 0; |
rgrover1 | 497:926d444599e8 | 73 | |
rgrover1 | 497:926d444599e8 | 74 | /** |
rgrover1 | 497:926d444599e8 | 75 | * Is service-discovery currently active? |
rgrover1 | 497:926d444599e8 | 76 | */ |
rgrover1 | 497:926d444599e8 | 77 | virtual bool isServiceDiscoveryActive(void) const = 0; |
rgrover1 | 497:926d444599e8 | 78 | |
rgrover1 | 497:926d444599e8 | 79 | /** |
rgrover1 | 497:926d444599e8 | 80 | * Terminate an ongoing service-discovery. This should result in an |
rgrover1 | 497:926d444599e8 | 81 | * invocation of the TerminationCallback if service-discovery is active. |
rgrover1 | 497:926d444599e8 | 82 | */ |
rgrover1 | 497:926d444599e8 | 83 | virtual void terminateServiceDiscovery(void) = 0; |
rgrover1 | 497:926d444599e8 | 84 | |
rgrover1 | 495:b0d77b1db2df | 85 | /* Initiate a Gatt Client read procedure by attribute-handle.*/ |
rgrover1 | 495:b0d77b1db2df | 86 | virtual ble_error_t read(Gap::Handle_t connHandle, GattAttribute::Handle_t attributeHandle, uint16_t offset) const = 0; |
rgrover1 | 495:b0d77b1db2df | 87 | |
rgrover1 | 497:926d444599e8 | 88 | virtual ble_error_t write(GattClient::Command_t cmd, Gap::Handle_t connHandle, size_t length, const uint8_t *value) const = 0; |
rgrover1 | 497:926d444599e8 | 89 | |
rgrover1 | 490:58a0313fffb5 | 90 | #if 0 |
rgrover1 | 490:58a0313fffb5 | 91 | public: |
rgrover1 | 490:58a0313fffb5 | 92 | /* Event callback handlers. */ |
rgrover1 | 490:58a0313fffb5 | 93 | typedef void (*EventCallback_t)(GattAttribute::Handle_t attributeHandle); |
rgrover1 | 490:58a0313fffb5 | 94 | typedef void (*ServerEventCallback_t)(void); /**< independent of any particular attribute */ |
rgrover1 | 490:58a0313fffb5 | 95 | |
rgrover1 | 490:58a0313fffb5 | 96 | friend class BLEDevice; |
rgrover1 | 490:58a0313fffb5 | 97 | private: |
rgrover1 | 490:58a0313fffb5 | 98 | /* These functions must be defined in the sub-class */ |
rgrover1 | 490:58a0313fffb5 | 99 | virtual ble_error_t addService(GattService &) = 0; |
rgrover1 | 490:58a0313fffb5 | 100 | virtual ble_error_t readValue(GattAttribute::Handle_t attributeHandle, uint8_t buffer[], uint16_t *lengthP) = 0; |
rgrover1 | 490:58a0313fffb5 | 101 | virtual ble_error_t readValue(Gap::Handle_t connectionHandle, GattAttribute::Handle_t attributeHandle, uint8_t buffer[], uint16_t *lengthP) = 0; |
rgrover1 | 490:58a0313fffb5 | 102 | virtual ble_error_t updateValue(GattAttribute::Handle_t, const uint8_t[], uint16_t, bool localOnly = false) = 0; |
rgrover1 | 490:58a0313fffb5 | 103 | virtual ble_error_t updateValue(Gap::Handle_t connectionHandle, GattAttribute::Handle_t, const uint8_t[], uint16_t, bool localOnly = false) = 0; |
rgrover1 | 490:58a0313fffb5 | 104 | virtual ble_error_t initializeGATTDatabase(void) = 0; |
rgrover1 | 490:58a0313fffb5 | 105 | |
rgrover1 | 490:58a0313fffb5 | 106 | // ToDo: For updateValue, check the CCCD to see if the value we are |
rgrover1 | 490:58a0313fffb5 | 107 | // updating has the notify or indicate bits sent, and if BOTH are set |
rgrover1 | 490:58a0313fffb5 | 108 | // be sure to call sd_ble_gatts_hvx() twice with notify then indicate! |
rgrover1 | 490:58a0313fffb5 | 109 | // Strange use case, but valid and must be covered! |
rgrover1 | 490:58a0313fffb5 | 110 | |
rgrover1 | 490:58a0313fffb5 | 111 | void setOnDataSent(void (*callback)(unsigned count)) {onDataSent.add(callback);} |
rgrover1 | 490:58a0313fffb5 | 112 | template <typename T> |
rgrover1 | 490:58a0313fffb5 | 113 | void setOnDataSent(T *objPtr, void (T::*memberPtr)(unsigned count)) { |
rgrover1 | 490:58a0313fffb5 | 114 | onDataSent.add(objPtr, memberPtr); |
rgrover1 | 490:58a0313fffb5 | 115 | } |
rgrover1 | 490:58a0313fffb5 | 116 | void setOnDataWritten(void (*callback)(const GattCharacteristicWriteCBParams *eventDataP)) {onDataWritten.add(callback);} |
rgrover1 | 490:58a0313fffb5 | 117 | template <typename T> |
rgrover1 | 490:58a0313fffb5 | 118 | void setOnDataWritten(T *objPtr, void (T::*memberPtr)(const GattCharacteristicWriteCBParams *context)) { |
rgrover1 | 490:58a0313fffb5 | 119 | onDataWritten.add(objPtr, memberPtr); |
rgrover1 | 490:58a0313fffb5 | 120 | } |
rgrover1 | 490:58a0313fffb5 | 121 | |
rgrover1 | 490:58a0313fffb5 | 122 | /** |
rgrover1 | 490:58a0313fffb5 | 123 | * A virtual function to allow underlying stacks to indicate if they support |
rgrover1 | 490:58a0313fffb5 | 124 | * onDataRead(). It should be overridden to return true as applicable. |
rgrover1 | 490:58a0313fffb5 | 125 | */ |
rgrover1 | 490:58a0313fffb5 | 126 | virtual bool isOnDataReadAvailable() const { |
rgrover1 | 490:58a0313fffb5 | 127 | return false; |
rgrover1 | 490:58a0313fffb5 | 128 | } |
rgrover1 | 490:58a0313fffb5 | 129 | ble_error_t setOnDataRead(void (*callback)(const GattCharacteristicReadCBParams *eventDataP)) { |
rgrover1 | 490:58a0313fffb5 | 130 | if (!isOnDataReadAvailable()) { |
rgrover1 | 490:58a0313fffb5 | 131 | return BLE_ERROR_NOT_IMPLEMENTED; |
rgrover1 | 490:58a0313fffb5 | 132 | } |
rgrover1 | 490:58a0313fffb5 | 133 | |
rgrover1 | 490:58a0313fffb5 | 134 | onDataRead.add(callback); |
rgrover1 | 490:58a0313fffb5 | 135 | return BLE_ERROR_NONE; |
rgrover1 | 490:58a0313fffb5 | 136 | } |
rgrover1 | 490:58a0313fffb5 | 137 | template <typename T> |
rgrover1 | 490:58a0313fffb5 | 138 | ble_error_t setOnDataRead(T *objPtr, void (T::*memberPtr)(const GattCharacteristicReadCBParams *context)) { |
rgrover1 | 490:58a0313fffb5 | 139 | if (!isOnDataReadAvailable()) { |
rgrover1 | 490:58a0313fffb5 | 140 | return BLE_ERROR_NOT_IMPLEMENTED; |
rgrover1 | 490:58a0313fffb5 | 141 | } |
rgrover1 | 490:58a0313fffb5 | 142 | |
rgrover1 | 490:58a0313fffb5 | 143 | onDataRead.add(objPtr, memberPtr); |
rgrover1 | 490:58a0313fffb5 | 144 | return BLE_ERROR_NONE; |
rgrover1 | 490:58a0313fffb5 | 145 | } |
rgrover1 | 490:58a0313fffb5 | 146 | void setOnUpdatesEnabled(EventCallback_t callback) {onUpdatesEnabled = callback;} |
rgrover1 | 490:58a0313fffb5 | 147 | void setOnUpdatesDisabled(EventCallback_t callback) {onUpdatesDisabled = callback;} |
rgrover1 | 490:58a0313fffb5 | 148 | void setOnConfirmationReceived(EventCallback_t callback) {onConfirmationReceived = callback;} |
rgrover1 | 490:58a0313fffb5 | 149 | |
rgrover1 | 490:58a0313fffb5 | 150 | protected: |
rgrover1 | 490:58a0313fffb5 | 151 | void handleDataWrittenEvent(const GattCharacteristicWriteCBParams *params) { |
rgrover1 | 490:58a0313fffb5 | 152 | if (onDataWritten.hasCallbacksAttached()) { |
rgrover1 | 490:58a0313fffb5 | 153 | onDataWritten.call(params); |
rgrover1 | 490:58a0313fffb5 | 154 | } |
rgrover1 | 490:58a0313fffb5 | 155 | } |
rgrover1 | 490:58a0313fffb5 | 156 | |
rgrover1 | 490:58a0313fffb5 | 157 | void handleDataReadEvent(const GattCharacteristicReadCBParams *params) { |
rgrover1 | 490:58a0313fffb5 | 158 | if (onDataRead.hasCallbacksAttached()) { |
rgrover1 | 490:58a0313fffb5 | 159 | onDataRead.call(params); |
rgrover1 | 490:58a0313fffb5 | 160 | } |
rgrover1 | 490:58a0313fffb5 | 161 | } |
rgrover1 | 490:58a0313fffb5 | 162 | |
rgrover1 | 490:58a0313fffb5 | 163 | void handleEvent(GattServerEvents::gattEvent_e type, GattAttribute::Handle_t charHandle) { |
rgrover1 | 490:58a0313fffb5 | 164 | switch (type) { |
rgrover1 | 490:58a0313fffb5 | 165 | case GattServerEvents::GATT_EVENT_UPDATES_ENABLED: |
rgrover1 | 490:58a0313fffb5 | 166 | if (onUpdatesEnabled) { |
rgrover1 | 490:58a0313fffb5 | 167 | onUpdatesEnabled(charHandle); |
rgrover1 | 490:58a0313fffb5 | 168 | } |
rgrover1 | 490:58a0313fffb5 | 169 | break; |
rgrover1 | 490:58a0313fffb5 | 170 | case GattServerEvents::GATT_EVENT_UPDATES_DISABLED: |
rgrover1 | 490:58a0313fffb5 | 171 | if (onUpdatesDisabled) { |
rgrover1 | 490:58a0313fffb5 | 172 | onUpdatesDisabled(charHandle); |
rgrover1 | 490:58a0313fffb5 | 173 | } |
rgrover1 | 490:58a0313fffb5 | 174 | break; |
rgrover1 | 490:58a0313fffb5 | 175 | case GattServerEvents::GATT_EVENT_CONFIRMATION_RECEIVED: |
rgrover1 | 490:58a0313fffb5 | 176 | if (onConfirmationReceived) { |
rgrover1 | 490:58a0313fffb5 | 177 | onConfirmationReceived(charHandle); |
rgrover1 | 490:58a0313fffb5 | 178 | } |
rgrover1 | 490:58a0313fffb5 | 179 | break; |
rgrover1 | 490:58a0313fffb5 | 180 | default: |
rgrover1 | 490:58a0313fffb5 | 181 | break; |
rgrover1 | 490:58a0313fffb5 | 182 | } |
rgrover1 | 490:58a0313fffb5 | 183 | } |
rgrover1 | 490:58a0313fffb5 | 184 | |
rgrover1 | 490:58a0313fffb5 | 185 | void handleDataSentEvent(unsigned count) { |
rgrover1 | 490:58a0313fffb5 | 186 | if (onDataSent.hasCallbacksAttached()) { |
rgrover1 | 490:58a0313fffb5 | 187 | onDataSent.call(count); |
rgrover1 | 490:58a0313fffb5 | 188 | } |
rgrover1 | 490:58a0313fffb5 | 189 | } |
rgrover1 | 490:58a0313fffb5 | 190 | |
rgrover1 | 490:58a0313fffb5 | 191 | protected: |
rgrover1 | 490:58a0313fffb5 | 192 | uint8_t serviceCount; |
rgrover1 | 490:58a0313fffb5 | 193 | uint8_t characteristicCount; |
rgrover1 | 490:58a0313fffb5 | 194 | |
rgrover1 | 490:58a0313fffb5 | 195 | private: |
rgrover1 | 490:58a0313fffb5 | 196 | CallChainOfFunctionPointersWithContext<unsigned> onDataSent; |
rgrover1 | 490:58a0313fffb5 | 197 | CallChainOfFunctionPointersWithContext<const GattCharacteristicWriteCBParams *> onDataWritten; |
rgrover1 | 490:58a0313fffb5 | 198 | CallChainOfFunctionPointersWithContext<const GattCharacteristicReadCBParams *> onDataRead; |
rgrover1 | 490:58a0313fffb5 | 199 | EventCallback_t onUpdatesEnabled; |
rgrover1 | 490:58a0313fffb5 | 200 | EventCallback_t onUpdatesDisabled; |
rgrover1 | 490:58a0313fffb5 | 201 | EventCallback_t onConfirmationReceived; |
rgrover1 | 490:58a0313fffb5 | 202 | #endif |
rgrover1 | 490:58a0313fffb5 | 203 | |
rgrover1 | 490:58a0313fffb5 | 204 | protected: |
rgrover1 | 490:58a0313fffb5 | 205 | GattClient() { |
rgrover1 | 490:58a0313fffb5 | 206 | /* empty */ |
rgrover1 | 490:58a0313fffb5 | 207 | } |
rgrover1 | 490:58a0313fffb5 | 208 | |
rgrover1 | 490:58a0313fffb5 | 209 | private: |
rgrover1 | 490:58a0313fffb5 | 210 | /* disallow copy and assignment */ |
rgrover1 | 490:58a0313fffb5 | 211 | GattClient(const GattClient &); |
rgrover1 | 490:58a0313fffb5 | 212 | GattClient& operator=(const GattClient &); |
rgrover1 | 490:58a0313fffb5 | 213 | }; |
rgrover1 | 490:58a0313fffb5 | 214 | |
rgrover1 | 490:58a0313fffb5 | 215 | #endif // ifndef __GATT_CLIENT_H__ |