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

topic_tools: throttling when rostime jump backward #1397

Merged
merged 1 commit into from
May 18, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions tools/topic_tools/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,7 @@ if(CATKIN_ENABLE_TESTING)
add_rostest(test/shapeshifter.test)
add_rostest(test/throttle.test)
add_rostest(test/throttle_simtime.test)
add_rostest(test/throttle_simtime_loop.test)
add_rostest(test/drop.test)
add_rostest(test/relay.test)
add_rostest(test/relay_stealth.test)
Expand Down
5 changes: 5 additions & 0 deletions tools/topic_tools/src/throttle.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,11 @@ void in_cb(const ros::MessageEvent<ShapeShifter>& msg_event)
now.fromSec(ros::WallTime::now().toSec());
else
now = ros::Time::now();
if (g_last_time > now)
{
ROS_WARN("Detected jump back in time, resetting throttle period to now for.");
g_last_time = now;
}
if((now - g_last_time) > g_period)
{
g_pub.publish(msg);
Expand Down
126 changes: 126 additions & 0 deletions tools/topic_tools/test/test_throttle_simtime_loop.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,126 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Software License Agreement (BSD License)
#
# Copyright (c) 2018, JSK Robotics Lab.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# * Redistributions in binary form must reproduce the above
# copyright notice, this list of conditions and the following
# disclaimer in the documentation and/or other materials provided
# with the distribution.
# * Neither the name of Willow Garage, Inc. nor the names of its
# contributors may be used to endorse or promote products derived
# from this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
# FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
# COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
#
# Author: Yuki Furuta <furushchev@jsk.imi.i.u-tokyo.ac.jp>

import threading
import rospy
from std_msgs.msg import String
from rosgraph_msgs.msg import Clock
import time
from unittest import TestCase


class ClockPublisher(threading.Thread):
def __init__(self):
super(ClockPublisher, self).__init__()
self.finished = threading.Event()
self.interval = 0.1
self.pub_clock = rospy.Publisher("/clock", Clock, queue_size=1)
self.reset(time.time())

def run(self):
while not self.finished.is_set():
self.finished.wait(self.interval)
self.pub_clock.publish(self.clock)
self.clock.clock += rospy.Duration(self.interval)
self.finished.set()

def stop(self):
self.finished.set()

def reset(self, seconds=0):
self.clock = Clock(
clock=rospy.Time.from_seconds(seconds))


class TestThrottleSimtimeLoop(TestCase):
def setUp(self):
self.clock_pub = ClockPublisher()
self.clock_pub.start()
time.sleep(1)
self.input_count = 0
self.throttle_count = 0
self.sub_throttle = rospy.Subscriber(
"input_throttle", String, self.callback_throttle, queue_size=1)
self.sub_input = rospy.Subscriber(
"input", String, self.callback_input, queue_size=1)

def tearDown(self):
self.clock_pub.stop()

def callback_throttle(self, msg):
self.throttle_count += 1

def callback_input(self, msg):
self.input_count += 1

def test_throttle_loop(self):
# wait for throttled message
for i in range(100):
if self.throttle_count > 0:
break
time.sleep(0.1)
self.assertGreater(
self.input_count, 0,
"Input message comes before rostime moves backward")
self.assertGreater(
self.throttle_count, 0,
"Throttle message comes before rostime moves backward")

# reset /clock (rostime moves backward)
self.clock_pub.reset()
time.sleep(0.1)

# wait for throttled message
self.input_count = 0
self.throttle_count = 0
for i in range(100):
if self.throttle_count > 0:
break
time.sleep(0.1)
self.assertGreater(
self.input_count, 0,
"Input message comes after rostime moved backward")
self.assertGreater(
self.throttle_count, 0,
"Throttle message comes after rostime moved backward")


if __name__ == '__main__':
import rostest
rospy.init_node("test_throttle_simtime_loop")
rostest.rosrun("topic_tools",
"test_throttle_simtime_loop",
TestThrottleSimtimeLoop)
9 changes: 9 additions & 0 deletions tools/topic_tools/test/throttle_simtime_loop.test
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<launch>
<param name="use_sim_time" value="true"/>
<node pkg="rostopic" type="rostopic" name="rostopic_pub"
args="pub -r 20 input std_msgs/String chatter"/>
<node pkg="topic_tools" type="throttle" name="throttle"
args="messages input 5" output="screen"/>
<test test-name="throttle_simtime_loop"
pkg="topic_tools" type="test_throttle_simtime_loop.py" />
</launch>