| /* |
| * |
| * Copyright (c) 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. |
| */ |
| |
| #pragma once |
| |
| // These are the bridged devices |
| #include <app/util/attribute-storage.h> |
| #include <functional> |
| #include <stdbool.h> |
| #include <stdint.h> |
| |
| class SubDevice |
| { |
| public: |
| static const int kSubDeviceNameSize = 32; |
| static const int kSubDeviceLocationSize = 32; |
| |
| enum State_t |
| { |
| kState_On = 0, |
| kState_Off, |
| } State; |
| |
| enum Changed_t |
| { |
| kChanged_Reachable = 0x01, |
| kChanged_State = 0x02, |
| kChanged_Location = 0x04, |
| kChanged_Name = 0x08, |
| } Changed; |
| |
| SubDevice(const char * szSubDeviceName, const char * szLocation); |
| |
| bool IsOn() const; |
| bool IsReachable() const; |
| void SetOnOff(bool aOn); |
| void SetReachable(bool aReachable); |
| void SetName(const char * szSubDeviceName); |
| void SetLocation(const char * szLocation); |
| inline void SetEndpointId(chip::EndpointId id) { mEndpointId = id; }; |
| inline chip::EndpointId GetEndpointId() { return mEndpointId; }; |
| inline char * GetName() { return mName; }; |
| inline char * GetLocation() { return mLocation; }; |
| |
| using SubDeviceCallback_fn = std::function<void(SubDevice *, Changed_t)>; |
| void SetChangeCallback(SubDeviceCallback_fn aChanged_CB); |
| |
| private: |
| State_t mState; |
| bool mReachable; |
| char mName[kSubDeviceNameSize]; |
| char mLocation[kSubDeviceLocationSize]; |
| chip::EndpointId mEndpointId; |
| SubDeviceCallback_fn mChanged_CB; |
| }; |