-
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
Improve IM Message encoding #19016
Merged
yunhanw-google
merged 3 commits into
project-chip:master
from
yunhanw-google:feature/improve_im_encoding
Jun 2, 2022
Merged
Improve IM Message encoding #19016
yunhanw-google
merged 3 commits into
project-chip:master
from
yunhanw-google:feature/improve_im_encoding
Jun 2, 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
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,
hawk248,
harsha-rajendran,
isiu-apple,
jelderton,
jepenven-silabs,
jmartinez-silabs,
jtung-apple,
kghost,
lazarkov,
LuDuda,
mlepage-google,
msandstedt,
mspang and
rgoliver
May 31, 2022 23:31
yunhanw-google
force-pushed
the
feature/improve_im_encoding
branch
from
May 31, 2022 23:34
3303e8a
to
3336dc2
Compare
PR #19016: Size comparison from eb3ac83 to 3336dc2 Increases (22 builds for cc13x2_26x2, cyw30739, efr32, linux, nrfconnect, telink)
Decreases (24 builds for cc13x2_26x2, efr32, esp32, linux, p6)
Full report (41 builds for cc13x2_26x2, cyw30739, efr32, esp32, k32w, linux, mbed, nrfconnect, p6, telink)
|
yufengwangca
approved these changes
Jun 1, 2022
yunhanw-google
force-pushed
the
feature/improve_im_encoding
branch
from
June 1, 2022 05:29
3336dc2
to
8ba39ae
Compare
yunhanw-google
force-pushed
the
feature/improve_im_encoding
branch
from
June 1, 2022 05:31
8ba39ae
to
5bb983d
Compare
PR #19016: Size comparison from 5148b5d to 5bb983d Increases (24 builds for cc13x2_26x2, cyw30739, k32w, linux, nrfconnect, telink)
Decreases (20 builds for cc13x2_26x2, esp32, linux, p6)
Full report (36 builds for cc13x2_26x2, cyw30739, esp32, k32w, linux, mbed, nrfconnect, p6, telink)
|
mrjerryjohns
approved these changes
Jun 1, 2022
yunhanw-google
force-pushed
the
feature/improve_im_encoding
branch
from
June 1, 2022 22:34
5bb983d
to
4d230f8
Compare
yunhanw-google
force-pushed
the
feature/improve_im_encoding
branch
2 times, most recently
from
June 1, 2022 22:51
2e0c502
to
3889f17
Compare
PR #19016: Size comparison from 131b13c to 3889f17 Increases (18 builds for cc13x2_26x2, cyw30739, linux, mbed, nrfconnect, telink)
Decreases (18 builds for cc13x2_26x2, linux, p6)
Full report (34 builds for cc13x2_26x2, cyw30739, k32w, linux, mbed, nrfconnect, p6, telink)
|
yunhanw-google
force-pushed
the
feature/improve_im_encoding
branch
from
June 1, 2022 23:45
3889f17
to
4d379ef
Compare
run codegen
yunhanw-google
force-pushed
the
feature/improve_im_encoding
branch
from
June 2, 2022 00:10
4d379ef
to
971bad7
Compare
PR #19016: Size comparison from 131b13c to 971bad7 Increases (18 builds for cc13x2_26x2, cyw30739, linux, mbed, nrfconnect, telink)
Decreases (20 builds for cc13x2_26x2, esp32, linux, p6)
Full report (36 builds for cc13x2_26x2, cyw30739, esp32, k32w, linux, mbed, nrfconnect, p6, telink)
|
yunhanw-google
force-pushed
the
feature/improve_im_encoding
branch
from
June 2, 2022 03:53
e62c005
to
f89f79f
Compare
bzbarsky-apple
approved these changes
Jun 2, 2022
PR #19016: Size comparison from dce3d8a to f89f79f Increases (13 builds for cc13x2_26x2, cyw30739, linux, mbed, nrfconnect, telink)
Decreases (13 builds for cc13x2_26x2, efr32, esp32, linux, p6)
Full report (30 builds for cc13x2_26x2, cyw30739, efr32, esp32, k32w, linux, mbed, nrfconnect, p6, telink)
|
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
-- Remove redundant return.
-- Add error code, CHIP_ERROR_IM_MALFORMED_EVENT_FILTER_IB
CHIP_ERROR_IM_MALFORMED_EVENT_STATUS_IB
CHIP_ERROR_IM_MALFORMED_ATTRIBUTE_REPORT_IB
CHIP_ERROR_IM_MALFORMED_ATTRIBUTE_STATUS_IB
CHIP_ERROR_IM_MALFORMED_COMMAND_DATA_IB
-- Remove unused CHIP_ERROR_IM_MALFORMED_WRITE_RESPONSE_MESSAGE
-- Use enum class for fields in CommandPathIB
-- Loose the schema check for missing flag in CommandPathIB, StatusResponseMessage, similar to other IB and messages for forward compatibility purpose(#18440)
-- Replace one exit style with ReturnErrorOnFailure
-- Remove IsProxy flag from subscription request message per latest spec change.
-- Rename kData to kFields in CommandDataIB per latest spec change
Change overview
See above
Testing
Existing tests cover