54d097620ce928f3010eed1ebd1cff59548334b6
[platform/upstream/connectedhomeip.git] / examples / common / chip-app-server / include / RendezvousServer.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 #pragma once
19
20 #include "AppDelegate.h"
21 #include <platform/CHIPDeviceLayer.h>
22 #include <transport/RendezvousSession.h>
23
24 namespace chip {
25
26 class RendezvousServer : public RendezvousSessionDelegate
27 {
28 public:
29     RendezvousServer();
30
31     CHIP_ERROR Init(const RendezvousParameters & params, TransportMgrBase * transportMgr);
32     void SetDelegate(AppDelegate * delegate) { mDelegate = delegate; };
33
34     //////////////// RendezvousSessionDelegate Implementation ///////////////////
35
36     void OnRendezvousConnectionOpened() override;
37     void OnRendezvousConnectionClosed() override;
38     void OnRendezvousError(CHIP_ERROR err) override;
39     void OnRendezvousMessageReceived(const PacketHeader & packetHeader, const Transport::PeerAddress & peerAddress,
40                                      System::PacketBufferHandle buffer) override;
41     void OnRendezvousComplete() override;
42     void OnRendezvousStatusUpdate(Status status, CHIP_ERROR err) override;
43     RendezvousSession * GetRendezvousSession() { return &mRendezvousSession; };
44
45 private:
46     RendezvousSession mRendezvousSession;
47     AppDelegate * mDelegate;
48 };
49
50 } // namespace chip