Lightly modified version of the BLE stack, that doesn't bring up a DFUService by default... as we have our own.
Fork of BLE_API by
public/GattServer.h@135:6cf6e7bd21c9, 2014-11-21 (annotated)
- Committer:
- rgrover1
- Date:
- Fri Nov 21 09:23:23 2014 +0000
- Revision:
- 135:6cf6e7bd21c9
- Parent:
- 134:49321f76753e
- Child:
- 139:baaf1c5f0db2
Synchronized with git rev 503f8d52
Author: Rohit Grover
introduce GattServer::initializeGattDatabase()
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
Rohit Grover |
106:a20be740075d | 1 | /* mbed Microcontroller Library |
Rohit Grover |
106:a20be740075d | 2 | * Copyright (c) 2006-2013 ARM Limited |
Rohit Grover |
106:a20be740075d | 3 | * |
Rohit Grover |
106:a20be740075d | 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
Rohit Grover |
106:a20be740075d | 5 | * you may not use this file except in compliance with the License. |
Rohit Grover |
106:a20be740075d | 6 | * You may obtain a copy of the License at |
Rohit Grover |
106:a20be740075d | 7 | * |
Rohit Grover |
106:a20be740075d | 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
Rohit Grover |
106:a20be740075d | 9 | * |
Rohit Grover |
106:a20be740075d | 10 | * Unless required by applicable law or agreed to in writing, software |
Rohit Grover |
106:a20be740075d | 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
Rohit Grover |
106:a20be740075d | 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
Rohit Grover |
106:a20be740075d | 13 | * See the License for the specific language governing permissions and |
Rohit Grover |
106:a20be740075d | 14 | * limitations under the License. |
Rohit Grover |
106:a20be740075d | 15 | */ |
Rohit Grover |
106:a20be740075d | 16 | |
Rohit Grover |
106:a20be740075d | 17 | #ifndef __GATT_SERVER_H__ |
Rohit Grover |
106:a20be740075d | 18 | #define __GATT_SERVER_H__ |
Rohit Grover |
106:a20be740075d | 19 | |
Rohit Grover |
106:a20be740075d | 20 | #include "GattService.h" |
Rohit Grover |
106:a20be740075d | 21 | #include "GattServerEvents.h" |
Rohit Grover |
116:ca826083980e | 22 | #include "GattCharacteristicWriteCBParams.h" |
Rohit Grover |
118:620d28e7a1ba | 23 | #include "CallChainOfFunctionPointersWithContext.h" |
Rohit Grover |
106:a20be740075d | 24 | |
Rohit Grover |
106:a20be740075d | 25 | /**************************************************************************/ |
Rohit Grover |
106:a20be740075d | 26 | /*! |
Rohit Grover |
106:a20be740075d | 27 | \brief |
Rohit Grover |
106:a20be740075d | 28 | The base class used to abstract GATT Server functionality to a specific |
Rohit Grover |
106:a20be740075d | 29 | radio transceiver, SOC or BLE Stack. |
Rohit Grover |
106:a20be740075d | 30 | */ |
Rohit Grover |
106:a20be740075d | 31 | /**************************************************************************/ |
Rohit Grover |
106:a20be740075d | 32 | class GattServer |
Rohit Grover |
106:a20be740075d | 33 | { |
Rohit Grover |
106:a20be740075d | 34 | public: |
Rohit Grover |
106:a20be740075d | 35 | /* These functions must be defined in the sub-class */ |
Rohit Grover |
106:a20be740075d | 36 | virtual ble_error_t addService(GattService &) = 0; |
Rohit Grover |
106:a20be740075d | 37 | virtual ble_error_t readValue(uint16_t handle, uint8_t buffer[], uint16_t *const lengthP) = 0; |
Rohit Grover |
106:a20be740075d | 38 | virtual ble_error_t updateValue(uint16_t, uint8_t[], uint16_t, bool localOnly = false) = 0; |
rgrover1 | 135:6cf6e7bd21c9 | 39 | virtual ble_error_t initializeGATTDatabase(void) = 0; |
Rohit Grover |
106:a20be740075d | 40 | |
Rohit Grover |
106:a20be740075d | 41 | // ToDo: For updateValue, check the CCCD to see if the value we are |
Rohit Grover |
106:a20be740075d | 42 | // updating has the notify or indicate bits sent, and if BOTH are set |
Rohit Grover |
106:a20be740075d | 43 | // be sure to call sd_ble_gatts_hvx() twice with notify then indicate! |
Rohit Grover |
106:a20be740075d | 44 | // Strange use case, but valid and must be covered! |
Rohit Grover |
106:a20be740075d | 45 | |
Rohit Grover |
106:a20be740075d | 46 | /* Event callback handlers. */ |
Rohit Grover |
106:a20be740075d | 47 | typedef void (*EventCallback_t)(uint16_t attributeHandle); |
Rohit Grover |
116:ca826083980e | 48 | typedef void (*ServerEventCallback_t)(void); /**< independent of any particular attribute */ |
Rohit Grover |
116:ca826083980e | 49 | typedef void (*ServerEventCallbackWithCount_t)(unsigned count); /**< independent of any particular attribute */ |
Rohit Grover |
116:ca826083980e | 50 | void setOnDataSent(ServerEventCallbackWithCount_t callback) { |
Rohit Grover |
106:a20be740075d | 51 | onDataSent = callback; |
Rohit Grover |
106:a20be740075d | 52 | } |
Rohit Grover |
118:620d28e7a1ba | 53 | void setOnDataWritten(void (*callback)(const GattCharacteristicWriteCBParams *eventDataP)) { |
Rohit Grover |
118:620d28e7a1ba | 54 | onDataWritten.add(callback); |
Rohit Grover |
118:620d28e7a1ba | 55 | } |
Rohit Grover |
118:620d28e7a1ba | 56 | template <typename T> |
Rohit Grover |
118:620d28e7a1ba | 57 | void setOnDataWritten(T *objPtr, void (T::*memberPtr)(const GattCharacteristicWriteCBParams *context)) { |
Rohit Grover |
118:620d28e7a1ba | 58 | onDataWritten.add(objPtr, memberPtr); |
Rohit Grover |
106:a20be740075d | 59 | } |
Rohit Grover |
106:a20be740075d | 60 | void setOnUpdatesEnabled(EventCallback_t callback) { |
Rohit Grover |
106:a20be740075d | 61 | onUpdatesEnabled = callback; |
Rohit Grover |
106:a20be740075d | 62 | } |
Rohit Grover |
106:a20be740075d | 63 | void setOnUpdatesDisabled(EventCallback_t callback) { |
Rohit Grover |
106:a20be740075d | 64 | onUpdatesDisabled = callback; |
Rohit Grover |
106:a20be740075d | 65 | } |
Rohit Grover |
106:a20be740075d | 66 | void setOnConfirmationReceived(EventCallback_t callback) { |
Rohit Grover |
106:a20be740075d | 67 | onConfirmationReceived = callback; |
Rohit Grover |
106:a20be740075d | 68 | } |
Rohit Grover |
106:a20be740075d | 69 | |
rgrover1 | 135:6cf6e7bd21c9 | 70 | protected: |
rgrover1 | 135:6cf6e7bd21c9 | 71 | GattServer() : serviceCount(0), characteristicCount(0), onDataSent(NULL), onDataWritten(), onUpdatesEnabled(NULL), onUpdatesDisabled(NULL), onConfirmationReceived(NULL) { |
rgrover1 | 135:6cf6e7bd21c9 | 72 | /* empty */ |
rgrover1 | 135:6cf6e7bd21c9 | 73 | } |
rgrover1 | 135:6cf6e7bd21c9 | 74 | |
rgrover1 | 135:6cf6e7bd21c9 | 75 | protected: |
Rohit Grover |
118:620d28e7a1ba | 76 | void handleDataWrittenEvent(const GattCharacteristicWriteCBParams *params) { |
Rohit Grover |
118:620d28e7a1ba | 77 | if (onDataWritten.hasCallbacksAttached()) { |
Rohit Grover |
118:620d28e7a1ba | 78 | onDataWritten.call(params); |
Rohit Grover |
116:ca826083980e | 79 | } |
Rohit Grover |
116:ca826083980e | 80 | } |
Rohit Grover |
116:ca826083980e | 81 | |
Rohit Grover |
106:a20be740075d | 82 | void handleEvent(GattServerEvents::gattEvent_e type, uint16_t charHandle) { |
Rohit Grover |
106:a20be740075d | 83 | switch (type) { |
Rohit Grover |
106:a20be740075d | 84 | case GattServerEvents::GATT_EVENT_UPDATES_ENABLED: |
Rohit Grover |
106:a20be740075d | 85 | if (onUpdatesEnabled) { |
Rohit Grover |
106:a20be740075d | 86 | onUpdatesEnabled(charHandle); |
Rohit Grover |
106:a20be740075d | 87 | } |
Rohit Grover |
106:a20be740075d | 88 | break; |
Rohit Grover |
106:a20be740075d | 89 | case GattServerEvents::GATT_EVENT_UPDATES_DISABLED: |
Rohit Grover |
106:a20be740075d | 90 | if (onUpdatesDisabled) { |
Rohit Grover |
106:a20be740075d | 91 | onUpdatesDisabled(charHandle); |
Rohit Grover |
106:a20be740075d | 92 | } |
Rohit Grover |
106:a20be740075d | 93 | break; |
Rohit Grover |
106:a20be740075d | 94 | case GattServerEvents::GATT_EVENT_CONFIRMATION_RECEIVED: |
Rohit Grover |
106:a20be740075d | 95 | if (onConfirmationReceived) { |
Rohit Grover |
106:a20be740075d | 96 | onConfirmationReceived(charHandle); |
Rohit Grover |
106:a20be740075d | 97 | } |
Rohit Grover |
106:a20be740075d | 98 | break; |
Rohit Grover |
106:a20be740075d | 99 | } |
Rohit Grover |
106:a20be740075d | 100 | } |
Rohit Grover |
106:a20be740075d | 101 | |
Rohit Grover |
116:ca826083980e | 102 | void handleDataSentEvent(unsigned count) { |
Rohit Grover |
116:ca826083980e | 103 | if (onDataSent) { |
Rohit Grover |
116:ca826083980e | 104 | onDataSent(count); |
Rohit Grover |
106:a20be740075d | 105 | } |
Rohit Grover |
106:a20be740075d | 106 | } |
Rohit Grover |
106:a20be740075d | 107 | |
Rohit Grover |
106:a20be740075d | 108 | protected: |
Rohit Grover |
106:a20be740075d | 109 | uint8_t serviceCount; |
Rohit Grover |
106:a20be740075d | 110 | uint8_t characteristicCount; |
Rohit Grover |
106:a20be740075d | 111 | |
Rohit Grover |
106:a20be740075d | 112 | private: |
Rohit Grover |
116:ca826083980e | 113 | ServerEventCallbackWithCount_t onDataSent; |
Rohit Grover |
118:620d28e7a1ba | 114 | CallChainOfFunctionPointersWithContext<const GattCharacteristicWriteCBParams *> onDataWritten; |
Rohit Grover |
116:ca826083980e | 115 | EventCallback_t onUpdatesEnabled; |
Rohit Grover |
116:ca826083980e | 116 | EventCallback_t onUpdatesDisabled; |
Rohit Grover |
116:ca826083980e | 117 | EventCallback_t onConfirmationReceived; |
Rohit Grover |
106:a20be740075d | 118 | }; |
Rohit Grover |
106:a20be740075d | 119 | |
rgrover1 | 126:fdebe4d5d62f | 120 | #endif // ifndef __GATT_SERVER_H__ |