| /* |
| * |
| * 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. |
| */ |
| |
| #include <app/clusters/scenes-server/SceneHandlerImpl.h> |
| #include <app/util/ember-io-storage.h> |
| #include <app/util/endpoint-config-api.h> |
| #include <app/util/odd-sized-integers.h> |
| |
| namespace chip { |
| namespace scenes { |
| |
| namespace { |
| |
| template <int ByteSize, bool IsSigned> |
| using OddSizedInteger = app::OddSizedInteger<ByteSize, IsSigned>; |
| using ConcreteAttributePath = app::ConcreteAttributePath; |
| using AttributeValuePairType = app::Clusters::ScenesManagement::Structs::AttributeValuePairStruct::Type; |
| |
| /// ConvertDefaultValueToWorkingValue |
| /// @brief Helper function to convert a byte array to a value of the given type. |
| /// @param EmberAfDefaultAttributeValue & defaultValue |
| /// @return Value converted to the given working type |
| template <typename Type> |
| typename app::NumericAttributeTraits<Type>::WorkingType |
| ConvertDefaultValueToWorkingValue(const EmberAfDefaultAttributeValue & defaultValue) |
| { |
| if constexpr (sizeof(typename app::NumericAttributeTraits<Type>::WorkingType) <= 2) |
| { |
| return static_cast<typename app::NumericAttributeTraits<Type>::WorkingType>(defaultValue.defaultValue); |
| } |
| |
| typename app::NumericAttributeTraits<Type>::StorageType sValue; |
| memcpy(&sValue, defaultValue.ptrToDefaultValue, sizeof(sValue)); |
| return app::NumericAttributeTraits<Type>::StorageToWorking(sValue); |
| } |
| |
| /// IsExactlyOneValuePopulated |
| /// @brief Helper function to verify that exactly one value is populated in a given AttributeValuePairType |
| /// @param AttributeValuePairType & type AttributeValuePairType to verify |
| /// @return bool true if only one value is populated, false otherwise |
| bool IsExactlyOneValuePopulated(const AttributeValuePairType & type) |
| { |
| int count = 0; |
| if (type.valueUnsigned8.HasValue()) |
| count++; |
| if (type.valueSigned8.HasValue()) |
| count++; |
| if (type.valueUnsigned16.HasValue()) |
| count++; |
| if (type.valueSigned16.HasValue()) |
| count++; |
| if (type.valueUnsigned32.HasValue()) |
| count++; |
| if (type.valueSigned32.HasValue()) |
| count++; |
| if (type.valueUnsigned64.HasValue()) |
| count++; |
| if (type.valueSigned64.HasValue()) |
| count++; |
| return count == 1; |
| } |
| |
| /// CapAttributeValue |
| /// Cap the attribute value based on the attribute's min and max if they are defined, |
| /// or based on the attribute's size if they are not. |
| /// |
| /// The TypeForMinMax template parameter determines the type to use for the |
| /// min/max computation. The Type template parameter determines how the |
| /// resulting value is actually represented, because for booleans we |
| /// unfortunately end up using uint8, not an actual boolean. |
| /// |
| /// @param[in] value The value from the AttributeValuePairType that we were given. |
| /// @param[in] metadata The metadata for the attribute the value is for. |
| /// |
| /// |
| /// |
| template <typename Type, typename TypeForMinMax = Type> |
| void CapAttributeValue(typename app::NumericAttributeTraits<Type>::WorkingType & value, const EmberAfAttributeMetadata * metadata) |
| { |
| using IntType = app::NumericAttributeTraits<TypeForMinMax>; |
| using WorkingType = std::remove_reference_t<decltype(value)>; |
| |
| WorkingType minValue = IntType::MinValue(metadata->IsNullable()); |
| WorkingType maxValue = IntType::MaxValue(metadata->IsNullable()); |
| |
| // Check metadata for min and max values |
| if (metadata->HasMinMax()) |
| { |
| const EmberAfAttributeMinMaxValue * minMaxValue = metadata->defaultValue.ptrToMinMaxValue; |
| minValue = ConvertDefaultValueToWorkingValue<Type>(minMaxValue->minValue); |
| maxValue = ConvertDefaultValueToWorkingValue<Type>(minMaxValue->maxValue); |
| } |
| |
| if (metadata->IsNullable() && (minValue > value || maxValue < value)) |
| { |
| // If the attribute is nullable, the value can be set to NULL |
| app::NumericAttributeTraits<WorkingType>::SetNull(value); |
| return; |
| } |
| |
| if (minValue > value) |
| { |
| value = minValue; |
| } |
| else if (maxValue < value) |
| { |
| value = maxValue; |
| } |
| } |
| |
| /// @brief Validate the attribute exists for a given cluster |
| /// @param[in] endpoint Endpoint ID |
| /// @param[in] clusterID Cluster ID |
| /// @param[in] aVPair AttributeValuePairType, will be mutated to cap the value if it is out of range |
| /// @return CHIP_IM_GLOBAL_STATUS(UnsupportedAttribute) if the attribute does not exist for a given cluster or is not scenable |
| /// @note This will allways fail for global list attributes. If we do want to make them scenable someday, we will need to |
| /// use a different validation method. |
| // TODO: Add check for "S" quality to determine if the attribute is scenable once suported : |
| // https://github.com/project-chip/connectedhomeip/issues/24177 |
| CHIP_ERROR ValidateAttributePath(EndpointId endpoint, ClusterId cluster, AttributeValuePairType & aVPair) |
| { |
| const EmberAfAttributeMetadata * metadata = emberAfLocateAttributeMetadata(endpoint, cluster, aVPair.attributeID); |
| |
| if (nullptr == metadata) |
| { |
| return CHIP_IM_GLOBAL_STATUS(UnsupportedAttribute); |
| } |
| |
| // There should never be more than one populated value in an ExtensionFieldSet |
| VerifyOrReturnError(IsExactlyOneValuePopulated(aVPair), CHIP_ERROR_INVALID_ARGUMENT); |
| |
| switch (app::Compatibility::Internal::AttributeBaseType(metadata->attributeType)) |
| { |
| case ZCL_BOOLEAN_ATTRIBUTE_TYPE: |
| VerifyOrReturnError(aVPair.valueUnsigned8.HasValue(), CHIP_ERROR_INVALID_ARGUMENT); |
| CapAttributeValue<uint8_t, bool>(aVPair.valueUnsigned8.Value(), metadata); |
| break; |
| case ZCL_INT8U_ATTRIBUTE_TYPE: |
| VerifyOrReturnError(aVPair.valueUnsigned8.HasValue(), CHIP_ERROR_INVALID_ARGUMENT); |
| CapAttributeValue<uint8_t>(aVPair.valueUnsigned8.Value(), metadata); |
| break; |
| case ZCL_INT16U_ATTRIBUTE_TYPE: |
| VerifyOrReturnError(aVPair.valueUnsigned16.HasValue(), CHIP_ERROR_INVALID_ARGUMENT); |
| CapAttributeValue<uint16_t>(aVPair.valueUnsigned16.Value(), metadata); |
| break; |
| case ZCL_INT24U_ATTRIBUTE_TYPE: |
| VerifyOrReturnError(aVPair.valueUnsigned32.HasValue(), CHIP_ERROR_INVALID_ARGUMENT); |
| CapAttributeValue<OddSizedInteger<3, false>>(aVPair.valueUnsigned32.Value(), metadata); |
| break; |
| case ZCL_INT32U_ATTRIBUTE_TYPE: |
| VerifyOrReturnError(aVPair.valueUnsigned32.HasValue(), CHIP_ERROR_INVALID_ARGUMENT); |
| CapAttributeValue<uint32_t>(aVPair.valueUnsigned32.Value(), metadata); |
| break; |
| case ZCL_INT40U_ATTRIBUTE_TYPE: |
| VerifyOrReturnError(aVPair.valueUnsigned64.HasValue(), CHIP_ERROR_INVALID_ARGUMENT); |
| CapAttributeValue<OddSizedInteger<5, false>>(aVPair.valueUnsigned64.Value(), metadata); |
| break; |
| case ZCL_INT48U_ATTRIBUTE_TYPE: |
| VerifyOrReturnError(aVPair.valueUnsigned64.HasValue(), CHIP_ERROR_INVALID_ARGUMENT); |
| CapAttributeValue<OddSizedInteger<6, false>>(aVPair.valueUnsigned64.Value(), metadata); |
| break; |
| case ZCL_INT56U_ATTRIBUTE_TYPE: |
| VerifyOrReturnError(aVPair.valueUnsigned64.HasValue(), CHIP_ERROR_INVALID_ARGUMENT); |
| CapAttributeValue<OddSizedInteger<7, false>>(aVPair.valueUnsigned64.Value(), metadata); |
| break; |
| case ZCL_INT64U_ATTRIBUTE_TYPE: |
| VerifyOrReturnError(aVPair.valueUnsigned64.HasValue(), CHIP_ERROR_INVALID_ARGUMENT); |
| CapAttributeValue<uint64_t>(aVPair.valueUnsigned64.Value(), metadata); |
| break; |
| case ZCL_INT8S_ATTRIBUTE_TYPE: |
| VerifyOrReturnError(aVPair.valueSigned8.HasValue(), CHIP_ERROR_INVALID_ARGUMENT); |
| CapAttributeValue<int8_t>(aVPair.valueSigned8.Value(), metadata); |
| break; |
| case ZCL_INT16S_ATTRIBUTE_TYPE: |
| VerifyOrReturnError(aVPair.valueSigned16.HasValue(), CHIP_ERROR_INVALID_ARGUMENT); |
| CapAttributeValue<int16_t>(aVPair.valueSigned16.Value(), metadata); |
| break; |
| case ZCL_INT24S_ATTRIBUTE_TYPE: |
| VerifyOrReturnError(aVPair.valueSigned32.HasValue(), CHIP_ERROR_INVALID_ARGUMENT); |
| CapAttributeValue<OddSizedInteger<3, true>>(aVPair.valueSigned32.Value(), metadata); |
| break; |
| case ZCL_INT32S_ATTRIBUTE_TYPE: |
| VerifyOrReturnError(aVPair.valueSigned32.HasValue(), CHIP_ERROR_INVALID_ARGUMENT); |
| CapAttributeValue<int32_t>(aVPair.valueSigned32.Value(), metadata); |
| break; |
| case ZCL_INT40S_ATTRIBUTE_TYPE: |
| VerifyOrReturnError(aVPair.valueSigned64.HasValue(), CHIP_ERROR_INVALID_ARGUMENT); |
| CapAttributeValue<OddSizedInteger<5, true>>(aVPair.valueSigned64.Value(), metadata); |
| break; |
| case ZCL_INT48S_ATTRIBUTE_TYPE: |
| VerifyOrReturnError(aVPair.valueSigned64.HasValue(), CHIP_ERROR_INVALID_ARGUMENT); |
| CapAttributeValue<OddSizedInteger<6, true>>(aVPair.valueSigned64.Value(), metadata); |
| break; |
| case ZCL_INT56S_ATTRIBUTE_TYPE: |
| VerifyOrReturnError(aVPair.valueSigned64.HasValue(), CHIP_ERROR_INVALID_ARGUMENT); |
| CapAttributeValue<OddSizedInteger<7, true>>(aVPair.valueSigned64.Value(), metadata); |
| break; |
| case ZCL_INT64S_ATTRIBUTE_TYPE: |
| VerifyOrReturnError(aVPair.valueSigned64.HasValue(), CHIP_ERROR_INVALID_ARGUMENT); |
| CapAttributeValue<int64_t>(aVPair.valueSigned64.Value(), metadata); |
| break; |
| default: |
| return CHIP_IM_GLOBAL_STATUS(UnsupportedAttribute); |
| } |
| |
| return CHIP_NO_ERROR; |
| } |
| } // namespace |
| |
| CHIP_ERROR |
| DefaultSceneHandlerImpl::EncodeAttributeValueList(const List<AttributeValuePairType> & aVlist, MutableByteSpan & serializedBytes) |
| { |
| TLV::TLVWriter writer; |
| writer.Init(serializedBytes); |
| ReturnErrorOnFailure(app::DataModel::Encode(writer, TLV::AnonymousTag(), aVlist)); |
| serializedBytes.reduce_size(writer.GetLengthWritten()); |
| |
| return CHIP_NO_ERROR; |
| } |
| |
| CHIP_ERROR DefaultSceneHandlerImpl::DecodeAttributeValueList(const ByteSpan & serializedBytes, |
| DecodableList<AttributeValuePairDecodableType> & aVlist) |
| { |
| TLV::TLVReader reader; |
| |
| reader.Init(serializedBytes); |
| ReturnErrorOnFailure(reader.Next(TLV::kTLVType_Array, TLV::AnonymousTag())); |
| ReturnErrorOnFailure(aVlist.Decode(reader)); |
| |
| return CHIP_NO_ERROR; |
| } |
| |
| CHIP_ERROR |
| DefaultSceneHandlerImpl::SerializeAdd(EndpointId endpoint, const ExtensionFieldSetDecodableType & extensionFieldSet, |
| MutableByteSpan & serializedBytes) |
| { |
| AttributeValuePairType aVPairs[kMaxAvPair]; |
| |
| size_t pairTotal = 0; |
| // Verify size of list |
| ReturnErrorOnFailure(extensionFieldSet.attributeValueList.ComputeSize(&pairTotal)); |
| VerifyOrReturnError(pairTotal <= ArraySize(aVPairs), CHIP_ERROR_BUFFER_TOO_SMALL); |
| |
| uint8_t pairCount = 0; |
| auto pair_iterator = extensionFieldSet.attributeValueList.begin(); |
| while (pair_iterator.Next()) |
| { |
| AttributeValuePairType currentPair = pair_iterator.GetValue(); |
| ReturnErrorOnFailure(ValidateAttributePath(endpoint, extensionFieldSet.clusterID, currentPair)); |
| aVPairs[pairCount] = currentPair; |
| pairCount++; |
| } |
| ReturnErrorOnFailure(pair_iterator.GetStatus()); |
| List<AttributeValuePairType> attributeValueList(aVPairs, pairCount); |
| |
| return EncodeAttributeValueList(attributeValueList, serializedBytes); |
| } |
| |
| CHIP_ERROR DefaultSceneHandlerImpl::Deserialize(EndpointId endpoint, ClusterId cluster, const ByteSpan & serializedBytes, |
| ExtensionFieldSetType & extensionFieldSet) |
| { |
| DecodableList<AttributeValuePairDecodableType> attributeValueList; |
| |
| ReturnErrorOnFailure(DecodeAttributeValueList(serializedBytes, attributeValueList)); |
| |
| // Verify size of list |
| size_t pairTotal = 0; |
| ReturnErrorOnFailure(attributeValueList.ComputeSize(&pairTotal)); |
| VerifyOrReturnError(pairTotal <= ArraySize(mAVPairs), CHIP_ERROR_BUFFER_TOO_SMALL); |
| |
| uint8_t pairCount = 0; |
| auto pair_iterator = attributeValueList.begin(); |
| while (pair_iterator.Next()) |
| { |
| mAVPairs[pairCount] = pair_iterator.GetValue(); |
| pairCount++; |
| }; |
| ReturnErrorOnFailure(pair_iterator.GetStatus()); |
| |
| extensionFieldSet.clusterID = cluster; |
| extensionFieldSet.attributeValueList = mAVPairs; |
| extensionFieldSet.attributeValueList.reduce_size(pairCount); |
| |
| return CHIP_NO_ERROR; |
| } |
| |
| } // namespace scenes |
| } // namespace chip |