-
Notifications
You must be signed in to change notification settings - Fork 543
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[foxy] Latched Strings for URDF and SRDF (#1414)
- Loading branch information
Showing
15 changed files
with
753 additions
and
67 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
84 changes: 84 additions & 0 deletions
84
moveit_ros/planning/rdf_loader/include/moveit/rdf_loader/synchronized_string_parameter.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
/********************************************************************* | ||
* Software License Agreement (BSD License) | ||
* | ||
* Copyright (c) 2021, PickNik Robotics | ||
* 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 PickNik Robotics 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: David V. Lu!! */ | ||
|
||
#pragma once | ||
|
||
#include <std_msgs/msg/string.hpp> | ||
#include <rclcpp/rclcpp.hpp> | ||
|
||
namespace rdf_loader | ||
{ | ||
using StringCallback = std::function<void(const std::string&)>; | ||
|
||
/** | ||
* @brief SynchronizedStringParameter is a way to load a string from the ROS environment. | ||
* | ||
* First it tries to load the string from a parameter. | ||
* If that fails, it subscribes to a std_msgs::String topic of the same name to get the value. | ||
* | ||
* If the parameter is loaded successfully, you can publish the value as a String msg if the publish_NAME param is true. | ||
* | ||
* You can specify how long to wait for a subscribed message with NAME_timeout (double in seconds) | ||
* | ||
* By default, the subscription will be killed after the first message is received. | ||
* If the parameter NAME_continuous is true, then the parent_callback will be called on every subsequent message. | ||
*/ | ||
class SynchronizedStringParameter | ||
{ | ||
public: | ||
std::string loadInitialValue(const std::shared_ptr<rclcpp::Node>& node, const std::string& name, | ||
StringCallback parent_callback = {}, bool default_continuous_value = false, | ||
double default_timeout = 10.0); | ||
|
||
protected: | ||
bool getMainParameter(); | ||
|
||
bool shouldPublish(); | ||
|
||
bool waitForMessage(const rclcpp::Duration timeout); | ||
|
||
void stringCallback(const std_msgs::msg::String::SharedPtr msg); | ||
|
||
std::shared_ptr<rclcpp::Node> node_; | ||
std::string name_; | ||
StringCallback parent_callback_; | ||
|
||
rclcpp::Subscription<std_msgs::msg::String>::SharedPtr string_subscriber_; | ||
rclcpp::Publisher<std_msgs::msg::String>::SharedPtr string_publisher_; | ||
|
||
std::string content_; | ||
}; | ||
} // namespace rdf_loader |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.