-
Notifications
You must be signed in to change notification settings - Fork 2.1k
/
BleConnectionDelegate.h
71 lines (57 loc) · 2.18 KB
/
BleConnectionDelegate.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
/*
*
* Copyright (c) 2020 Project CHIP Authors
*
* 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.
*/
/**
* @file
* This file defines the interface for application to delegate Ble connection to
* to BleLayer.
*/
#pragma once
#ifndef _CHIP_BLE_BLE_H
#error "Please include <ble/Ble.h> instead!"
#endif
#include <lib/support/DLLUtil.h>
#include <lib/support/SetupDiscriminator.h>
#include "BleConfig.h"
#include "BleError.h"
namespace chip {
namespace Ble {
class BleLayer;
} // namespace Ble
} // namespace chip
namespace chip {
namespace Ble {
// Platform-agnostic BLE interface
class DLL_EXPORT BleConnectionDelegate
{
public:
virtual ~BleConnectionDelegate() {}
// Public function pointers:
typedef void (*OnConnectionCompleteFunct)(void * appState, BLE_CONNECTION_OBJECT connObj);
OnConnectionCompleteFunct OnConnectionComplete;
typedef void (*OnConnectionErrorFunct)(void * appState, CHIP_ERROR err);
OnConnectionErrorFunct OnConnectionError;
// Call this function to delegate the connection steps required to get a BLE_CONNECTION_OBJECT
// out of a peripheral that matches the given discriminator.
virtual void NewConnection(BleLayer * bleLayer, void * appState, const SetupDiscriminator & connDiscriminator) = 0;
// Call this function to delegate the connection steps required to get a connected BLE_CONNECTION_OBJECT
// out of a disconnected BLE_CONNECTION_OBJECT.
virtual void NewConnection(BleLayer * bleLayer, void * appState, BLE_CONNECTION_OBJECT connObj) = 0;
// Call this function to stop the connection
virtual CHIP_ERROR CancelConnection() = 0;
};
} /* namespace Ble */
} /* namespace chip */