Skip to content

Commit 391f3b9

Browse files
committedJun 18, 2024
Merge remote-tracking branch 'upstream/master' into ubuntu-qemu
2 parents 8b9305e + 4cdce52 commit 391f3b9

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+523
-232
lines changed
 

‎examples/fabric-admin/BUILD.gn

+2
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,8 @@ static_library("fabric-admin-utils") {
6161
"${chip_root}/zzz_generated/chip-tool/zap-generated/cluster/logging/DataModelLogger.cpp",
6262
"commands/clusters/ModelCommand.cpp",
6363
"commands/clusters/ModelCommand.h",
64+
"commands/clusters/ReportCommand.cpp",
65+
"commands/clusters/ReportCommand.h",
6466
"commands/common/CHIPCommand.cpp",
6567
"commands/common/CHIPCommand.h",
6668
"commands/common/Command.cpp",
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
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

Comments
 (0)