[RobotHardware] call close_iob() on SIGINT #1328
Open
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.
hrpEC以外のecを使用しているときに、SIGINTでrtcdが終了するときにclose_iob()を呼んでから終了するようにするための変更です。
close_iob()の中で指令トルクを0にするといった終了処理を行っているのですが、rtcdが終了するときにclose_iob()を呼んでから終了してほしいです。
OpenRTM_aistは、SIGKILLやSIGTERMで終了する場合には強制終了してしまいますが、SIGINTで終了する場合には、各RTCのonFinalize()を呼んだり、各ExecutionContextのisRunning() (or m_running)をfalseにセットしたりといった終了処理を行ってから終了します。
https://github.com/OpenRTM/OpenRTM-aist/blob/ce8fe01a103dfbbcc367d30377ec1f00892d3283/src/lib/rtm/Manager.cpp#L100
今、hrpECは終了処理中にclose_iobを呼ぶのですが、RobotHardware.rtcは終了処理中にclose_iobを呼びません。(robotクラスのデストラクタでclose_iobが呼ばれるのですが、signalで終了する場合にはデストラクタは呼ばれないため)
hrpsys-base/ec/hrpEC/hrpEC-common.cpp
Line 173 in 7926d0f
hrpsys-base/rtc/RobotHardware/robot.cpp
Line 30 in 7926d0f
そのため、hrpEC以外のecを使用しているときに、SIGINTでrtcdが終了するときにclose_iob()を呼んでから終了することができませんでした。
RobotHardware.rtcのonFinalize()中でclose_iobを呼ぶようにしました。