2014-07-30 10:36:32 +00:00
|
|
|
/* mbed Microcontroller Library
|
|
|
|
* Copyright (c) 2006-2013 ARM Limited
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __NRF51822_GATT_SERVER_H__
|
|
|
|
#define __NRF51822_GATT_SERVER_H__
|
|
|
|
|
2014-11-18 10:13:59 +00:00
|
|
|
#include <stddef.h>
|
|
|
|
|
2015-06-19 12:39:08 +00:00
|
|
|
#include "ble/blecommon.h"
|
2014-07-30 10:36:32 +00:00
|
|
|
#include "ble.h" /* nordic ble */
|
2015-06-19 12:39:08 +00:00
|
|
|
#include "ble/Gap.h"
|
|
|
|
#include "ble/GattServer.h"
|
2014-07-30 10:36:32 +00:00
|
|
|
|
2015-07-06 13:17:22 +00:00
|
|
|
class nRF5xGattServer : public GattServer
|
2014-07-30 10:36:32 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
/* Functions that must be implemented from GattServer */
|
|
|
|
virtual ble_error_t addService(GattService &);
|
2015-06-18 20:23:54 +00:00
|
|
|
virtual ble_error_t read(GattAttribute::Handle_t attributeHandle, uint8_t buffer[], uint16_t *lengthP);
|
|
|
|
virtual ble_error_t read(Gap::Handle_t connectionHandle, GattAttribute::Handle_t attributeHandle, uint8_t buffer[], uint16_t *lengthP);
|
|
|
|
virtual ble_error_t write(GattAttribute::Handle_t, const uint8_t[], uint16_t, bool localOnly = false);
|
|
|
|
virtual ble_error_t write(Gap::Handle_t connectionHandle, GattAttribute::Handle_t, const uint8_t[], uint16_t, bool localOnly = false);
|
2015-12-10 17:21:19 +00:00
|
|
|
virtual ble_error_t notify(GattAttribute::Handle_t, const uint8_t[], uint16_t);
|
2015-07-02 06:57:51 +00:00
|
|
|
virtual ble_error_t areUpdatesEnabled(const GattCharacteristic &characteristic, bool *enabledP);
|
|
|
|
virtual ble_error_t areUpdatesEnabled(Gap::Handle_t connectionHandle, const GattCharacteristic &characteristic, bool *enabledP);
|
Modify shutdown due to BLE API change
The module is updated to comply with the changes to BLE API regarding correct
shutdown functionality. The following changes are introduced to ble-nrf51822:
* Calls to the old static function shutdown in Gap, GattClient, GattServer and
SecurityManager are removed.
* The cleanup function in Gap, GattClient, GattServer and SecurityManager is
renamed to `reset()` and made public.
* The static references inside nRF5xGap, nRF5xGattClient, nRF5xGattServer and
nRF5xSecurityManager to objects of their own class are moved to nRF5xn.
* The static getInstance accessors in nRF5xGap, nRF5xGattClient,
nRF5xGattServer and nRF5xSecurityManager are removed and their functionality is
moved to the implemented virtual accessors in nRF5xn i.e. getGap(),
getGattClient, etc.
* A static function Instance is added to nRF5xn class to make the transport
object accessible across the module.
2015-12-14 15:15:35 +00:00
|
|
|
virtual ble_error_t reset(void);
|
2014-07-30 10:36:32 +00:00
|
|
|
|
|
|
|
/* nRF51 Functions */
|
|
|
|
void eventCallback(void);
|
|
|
|
void hwCallback(ble_evt_t *p_ble_evt);
|
|
|
|
|
Improve shutdown to clear BLE API and not just SD
Improve the shutdown functionality, such that a call to ble.shutdown() from
the user application clears the API and nRF5x state and NOT only the
SoftDevice. To achieve this the following changes are introduced:
* Add a protected member cleanup() to nRF5xGap, nRF5xGattClient,
nRF5xGattServer, nRF5xSecurityManager and nRF5xServiceDiscovery.
* Modify the shutdown() implementation in nRF5xn such that it also calls the
static member shutdown() exposed by the BLE API in Gap.h, SecurityManager.h,
GattClient.h and GattServer.h.
* Modify nRF5xGattClient, nRF5xGattServer and nRF5xSecurityManager
classes so that they dynamically create their respective objects only if
needed. Previously the GattClient, GattServer and SecurityManager objects were
declared as static, which means that they were always present even though they
were not always needed. This increases memory consumption unnecessarily.
Furthermore, pointers to the object instances are stored in static members of
the classes as specified by the BLE API base classes. This ensures that
calls to shutdown do not require calls to getInstance() functions that would
otherwise result in undesired memory allocations.
* nRF5xGap object is always needed, so this remains allocated statically. But
the reference in Gap is pointed to this object.
The shutdown procedure is as follows:
1. The user calls ble.shutdown() which executes the code in nRF5xn::shutdown()
1. The SoftDevice is shutdown
1. The static members of Gap.h, SecurityManager.h, GattClient.h and
GattServer.h are called to clean up their own state.
If at any point an error occur during the last step, BLE_ERROR_INVALID_STATE is
returned.
2015-12-11 17:37:58 +00:00
|
|
|
|
2014-07-30 10:36:32 +00:00
|
|
|
private:
|
2015-05-28 14:51:43 +00:00
|
|
|
const static unsigned BLE_TOTAL_CHARACTERISTICS = 20;
|
|
|
|
const static unsigned BLE_TOTAL_DESCRIPTORS = 8;
|
2014-11-18 10:13:31 +00:00
|
|
|
|
2015-07-01 10:39:13 +00:00
|
|
|
private:
|
|
|
|
/**
|
|
|
|
* resolve a value attribute to its owning characteristic.
|
|
|
|
* @param valueHandle the value handle to be resolved.
|
|
|
|
* @return characteristic index if a resolution is found, else -1.
|
|
|
|
*/
|
2015-07-02 06:59:44 +00:00
|
|
|
int resolveValueHandleToCharIndex(GattAttribute::Handle_t valueHandle) const {
|
2015-07-01 10:39:13 +00:00
|
|
|
unsigned charIndex;
|
|
|
|
for (charIndex = 0; charIndex < characteristicCount; charIndex++) {
|
|
|
|
if (nrfCharacteristicHandles[charIndex].value_handle == valueHandle) {
|
|
|
|
return charIndex;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* resolve a CCCD attribute handle to its owning characteristic.
|
|
|
|
* @param cccdHandle the CCCD handle to be resolved.
|
|
|
|
* @return characteristic index if a resolution is found, else -1.
|
|
|
|
*/
|
2015-07-02 06:59:44 +00:00
|
|
|
int resolveCCCDHandleToCharIndex(GattAttribute::Handle_t cccdHandle) const {
|
2015-07-01 10:39:13 +00:00
|
|
|
unsigned charIndex;
|
|
|
|
for (charIndex = 0; charIndex < characteristicCount; charIndex++) {
|
|
|
|
if (nrfCharacteristicHandles[charIndex].cccd_handle == cccdHandle) {
|
|
|
|
return charIndex;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2014-11-18 10:09:48 +00:00
|
|
|
GattCharacteristic *p_characteristics[BLE_TOTAL_CHARACTERISTICS];
|
|
|
|
ble_gatts_char_handles_t nrfCharacteristicHandles[BLE_TOTAL_CHARACTERISTICS];
|
|
|
|
GattAttribute *p_descriptors[BLE_TOTAL_DESCRIPTORS];
|
|
|
|
uint8_t descriptorCount;
|
|
|
|
uint16_t nrfDescriptorHandles[BLE_TOTAL_DESCRIPTORS];
|
2014-07-30 10:36:32 +00:00
|
|
|
|
Modify shutdown due to BLE API change
The module is updated to comply with the changes to BLE API regarding correct
shutdown functionality. The following changes are introduced to ble-nrf51822:
* Calls to the old static function shutdown in Gap, GattClient, GattServer and
SecurityManager are removed.
* The cleanup function in Gap, GattClient, GattServer and SecurityManager is
renamed to `reset()` and made public.
* The static references inside nRF5xGap, nRF5xGattClient, nRF5xGattServer and
nRF5xSecurityManager to objects of their own class are moved to nRF5xn.
* The static getInstance accessors in nRF5xGap, nRF5xGattClient,
nRF5xGattServer and nRF5xSecurityManager are removed and their functionality is
moved to the implemented virtual accessors in nRF5xn i.e. getGap(),
getGattClient, etc.
* A static function Instance is added to nRF5xn class to make the transport
object accessible across the module.
2015-12-14 15:15:35 +00:00
|
|
|
/*
|
|
|
|
* Allow instantiation from nRF5xn when required.
|
|
|
|
*/
|
|
|
|
friend class nRF5xn;
|
|
|
|
|
2015-07-06 13:17:22 +00:00
|
|
|
nRF5xGattServer() : GattServer(), p_characteristics(), nrfCharacteristicHandles(), p_descriptors(), descriptorCount(0), nrfDescriptorHandles() {
|
2014-11-18 10:09:00 +00:00
|
|
|
/* empty */
|
|
|
|
}
|
2014-11-18 10:08:28 +00:00
|
|
|
|
|
|
|
private:
|
2015-07-06 13:17:22 +00:00
|
|
|
nRF5xGattServer(const nRF5xGattServer &);
|
|
|
|
const nRF5xGattServer& operator=(const nRF5xGattServer &);
|
2014-07-30 10:36:32 +00:00
|
|
|
};
|
|
|
|
|
2014-11-18 10:09:48 +00:00
|
|
|
#endif // ifndef __NRF51822_GATT_SERVER_H__
|