| /** |
| * |
| * Copyright (c) 2020 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. |
| */ |
| /** |
| * @file |
| * This file defines ReadRequestMessage parser and builder in CHIP interaction model |
| * |
| */ |
| |
| #include "ReadRequestMessage.h" |
| #include "MessageDefHelper.h" |
| |
| #include <inttypes.h> |
| #include <stdarg.h> |
| #include <stdio.h> |
| |
| #include <app/AppBuildConfig.h> |
| |
| using namespace chip; |
| using namespace chip::TLV; |
| |
| namespace chip { |
| namespace app { |
| CHIP_ERROR ReadRequestMessage::Parser::Init(const chip::TLV::TLVReader & aReader) |
| { |
| CHIP_ERROR err = CHIP_NO_ERROR; |
| |
| // make a copy of the reader here |
| mReader.Init(aReader); |
| |
| VerifyOrExit(chip::TLV::kTLVType_Structure == mReader.GetType(), err = CHIP_ERROR_WRONG_TLV_TYPE); |
| |
| err = mReader.EnterContainer(mOuterContainerType); |
| |
| exit: |
| |
| return err; |
| } |
| |
| #if CHIP_CONFIG_IM_ENABLE_SCHEMA_CHECK |
| CHIP_ERROR ReadRequestMessage::Parser::CheckSchemaValidity() const |
| { |
| CHIP_ERROR err = CHIP_NO_ERROR; |
| uint16_t TagPresenceMask = 0; |
| chip::TLV::TLVReader reader; |
| AttributePaths::Parser AttributePaths; |
| EventPaths::Parser eventPathList; |
| AttributeDataVersionList::Parser attributeDataVersionList; |
| PRETTY_PRINT("ReadRequestMessage ="); |
| PRETTY_PRINT("{"); |
| |
| // make a copy of the reader |
| reader.Init(mReader); |
| |
| while (CHIP_NO_ERROR == (err = reader.Next())) |
| { |
| const Tag tag = reader.GetTag(); |
| |
| if (chip::TLV::ContextTag(kCsTag_AttributePathList) == tag) |
| { |
| VerifyOrExit(!(TagPresenceMask & (1 << kCsTag_AttributePathList)), err = CHIP_ERROR_INVALID_TLV_TAG); |
| TagPresenceMask |= (1 << kCsTag_AttributePathList); |
| VerifyOrExit(chip::TLV::kTLVType_Array == reader.GetType(), err = CHIP_ERROR_WRONG_TLV_TYPE); |
| |
| AttributePaths.Init(reader); |
| |
| PRETTY_PRINT_INCDEPTH(); |
| |
| err = AttributePaths.CheckSchemaValidity(); |
| SuccessOrExit(err); |
| |
| PRETTY_PRINT_DECDEPTH(); |
| } |
| else if (chip::TLV::ContextTag(kCsTag_EventPaths) == tag) |
| { |
| VerifyOrExit(!(TagPresenceMask & (1 << kCsTag_EventPaths)), err = CHIP_ERROR_INVALID_TLV_TAG); |
| TagPresenceMask |= (1 << kCsTag_EventPaths); |
| VerifyOrExit(chip::TLV::kTLVType_Array == reader.GetType(), err = CHIP_ERROR_WRONG_TLV_TYPE); |
| |
| eventPathList.Init(reader); |
| |
| PRETTY_PRINT_INCDEPTH(); |
| |
| err = eventPathList.CheckSchemaValidity(); |
| SuccessOrExit(err); |
| |
| PRETTY_PRINT_DECDEPTH(); |
| } |
| else if (chip::TLV::ContextTag(kCsTag_AttributeDataVersionList) == tag) |
| { |
| VerifyOrExit(!(TagPresenceMask & (1 << kCsTag_AttributeDataVersionList)), err = CHIP_ERROR_INVALID_TLV_TAG); |
| TagPresenceMask |= (1 << kCsTag_AttributeDataVersionList); |
| VerifyOrExit(chip::TLV::kTLVType_Array == reader.GetType(), err = CHIP_ERROR_WRONG_TLV_TYPE); |
| |
| attributeDataVersionList.Init(reader); |
| |
| PRETTY_PRINT_INCDEPTH(); |
| |
| err = attributeDataVersionList.CheckSchemaValidity(); |
| SuccessOrExit(err); |
| |
| PRETTY_PRINT_DECDEPTH(); |
| } |
| else if (chip::TLV::ContextTag(kCsTag_AttributePathList) == tag) |
| { |
| VerifyOrExit(!(TagPresenceMask & (1 << kCsTag_AttributePathList)), err = CHIP_ERROR_INVALID_TLV_TAG); |
| TagPresenceMask |= (1 << kCsTag_AttributePathList); |
| VerifyOrExit(chip::TLV::kTLVType_Array == reader.GetType(), err = CHIP_ERROR_WRONG_TLV_TYPE); |
| |
| AttributePaths.Init(reader); |
| |
| PRETTY_PRINT_INCDEPTH(); |
| |
| err = AttributePaths.CheckSchemaValidity(); |
| SuccessOrExit(err); |
| |
| PRETTY_PRINT_DECDEPTH(); |
| } |
| else if (chip::TLV::ContextTag(kCsTag_EventNumber) == tag) |
| { |
| VerifyOrExit(!(TagPresenceMask & (1 << kCsTag_EventNumber)), err = CHIP_ERROR_INVALID_TLV_TAG); |
| TagPresenceMask |= (1 << kCsTag_EventNumber); |
| VerifyOrExit(chip::TLV::kTLVType_UnsignedInteger == reader.GetType(), err = CHIP_ERROR_WRONG_TLV_TYPE); |
| #if CHIP_DETAIL_LOGGING |
| { |
| uint64_t eventNumber; |
| err = reader.Get(eventNumber); |
| SuccessOrExit(err); |
| PRETTY_PRINT("\tEventNumber = 0x%" PRIx64 ",", eventNumber); |
| } |
| #endif // CHIP_DETAIL_LOGGING |
| } |
| } |
| |
| PRETTY_PRINT("}"); |
| PRETTY_PRINT(""); |
| |
| // if we have exhausted this container |
| if (CHIP_END_OF_TLV == err) |
| { |
| err = CHIP_NO_ERROR; |
| } |
| SuccessOrExit(err); |
| err = reader.ExitContainer(mOuterContainerType); |
| |
| exit: |
| |
| return err; |
| } |
| #endif // CHIP_CONFIG_IM_ENABLE_SCHEMA_CHECK |
| |
| CHIP_ERROR ReadRequestMessage::Parser::GetAttributePathList(AttributePaths::Parser * const apAttributePathList) const |
| { |
| CHIP_ERROR err = CHIP_NO_ERROR; |
| chip::TLV::TLVReader reader; |
| |
| err = mReader.FindElementWithTag(chip::TLV::ContextTag(kCsTag_AttributePathList), reader); |
| SuccessOrExit(err); |
| |
| VerifyOrExit(chip::TLV::kTLVType_Array == reader.GetType(), err = CHIP_ERROR_WRONG_TLV_TYPE); |
| |
| err = apAttributePathList->Init(reader); |
| SuccessOrExit(err); |
| |
| exit: |
| ChipLogIfFalse((CHIP_NO_ERROR == err) || (CHIP_END_OF_TLV == err)); |
| |
| return err; |
| } |
| |
| CHIP_ERROR ReadRequestMessage::Parser::GetEventPaths(EventPaths::Parser * const apEventPaths) const |
| { |
| CHIP_ERROR err = CHIP_NO_ERROR; |
| chip::TLV::TLVReader reader; |
| |
| err = mReader.FindElementWithTag(chip::TLV::ContextTag(kCsTag_EventPaths), reader); |
| SuccessOrExit(err); |
| |
| VerifyOrExit(chip::TLV::kTLVType_Array == reader.GetType(), err = CHIP_ERROR_WRONG_TLV_TYPE); |
| |
| err = apEventPaths->Init(reader); |
| SuccessOrExit(err); |
| |
| exit: |
| ChipLogIfFalse((CHIP_NO_ERROR == err) || (CHIP_END_OF_TLV == err)); |
| |
| return err; |
| } |
| |
| CHIP_ERROR |
| ReadRequestMessage::Parser::GetAttributeDataVersionList(AttributeDataVersionList::Parser * const apAttributeDataVersionList) const |
| { |
| CHIP_ERROR err = CHIP_NO_ERROR; |
| chip::TLV::TLVReader reader; |
| |
| err = mReader.FindElementWithTag(chip::TLV::ContextTag(kCsTag_AttributeDataVersionList), reader); |
| SuccessOrExit(err); |
| |
| VerifyOrExit(chip::TLV::kTLVType_Array == reader.GetType(), err = CHIP_ERROR_WRONG_TLV_TYPE); |
| |
| err = apAttributeDataVersionList->Init(reader); |
| SuccessOrExit(err); |
| |
| exit: |
| ChipLogIfFalse((CHIP_NO_ERROR == err) || (CHIP_END_OF_TLV == err)); |
| |
| return err; |
| } |
| |
| CHIP_ERROR ReadRequestMessage::Parser::GetEventNumber(uint64_t * const apEventNumber) const |
| { |
| return GetUnsignedInteger(kCsTag_EventNumber, apEventNumber); |
| } |
| |
| CHIP_ERROR ReadRequestMessage::Builder::Init(chip::TLV::TLVWriter * const apWriter) |
| { |
| return InitAnonymousStructure(apWriter); |
| } |
| |
| AttributePaths::Builder & ReadRequestMessage::Builder::CreateAttributePathListBuilder() |
| { |
| // skip if error has already been set |
| VerifyOrExit(CHIP_NO_ERROR == mError, mAttributePathListBuilder.ResetError(mError)); |
| |
| mError = mAttributePathListBuilder.Init(mpWriter, kCsTag_AttributePathList); |
| |
| exit: |
| // on error, mAttributePathListBuilder would be un-/partial initialized and cannot be used to write anything |
| return mAttributePathListBuilder; |
| } |
| |
| EventPaths::Builder & ReadRequestMessage::Builder::CreateEventPathsBuilder() |
| { |
| // skip if error has already been set |
| VerifyOrExit(CHIP_NO_ERROR == mError, mEventPathsBuilder.ResetError(mError)); |
| |
| mError = mEventPathsBuilder.Init(mpWriter, kCsTag_EventPaths); |
| |
| exit: |
| // on error, mEventPathsBuilder would be un-/partial initialized and cannot be used to write anything |
| return mEventPathsBuilder; |
| } |
| |
| AttributeDataVersionList::Builder & ReadRequestMessage::Builder::CreateAttributeDataVersionListBuilder() |
| { |
| // skip if error has already been set |
| VerifyOrExit(CHIP_NO_ERROR == mError, mAttributeDataVersionListBuilder.ResetError(mError)); |
| |
| mError = mAttributeDataVersionListBuilder.Init(mpWriter, kCsTag_AttributeDataVersionList); |
| |
| exit: |
| // on error, mAttributeDataVersionListBuilder would be un-/partial initialized and cannot be used to write anything |
| return mAttributeDataVersionListBuilder; |
| } |
| |
| ReadRequestMessage::Builder & ReadRequestMessage::Builder::EventNumber(const uint64_t aEventNumber) |
| { |
| // skip if error has already been set |
| if (mError == CHIP_NO_ERROR) |
| { |
| mError = mpWriter->Put(chip::TLV::ContextTag(kCsTag_EventNumber), aEventNumber); |
| } |
| return *this; |
| } |
| |
| ReadRequestMessage::Builder & ReadRequestMessage::Builder::EndOfReadRequestMessage() |
| { |
| EndOfContainer(); |
| return *this; |
| } |
| }; // namespace app |
| }; // namespace chip |