Skip to content

Commit b0c3ffd

Browse files
committed
Merge branch 'fabric_admin_add_rpc' into fabric_admin_populate
2 parents 471941c + f9465eb commit b0c3ffd

31 files changed

+393
-161
lines changed

.github/workflows/tests.yaml

+1-106
Large diffs are not rendered by default.

src/app/MessageDef/StatusIB.cpp

+1-25
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
#include "StatusIB.h"
2525

2626
#include "MessageDefHelper.h"
27+
#include "protocols/interaction_model/StatusCode.h"
2728

2829
#include <inttypes.h>
2930
#include <stdarg.h>
@@ -149,31 +150,6 @@ CHIP_ERROR StatusIB::ToChipError() const
149150
return ChipError(ChipError::SdkPart::kIMGlobalStatus, to_underlying(mStatus));
150151
}
151152

152-
StatusIB::StatusIB(CHIP_ERROR aError)
153-
{
154-
if (aError.IsPart(ChipError::SdkPart::kIMClusterStatus))
155-
{
156-
mStatus = Status::Failure;
157-
mClusterStatus = MakeOptional(aError.GetSdkCode());
158-
return;
159-
}
160-
161-
mClusterStatus = NullOptional;
162-
if (aError == CHIP_NO_ERROR)
163-
{
164-
mStatus = Status::Success;
165-
return;
166-
}
167-
168-
if (aError.IsPart(ChipError::SdkPart::kIMGlobalStatus))
169-
{
170-
mStatus = static_cast<Status>(aError.GetSdkCode());
171-
return;
172-
}
173-
174-
mStatus = Status::Failure;
175-
}
176-
177153
namespace {
178154
bool FormatStatusIBError(char * buf, uint16_t bufSize, CHIP_ERROR err)
179155
{

src/app/MessageDef/StatusIB.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ struct StatusIB
6060
}
6161
}
6262

63-
explicit StatusIB(CHIP_ERROR error);
63+
explicit StatusIB(CHIP_ERROR error) : StatusIB(Protocols::InteractionModel::ClusterStatusCode(error)) {}
6464

6565
enum class Tag : uint8_t
6666
{

src/app/clusters/ecosystem-information-server/ecosystem-information-server.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -282,11 +282,11 @@ CHIP_ERROR EcosystemInformationServer::ReadAttribute(const ConcreteReadAttribute
282282
switch (aPath.mAttributeId)
283283
{
284284
case Attributes::RemovedOn::Id:
285-
return EcosystemInformationServer::Instance().EncodeRemovedOnAttribute(aPath.mEndpointId, aEncoder);
285+
return EncodeRemovedOnAttribute(aPath.mEndpointId, aEncoder);
286286
case Attributes::DeviceDirectory::Id:
287-
return EcosystemInformationServer::Instance().EncodeDeviceDirectoryAttribute(aPath.mEndpointId, aEncoder);
287+
return EncodeDeviceDirectoryAttribute(aPath.mEndpointId, aEncoder);
288288
case Attributes::LocationDirectory::Id:
289-
return EcosystemInformationServer::Instance().EncodeLocationStructAttribute(aPath.mEndpointId, aEncoder);
289+
return EncodeLocationStructAttribute(aPath.mEndpointId, aEncoder);
290290
case Attributes::ClusterRevision::Id: {
291291
uint16_t rev = ZCL_ECOSYSTEM_INFORMATION_CLUSTER_REVISION;
292292
return aEncoder.Encode(rev);

src/app/data-model-provider/ActionReturnStatus.cpp

+11-14
Original file line numberDiff line numberDiff line change
@@ -149,45 +149,42 @@ bool ActionReturnStatus::IsOutOfSpaceEncodingResponse() const
149149
return false;
150150
}
151151

152-
const char * ActionReturnStatus::c_str() const
152+
const char * ActionReturnStatus::c_str(ActionReturnStatus::StringStorage & storage) const
153153
{
154-
155-
// Generally size should be sufficient.
156-
// len("Status<123>, Code 255") == 21 (and then 22 for null terminator. We have slack.)
157-
static chip::StringBuilder<32> sFormatBuffer;
158-
159154
if (const CHIP_ERROR * err = std::get_if<CHIP_ERROR>(&mReturnStatus))
160155
{
161156
#if CHIP_CONFIG_ERROR_FORMAT_AS_STRING
162157
return err->Format(); // any length
163158
#else
164-
sFormatBuffer.Reset().AddFormat("%" CHIP_ERROR_FORMAT, err->Format());
165-
return sFormatBuffer.c_str();
159+
storage.formatBuffer.Reset().AddFormat("%" CHIP_ERROR_FORMAT, err->Format());
160+
return storage.formatBuffer.c_str();
166161
#endif
167162
}
168163

169164
if (const ClusterStatusCode * status = std::get_if<ClusterStatusCode>(&mReturnStatus))
170165
{
166+
storage.formatBuffer.Reset();
167+
171168
#if CHIP_CONFIG_IM_STATUS_CODE_VERBOSE_FORMAT
172-
sFormatBuffer.AddFormat("%s(%d)", Protocols::InteractionModel::StatusName(status->GetStatus()),
173-
static_cast<int>(status->GetStatus()));
169+
storage.formatBuffer.AddFormat("%s(%d)", Protocols::InteractionModel::StatusName(status->GetStatus()),
170+
static_cast<int>(status->GetStatus()));
174171
#else
175172
if (status->IsSuccess())
176173
{
177-
sFormatBuffer.Add("Success");
174+
storage.formatBuffer.Add("Success");
178175
}
179176
else
180177
{
181-
sFormatBuffer.AddFormat("Status<%d>", static_cast<int>(status->GetStatus()));
178+
storage.formatBuffer.AddFormat("Status<%d>", static_cast<int>(status->GetStatus()));
182179
}
183180
#endif
184181

185182
chip::Optional<ClusterStatus> clusterCode = status->GetClusterSpecificCode();
186183
if (clusterCode.HasValue())
187184
{
188-
sFormatBuffer.AddFormat(", Code %d", static_cast<int>(clusterCode.Value()));
185+
storage.formatBuffer.AddFormat(", Code %d", static_cast<int>(clusterCode.Value()));
189186
}
190-
return sFormatBuffer.c_str();
187+
return storage.formatBuffer.c_str();
191188
}
192189

193190
// all std::variant cases exhausted

src/app/data-model-provider/ActionReturnStatus.h

+17-6
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,21 @@ namespace DataModel {
4444
class ActionReturnStatus
4545
{
4646
public:
47+
/// Provides storage for the c_str() call for the action status.
48+
struct StringStorage
49+
{
50+
// Generally size should be sufficient.
51+
// The longest status code from StatusCodeList is NO_UPSTREAM_SUBSCRIPTION(197)
52+
// so we need space for one of:
53+
// "NO_UPSTREAM_SUBSCRIPTION(197)\0" = 30 // explicit verbose status code
54+
// "FAILURE(1), Code 255\0") // cluster failure, verbose
55+
// "SUCCESS(0), Code 255\0") // cluster success, verbose
56+
// "Status<197>, Code 255\0") // Cluster failure, non-verbose
57+
//
58+
// CHIP_ERROR has its own (global/static!) storage
59+
chip::StringBuilder<32> formatBuffer;
60+
};
61+
4762
ActionReturnStatus(CHIP_ERROR error) : mReturnStatus(error) {}
4863
ActionReturnStatus(Protocols::InteractionModel::Status status) :
4964
mReturnStatus(Protocols::InteractionModel::ClusterStatusCode(status))
@@ -81,12 +96,8 @@ class ActionReturnStatus
8196

8297
/// Get the formatted string of this status.
8398
///
84-
/// NOTE: this is NOT thread safe in the general case, however the safety guarantees
85-
/// are similar to chip::ErrorStr which also assumes a static buffer.
86-
///
87-
/// Use this in the chip main event loop (and since that is a single thread,
88-
/// there should be no races)
89-
const char * c_str() const;
99+
/// May use `storage` for storying the actual underlying character string.
100+
const char * c_str(StringStorage & storage) const;
90101

91102
private:
92103
std::variant<CHIP_ERROR, Protocols::InteractionModel::ClusterStatusCode> mReturnStatus;

src/app/data-model-provider/StringBuilderAdapters.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@ template <>
2323
StatusWithSize ToString<chip::app::DataModel::ActionReturnStatus>(const chip::app::DataModel::ActionReturnStatus & status,
2424
pw::span<char> buffer)
2525
{
26-
return pw::string::Format(buffer, "ActionReturnStatus<%s>", status.c_str());
26+
chip::app::DataModel::ActionReturnStatus::StringStorage storage;
27+
return pw::string::Format(buffer, "ActionReturnStatus<%s>", status.c_str(storage));
2728
}
2829

2930
} // namespace pw

src/app/data-model-provider/tests/TestActionReturnStatus.cpp

+42
Original file line numberDiff line numberDiff line change
@@ -111,3 +111,45 @@ TEST(TestActionReturnStatus, TestStatusCode)
111111
ASSERT_EQ(ActionReturnStatus(CHIP_IM_CLUSTER_STATUS(0x12)).GetStatusCode(), ClusterStatusCode::ClusterSpecificFailure(0x12));
112112
ASSERT_EQ(ActionReturnStatus(CHIP_IM_GLOBAL_STATUS(Timeout)).GetStatusCode(), ClusterStatusCode(Status::Timeout));
113113
}
114+
115+
TEST(TestActionReturnStatus, TestCString)
116+
{
117+
/// only tests the strings that we build and NOT the CHIP_ERROR ones which
118+
/// are tested separately. for chip_error we just say it should not be empty.
119+
ActionReturnStatus::StringStorage buffer;
120+
ActionReturnStatus status(Status::Success);
121+
122+
// chip-error returns something non-empty
123+
status = CHIP_ERROR_NOT_FOUND;
124+
ASSERT_STRNE(status.c_str(buffer), "");
125+
126+
status = CHIP_NO_ERROR;
127+
ASSERT_STRNE(status.c_str(buffer), "");
128+
129+
// the items below we control
130+
#if CHIP_CONFIG_IM_STATUS_CODE_VERBOSE_FORMAT
131+
status = Status::Success;
132+
ASSERT_STREQ(status.c_str(buffer), "SUCCESS(0)");
133+
134+
status = Status::UnsupportedCommand;
135+
ASSERT_STREQ(status.c_str(buffer), "UNSUPPORTED_COMMAND(129)");
136+
137+
status = ClusterStatusCode::ClusterSpecificSuccess(31);
138+
ASSERT_STREQ(status.c_str(buffer), "SUCCESS(0), Code 31");
139+
140+
status = ClusterStatusCode::ClusterSpecificFailure(32);
141+
ASSERT_STREQ(status.c_str(buffer), "FAILURE(1), Code 32");
142+
#else
143+
status = Status::Success;
144+
ASSERT_STREQ(status.c_str(buffer), "Success");
145+
146+
status = Status::UnsupportedCommand;
147+
ASSERT_STREQ(status.c_str(buffer), "Status<129>");
148+
149+
status = ClusterStatusCode::ClusterSpecificSuccess(31);
150+
ASSERT_STREQ(status.c_str(buffer), "Success, Code 31");
151+
152+
status = ClusterStatusCode::ClusterSpecificFailure(32);
153+
ASSERT_STREQ(status.c_str(buffer), "Status<1>, Code 32");
154+
#endif
155+
}

src/app/reporting/Read-Checked.cpp

+4-3
Original file line numberDiff line numberDiff line change
@@ -82,12 +82,13 @@ ActionReturnStatus RetrieveClusterData(DataModel::Provider * dataModel, const Ac
8282

8383
if (statusEmber != statusDm)
8484
{
85-
StringBuilder<128> buffer;
85+
ActionReturnStatus::StringStorage buffer;
86+
8687
// Note log + chipDie instead of VerifyOrDie so that breakpoints (and usage of rr)
8788
// is easier to debug.
8889
ChipLogError(Test, "Different return codes between ember and DM");
89-
ChipLogError(Test, " Ember status: %s", statusEmber.c_str());
90-
ChipLogError(Test, " DM status: %s", statusDm.c_str());
90+
ChipLogError(Test, " Ember status: %s", statusEmber.c_str(buffer));
91+
ChipLogError(Test, " DM status: %s", statusDm.c_str(buffer));
9192

9293
// For time-dependent data, we may have size differences here: one data fitting in buffer
9394
// while another not, resulting in different errors (success vs out of space).

src/app/reporting/Read-DataModel.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,8 @@ DataModel::ActionReturnStatus RetrieveClusterData(DataModel::Provider * dataMode
9595
// and will be sent to the client as well).
9696
if (!status.IsOutOfSpaceEncodingResponse())
9797
{
98-
ChipLogError(DataManagement, "Failed to read attribute: %s", status.c_str());
98+
DataModel::ActionReturnStatus::StringStorage storage;
99+
ChipLogError(DataManagement, "Failed to read attribute: %s", status.c_str(storage));
99100
}
100101
return status;
101102
}

src/darwin/Framework/CHIP/MTRBaseDevice.h

+9-1
Original file line numberDiff line numberDiff line change
@@ -164,6 +164,7 @@ typedef NS_ENUM(uint8_t, MTRTransportType) {
164164
*
165165
* nil is used to represent wildcards.
166166
*/
167+
NS_SWIFT_SENDABLE
167168
MTR_AVAILABLE(ios(17.0), macos(14.0), watchos(10.0), tvos(17.0))
168169
@interface MTRAttributeRequestPath : NSObject <NSCopying>
169170
@property (nonatomic, readonly, copy, nullable) NSNumber * endpoint MTR_AVAILABLE(ios(17.0), macos(14.0), watchos(10.0), tvos(17.0));
@@ -182,6 +183,7 @@ MTR_AVAILABLE(ios(17.0), macos(14.0), watchos(10.0), tvos(17.0))
182183
*
183184
* nil is used to represent wildcards.
184185
*/
186+
NS_SWIFT_SENDABLE
185187
MTR_AVAILABLE(ios(17.0), macos(14.0), watchos(10.0), tvos(17.0))
186188
@interface MTREventRequestPath : NSObject <NSCopying>
187189
@property (nonatomic, readonly, copy, nullable) NSNumber * endpoint MTR_AVAILABLE(ios(17.0), macos(14.0), watchos(10.0), tvos(17.0));
@@ -572,6 +574,7 @@ MTR_AVAILABLE(ios(16.1), macos(13.0), watchos(9.1), tvos(16.1))
572574
* A path indicating a specific cluster on a device (i.e. without any
573575
* wildcards).
574576
*/
577+
NS_SWIFT_SENDABLE
575578
MTR_AVAILABLE(ios(16.4), macos(13.3), watchos(9.4), tvos(16.4))
576579
@interface MTRClusterPath : NSObject <NSCopying, NSSecureCoding>
577580

@@ -588,6 +591,7 @@ MTR_AVAILABLE(ios(16.4), macos(13.3), watchos(9.4), tvos(16.4))
588591
* A path indicating a specific attribute on a device (i.e. without any
589592
* wildcards).
590593
*/
594+
NS_SWIFT_SENDABLE
591595
MTR_AVAILABLE(ios(16.1), macos(13.0), watchos(9.1), tvos(16.1))
592596
@interface MTRAttributePath : MTRClusterPath <NSSecureCoding>
593597

@@ -604,6 +608,7 @@ MTR_AVAILABLE(ios(16.1), macos(13.0), watchos(9.1), tvos(16.1))
604608
* (i.e. without any wildcards). There can be multiple instances of actual
605609
* events for a given event path.
606610
*/
611+
NS_SWIFT_SENDABLE
607612
MTR_AVAILABLE(ios(16.1), macos(13.0), watchos(9.1), tvos(16.1))
608613
@interface MTREventPath : MTRClusterPath
609614

@@ -618,6 +623,7 @@ MTR_AVAILABLE(ios(16.1), macos(13.0), watchos(9.1), tvos(16.1))
618623
* A path indicating a specific command on a device (i.e. without any
619624
* wildcards).
620625
*/
626+
NS_SWIFT_SENDABLE
621627
MTR_AVAILABLE(ios(16.1), macos(13.0), watchos(9.1), tvos(16.1))
622628
@interface MTRCommandPath : MTRClusterPath
623629

@@ -628,6 +634,7 @@ MTR_AVAILABLE(ios(16.1), macos(13.0), watchos(9.1), tvos(16.1))
628634
commandID:(NSNumber *)commandID MTR_AVAILABLE(ios(16.4), macos(13.3), watchos(9.4), tvos(16.4));
629635
@end
630636

637+
NS_SWIFT_SENDABLE
631638
MTR_AVAILABLE(ios(16.1), macos(13.0), watchos(9.1), tvos(16.1))
632639
@interface MTRAttributeReport : NSObject
633640

@@ -640,7 +647,7 @@ MTR_AVAILABLE(ios(16.1), macos(13.0), watchos(9.1), tvos(16.1))
640647
* * The attribute is nullable and the value of the attribute is null.
641648
*
642649
* If value is not nil, the actual type of value will depend on the
643-
* schema-defined (typically defiend in the Matter specification) type of the
650+
* schema-defined (typically defined in the Matter specification) type of the
644651
* attribute as follows:
645652
*
646653
* * list: NSArray of whatever type the list entries are.
@@ -697,6 +704,7 @@ typedef NS_ENUM(NSUInteger, MTREventPriority) {
697704
MTREventPriorityCritical = 2
698705
} MTR_AVAILABLE(ios(16.5), macos(13.4), watchos(9.5), tvos(16.5));
699706

707+
NS_SWIFT_SENDABLE
700708
MTR_AVAILABLE(ios(16.1), macos(13.0), watchos(9.1), tvos(16.1))
701709
@interface MTREventReport : NSObject
702710

src/python_testing/TC_ACL_2_2.py

+10
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,16 @@
1414
# See the License for the specific language governing permissions and
1515
# limitations under the License.
1616
#
17+
18+
# === BEGIN CI TEST ARGUMENTS ===
19+
# test-runner-runs: run1
20+
# test-runner-run/run1/app: ${ALL_CLUSTERS_APP}
21+
# test-runner-run/run1/factoryreset: True
22+
# test-runner-run/run1/quiet: True
23+
# test-runner-run/run1/app-args: --discriminator 1234 --KVS kvs1 --trace-to json:${TRACE_APP}.json
24+
# test-runner-run/run1/script-args: --storage-path admin_storage.json --commissioning-method on-network --discriminator 1234 --passcode 20202021 --trace-to json:${TRACE_TEST_JSON}.json --trace-to perfetto:${TRACE_TEST_PERFETTO}.perfetto
25+
# === END CI TEST ARGUMENTS ===
26+
1727
import chip.clusters as Clusters
1828
from matter_testing_support import MatterBaseTest, TestStep, async_test_body, default_matter_test_main
1929
from mobly import asserts

src/python_testing/TC_BOOLCFG_2_1.py

+9
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,15 @@
1515
# limitations under the License.
1616
#
1717

18+
# === BEGIN CI TEST ARGUMENTS ===
19+
# test-runner-runs: run1
20+
# test-runner-run/run1/app: ${ALL_CLUSTERS_APP}
21+
# test-runner-run/run1/factoryreset: True
22+
# test-runner-run/run1/quiet: True
23+
# test-runner-run/run1/app-args: --discriminator 1234 --KVS kvs1 --trace-to json:${TRACE_APP}.json
24+
# test-runner-run/run1/script-args: --storage-path admin_storage.json --commissioning-method on-network --discriminator 1234 --passcode 20202021 --trace-to json:${TRACE_TEST_JSON}.json --trace-to perfetto:${TRACE_TEST_PERFETTO}.perfetto
25+
# === END CI TEST ARGUMENTS ===
26+
1827
import functools
1928
import logging
2029
from operator import ior

src/python_testing/TC_BOOLCFG_3_1.py

+9
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,15 @@
1515
# limitations under the License.
1616
#
1717

18+
# === BEGIN CI TEST ARGUMENTS ===
19+
# test-runner-runs: run1
20+
# test-runner-run/run1/app: ${ALL_CLUSTERS_APP}
21+
# test-runner-run/run1/factoryreset: True
22+
# test-runner-run/run1/quiet: True
23+
# test-runner-run/run1/app-args: --discriminator 1234 --KVS kvs1 --trace-to json:${TRACE_APP}.json
24+
# test-runner-run/run1/script-args: --storage-path admin_storage.json --commissioning-method on-network --discriminator 1234 --passcode 20202021 --trace-to json:${TRACE_TEST_JSON}.json --trace-to perfetto:${TRACE_TEST_PERFETTO}.perfetto
25+
# === END CI TEST ARGUMENTS ===
26+
1827
import logging
1928
from random import choice
2029

src/python_testing/TC_BOOLCFG_4_1.py

+9
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,15 @@
1515
# limitations under the License.
1616
#
1717

18+
# === BEGIN CI TEST ARGUMENTS ===
19+
# test-runner-runs: run1
20+
# test-runner-run/run1/app: ${ALL_CLUSTERS_APP}
21+
# test-runner-run/run1/factoryreset: True
22+
# test-runner-run/run1/quiet: True
23+
# test-runner-run/run1/app-args: --discriminator 1234 --KVS kvs1 --trace-to json:${TRACE_APP}.json
24+
# test-runner-run/run1/script-args: --storage-path admin_storage.json --commissioning-method on-network --discriminator 1234 --passcode 20202021 --trace-to json:${TRACE_TEST_JSON}.json --trace-to perfetto:${TRACE_TEST_PERFETTO}.perfetto
25+
# === END CI TEST ARGUMENTS ===
26+
1827
import logging
1928

2029
import chip.clusters as Clusters

src/python_testing/TC_BOOLCFG_4_2.py

+9
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,15 @@
1515
# limitations under the License.
1616
#
1717

18+
# === BEGIN CI TEST ARGUMENTS ===
19+
# test-runner-runs: run1
20+
# test-runner-run/run1/app: ${ALL_CLUSTERS_APP}
21+
# test-runner-run/run1/factoryreset: True
22+
# test-runner-run/run1/quiet: True
23+
# test-runner-run/run1/app-args: --discriminator 1234 --KVS kvs1 --enable-key 000102030405060708090a0b0c0d0e0f --trace-to json:${TRACE_APP}.json
24+
# test-runner-run/run1/script-args: --storage-path admin_storage.json --commissioning-method on-network --discriminator 1234 --passcode 20202021 --hex-arg PIXIT.BOOLCFG.TEST_EVENT_TRIGGER_KEY:000102030405060708090a0b0c0d0e0f --trace-to json:${TRACE_TEST_JSON}.json --trace-to perfetto:${TRACE_TEST_PERFETTO}.perfetto
25+
# === END CI TEST ARGUMENTS ===
26+
1827
import logging
1928

2029
import chip.clusters as Clusters

0 commit comments

Comments
 (0)