|
| 1 | +/* |
| 2 | + * Copyright (c) 2024 Project CHIP Authors |
| 3 | + * All rights reserved. |
| 4 | + * |
| 5 | + * Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | + * you may not use this file except in compliance with the License. |
| 7 | + * You may obtain a copy of the License at |
| 8 | + * |
| 9 | + * http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | + * |
| 11 | + * Unless required by applicable law or agreed to in writing, software |
| 12 | + * distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | + * See the License for the specific language governing permissions and |
| 15 | + * limitations under the License. |
| 16 | + * |
| 17 | + */ |
| 18 | + |
| 19 | +#include "ReportCommand.h" |
| 20 | + |
| 21 | +#include <app/InteractionModelEngine.h> |
| 22 | +#include <inttypes.h> |
| 23 | + |
| 24 | +using namespace ::chip; |
| 25 | + |
| 26 | +void ReportCommand::OnAttributeData(const app::ConcreteDataAttributePath & path, TLV::TLVReader * data, |
| 27 | + const app::StatusIB & status) |
| 28 | +{ |
| 29 | + CHIP_ERROR error = status.ToChipError(); |
| 30 | + if (CHIP_NO_ERROR != error) |
| 31 | + { |
| 32 | + LogErrorOnFailure(RemoteDataModelLogger::LogErrorAsJSON(path, status)); |
| 33 | + |
| 34 | + ChipLogError(NotSpecified, "Response Failure: %s", ErrorStr(error)); |
| 35 | + mError = error; |
| 36 | + return; |
| 37 | + } |
| 38 | + |
| 39 | + if (data == nullptr) |
| 40 | + { |
| 41 | + ChipLogError(NotSpecified, "Response Failure: No Data"); |
| 42 | + mError = CHIP_ERROR_INTERNAL; |
| 43 | + return; |
| 44 | + } |
| 45 | + |
| 46 | + LogErrorOnFailure(RemoteDataModelLogger::LogAttributeAsJSON(path, data)); |
| 47 | +} |
| 48 | + |
| 49 | +void ReportCommand::OnEventData(const app::EventHeader & eventHeader, TLV::TLVReader * data, const app::StatusIB * status) |
| 50 | +{ |
| 51 | + if (status != nullptr) |
| 52 | + { |
| 53 | + CHIP_ERROR error = status->ToChipError(); |
| 54 | + if (CHIP_NO_ERROR != error) |
| 55 | + { |
| 56 | + LogErrorOnFailure(RemoteDataModelLogger::LogErrorAsJSON(eventHeader, *status)); |
| 57 | + |
| 58 | + ChipLogError(NotSpecified, "Response Failure: %s", ErrorStr(error)); |
| 59 | + mError = error; |
| 60 | + return; |
| 61 | + } |
| 62 | + } |
| 63 | + |
| 64 | + if (data == nullptr) |
| 65 | + { |
| 66 | + ChipLogError(NotSpecified, "Response Failure: No Data"); |
| 67 | + mError = CHIP_ERROR_INTERNAL; |
| 68 | + return; |
| 69 | + } |
| 70 | + |
| 71 | + LogErrorOnFailure(RemoteDataModelLogger::LogEventAsJSON(eventHeader, data)); |
| 72 | + |
| 73 | + CHIP_ERROR error = DataModelLogger::LogEvent(eventHeader, data); |
| 74 | + if (CHIP_NO_ERROR != error) |
| 75 | + { |
| 76 | + ChipLogError(NotSpecified, "Response Failure: Can not decode Data"); |
| 77 | + mError = error; |
| 78 | + return; |
| 79 | + } |
| 80 | +} |
0 commit comments