ros / ros_comm

ROS communications-related packages, including core client libraries (roscpp, rospy, roslisp) and graph introspection tools (rostopic, rosnode, rosservice, rosparam).
http://wiki.ros.org/ros_comm
752 stars 911 forks source link

support `rosbag play --loop` in `rospy.Timer` #2257

Open v4hn opened 2 years ago

v4hn commented 2 years ago

I fail to understand why this issue still exists after all these years, though I really should not be surprised...

Without the patch the Timer thread just dies on rosbag loop with no way of detecting and restarting it easily. The patch changes the behavior to assume it slept enough and calls the callback again. If the callback logic requires resets, this can be detected from the TimerEvent passed to the callback.

This addresses a use case that is currently fully broken, so there is no need to worry about incompatible behavior.