Skip to content
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

Add AsyncFacilitator to enable an async, event-driven, non-polling me… #29364

Open
wants to merge 5 commits into
base: master
Choose a base branch
from

Conversation

nivi-apple
Copy link
Contributor

@nivi-apple nivi-apple commented Sep 21, 2023

…chanism for facilitating BDX transfers

  • Currently BDX transfers can only use the TransferFacilitator which polls the BDXTransferSession with a poll interval that adds unneccessary delays and is not the ideal approach to handle BDX transfers

  • Add support for an AsyncTrasferFacilitator that uses a non-polling, event-driven mechanism based on BDX messages received over the exchange context and gets the next output event from the transfer session to drive the BDX transfer

  • Add support for an AsyncResponder that uses the AsyncTrasferFacilitator and enables a provider delegate to handle BDX transfers

  • Modify the darwin OTA provider code to use the AsyncResponder

  • Add support for handling multiple OTA requests to the ota provider by creating an MTROTAImageTransferHandler object that handles a BDX transfer session independently from a singleton unsolicited BDX message handler that is created by the MTROTAProviderDelegateBridge.

  • Support only one BDX transfer session and return busy to any query images coming from other nodes for now to match the test expectations (to be removed once tests for multiple OTA are in place)

…vent driven approach rather than polling

- Update the OTA provider darwin implementation to use the AsyncTransferFacilitator to transfer the OTA file using BDX
@nivi-apple nivi-apple force-pushed the add_support_for_async_bdx_transfer branch from 277f287 to db59df6 Compare September 24, 2024 16:32
@mergify mergify bot removed the conflict label Sep 24, 2024
Copy link

github-actions bot commented Sep 24, 2024

PR #29364: Size comparison from b6a1304 to db59df6

Full report (22 builds for cc13x4_26x4, cc32xx, nrfconnect, nxp, qpg, stm32, tizen)
platform target config section b6a1304 db59df6 change % change
cc13x4_26x4 lighting-app LP_EM_CC1354P10_6 FLASH 829356 829356 0 0.0
RAM 123300 123300 0 0.0
lock-ftd LP_EM_CC1354P10_6 FLASH 814392 814392 0 0.0
RAM 125172 125172 0 0.0
pump-app LP_EM_CC1354P10_6 FLASH 760396 760396 0 0.0
RAM 113664 113664 0 0.0
pump-controller-app LP_EM_CC1354P10_6 FLASH 744632 744632 0 0.0
RAM 113856 113856 0 0.0
cc32xx air-purifier CC3235SF_LAUNCHXL FLASH 616162 616162 0 0.0
RAM 205396 205396 0 0.0
lock CC3235SF_LAUNCHXL FLASH 656218 656218 0 0.0
RAM 205548 205548 0 0.0
nrfconnect all-clusters-app nrf52840dk_nrf52840 FLASH 913412 913412 0 0.0
RAM 142199 142199 0 0.0
nrf7002dk_nrf5340_cpuapp FLASH 885020 885020 0 0.0
RAM 140338 140338 0 0.0
all-clusters-minimal-app nrf52840dk_nrf52840 FLASH 846920 846920 0 0.0
RAM 141093 141093 0 0.0
nxp contact k32w0+release FLASH 581728 581728 0 0.0
RAM 70776 70776 0 0.0
k32w1+release FLASH 595640 595640 0 0.0
RAM 62992 62992 0 0.0
mcxw71+release FLASH 595392 595392 0 0.0
RAM 62992 62992 0 0.0
light k32w0+release FLASH 617780 617780 0 0.0
RAM 70248 70248 0 0.0
k32w1+release FLASH 681592 681592 0 0.0
RAM 48632 48632 0 0.0
mcxw71+release FLASH 681608 681608 0 0.0
RAM 48632 48632 0 0.0
lock k32w1+release FLASH 703912 703912 0 0.0
RAM 67132 67132 0 0.0
mcxw71+release FLASH 703936 703936 0 0.0
RAM 67132 67132 0 0.0
qpg lighting-app qpg6105+debug FLASH 659488 659488 0 0.0
RAM 105236 105236 0 0.0
lock-app qpg6105+debug FLASH 617444 617444 0 0.0
RAM 99704 99704 0 0.0
stm32 light STM32WB5MM-DK FLASH 481040 481040 0 0.0
RAM 144692 144692 0 0.0
tizen all-clusters-app arm unknown 4876 4876 0 0.0
FLASH 1722360 1722360 0 0.0
RAM 89076 89076 0 0.0
chip-tool-ubsan arm unknown 10316 10316 0 0.0
FLASH 17351778 17351778 0 0.0
RAM 7559896 7559896 0 0.0

return CHIP_NO_ERROR;
}
}
return CHIP_ERROR_INCORRECT_STATE;
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Returning CHIP_ERROR_INCORRECT_STATE. I looked at the spec and there is Unexpected Message status code that should be sent for any BDX messages but we have not yet established a session yet. the unexpected message does map to CHIP_ERROR_INCORRECT_STATE so thats what I used here.

@pullapprove pullapprove bot requested a review from jtov-sfy September 24, 2024 17:10
Copy link

github-actions bot commented Sep 24, 2024

PR #29364: Size comparison from b6a1304 to d344a19

Full report (88 builds for bl602, bl702, bl702l, cc13x4_26x4, cc32xx, cyw30739, efr32, esp32, linux, nrfconnect, nxp, psoc6, qpg, stm32, telink, tizen)
platform target config section b6a1304 d344a19 change % change
bl602 lighting-app bl602 FLASH 1280488 1280488 0 0.0
RAM 95848 95848 0 0.0
bl602+mfd FLASH 1294354 1294354 0 0.0
RAM 95992 95992 0 0.0
bl602+rpc FLASH 1320438 1320438 0 0.0
RAM 104272 104272 0 0.0
bl702 lighting-app bl702 FLASH 944328 944328 0 0.0
RAM 15145 15145 0 0.0
bl702+mfd FLASH 946728 946728 0 0.0
RAM 15305 15305 0 0.0
bl702+rpc FLASH 1039892 1039892 0 0.0
RAM 24173 24173 0 0.0
bl706-eth FLASH 646790 646790 0 0.0
RAM 25233 25233 0 0.0
bl706-wifi FLASH 894604 894604 0 0.0
RAM 14477 14477 0 0.0
bl702l lighting-app bl702l FLASH 960988 960988 0 0.0
RAM 16804 16804 0 0.0
bl702l+mfd FLASH 963610 963610 0 0.0
RAM 16964 16964 0 0.0
cc13x4_26x4 lighting-app LP_EM_CC1354P10_6 FLASH 829356 829356 0 0.0
RAM 123300 123300 0 0.0
lock-ftd LP_EM_CC1354P10_6 FLASH 814392 814392 0 0.0
RAM 125172 125172 0 0.0
pump-app LP_EM_CC1354P10_6 FLASH 760396 760396 0 0.0
RAM 113664 113664 0 0.0
pump-controller-app LP_EM_CC1354P10_6 FLASH 744632 744632 0 0.0
RAM 113856 113856 0 0.0
cc32xx air-purifier CC3235SF_LAUNCHXL FLASH 616162 616162 0 0.0
RAM 205396 205396 0 0.0
lock CC3235SF_LAUNCHXL FLASH 656218 656218 0 0.0
RAM 205548 205548 0 0.0
cyw30739 light CYW30739B2-P5-EVK-01 unknown 2040 2040 0 0.0
FLASH 677725 677725 0 0.0
RAM 78516 78516 0 0.0
CYW30739B2-P5-EVK-02 unknown 2040 2040 0 0.0
FLASH 697569 697569 0 0.0
RAM 81148 81148 0 0.0
CYW30739B2-P5-EVK-03 unknown 2040 2040 0 0.0
FLASH 697569 697569 0 0.0
RAM 81148 81148 0 0.0
CYW930739M2EVB-02 unknown 2040 2040 0 0.0
FLASH 654513 654513 0 0.0
RAM 73584 73584 0 0.0
light-switch CYW30739B2-P5-EVK-01 unknown 2040 2040 0 0.0
FLASH 613789 613789 0 0.0
RAM 71468 71468 0 0.0
CYW30739B2-P5-EVK-02 unknown 2040 2040 0 0.0
FLASH 633425 633425 0 0.0
RAM 74020 74020 0 0.0
CYW30739B2-P5-EVK-03 unknown 2040 2040 0 0.0
FLASH 633425 633425 0 0.0
RAM 74020 74020 0 0.0
lock CYW30739B2-P5-EVK-01 unknown 2040 2040 0 0.0
FLASH 633085 633085 0 0.0
RAM 74516 74516 0 0.0
CYW30739B2-P5-EVK-02 unknown 2040 2040 0 0.0
FLASH 652793 652793 0 0.0
RAM 77068 77068 0 0.0
CYW30739B2-P5-EVK-03 unknown 2040 2040 0 0.0
FLASH 652793 652793 0 0.0
RAM 77068 77068 0 0.0
thermostat CYW30739B2-P5-EVK-01 unknown 2040 2040 0 0.0
FLASH 608429 608429 0 0.0
RAM 68604 68604 0 0.0
CYW30739B2-P5-EVK-02 unknown 2040 2040 0 0.0
FLASH 628289 628289 0 0.0
RAM 71236 71236 0 0.0
CYW30739B2-P5-EVK-03 unknown 2040 2040 0 0.0
FLASH 628289 628289 0 0.0
RAM 71236 71236 0 0.0
efr32 lighting-app BRD4187C FLASH 933292 933292 0 0.0
RAM 135884 135884 0 0.0
lock-app BRD2605a FLASH 740840 740832 -8 -0.0
RAM 231220 231220 0 0.0
BRD4338a FLASH 741488 741480 -8 -0.0
RAM 231252 231252 0 0.0
window-app BRD4187C FLASH 1016376 1016368 -8 -0.0
RAM 127804 127804 0 0.0
esp32 all-clusters-app c3devkit DRAM 94080 94080 0 0.0
FLASH 1537598 1537598 0 0.0
IRAM 82538 82538 0 0.0
m5stack DRAM 115032 115032 0 0.0
FLASH 1548050 1548050 0 0.0
IRAM 117039 117039 0 0.0
linux air-purifier-app debug unknown 4688 4688 0 0.0
FLASH 2764623 2764623 0 0.0
RAM 129424 129424 0 0.0
all-clusters-app debug unknown 5528 5528 0 0.0
FLASH 6068112 6068112 0 0.0
RAM 507392 507392 0 0.0
all-clusters-minimal-app debug unknown 5424 5424 0 0.0
FLASH 5401442 5401442 0 0.0
RAM 241136 241136 0 0.0
bridge-app debug unknown 5408 5408 0 0.0
FLASH 4735064 4735064 0 0.0
RAM 218304 218304 0 0.0
chip-tool debug unknown 5960 5960 0 0.0
FLASH 12546958 12546958 0 0.0
RAM 555122 555122 0 0.0
chip-tool-ipv6only arm64 unknown 20456 20456 0 0.0
FLASH 11204704 11204704 0 0.0
RAM 605368 605368 0 0.0
fabric-admin debug unknown 5792 5792 0 0.0
FLASH 10908791 10908791 0 0.0
RAM 554266 554266 0 0.0
fabric-bridge-app debug unknown 4640 4640 0 0.0
FLASH 4561676 4561676 0 0.0
RAM 204888 204888 0 0.0
lighting-app debug+rpc+ui unknown 6056 6056 0 0.0
FLASH 5676033 5676033 0 0.0
RAM 228552 228552 0 0.0
lock-app debug unknown 5344 5344 0 0.0
FLASH 4785166 4785166 0 0.0
RAM 204376 204376 0 0.0
ota-provider-app debug unknown 4720 4720 0 0.0
FLASH 4417388 4417388 0 0.0
RAM 198112 198112 0 0.0
ota-requestor-app debug unknown 4656 4656 0 0.0
FLASH 4556168 4556168 0 0.0
RAM 202680 202680 0 0.0
shell debug unknown 4216 4216 0 0.0
FLASH 3095405 3095405 0 0.0
RAM 159184 159184 0 0.0
thermostat-no-ble arm64 unknown 9432 9432 0 0.0
FLASH 4306728 4306728 0 0.0
RAM 242808 242808 0 0.0
tv-app debug unknown 5624 5624 0 0.0
FLASH 6013397 6013397 0 0.0
RAM 580928 580928 0 0.0
tv-casting-app debug unknown 5208 5208 0 0.0
FLASH 10740221 10740221 0 0.0
RAM 643008 643008 0 0.0
nrfconnect all-clusters-app nrf52840dk_nrf52840 FLASH 913412 913412 0 0.0
RAM 142199 142199 0 0.0
nrf7002dk_nrf5340_cpuapp FLASH 885020 885020 0 0.0
RAM 140338 140338 0 0.0
all-clusters-minimal-app nrf52840dk_nrf52840 FLASH 846920 846920 0 0.0
RAM 141093 141093 0 0.0
nxp contact k32w0+release FLASH 581728 581728 0 0.0
RAM 70776 70776 0 0.0
k32w1+release FLASH 595640 595640 0 0.0
RAM 62992 62992 0 0.0
mcxw71+release FLASH 595392 595392 0 0.0
RAM 62992 62992 0 0.0
light k32w0+release FLASH 617780 617780 0 0.0
RAM 70248 70248 0 0.0
k32w1+release FLASH 681592 681592 0 0.0
RAM 48632 48632 0 0.0
mcxw71+release FLASH 681608 681608 0 0.0
RAM 48632 48632 0 0.0
lock k32w1+release FLASH 703912 703912 0 0.0
RAM 67132 67132 0 0.0
mcxw71+release FLASH 703936 703936 0 0.0
RAM 67132 67132 0 0.0
psoc6 all-clusters cy8ckit_062s2_43012 FLASH 1645348 1645348 0 0.0
RAM 210888 210888 0 0.0
all-clusters-minimal cy8ckit_062s2_43012 FLASH 1551332 1551332 0 0.0
RAM 207688 207688 0 0.0
light cy8ckit_062s2_43012 FLASH 1467148 1467148 0 0.0
RAM 200696 200696 0 0.0
lock cy8ckit_062s2_43012 FLASH 1463892 1463892 0 0.0
RAM 225048 225048 0 0.0
qpg lighting-app qpg6105+debug FLASH 659488 659488 0 0.0
RAM 105236 105236 0 0.0
lock-app qpg6105+debug FLASH 617444 617444 0 0.0
RAM 99704 99704 0 0.0
stm32 light STM32WB5MM-DK FLASH 481040 481040 0 0.0
RAM 144692 144692 0 0.0
telink air-quality-sensor-app tlsr9528a_retention FLASH 620046 620046 0 0.0
RAM 50988 50988 0 0.0
all-clusters-app tlsr9118bdk40d FLASH 687280 687280 0 0.0
RAM 148328 148328 0 0.0
all-clusters-minimal-app tlsr9528a FLASH 780214 780214 0 0.0
RAM 110780 110780 0 0.0
bridge-app tlsr9258a FLASH 681050 681050 0 0.0
RAM 91644 91644 0 0.0
contact-sensor-app tlsr9528a_retention FLASH 619808 619808 0 0.0
RAM 50940 50940 0 0.0
light-switch-app-ota-shell-factory-data tlsr9528a FLASH 707750 707750 0 0.0
RAM 74280 74280 0 0.0
lighting-app-ota-factory-data tlsr9118bdk40d FLASH 624772 624772 0 0.0
RAM 144316 144316 0 0.0
lighting-app-ota-rpc-factory-data-4mb tlsr9518adk80d FLASH 810424 810424 0 0.0
RAM 99448 99448 0 0.0
lock-app-dfu tlsr9528a FLASH 655654 655654 0 0.0
RAM 67000 67000 0 0.0
ota-requestor-app tlsr9258a FLASH 697026 697026 0 0.0
RAM 91236 91236 0 0.0
pump-app-usb tlsr9518adk80d FLASH 633432 633432 0 0.0
RAM 55816 55816 0 0.0
pump-controller-app tlsr9518adk80d FLASH 610622 610622 0 0.0
RAM 53060 53060 0 0.0
shell tlsr9518adk80d FLASH 467336 467336 0 0.0
RAM 68668 68668 0 0.0
smoke_co_alarm-app tlsr9528a_retention FLASH 626938 626938 0 0.0
RAM 52660 52660 0 0.0
temperature-measurement-app-mars-ota tlsr9518adk80d FLASH 652758 652758 0 0.0
RAM 56608 56608 0 0.0
thermostat tlsr9518adk80d FLASH 637352 637352 0 0.0
RAM 53452 53452 0 0.0
window-covering tlsr9118bdk40d FLASH 523538 523538 0 0.0
RAM 97284 97284 0 0.0
tizen all-clusters-app arm unknown 4876 4876 0 0.0
FLASH 1722360 1722360 0 0.0
RAM 89076 89076 0 0.0
chip-tool-ubsan arm unknown 10316 10316 0 0.0
FLASH 17351778 17351778 0 0.0
RAM 7559896 7559896 0 0.0

src/protocols/bdx/AsyncTransferFacilitator.h Outdated Show resolved Hide resolved
src/protocols/bdx/AsyncTransferFacilitator.h Outdated Show resolved Hide resolved
src/protocols/bdx/AsyncTransferFacilitator.h Outdated Show resolved Hide resolved
src/protocols/bdx/AsyncTransferFacilitator.h Outdated Show resolved Hide resolved
Comment on lines +35 to +36
* subclass must call the NotifyEventHandled to notify the AsyncTransferFacilitator that the event has been handled and returns an
* error code for error cases or success.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This isn't very clear to me. If the subclass returns error, does it still need to call NotifyEventHandled? What does "returns error" mean? HandleTransferSessionOutput returns void.

In general, it seems like all the documentation related to NotifyEventHandled should live on the interface that defines that method, which is not this one?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I will try to clarify a bit more and move the details to the interface

System::Clock::Timeout timeout);

/**
* This is called by the subclass implementing HandleTransferSessionOutput to notify the AsyncTransferFacilitator
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No, it's notifying the AsyncResponder.

src/protocols/bdx/AsyncTransferFacilitator.h Outdated Show resolved Hide resolved
/**
* This is called by the subclass implementing HandleTransferSessionOutput to notify the AsyncTransferFacilitator
* that it has handled the OutputEvent specified in event and returns an error code (if any) or success in the error paramter.
* Once this is called the AsyncTransferFacilitator either aborts the transfer if an error has ocurred or drives the
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Again, this is the AsyncResponder, not the AsyncTransferFacilitator.

Does this need to be documented in the API? Does the API consumer (subclass) need to know what happens when it calls this function?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

no. i will remove additional details

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

will fix the AsyncTransferFacilitator-> AsyncResponder

src/protocols/bdx/AsyncTransferFacilitator.h Outdated Show resolved Hide resolved
* @param[in] event The OutputEvent that was handled by the subclass.
* @param[in] error The error code that occured when handling the event if an error occurs. Otherwise has CHIP_NO_ERROR.
*/
void NotifyEventHandled(TransferSession::OutputEvent & event, CHIP_ERROR error);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Does the callee here modify event? If not, shouldn't this be a const ref?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
Status: In Progress
Development

Successfully merging this pull request may close these issues.

4 participants