Fix for x86_64 build fail
[platform/upstream/connectedhomeip.git] / src / darwin / Framework / CHIP / CHIPDevicePairingDelegateBridge.h
1 /**
2  *
3  *    Copyright (c) 2020 Project CHIP Authors
4  *
5  *    Licensed under the Apache License, Version 2.0 (the "License");
6  *    you may not use this file except in compliance with the License.
7  *    You may obtain a copy of the License at
8  *
9  *        http://www.apache.org/licenses/LICENSE-2.0
10  *
11  *    Unless required by applicable law or agreed to in writing, software
12  *    distributed under the License is distributed on an "AS IS" BASIS,
13  *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  *    See the License for the specific language governing permissions and
15  *    limitations under the License.
16  */
17
18 #import "CHIPDevicePairingDelegate.h"
19
20 #include <controller/CHIPDeviceController.h>
21
22 NS_ASSUME_NONNULL_BEGIN
23
24 class CHIPDevicePairingDelegateBridge : public chip::Controller::DevicePairingDelegate {
25 public:
26     CHIPDevicePairingDelegateBridge();
27     ~CHIPDevicePairingDelegateBridge();
28
29     void setDelegate(id<CHIPDevicePairingDelegate> delegate, dispatch_queue_t queue);
30
31     void SendWiFiCredentials(NSString * ssid, NSString * password);
32
33     void SendThreadCredentials(NSData * threadDataSet);
34
35     void OnStatusUpdate(chip::RendezvousSessionDelegate::Status status) override;
36
37     void OnNetworkCredentialsRequested(chip::RendezvousDeviceCredentialsDelegate * callback) override;
38
39     void OnOperationalCredentialsRequested(
40         const char * csr, size_t csr_length, chip::RendezvousDeviceCredentialsDelegate * callback) override;
41
42     void OnPairingComplete(CHIP_ERROR error) override;
43
44     void OnPairingDeleted(CHIP_ERROR error) override;
45
46 private:
47     id<CHIPDevicePairingDelegate> mDelegate;
48     dispatch_queue_t mQueue;
49
50     chip::RendezvousDeviceCredentialsDelegate * mCallback;
51
52     CHIPPairingStatus MapStatus(chip::RendezvousSessionDelegate::Status status);
53 };
54
55 NS_ASSUME_NONNULL_END