Skip to content

Commit 38cc24b

Browse files
authored
Build time optimization (project-chip#37433)
* Move some classes out of af-types.h Move AttributesChangedListener and MarkAttributeDirty out of af-types.h Signed-off-by: Adrian Gielniewski <adrian.gielniewski@nordicsemi.no> * Remove dependency to cluster-objects.h Signed-off-by: Adrian Gielniewski <adrian.gielniewski@nordicsemi.no> * Remove cluster-objects from chip_data_model.cmake Signed-off-by: Adrian Gielniewski <adrian.gielniewski@nordicsemi.no> * [Chef] Fix includes Fix missing includes after changes in Accessors.h Signed-off-by: Adrian Gielniewski <adrian.gielniewski@nordicsemi.no> * [Infineon] Fix includes Fix missing includes after changes in Accessors.h Signed-off-by: Adrian Gielniewski <adrian.gielniewski@nordicsemi.no> * [Silabs] Fix includes Fix missing includes after changes in Accessors.h Signed-off-by: Adrian Gielniewski <adrian.gielniewski@nordicsemi.no> --------- Signed-off-by: Adrian Gielniewski <adrian.gielniewski@nordicsemi.no>
1 parent 86e0b85 commit 38cc24b

File tree

17 files changed

+92
-45
lines changed

17 files changed

+92
-45
lines changed

examples/chef/common/chef-dishwasher-mode-delegate-impl.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
*/
1818
#include <app-common/zap-generated/attributes/Accessors.h>
1919
#include <app/util/config.h>
20+
#include <chef-dishwasher-mode-delegate-impl.h>
2021

2122
using namespace chip;
2223
using namespace chip::app;

examples/chef/common/chef-rvc-mode-delegate.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
*/
1818
#include <app-common/zap-generated/attributes/Accessors.h>
1919
#include <app/util/config.h>
20+
#include <chef-rvc-mode-delegate.h>
2021

2122
using namespace chip;
2223
using namespace chip::app;

examples/light-switch-app/infineon/cyw30739/src/ZclCallbacks.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
*/
1818

1919
#include <app-common/zap-generated/attributes/Accessors.h>
20+
#include <app-common/zap-generated/cluster-objects.h>
2021
#include <platform/CHIPDeviceLayer.h>
2122
#include <platform/DeviceInstanceInfoProvider.h>
2223

examples/lighting-app/infineon/cyw30739/src/ZclCallbacks.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919

2020
#include "LightingManager.h"
2121
#include <app-common/zap-generated/attributes/Accessors.h>
22+
#include <app-common/zap-generated/cluster-objects.h>
2223
#include <platform/CHIPDeviceLayer.h>
2324
#include <platform/DeviceInstanceInfoProvider.h>
2425

examples/lock-app/infineon/cyw30739/src/ZclCallbacks.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919

2020
#include "LockManager.h"
2121
#include <app-common/zap-generated/attributes/Accessors.h>
22+
#include <app-common/zap-generated/cluster-objects.h>
2223
#include <app/data-model/Nullable.h>
2324
#include <lib/core/DataModelTypes.h>
2425
#include <lib/support/logging/CHIPLogging.h>

examples/thermostat/infineon/cyw30739/src/TemperatureManager.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
#include "AppTask.h"
2525
#include "hdc2010.h"
2626
#include "platform/CHIPDeviceLayer.h"
27+
#include <app-common/zap-generated/cluster-objects.h>
2728

2829
/**********************************************************
2930
* Defines and Constants

examples/thermostat/silabs/src/TemperatureManager.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
#include "AppConfig.h"
2626
#include "AppEvent.h"
2727
#include "AppTask.h"
28+
#include <app-common/zap-generated/cluster-objects.h>
2829

2930
/**********************************************************
3031
* Defines and Constants

src/app/chip_data_model.cmake

-8
Original file line numberDiff line numberDiff line change
@@ -129,14 +129,6 @@ function(chip_configure_data_model APP_TARGET)
129129
set(APP_GEN_FILES)
130130
endif()
131131

132-
# This is:
133-
# //src/app/common:cluster-objects
134-
#
135-
# TODO: ideally we would avoid duplication and would link gn-built items
136-
target_sources(${APP_TARGET} ${SCOPE}
137-
${CHIP_APP_BASE_DIR}/../../zzz_generated/app-common/app-common/zap-generated/cluster-objects.cpp
138-
)
139-
140132
chip_zapgen(${APP_TARGET}-zapgen
141133
INPUT "${ARG_ZAP_FILE}"
142134
GENERATOR "app-templates"
+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
/**
2+
*
3+
* Copyright (c) 2025 Project CHIP Authors
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+
#pragma once
18+
19+
#include <app/AttributePathParams.h>
20+
21+
namespace chip {
22+
namespace app {
23+
24+
/// Notification object of a specific path being changed
25+
class AttributesChangedListener
26+
{
27+
public:
28+
virtual ~AttributesChangedListener() = default;
29+
30+
/// Called when the set of attributes identified by AttributePathParams (which may contain wildcards) is to be considered dirty.
31+
virtual void MarkDirty(const AttributePathParams & path) = 0;
32+
};
33+
34+
} // namespace app
35+
} // namespace chip

src/app/util/BUILD.gn

+5-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,11 @@ source_set("types") {
5353

5454
# This source set also depends on data-model
5555
source_set("af-types") {
56-
sources = [ "af-types.h" ]
56+
sources = [
57+
"AttributesChangedListener.h",
58+
"MarkAttributeDirty.h",
59+
"af-types.h",
60+
]
5761
deps = [
5862
":types",
5963
"${chip_root}/src/app:paths",

src/app/util/MarkAttributeDirty.h

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
/**
2+
*
3+
* Copyright (c) 2025 Project CHIP Authors
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+
#pragma once
18+
19+
namespace chip {
20+
namespace app {
21+
22+
enum class MarkAttributeDirty
23+
{
24+
kIfChanged,
25+
kNo,
26+
// kYes might need to be used if the attribute value was previously changed
27+
// without reporting, and now is being set in a situation where we know
28+
// reporting needs to be triggered (e.g. because QuieterReportingAttribute
29+
// indicated that).
30+
kYes,
31+
};
32+
}
33+
} // namespace chip

src/app/util/af-types.h

+2-27
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@
2626
#include <stdbool.h> // For bool
2727
#include <stdint.h> // For various uint*_t types
2828

29+
#include <app/util/AttributesChangedListener.h>
30+
#include <app/util/MarkAttributeDirty.h>
2931
#include <app/util/basic-types.h>
3032
#include <app/util/types_stub.h> // For various types.
3133

@@ -280,30 +282,3 @@ typedef chip::Protocols::InteractionModel::Status (*EmberAfClusterPreAttributeCh
280282
#define MAX_INT16U_VALUE (0xFFFF)
281283

282284
/** @} END addtogroup */
283-
284-
namespace chip {
285-
namespace app {
286-
287-
enum class MarkAttributeDirty
288-
{
289-
kIfChanged,
290-
kNo,
291-
// kYes might need to be used if the attribute value was previously changed
292-
// without reporting, and now is being set in a situation where we know
293-
// reporting needs to be triggered (e.g. because QuieterReportingAttribute
294-
// indicated that).
295-
kYes,
296-
};
297-
298-
/// Notification object of a specific path being changed
299-
class AttributesChangedListener
300-
{
301-
public:
302-
virtual ~AttributesChangedListener() = default;
303-
304-
/// Called when the set of attributes identified by AttributePathParams (which may contain wildcards) is to be considered dirty.
305-
virtual void MarkDirty(const AttributePathParams & path) = 0;
306-
};
307-
308-
} // namespace app
309-
} // namespace chip

src/app/util/attribute-table.h

+2-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@
1818
#pragma once
1919

2020
#include <app/ConcreteAttributePath.h>
21-
#include <app/util/af-types.h>
21+
#include <app/util/AttributesChangedListener.h>
22+
#include <app/util/MarkAttributeDirty.h>
2223
#include <app/util/attribute-metadata.h>
2324
#include <lib/core/DataModelTypes.h>
2425
#include <protocols/interaction_model/StatusCode.h>

src/app/zap-templates/templates/app/attributes/Accessors-src.zapt

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
#include <app-common/zap-generated/ids/Clusters.h>
1313
#include <app/util/attribute-storage-null-handling.h>
1414
#include <app/util/attribute-table.h>
15+
#include <app/util/ember-strings.h>
1516
#include <app/util/odd-sized-integers.h>
1617
#include <lib/core/CHIPEncoding.h>
1718
#include <lib/support/logging/CHIPLogging.h>

src/app/zap-templates/templates/app/attributes/Accessors.zapt

+3-4
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,10 @@
77

88
#pragma once
99

10+
#include <app-common/zap-generated/cluster-enums.h>
1011
#include <app/data-model/Nullable.h>
11-
#include <app/util/af-types.h>
12-
#include <app/util/ember-strings.h>
13-
#include <app-common/zap-generated/cluster-objects.h>
14-
#include <lib/support/Span.h>
12+
#include <app/util/basic-types.h>
13+
#include <app/util/MarkAttributeDirty.h>
1514
#include <protocols/interaction_model/StatusCode.h>
1615

1716
namespace chip {

zzz_generated/app-common/app-common/zap-generated/attributes/Accessors.cpp

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

zzz_generated/app-common/app-common/zap-generated/attributes/Accessors.h

+3-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)