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

Example 7: Remove empty callbacks in controllers and update docs #685

Open
8 tasks
christophfroehlich opened this issue Jan 7, 2025 · 1 comment
Open
8 tasks

Comments

@christophfroehlich
Copy link
Contributor

Background

Related to ros-controls/ros2_controllers#1474

IMHO we could remove the empty callbacks

controller_interface::CallbackReturn on_cleanup(
const rclcpp_lifecycle::State & previous_state) override;
controller_interface::CallbackReturn on_error(
const rclcpp_lifecycle::State & previous_state) override;
controller_interface::CallbackReturn on_shutdown(
const rclcpp_lifecycle::State & previous_state) override;

or at least add a comment, that they are just for demonstration purposes and are optional.

At least we should update the docs, that the overrides of the lifecycle transitions are optional and not mandatory

The controller plugin for the tutorial robot is a class called ``RobotController`` that inherits from ``controller_interface::ControllerInterface``. The ``RobotController`` must implement nine public methods. The last six are `managed node <https://design.ros2.org/articles/node_lifecycle.html>`__ transitions callbacks.
1. ``command_interface_configuration``
2. ``state_interface_configuration``
3. ``update``
4. ``on_configure``
5. ``on_activate``
6. ``on_deactivate``
7. ``on_cleanup``
8. ``on_error``
9. ``on_shutdown``
.. code-block:: c++
class RobotController : public controller_interface::ControllerInterface {
public:
controller_interface::InterfaceConfiguration command_interface_configuration() const override;
controller_interface::InterfaceConfiguration state_interface_configuration() const override;
controller_interface::return_type update(const rclcpp::Time &time, const rclcpp::Duration &period) override;
controller_interface::CallbackReturn on_init() override;
controller_interface::CallbackReturn on_configure(const rclcpp_lifecycle::State &previous_state) override;
controller_interface::CallbackReturn on_activate(const rclcpp_lifecycle::State &previous_state) override;
controller_interface::CallbackReturn on_deactivate(const rclcpp_lifecycle::State &previous_state) override;
controller_interface::CallbackReturn on_cleanup(const rclcpp_lifecycle::State &previous_state) override;
controller_interface::CallbackReturn on_error(const rclcpp_lifecycle::State &previous_state) override;
controller_interface::CallbackReturn on_shutdown(const rclcpp_lifecycle::State &previous_state) override;
// private members
// ...
}

Instructions

Hi, this is a good-first-issue issue. This means we've worked to make it more legible to people who either haven't contributed to our codebase before, or even folks who haven't contributed to open source before.

We're interested in helping you take the first step, and can answer questions and help you out along the way. Note that we're especially interested in contributions from underrepresented groups!

We know that creating a pull request is the biggest barrier for new contributors. This issue is for you 💝

If you have contributed before, consider leaving this PR for someone new, and looking through our general bug issues. Thanks!

🤔 What you will need to know.

Nothing. This issue is meant to welcome you to Open Source :) We are happy to walk you through the process.

📋 Step by Step

  • 🙋 Claim this issue: Comment below. If someone else has claimed it, ask if they've opened a pull request already and if they're stuck -- maybe you can help them solve a problem or move it along!

  • 🗄️ Create a local workspace for making your changes and testing following these instructions, for Step3 use "Download Source Code" section with these instructions.

  • 🍴 Fork the repository using the handy button at the top of the repository page and clone it into ~/ws_ros2_control/src/ros-controls/ros2_control_demos, here is a guide that you can follow (You will have to remove or empty the existing ros2_control_demos folder before cloning your own fork)

  • Checkout a new branch using git checkout -b <branch_name>

  • 🤖 Apply pre-commit auto formatting, by running pip3 install pre-commit and running pre-commit install in the ros2_control_demos repo.

  • 💾 Commit and Push your changes

  • 🔀 Start a Pull Request to request to merge your code into master. There are two ways that you can start a pull request:

  1. If you are not familiar with GitHub or how to create a pull request, here is a guide you can follow on how GitHub works.
  • 🏁 Done Ask in comments for a review :)

Is someone else already working on this?

🔗- We encourage contributors to link to the original issue in their pull request so all users can easily see if someone's already started on it.

👥- If someone seems stuck, offer them some help!

🤔❓ Questions?

Don’t hesitate to ask questions or to get help if you feel like you are getting stuck. For example leave a comment below!
Furthermore, you find helpful resources here:

Good luck with your first issue!

@saikishor
Copy link
Member

I agree 👍🏽

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants