moveit2
The MoveIt Motion Planning Framework for ROS 2.
Loading...
Searching...
No Matches
rdf_loader.h
Go to the documentation of this file.
1/*********************************************************************
2 * Software License Agreement (BSD License)
3 *
4 * Copyright (c) 2011, Willow Garage, Inc.
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 *
11 * * Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * * Redistributions in binary form must reproduce the above
14 * copyright notice, this list of conditions and the following
15 * disclaimer in the documentation and/or other materials provided
16 * with the distribution.
17 * * Neither the name of Willow Garage nor the names of its
18 * contributors may be used to endorse or promote products derived
19 * from this software without specific prior written permission.
20 *
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
24 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
25 * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
26 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
27 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
28 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
29 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
31 * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
32 * POSSIBILITY OF SUCH DAMAGE.
33 *********************************************************************/
34
35/* Author: Ioan Sucan, Mathias Lüdtke, Dave Coleman */
36
37#pragma once
38
41#include <urdf/model.h>
42#include <srdfdom/model.h>
43#include <rclcpp/rclcpp.hpp>
44
45namespace rdf_loader
46{
47MOVEIT_CLASS_FORWARD(RDFLoader); // Defines RDFLoaderPtr, ConstPtr, WeakPtr... etc
48
49using NewModelCallback = std::function<void()>;
50
54{
55public:
72 RDFLoader(const std::shared_ptr<rclcpp::Node>& node, const std::string& ros_name = "robot_description",
73 bool default_continuous_value = false, double default_timeout = 10.0);
74
76 RDFLoader(const std::string& urdf_string, const std::string& srdf_string);
77
79 const std::string& getRobotDescription() const
80 {
81 return ros_name_;
82 }
83
85 const std::string& getURDFString() const
86 {
87 return urdf_string_;
88 }
89
91 const urdf::ModelInterfaceSharedPtr& getURDF() const
92 {
93 return urdf_;
94 }
95
97 const srdf::ModelSharedPtr& getSRDF() const
98 {
99 return srdf_;
100 }
101
103 {
104 new_model_cb_ = cb;
105 }
106
108 static bool isXacroFile(const std::string& path);
109
111 static bool loadFileToString(std::string& buffer, const std::string& path);
112
114 static bool loadXacroFileToString(std::string& buffer, const std::string& path,
115 const std::vector<std::string>& xacro_args);
116
119 static bool loadXmlFileToString(std::string& buffer, const std::string& path,
120 const std::vector<std::string>& xacro_args);
121
123 static bool loadPkgFileToString(std::string& buffer, const std::string& package_name,
124 const std::string& relative_path, const std::vector<std::string>& xacro_args);
125
126private:
127 bool loadFromStrings();
128
129 void urdfUpdateCallback(const std::string& new_urdf_string);
130 void srdfUpdateCallback(const std::string& new_srdf_string);
131
132 NewModelCallback new_model_cb_;
133
134 std::string ros_name_;
135 std::string urdf_string_, srdf_string_;
136
139
140 srdf::ModelSharedPtr srdf_;
141 urdf::ModelInterfaceSharedPtr urdf_;
142};
143} // namespace rdf_loader
#define MOVEIT_CLASS_FORWARD(C)
static bool loadXmlFileToString(std::string &buffer, const std::string &path, const std::vector< std::string > &xacro_args)
helper that branches between loadFileToString() and loadXacroFileToString() based on result of isXacr...
static bool isXacroFile(const std::string &path)
determine if given path points to a xacro file
const urdf::ModelInterfaceSharedPtr & getURDF() const
Get the parsed URDF model.
Definition rdf_loader.h:91
void setNewModelCallback(const NewModelCallback &cb)
Definition rdf_loader.h:102
const std::string & getRobotDescription() const
Get the resolved parameter name for the robot description.
Definition rdf_loader.h:79
static bool loadPkgFileToString(std::string &buffer, const std::string &package_name, const std::string &relative_path, const std::vector< std::string > &xacro_args)
helper that generates a file path based on package name and relative file path to package
const std::string & getURDFString() const
Get the URDF string.
Definition rdf_loader.h:85
const srdf::ModelSharedPtr & getSRDF() const
Get the parsed SRDF model.
Definition rdf_loader.h:97
static bool loadFileToString(std::string &buffer, const std::string &path)
load file from given path into buffer
static bool loadXacroFileToString(std::string &buffer, const std::string &path, const std::vector< std::string > &xacro_args)
run xacro with the given args on the file, return result in buffer
SynchronizedStringParameter is a way to load a string from the ROS environment.
std::function< void()> NewModelCallback
Definition rdf_loader.h:49