Skip to content

Commit 8c7c641

Browse files
Restrict the set of structs for which we generate legacy definitions. (project-chip#24309)
* Restrict the set of structs for which we generate legacy definitions. Most of the things in af-structs.h are not used, and fixing the names of some of them causes bad name collisions due to lack of namespacing. Just stop generating all of them except the ones we really use. * Address review comment
1 parent 13039ae commit 8c7c641

File tree

7 files changed

+11
-584
lines changed

7 files changed

+11
-584
lines changed

.github/workflows/zap_regeneration.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828

2929
runs-on: ubuntu-20.04
3030
container:
31-
image: connectedhomeip/chip-build:0.6.28
31+
image: connectedhomeip/chip-build:0.6.30
3232
defaults:
3333
run:
3434
shell: sh

.github/workflows/zap_templates.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929

3030
runs-on: ubuntu-20.04
3131
container:
32-
image: connectedhomeip/chip-build:0.6.28
32+
image: connectedhomeip/chip-build:0.6.30
3333
defaults:
3434
run:
3535
shell: sh

integrations/docker/images/chip-cert-bins/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ARG COMMITHASH=451e602649b8b37ba6c9aab8ba5e30747293f778
77
# ZAP Development install, so that it runs on both x64 and arm64
88
# Generally this should match with the ZAP version that is used for codegen within the
99
# specified SHA
10-
ARG ZAP_VERSION=v2023.01.05-nightly
10+
ARG ZAP_VERSION=v2023.01.06-nightly
1111

1212
# Ensure TARGETPLATFORM is set
1313
RUN case ${TARGETPLATFORM} in \
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# List of structs for which we output a legacy definition in af-structs.h
2+
# Ideally this list should become empty.
3+
- DlCredential
4+
- ApplicationBasicApplication

src/app/common/templates/templates.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@
99
"templates/chip/helper.js"
1010
],
1111
"resources": {
12-
"weak-enum-list": "weak-enum-list.yaml"
12+
"weak-enum-list": "weak-enum-list.yaml",
13+
"legacy-struct-list": "legacy-struct-list.yaml"
1314
},
1415
"override": "../../zap-templates/common/override.js",
1516
"partials": [

src/app/zap-templates/templates/app/af-structs.zapt

+2
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515

1616
{{#zcl_structs}}
1717

18+
{{#if (isLegacyStruct (asUnderlyingType label))}}
1819
{{#if itemCnt}}
1920
// Struct for {{label}}
2021
typedef struct _{{asType label}} {
@@ -27,4 +28,5 @@ typedef struct _{{asType label}} {
2728
// this will result in all the references to the data being as uint8_t*
2829
typedef uint8_t {{asUnderlyingType label}};
2930
{{/if}}
31+
{{/if}}
3032
{{/zcl_structs}}

0 commit comments

Comments
 (0)