-
Notifications
You must be signed in to change notification settings - Fork 149
port_driver_destroy_cb is never called and only appears in tests #2239
Description
port_driver_destroy_cb is a field of PortDriverDef in portnifloader.h that is set to the DESTROY_CB parameter by the REGISTER_PORT_DRIVER macro.
The field is used by the port_driver_destroy_all functions in src/libAtomVM/portnifloader.c and src/platforms/rp2/src/lib/sys.c
port_driver_driver_destroy_all is only called in src/platforms/esp32/test/main/test_main.c
It is never called in actual code.
I believe it is meant to do global cleanup of all the instances or ports of the driver.
Very few of the drivers in the esp32 tree use the destroy callback, but it is still used in a few drivers such as socket_driver.c
My driver can do cleanup with a "close" mailbox action, but I still think a driver-wide cleanup like you have in your design makes sense in case there is any other driver-wide shutdown needed or as a fallback to get the hardware to a sane state if mailbox messages aren't delivered.
test_main.c shows a pattern for how it could be inserted into src/platforms/esp32/main.c:app_main() at the end.
The RP2 tree also may need to call it in src/platforms/rp2/src/main.c:app_main()
nif_collection_destroy_all isn't called in the ESP32 tree either, but it is called in RP2.
Or maybe I'm missing something and these functions are called elsewhere.
It looks like a possibly smart API design sign, just a mistake in not calling it. I can write a PR to add those missing calls if needed, let me know. It might need a lot of testing since it is an unused code path that some drivers implement but haven't tested.