Skip to content

Commit 19cb1a5

Browse files
authored
SimpleSubscriptionResumptionStorage should be made conditionally compiled in GN (project-chip#24653)
* SimpleSubscriptionResumptionStorage should be made conditionally compiled in GN * Restyled fix
1 parent e22ba48 commit 19cb1a5

10 files changed

+21
-46
lines changed

src/app/BUILD.gn

+9-2
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414

1515
import("//build_overrides/chip.gni")
1616
import("//build_overrides/nlio.gni")
17+
import("${chip_root}/src/platform/device.gni")
1718

1819
import("${chip_root}/build/chip/buildconfig_header.gni")
1920
import("common_flags.gni")
@@ -50,6 +51,7 @@ buildconfig_header("app_buildconfig") {
5051
"CHIP_CONFIG_IM_FORCE_FABRIC_QUOTA_CHECK=${chip_im_force_fabric_quota_check}",
5152
"CHIP_CONFIG_ENABLE_SESSION_RESUMPTION=${chip_enable_session_resumption}",
5253
"CHIP_CONFIG_ACCESS_CONTROL_POLICY_LOGGING_VERBOSITY=${chip_access_control_policy_logging_verbosity}",
54+
"CHIP_CONFIG_PERSIST_SUBSCRIPTIONS=${chip_persist_subscriptions}",
5355
]
5456
}
5557

@@ -173,8 +175,6 @@ static_library("app") {
173175
"ReadHandler.cpp",
174176
"RequiredPrivilege.cpp",
175177
"RequiredPrivilege.h",
176-
"SimpleSubscriptionResumptionStorage.cpp",
177-
"SimpleSubscriptionResumptionStorage.h",
178178
"StatusResponse.cpp",
179179
"StatusResponse.h",
180180
"SubscriptionResumptionStorage.h",
@@ -189,6 +189,13 @@ static_library("app") {
189189
"reporting/reporting.h",
190190
]
191191

192+
if (chip_persist_subscriptions) {
193+
sources += [
194+
"SimpleSubscriptionResumptionStorage.cpp",
195+
"SimpleSubscriptionResumptionStorage.h",
196+
]
197+
}
198+
192199
public_deps = [
193200
":app_config",
194201
"${chip_root}/src/access",

src/app/SimpleSubscriptionResumptionStorage.cpp

-5
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,6 @@
2323

2424
#include <app/SimpleSubscriptionResumptionStorage.h>
2525

26-
// TODO: move the conditional compilation into BUILD.gn config options
27-
#if CHIP_CONFIG_PERSIST_SUBSCRIPTIONS
28-
2926
#include <lib/support/Base64.h>
3027
#include <lib/support/CodeUtils.h>
3128
#include <lib/support/SafeInt.h>
@@ -469,5 +466,3 @@ CHIP_ERROR SimpleSubscriptionResumptionStorage::DeleteAll(FabricIndex fabricInde
469466

470467
} // namespace app
471468
} // namespace chip
472-
473-
#endif // CHIP_CONFIG_PERSIST_SUBSCRIPTIONS

src/app/SimpleSubscriptionResumptionStorage.h

-5
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,6 @@
2525

2626
#include <app/SubscriptionResumptionStorage.h>
2727

28-
// TODO: move the conditional compilation into BUILD.gn config options
29-
#if CHIP_CONFIG_PERSIST_SUBSCRIPTIONS
30-
3128
#include <lib/core/TLV.h>
3229
#include <lib/support/DefaultStorageKeyAllocator.h>
3330
#include <lib/support/Pool.h>
@@ -141,5 +138,3 @@ class SimpleSubscriptionResumptionStorage : public SubscriptionResumptionStorage
141138
};
142139
} // namespace app
143140
} // namespace chip
144-
145-
#endif // CHIP_CONFIG_PERSIST_SUBSCRIPTIONS

src/app/tests/BUILD.gn

+4-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,6 @@ chip_test_suite("tests") {
105105
"TestPendingNotificationMap.cpp",
106106
"TestReadInteraction.cpp",
107107
"TestReportingEngine.cpp",
108-
"TestSimpleSubscriptionResumptionStorage.cpp",
109108
"TestStatusIB.cpp",
110109
"TestStatusResponseMessage.cpp",
111110
"TestTimedHandler.cpp",
@@ -147,4 +146,8 @@ chip_test_suite("tests") {
147146
test_sources += [ "TestCommissionManager.cpp" ]
148147
public_deps += [ "${chip_root}/src/app/server" ]
149148
}
149+
150+
if (chip_persist_subscriptions) {
151+
test_sources += [ "TestSimpleSubscriptionResumptionStorage.cpp" ]
152+
}
150153
}

src/app/tests/TestSimpleSubscriptionResumptionStorage.cpp

-14
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@
1818
#include <lib/support/UnitTestRegistration.h>
1919
#include <nlunit-test.h>
2020

21-
#if CHIP_CONFIG_PERSIST_SUBSCRIPTIONS
22-
2321
#include <app/SimpleSubscriptionResumptionStorage.h>
2422
#include <lib/support/TestPersistentStorageDelegate.h>
2523

@@ -468,15 +466,3 @@ int TestSimpleSubscriptionResumptionStorage()
468466
}
469467

470468
CHIP_REGISTER_TEST_SUITE(TestSimpleSubscriptionResumptionStorage)
471-
472-
#else // CHIP_CONFIG_PERSIST_SUBSCRIPTIONS
473-
474-
/**
475-
* Main
476-
*/
477-
int TestSimpleSubscriptionResumptionStorage()
478-
{
479-
return 0;
480-
}
481-
482-
#endif // CHIP_CONFIG_PERSIST_SUBSCRIPTIONS

src/lib/core/CHIPConfig.h

-11
Original file line numberDiff line numberDiff line change
@@ -1358,17 +1358,6 @@ extern const char CHIP_NON_PRODUCTION_MARKER[];
13581358
* @}
13591359
*/
13601360

1361-
/**
1362-
* @def CHIP_CONFIG_PERSIST_SUBSCRIPTIONS
1363-
*
1364-
* @brief
1365-
* Enable persistence and resumption of subscriptions on servers.
1366-
*
1367-
*/
1368-
#ifndef CHIP_CONFIG_PERSIST_SUBSCRIPTIONS
1369-
#define CHIP_CONFIG_PERSIST_SUBSCRIPTIONS 0
1370-
#endif // CHIP_CONFIG_PERSIST_SUBSCRIPTIONS
1371-
13721361
/**
13731362
* @def CHIP_CONFIG_MAX_SUBSCRIPTION_RESUMPTION_STORAGE_CONCURRENT_ITERATORS
13741363
*

src/platform/Darwin/CHIPPlatformConfig.h

-3
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,3 @@
6262
#ifndef CHIP_CONFIG_KVS_PATH
6363
#define CHIP_CONFIG_KVS_PATH "/tmp/chip_kvs"
6464
#endif // CHIP_CONFIG_KVS_PATH
65-
66-
// Enable subscription persistence and resumption for CI
67-
#define CHIP_CONFIG_PERSIST_SUBSCRIPTIONS 1

src/platform/Linux/CHIPPlatformConfig.h

-3
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,6 @@ using CHIP_CONFIG_PERSISTED_STORAGE_KEY_TYPE = const char *;
6464
#define CHIP_CONFIG_BDX_MAX_NUM_TRANSFERS 1
6565
#endif // CHIP_CONFIG_BDX_MAX_NUM_TRANSFERS
6666

67-
// Enable subscription persistence and resumption for CI
68-
#define CHIP_CONFIG_PERSIST_SUBSCRIPTIONS 1
69-
7067
// ==================== Security Configuration Overrides ====================
7168

7269
#ifndef CHIP_CONFIG_KVS_PATH

src/platform/cc13x2_26x2/CHIPPlatformConfig.h

-2
Original file line numberDiff line numberDiff line change
@@ -68,5 +68,3 @@
6868
#ifndef CHIP_CONFIG_MAX_FABRICS
6969
#define CHIP_CONFIG_MAX_FABRICS 5
7070
#endif
71-
72-
#define CHIP_CONFIG_PERSIST_SUBSCRIPTIONS 0

src/platform/device.gni

+8
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,14 @@ declare_args() {
9797
} else {
9898
chip_mdns = "none"
9999
}
100+
101+
# Enable Subscription persistence / resumption for CI and supported platforms
102+
if (chip_device_platform == "darwin" || chip_device_platform == "linux" ||
103+
chip_device_platform == "fake") {
104+
chip_persist_subscriptions = true
105+
} else {
106+
chip_persist_subscriptions = false
107+
}
100108
}
101109

102110
if (chip_device_platform == "bl702" && chip_enable_openthread) {

0 commit comments

Comments
 (0)