| /* |
| * |
| * Copyright (c) 2023 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. |
| */ |
| #pragma once |
| |
| #include <app/util/attribute-storage.h> |
| |
| #include <functional> |
| #include <stdbool.h> |
| #include <string> |
| |
| #include <stdint.h> |
| |
| class Device |
| { |
| public: |
| static const int kDeviceNameSize = 32; |
| static const int kDeviceLocationSize = 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, |
| kChanged_Last = kChanged_Name, |
| } Changed; |
| |
| Device(const char * szDeviceName, const char * szLocation); |
| |
| bool IsOn() const; |
| bool IsReachable() const; |
| void SetOnOff(bool aOn); |
| void SetReachable(bool aReachable); |
| void SetName(const char * szDeviceName); |
| 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 DeviceCallback_fn = std::function<void(Device *, Changed_t)>; |
| void SetChangeCallback(DeviceCallback_fn aChanged_CB); |
| |
| private: |
| State_t mState; |
| bool mReachable; |
| char mName[kDeviceNameSize]; |
| char mLocation[kDeviceLocationSize]; |
| chip::EndpointId mEndpointId; |
| DeviceCallback_fn mChanged_CB; |
| }; |
| |
| class DeviceTempSensor : public Device |
| { |
| public: |
| enum Changed_t |
| { |
| kChanged_MeasurementValue = kChanged_Last << 1, |
| } Changed; |
| |
| DeviceTempSensor(const char * szDeviceName, std::string szLocation, int16_t min, int16_t max, int16_t measuredValue); |
| |
| inline int16_t GetMeasuredValue() { return mMeasurement; }; |
| void SetMeasuredValue(int16_t measurement); |
| |
| using DeviceCallback_fn = std::function<void(DeviceTempSensor *, DeviceTempSensor::Changed_t)>; |
| void SetChangeCallback(DeviceCallback_fn aChanged_CB); |
| |
| const int16_t mMin; |
| const int16_t mMax; |
| |
| private: |
| void HandleDeviceChange(Device * device, Device::Changed_t changeMask); |
| |
| private: |
| int16_t mMeasurement; |
| DeviceCallback_fn mChanged_CB; |
| }; |