-
Notifications
You must be signed in to change notification settings - Fork 303
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
Handling of exclusive command interfaces #1487
Comments
@firesurfer Thank you for taking time and create a new issue. Once you have the testcase, we can try to find a solution. It would be really nice to have such testcase, so we don't introduce the bug in future |
@saikishor good morning. Could you please point me out where the best place is to add such a test? I found so far: Shall I just add an exclusive actuator there ? |
@firesurfer Yes you can add it over there. Can you name it as |
I went through the code roughly, it is more or less good. Now, the part is to reproduce the same failure you have in the perform command switch in the test :) |
That should be rather easy. I will add a test controller (prob. here? https://github.com/ros-controls/ros2_control/tree/master/controller_manager/test) that fails during activation and claims some of the interfaces. |
Regarding the testing procedure:
The hw interface should now be in a state in which it has a "started" command interface that has not been stopped.
The hw interface should now deny the |
@firesurfer add both #1492 and #1483 in the same PR, so you can clearly write a TEST case to reproduce it |
@firesurfer |
Sorry for that. I am really willing to provide the test code but I could really use some help setting up the necessary glue/infrastructure code. I merged both PRs in #1492 |
@firesurfer Right now we are occupied with the current developments for Jazzy, if we are done with it, I can take a look at this later. I hope this is not a problem 👍 |
@saikishor Thanks a lot! |
@firesurfer In the meantime, you can check how different tests are written. The integration tests are in the hardware_interface_testing package. I usually find a similar test, copy it, and then start changing it. You can add it to any file, and we will easily move it. |
@saikishor Let's continue the discussion here as in #1476 there was clearly a misunderstanding on my side regarding the right terminology.
Description
Let's assume a
hardware_interface::SystemInterface
which handles multiple servo axes. Each of the axis has three modes (position, velocity, torque). These interfaces have to be used exclusive ( The servo can only be in one of those modes)Currently the only solution I see is to have a list in the
hardware_interface
where thestarted
interfaces for each axis are tracked. The issue with this solution is: When a controller is does not activate properly it will start the interfaces but will never stop the interfaces. So afterwards no other controller can ever start these interfaces again.Workaround
Allow a controller to always activate successfully but check in the
update
method if the system is in a state where we can/want to control.Possible solution
Quick and Dirty - make sure to stop interfaces
Make sure that if a controller starts any interface it will stop it in case it can not be configured/activated.
Advantage would be that the hardware interface has still the maximum amount of flexibility
Allow to mark interfaces as exclusive
In the
export_command_interfaces
of a hardware_interface we could introduce the concept of anExclusiveGroup
. Afterwards it is probably the job of the resource manager to handle this kind of resource lock.Additional thoughts
What happens if one controller wants to switch from one interface to another in the same
ExclusiveGroup
? (I actually have a use case where I would really like to do that)@saikishor I can probably provide a test that reproduces this issue but it will take some time to setup as I need to implement a demo hardware_interface + a demo controller which takes some time to setup.
The text was updated successfully, but these errors were encountered: