blob: 4aee009199959ff20571622ca7132210f56d5a60 [file]
/*
*
* Copyright (c) 2020-2021 Project CHIP Authors
* All rights reserved.
*
* 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 contains definitions for DeviceProxy base class. The objects of this
* class will be used by applications to interact with peer CHIP devices.
* The class provides mechanism to construct, send and receive messages to and
* from the corresponding CHIP devices.
*/
#pragma once
#include <app/CommandSender.h>
#include <app/InteractionModelEngine.h>
#include <lib/core/CHIPCallback.h>
#include <lib/core/CHIPCore.h>
#include <lib/support/DLLUtil.h>
namespace chip {
class DLL_EXPORT DeviceProxy
{
public:
virtual ~DeviceProxy() {}
DeviceProxy() {}
/**
* Mark any open session with the device as expired.
*/
virtual CHIP_ERROR Disconnect() = 0;
virtual NodeId GetDeviceId() const = 0;
virtual bool GetAddress(Inet::IPAddress & addr, uint16_t & port) const { return false; }
virtual CHIP_ERROR ShutdownSubscriptions() { return CHIP_ERROR_NOT_IMPLEMENTED; }
virtual CHIP_ERROR SendCommands(app::CommandSender * commandObj, chip::Optional<System::Clock::Timeout> timeout = NullOptional);
virtual Messaging::ExchangeManager * GetExchangeManager() const = 0;
virtual chip::Optional<SessionHandle> GetSecureSession() const = 0;
virtual bool IsActive() const { return true; }
virtual CHIP_ERROR SetPeerId(ByteSpan rcac, ByteSpan noc) { return CHIP_ERROR_NOT_IMPLEMENTED; }
const ReliableMessageProtocolConfig & GetMRPConfig() const { return mMRPConfig; }
protected:
virtual bool IsSecureConnected() const = 0;
virtual uint8_t GetNextSequenceNumber() = 0;
ReliableMessageProtocolConfig mMRPConfig = GetLocalMRPConfig();
};
} // namespace chip