Skip to content

Commit a16fbf1

Browse files
Merge branch 'master' into bugfix/fixing_code_bugs
2 parents 5ce6d67 + d1279a8 commit a16fbf1

File tree

10 files changed

+92
-32
lines changed

10 files changed

+92
-32
lines changed

.github/workflows/minimal-build.yaml

+5-5
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ name: Minimal Build (Linux / configure)
1717
on:
1818
push:
1919
branches-ignore:
20-
- 'dependabot/**'
20+
- "dependabot/**"
2121
pull_request:
2222
merge_group:
2323

@@ -42,11 +42,11 @@ jobs:
4242
- name: Checkout submodules # but don't bootstrap!
4343
uses: ./.github/actions/checkout-submodules
4444
with:
45-
platform: linux
45+
platform: linux
4646

4747
- name: Configure and build All Clusters App
4848
run: |
49-
CC=gcc CXX=g++ scripts/configure --project=examples/all-clusters-app/linux && ./ninja-build
49+
CC=gcc CXX=g++ scripts/configure --project=examples/all-clusters-app/linux --enable-recommended=no && ./ninja-build
5050
5151
minimal-network-manager:
5252
name: Linux / configure build of network-manager-app
@@ -64,8 +64,8 @@ jobs:
6464
- name: Checkout submodules # but don't bootstrap!
6565
uses: ./.github/actions/checkout-submodules
6666
with:
67-
platform: linux
67+
platform: linux
6868

6969
- name: Configure and build Network Manager App
7070
run: |
71-
CC=gcc CXX=g++ scripts/configure --project=examples/network-manager-app/linux && ./ninja-build
71+
CC=gcc CXX=g++ scripts/configure --project=examples/network-manager-app/linux --enable-recommended=no && ./ninja-build

config/recommended.gni

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# Copyright (c) 2024 Project CHIP Authors
2+
#
3+
# Licensed under the Apache License, Version 2.0 (the "License");
4+
# you may not use this file except in compliance with the License.
5+
# You may obtain a copy of the License at
6+
#
7+
# http://www.apache.org/licenses/LICENSE-2.0
8+
#
9+
# Unless required by applicable law or agreed to in writing, software
10+
# distributed under the License is distributed on an "AS IS" BASIS,
11+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
# See the License for the specific language governing permissions and
13+
# limitations under the License.
14+
15+
declare_args() {
16+
# Note for SDK developers: As additional features with their own settings
17+
# are added to the SDK, consider using the `matter_enable_recommended`
18+
# meta-setting instead of a default value of 'true', especially where a
19+
# different default is used based on platform (current_os): Often various
20+
# debugging features have previously been defaulted to on for Linux and/or
21+
# Mac but off for embedded platforms (on the assumption that Linux / Mac
22+
# don't have resource constraints?); build settings of that nature should
23+
# instead reference this meta-setting. E.g.
24+
# enable_flux_capacitor = matter_enable_recommended && current_os == "linux"
25+
26+
# Enable recommended settings by default. This is a meta-setting
27+
# that is enabled by default, and acts as a default for various
28+
# other settings. Setting it to false produces a more conservative /
29+
# minimal set of defaults.
30+
matter_enable_recommended = true
31+
}

examples/shell/shell_common/BUILD.gn

+3-4
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,12 @@
1313
# limitations under the License.
1414

1515
import("//build_overrides/chip.gni")
16-
import("//build_overrides/openthread.gni")
17-
16+
import("${chip_root}/config/recommended.gni")
1817
import("${chip_root}/src/platform/device.gni")
1918

2019
declare_args() {
21-
# Enable server command only on linux for now.
22-
chip_shell_cmd_server = current_os == "linux" || current_os == "mac"
20+
chip_shell_cmd_server = matter_enable_recommended &&
21+
(current_os == "linux" || current_os == "mac")
2322
}
2423

2524
config("shell_common_config") {

src/app/common_flags.gni

+4-1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15+
import("//build_overrides/chip.gni")
16+
import("${chip_root}/config/recommended.gni")
17+
1518
declare_args() {
1619
# Temporary flag for interaction model and echo protocols, set it to true to enable
1720
chip_app_use_echo = false
@@ -26,7 +29,7 @@ declare_args() {
2629
# - disabled: does not use data model interface at all
2730
# - check: runs BOTH datamodel and non-data-model (if possible) functionality and compares results
2831
# - enabled: runs only the data model interface (does not use the legacy code)
29-
if (current_os == "linux") {
32+
if (matter_enable_recommended && current_os == "linux") {
3033
chip_use_data_model_interface = "check"
3134
} else {
3235
chip_use_data_model_interface = "disabled"

src/lib/core/core.gni

+11-4
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15+
import("//build_overrides/chip.gni")
16+
import("${chip_root}/config/recommended.gni")
17+
1518
declare_args() {
1619
# Enable logging. Shorthand for chip_error_logging, etc.
1720
chip_logging = true
@@ -28,13 +31,16 @@ declare_args() {
2831
chip_progress_logging = chip_logging
2932

3033
# Enable detail logging.
31-
chip_detail_logging = chip_logging
34+
chip_detail_logging = matter_enable_recommended && chip_logging
3235

3336
# Enable automation logging.
34-
chip_automation_logging = chip_logging
37+
chip_automation_logging = matter_enable_recommended && chip_logging
38+
}
3539

40+
declare_args() {
3641
# Configure the maximum size for logged messages
37-
if (current_os == "linux" || current_os == "mac" || current_os == "ios") {
42+
if ((matter_enable_recommended || chip_detail_logging) &&
43+
(current_os == "linux" || current_os == "mac" || current_os == "ios")) {
3844
# Allow base64 encoding of 1 MTU (4 * (1280 / 3) + padding
3945
chip_log_message_max_size = 1708
4046
} else {
@@ -88,7 +94,8 @@ declare_args() {
8894
chip_config_memory_debug_dmalloc = false
8995

9096
# When enabled trace messages using tansport trace hook.
91-
chip_enable_transport_trace = current_os == "linux" || current_os == "mac"
97+
chip_enable_transport_trace = matter_enable_recommended &&
98+
(current_os == "linux" || current_os == "mac")
9299

93100
# When this is enabled trace messages will be sent to pw_trace.
94101
chip_enable_transport_pw_trace = false

src/python_testing/TC_BRBINFO_4_1.py

+7-2
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,7 @@ async def setup_class(self):
123123
self.set_of_dut_endpoints_before_adding_device = set(root_part_list)
124124

125125
super().setup_class()
126+
self._active_change_event_subscription = None
126127
self.app_process = None
127128
self.app_process_paused = False
128129
app = self.user_params.get("th_icd_server_app_path", None)
@@ -156,6 +157,10 @@ async def setup_class(self):
156157
params.commissioningParameters.setupManualCode, params.commissioningParameters.setupQRCode)
157158

158159
def teardown_class(self):
160+
if self._active_change_event_subscription is not None:
161+
self._active_change_event_subscription.Shutdown()
162+
self._active_change_event_subscription = None
163+
159164
# In case the th_icd_server_app_path does not exist, then we failed the test
160165
# and there is nothing to remove
161166
if self.app_process is not None:
@@ -239,8 +244,8 @@ async def test_TC_BRBINFO_4_1(self):
239244
self.q = queue.Queue()
240245
urgent = 1
241246
cb = SimpleEventCallback("ActiveChanged", event.cluster_id, event.event_id, self.q)
242-
subscription = await self.default_controller.ReadEvent(nodeid=self.dut_node_id, events=[(dynamic_endpoint_id, event, urgent)], reportInterval=[1, 3])
243-
subscription.SetEventUpdateCallback(callback=cb)
247+
self._active_change_event_subscription = await self.default_controller.ReadEvent(nodeid=self.dut_node_id, events=[(dynamic_endpoint_id, event, urgent)], reportInterval=[1, 3])
248+
self._active_change_event_subscription.SetEventUpdateCallback(callback=cb)
244249

245250
self.step("3")
246251
stay_active_duration_ms = 1000

src/python_testing/TC_MCORE_FS_1_2.py

+8-3
Original file line numberDiff line numberDiff line change
@@ -63,10 +63,15 @@ class TC_MCORE_FS_1_2(MatterBaseTest):
6363
@async_test_body
6464
async def setup_class(self):
6565
super().setup_class()
66+
self._partslist_subscription = None
6667
self._app_th_server_process = None
6768
self._th_server_kvs = None
6869

6970
def teardown_class(self):
71+
if self._partslist_subscription is not None:
72+
self._partslist_subscription.Shutdown()
73+
self._partslist_subscription = None
74+
7075
if self._app_th_server_process is not None:
7176
logging.warning("Stopping app with SIGTERM")
7277
self._app_th_server_process.send_signal(signal.SIGTERM.value)
@@ -142,7 +147,7 @@ async def test_TC_MCORE_FS_1_2(self):
142147
subscription_contents = [
143148
(root_endpoint, Clusters.Descriptor.Attributes.PartsList)
144149
]
145-
sub = await self.default_controller.ReadAttribute(
150+
self._partslist_subscription = await self.default_controller.ReadAttribute(
146151
nodeid=self.dut_node_id,
147152
attributes=subscription_contents,
148153
reportInterval=(min_report_interval_sec, max_report_interval_sec),
@@ -152,8 +157,8 @@ async def test_TC_MCORE_FS_1_2(self):
152157
parts_list_queue = queue.Queue()
153158
attribute_handler = AttributeChangeAccumulator(
154159
name=self.default_controller.name, expected_attribute=Clusters.Descriptor.Attributes.PartsList, output=parts_list_queue)
155-
sub.SetAttributeUpdateCallback(attribute_handler)
156-
cached_attributes = sub.GetAttributes()
160+
self._partslist_subscription.SetAttributeUpdateCallback(attribute_handler)
161+
cached_attributes = self._partslist_subscription.GetAttributes()
157162
step_1_dut_parts_list = cached_attributes[root_endpoint][Clusters.Descriptor][Clusters.Descriptor.Attributes.PartsList]
158163

159164
asserts.assert_true(type_matches(step_1_dut_parts_list, list), "PartsList is expected to be a list")

src/python_testing/TC_MCORE_FS_1_5.py

+15-5
Original file line numberDiff line numberDiff line change
@@ -61,10 +61,20 @@ class TC_MCORE_FS_1_5(MatterBaseTest):
6161
@async_test_body
6262
async def setup_class(self):
6363
super().setup_class()
64+
self._partslist_subscription = None
65+
self._cadmin_subscription = None
6466
self._app_th_server_process = None
6567
self._th_server_kvs = None
6668

6769
def teardown_class(self):
70+
if self._partslist_subscription is not None:
71+
self._partslist_subscription.Shutdown()
72+
self._partslist_subscription = None
73+
74+
if self._cadmin_subscription is not None:
75+
self._cadmin_subscription.Shutdown()
76+
self._cadmin_subscription = None
77+
6878
if self._app_th_server_process is not None:
6979
logging.warning("Stopping app with SIGTERM")
7080
self._app_th_server_process.send_signal(signal.SIGTERM.value)
@@ -142,7 +152,7 @@ async def test_TC_MCORE_FS_1_5(self):
142152
parts_list_subscription_contents = [
143153
(root_endpoint, Clusters.Descriptor.Attributes.PartsList)
144154
]
145-
parts_list_sub = await self.default_controller.ReadAttribute(
155+
self._partslist_subscription = await self.default_controller.ReadAttribute(
146156
nodeid=self.dut_node_id,
147157
attributes=parts_list_subscription_contents,
148158
reportInterval=(min_report_interval_sec, max_report_interval_sec),
@@ -152,8 +162,8 @@ async def test_TC_MCORE_FS_1_5(self):
152162
parts_list_queue = queue.Queue()
153163
parts_list_attribute_handler = AttributeChangeAccumulator(
154164
name=self.default_controller.name, expected_attribute=Clusters.Descriptor.Attributes.PartsList, output=parts_list_queue)
155-
parts_list_sub.SetAttributeUpdateCallback(parts_list_attribute_handler)
156-
parts_list_cached_attributes = parts_list_sub.GetAttributes()
165+
self._partslist_subscription.SetAttributeUpdateCallback(parts_list_attribute_handler)
166+
parts_list_cached_attributes = self._partslist_subscription.GetAttributes()
157167
step_1_dut_parts_list = parts_list_cached_attributes[root_endpoint][Clusters.Descriptor][Clusters.Descriptor.Attributes.PartsList]
158168

159169
asserts.assert_true(type_matches(step_1_dut_parts_list, list), "PartsList is expected to be a list")
@@ -219,7 +229,7 @@ async def test_TC_MCORE_FS_1_5(self):
219229
cadmin_subscription_contents = [
220230
(newly_added_endpoint, Clusters.AdministratorCommissioning)
221231
]
222-
cadmin_sub = await self.default_controller.ReadAttribute(
232+
self._cadmin_subscription = await self.default_controller.ReadAttribute(
223233
nodeid=self.dut_node_id,
224234
attributes=cadmin_subscription_contents,
225235
reportInterval=(min_report_interval_sec, max_report_interval_sec),
@@ -230,7 +240,7 @@ async def test_TC_MCORE_FS_1_5(self):
230240
# This AttributeChangeAccumulator is really just to let us know when new subscription came in
231241
cadmin_attribute_handler = AttributeChangeAccumulator(
232242
name=self.default_controller.name, expected_attribute=Clusters.AdministratorCommissioning.Attributes.WindowStatus, output=cadmin_queue)
233-
cadmin_sub.SetAttributeUpdateCallback(cadmin_attribute_handler)
243+
self._cadmin_subscription.SetAttributeUpdateCallback(cadmin_attribute_handler)
234244
time.sleep(1)
235245

236246
self.step(7)

src/python_testing/TC_SEAR_1_2.py

+5-5
Original file line numberDiff line numberDiff line change
@@ -180,12 +180,12 @@ async def read_and_validate_progress(self, step):
180180
progareaid_list.append(p.areaID)
181181
asserts.assert_true(p.areaID in self.areaid_list,
182182
f"Progress entry has invalid AreaID value ({p.areaID})")
183-
asserts.assert_true(p.status in (Clusters.ServiceArea.OperationalStatusEnum.kPending,
184-
Clusters.ServiceArea.OperationalStatusEnum.kOperating,
185-
Clusters.ServiceArea.OperationalStatusEnum.kSkipped,
186-
Clusters.ServiceArea.OperationalStatusEnum.kCompleted),
183+
asserts.assert_true(p.status in (Clusters.ServiceArea.Enums.OperationalStatusEnum.kPending,
184+
Clusters.ServiceArea.Enums.OperationalStatusEnum.kOperating,
185+
Clusters.ServiceArea.Enums.OperationalStatusEnum.kSkipped,
186+
Clusters.ServiceArea.Enums.OperationalStatusEnum.kCompleted),
187187
f"Progress entry has invalid Status value ({p.status})")
188-
if p.status not in (Clusters.ServiceArea.OperationalStatusEnum.kSkipped, Clusters.ServiceArea.OperationalStatusEnum.kCompleted):
188+
if p.status not in (Clusters.ServiceArea.Enums.OperationalStatusEnum.kSkipped, Clusters.ServiceArea.Enums.OperationalStatusEnum.kCompleted):
189189
asserts.assert_true(p.totalOperationalTime is NullValue,
190190
f"Progress entry should have a null TotalOperationalTime value (Status is {p.status})")
191191
# TODO how to check that InitialTimeEstimate is either null or uint32?

src/tracing/tracing_args.gni

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,8 @@
1111
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
14-
import("//build_overrides/build.gni")
1514
import("//build_overrides/chip.gni")
16-
import("${build_root}/config/compiler/compiler.gni")
15+
import("${chip_root}/config/recommended.gni")
1716
import("${chip_root}/src/platform/device.gni")
1817

1918
declare_args() {
@@ -24,7 +23,8 @@ declare_args() {
2423
# Additionally, if tracing is enabled, the main() function has to add
2524
# backends explicitly
2625
matter_enable_tracing_support =
27-
current_os == "android" || chip_device_platform == "darwin"
26+
matter_enable_recommended &&
27+
(current_os == "android" || chip_device_platform == "darwin")
2828

2929
# Defines the trace backend. Current matter tracing splits the logic
3030
# into two parts:

0 commit comments

Comments
 (0)