-
Notifications
You must be signed in to change notification settings - Fork 2.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Make all public FabricInfo getters const #20088
Merged
tcarmelveilleux
merged 5 commits into
project-chip:master
from
tcarmelveilleux:fabric-table-constness
Jun 29, 2022
Merged
Make all public FabricInfo getters const #20088
tcarmelveilleux
merged 5 commits into
project-chip:master
from
tcarmelveilleux:fabric-table-constness
Jun 29, 2022
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- Only FabricTable APIs are allowed to mutate FabricInfo entries due to the requirements of fail-safe shadow data handling - Previous PRs made sure none of the mutators were used outside of FabricTable, but `FindFabricByIndex` remained a non-const getter due to how much code was using it. Fixes project-chip#19929 This PR: - Renames the mutable `FabricInfo *` getter as `GetMutableFabricByIndex()` and makes it private to FabricTable. - Adds `const` qualifier to every other usage of FindFabricByIndex in the SDK. Testing done: - All unit tests pass - Cert tests still pass - Still compiles
pullapprove
bot
requested review from
anush-apple,
arkq,
Byungjoo-Lee,
bzbarsky-apple,
carol-apple,
chrisdecenzo,
chshu,
chulspro,
Damian-Nordic,
dhrishi,
electrocucaracha,
emargolis,
erjiaqing,
franck-apple,
gjc13,
harimau-qirex,
harsha-rajendran,
hawk248,
isiu-apple,
jelderton,
jepenven-silabs,
jmartinez-silabs,
jtung-apple,
lazarkov and
LuDuda
June 29, 2022 02:18
pullapprove
bot
requested review from
mspang,
rgoliver,
saurabhst,
selissia,
tecimovic,
turon,
vijs,
vivien-apple,
wbschiller,
woody-apple,
xylophone21,
yufengwangca and
yunhanw-google
June 29, 2022 02:18
msandstedt
approved these changes
Jun 29, 2022
woody-apple
approved these changes
Jun 29, 2022
PR #20088: Size comparison from 5d24721 to 8a20fa4 Increases (4 builds for cc13x2_26x2, cyw30739)
Decreases (9 builds for cc13x2_26x2, k32w, nrfconnect, telink)
Full report (39 builds for cc13x2_26x2, cyw30739, efr32, k32w, linux, mbed, nrfconnect, p6, telink)
|
tehampson
approved these changes
Jun 29, 2022
PR #20088: Size comparison from 81c7f2a to f24edd7 Increases (2 builds for cc13x2_26x2)
Decreases (7 builds for cc13x2_26x2, nrfconnect, telink)
Full report (39 builds for cc13x2_26x2, cyw30739, efr32, k32w, linux, mbed, nrfconnect, p6, telink)
|
bzbarsky-apple
approved these changes
Jun 29, 2022
PR #20088: Size comparison from 81c7f2a to 002d7e5 Increases (4 builds for cc13x2_26x2, linux)
Decreases (13 builds for cc13x2_26x2, cyw30739, esp32, linux, nrfconnect, telink)
Full report (41 builds for cc13x2_26x2, cyw30739, efr32, esp32, k32w, linux, mbed, nrfconnect, p6, telink)
|
mrjerryjohns
approved these changes
Jun 29, 2022
woody-apple
pushed a commit
to woody-apple/connectedhomeip
that referenced
this pull request
Jun 29, 2022
* Make all public FabricInfo getters const - Only FabricTable APIs are allowed to mutate FabricInfo entries due to the requirements of fail-safe shadow data handling - Previous PRs made sure none of the mutators were used outside of FabricTable, but `FindFabricByIndex` remained a non-const getter due to how much code was using it. Fixes project-chip#19929 This PR: - Renames the mutable `FabricInfo *` getter as `GetMutableFabricByIndex()` and makes it private to FabricTable. - Adds `const` qualifier to every other usage of FindFabricByIndex in the SDK. Testing done: - All unit tests pass - Cert tests still pass - Still compiles * Fix CI on Shell * Fix one const in ESP32 ShellCommands.h
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Problem
due to the requirements of fail-safe shadow data handling
of FabricTable, but
FindFabricByIndex
remained a non-constgetter due to how much code was using it.
Fixes #19929
Change overview
FabricInfo *
getter asGetMutableFabricByIndex()
and makes it private to FabricTable.
const
qualifier to every other usage of FindFabricByIndex in the SDK.Testing