Skip to content

Commit 1ce3a1e

Browse files
authoredMar 14, 2023
Use ArraySize where needed in src/app. (project-chip#25657)
Fixes project-chip#8372
1 parent 53510fe commit 1ce3a1e

6 files changed

+14
-13
lines changed
 

‎src/app/tests/TestEventLogging.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@
3434
#include <lib/core/TLVDebug.h>
3535
#include <lib/core/TLVUtilities.h>
3636
#include <lib/support/CHIPCounter.h>
37+
#include <lib/support/CodeUtils.h>
3738
#include <lib/support/EnforceFormat.h>
3839
#include <lib/support/ErrorStr.h>
3940
#include <lib/support/UnitTestContext.h>
@@ -80,8 +81,7 @@ class TestContext : public chip::Test::AppContext
8081
{ &gCritEventBuffer[0], sizeof(gCritEventBuffer), chip::app::PriorityLevel::Critical },
8182
};
8283

83-
chip::app::EventManagement::CreateEventManagement(&ctx->GetExchangeManager(),
84-
sizeof(logStorageResources) / sizeof(logStorageResources[0]),
84+
chip::app::EventManagement::CreateEventManagement(&ctx->GetExchangeManager(), ArraySize(logStorageResources),
8585
gCircularEventBuffer, logStorageResources, &ctx->mEventCounter);
8686

8787
return SUCCESS;

‎src/app/tests/TestEventLoggingNoUTCTime.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
#include <lib/core/TLVDebug.h>
3434
#include <lib/core/TLVUtilities.h>
3535
#include <lib/support/CHIPCounter.h>
36+
#include <lib/support/CodeUtils.h>
3637
#include <lib/support/EnforceFormat.h>
3738
#include <lib/support/ErrorStr.h>
3839
#include <lib/support/UnitTestContext.h>
@@ -102,8 +103,7 @@ class TestContext : public chip::Test::AppContext
102103
{ &gCritEventBuffer[0], sizeof(gCritEventBuffer), chip::app::PriorityLevel::Critical },
103104
};
104105

105-
chip::app::EventManagement::CreateEventManagement(&ctx->GetExchangeManager(),
106-
sizeof(logStorageResources) / sizeof(logStorageResources[0]),
106+
chip::app::EventManagement::CreateEventManagement(&ctx->GetExchangeManager(), ArraySize(logStorageResources),
107107
gCircularEventBuffer, logStorageResources, &ctx->mEventCounter);
108108

109109
return SUCCESS;

‎src/app/tests/TestEventOverflow.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232
#include <lib/core/TLVDebug.h>
3333
#include <lib/core/TLVUtilities.h>
3434
#include <lib/support/CHIPCounter.h>
35+
#include <lib/support/CodeUtils.h>
3536
#include <lib/support/EnforceFormat.h>
3637
#include <lib/support/ErrorStr.h>
3738
#include <lib/support/UnitTestContext.h>
@@ -72,8 +73,7 @@ class TestContext : public chip::Test::AppContext
7273
{ &gCritEventBuffer[0], sizeof(gCritEventBuffer), chip::app::PriorityLevel::Critical },
7374
};
7475

75-
chip::app::EventManagement::CreateEventManagement(&ctx->GetExchangeManager(),
76-
sizeof(logStorageResources) / sizeof(logStorageResources[0]),
76+
chip::app::EventManagement::CreateEventManagement(&ctx->GetExchangeManager(), ArraySize(logStorageResources),
7777
gCircularEventBuffer, logStorageResources, &ctx->mEventCounter);
7878

7979
return SUCCESS;

‎src/app/tests/TestFabricScopedEventLogging.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@
3434
#include <lib/core/TLVDebug.h>
3535
#include <lib/core/TLVUtilities.h>
3636
#include <lib/support/CHIPCounter.h>
37+
#include <lib/support/CodeUtils.h>
3738
#include <lib/support/EnforceFormat.h>
3839
#include <lib/support/ErrorStr.h>
3940
#include <lib/support/UnitTestContext.h>
@@ -80,8 +81,7 @@ class TestContext : public chip::Test::AppContext
8081
{ &gCritEventBuffer[0], sizeof(gCritEventBuffer), chip::app::PriorityLevel::Critical },
8182
};
8283

83-
chip::app::EventManagement::CreateEventManagement(&ctx->GetExchangeManager(),
84-
sizeof(logStorageResources) / sizeof(logStorageResources[0]),
84+
chip::app::EventManagement::CreateEventManagement(&ctx->GetExchangeManager(), ArraySize(logStorageResources),
8585
gCircularEventBuffer, logStorageResources, &ctx->mEventCounter);
8686

8787
return SUCCESS;

‎src/app/tests/integration/chip_im_responder.cpp

+3-2
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
#include <app/tests/integration/common.h>
3434
#include <lib/core/CHIPCore.h>
3535
#include <lib/support/CHIPCounter.h>
36+
#include <lib/support/CodeUtils.h>
3637
#include <lib/support/ErrorStr.h>
3738
#include <messaging/ExchangeContext.h>
3839
#include <messaging/ExchangeMgr.h>
@@ -177,8 +178,8 @@ CHIP_ERROR InitializeEventLogging(chip::Messaging::ExchangeManager * apMgr)
177178
{ &gCritEventBuffer[0], sizeof(gCritEventBuffer), chip::app::PriorityLevel::Critical },
178179
};
179180

180-
chip::app::EventManagement::CreateEventManagement(apMgr, sizeof(logStorageResources) / sizeof(logStorageResources[0]),
181-
gCircularEventBuffer, logStorageResources, &gEventCounter);
181+
chip::app::EventManagement::CreateEventManagement(apMgr, ArraySize(logStorageResources), gCircularEventBuffer,
182+
logStorageResources, &gEventCounter);
182183
return CHIP_NO_ERROR;
183184
}
184185

‎src/app/util/attribute-storage.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
#include <app/ConcreteAttributePath.h>
2323
#include <app/util/af.h>
2424
#include <app/util/config.h>
25+
#include <lib/support/CodeUtils.h>
2526
#include <platform/CHIPDeviceLayer.h>
2627

2728
#if !defined(EMBER_SCRIPTED_TEST)
@@ -51,14 +52,13 @@
5152
#include <app-common/zap-generated/attribute-type.h>
5253

5354
#define DECLARE_DYNAMIC_ENDPOINT(endpointName, clusterList) \
54-
EmberAfEndpointType endpointName = { clusterList, sizeof(clusterList) / sizeof(EmberAfCluster), 0 }
55+
EmberAfEndpointType endpointName = { clusterList, ArraySize(clusterList), 0 }
5556

5657
#define DECLARE_DYNAMIC_CLUSTER_LIST_BEGIN(clusterListName) EmberAfCluster clusterListName[] = {
5758

5859
#define DECLARE_DYNAMIC_CLUSTER(clusterId, clusterAttrs, incomingCommands, outgoingCommands) \
5960
{ \
60-
clusterId, clusterAttrs, sizeof(clusterAttrs) / sizeof(EmberAfAttributeMetadata), 0, ZAP_CLUSTER_MASK(SERVER), NULL, \
61-
incomingCommands, outgoingCommands \
61+
clusterId, clusterAttrs, ArraySize(clusterAttrs), 0, ZAP_CLUSTER_MASK(SERVER), NULL, incomingCommands, outgoingCommands \
6262
}
6363

6464
#define DECLARE_DYNAMIC_CLUSTER_LIST_END }

0 commit comments

Comments
 (0)
Please sign in to comment.