xml_testdata_loader.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2018 Pilz GmbH & Co. KG
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
17 #ifndef XML_TESTDATA_LOADER_H
18 #define XML_TESTDATA_LOADER_H
19 
20 #include <string>
21 #include <vector>
22 #include <functional>
23 #include <map>
24 #include <memory>
25 
26 #include <boost/property_tree/ptree.hpp>
27 
29 
30 namespace pt = boost::property_tree;
32 {
103 {
104 public:
105  XmlTestdataLoader(const std::string& path_filename);
106  XmlTestdataLoader(const std::string& path_filename, const moveit::core::RobotModelConstPtr& robot_model);
108 
109 public:
110  virtual JointConfiguration getJoints(const std::string& pos_name, const std::string& group_name) const override;
111 
112  virtual CartesianConfiguration getPose(const std::string& pos_name, const std::string& group_name) const override;
113 
114  virtual PtpJoint getPtpJoint(const std::string& cmd_name) const override;
115  virtual PtpCart getPtpCart(const std::string& cmd_name) const override;
116  virtual PtpJointCart getPtpJointCart(const std::string& cmd_name) const override;
117 
118  virtual LinJoint getLinJoint(const std::string& cmd_name) const override;
119  virtual LinCart getLinCart(const std::string& cmd_name) const override;
120  virtual LinJointCart getLinJointCart(const std::string& cmd_name) const override;
121 
122  virtual CircCenterCart getCircCartCenterCart(const std::string& cmd_name) const override;
123  virtual CircInterimCart getCircCartInterimCart(const std::string& cmd_name) const override;
124  virtual CircJointCenterCart getCircJointCenterCart(const std::string& cmd_name) const override;
125  virtual CircJointInterimCart getCircJointInterimCart(const std::string& cmd_name) const override;
126 
127  virtual Sequence getSequence(const std::string& cmd_name) const override;
128 
129  virtual Gripper getGripper(const std::string& cmd_name) const override;
130 
131 private:
139  const pt::ptree::value_type& findNodeWithName(const boost::property_tree::ptree& tree,
140  const std::string& name,
141  const std::string& key,
142  const std::string& path = "") const;
143 
147  const pt::ptree::value_type& findCmd(const std::string& cmd_name,
148  const std::string& cmd_path,
149  const std::string& cmd_key) const;
150 
151  CartesianCenter getCartesianCenter(const std::string& cmd_name, const std::string& planning_group) const;
152 
153  CartesianInterim getCartesianInterim(const std::string& cmd_name, const std::string& planning_group) const;
154 
155 private:
156  JointConfiguration getJoints(const boost::property_tree::ptree& joints_tree, const std::string& group_name) const;
157 
158 private:
162  inline static std::vector<double> strVec2doubleVec(std::vector<std::string>& strVec);
163 
164 public:
171  {
172  public:
173  virtual CmdVariant getCmd(const std::string& /*cmd_name*/) const = 0;
174  virtual ~AbstractCmdGetterAdapter() = default;
175  };
176 
177 private:
178  std::string path_filename_;
179  pt::ptree tree_{};
180 
181  using AbstractCmdGetterUPtr = std::unique_ptr<AbstractCmdGetterAdapter>;
182 
188  std::map<std::string, AbstractCmdGetterUPtr> cmd_getter_funcs_;
189 
190 private:
191  const pt::ptree::value_type empty_value_type_{};
192  const pt::ptree empty_tree_{};
193 };
194 
195 std::vector<double> XmlTestdataLoader::strVec2doubleVec(std::vector<std::string>& strVec)
196 {
197  std::vector<double> vec;
198 
199  vec.resize(strVec.size());
200  std::transform(strVec.begin(), strVec.end(), vec.begin(), [](const std::string& val) { return std::stod(val); });
201 
202  return vec;
203 }
204 
205 using XmlTestDataLoaderUPtr = std::unique_ptr<TestdataLoader>;
206 
207 } // namespace pilz_industrial_motion_testutils
208 
209 #endif // XML_TESTDATA_LOADER_H
static std::vector< double > strVec2doubleVec(std::vector< std::string > &strVec)
Converts string vector to double vector.
virtual CircInterimCart getCircCartInterimCart(const std::string &cmd_name) const override
std::map< std::string, AbstractCmdGetterUPtr > cmd_getter_funcs_
virtual LinCart getLinCart(const std::string &cmd_name) const override
virtual CircCenterCart getCircCartCenterCart(const std::string &cmd_name) const override
Returns the command with the specified name from the test data.
std::unique_ptr< TestdataLoader > XmlTestDataLoaderUPtr
Data class storing all information regarding a Circ command.
Definition: circ.h:31
virtual LinJoint getLinJoint(const std::string &cmd_name) const override
Returns the command with the specified name from the test data.
virtual PtpCart getPtpCart(const std::string &cmd_name) const override
virtual LinJointCart getLinJointCart(const std::string &cmd_name) const override
name
Implements a test data loader which uses a xml file to store the test data.
Data class storing all information regarding a linear command.
Definition: lin.h:30
const pt::ptree::value_type & findCmd(const std::string &cmd_name, const std::string &cmd_path, const std::string &cmd_key) const
Use this function to search for a cmd-node with a given name.
Abstract base class providing a GENERIC getter-function signature which can be used to load DIFFERENT...
Class to define a robot configuration in space with the help of joint values.
virtual JointConfiguration getJoints(const std::string &pos_name, const std::string &group_name) const override
vec
virtual Sequence getSequence(const std::string &cmd_name) const override
Returns the command with the specified name from the test data.
Data class storing all information regarding a Sequence command.
Definition: sequence.h:35
virtual CircJointCenterCart getCircJointCenterCart(const std::string &cmd_name) const override
virtual CircJointInterimCart getCircJointInterimCart(const std::string &cmd_name) const override
CartesianCenter getCartesianCenter(const std::string &cmd_name, const std::string &planning_group) const
Abstract base class describing the interface to access test data like robot poses and robot commands...
const pt::ptree::value_type & findNodeWithName(const boost::property_tree::ptree &tree, const std::string &name, const std::string &key, const std::string &path="") const
Use this function to search for a node (like an pos or cmd) with a given name.
Class to define a point on the circle on which the robot is supposed to move via circ command...
Definition: interim.h:29
boost::variant< PtpJoint, PtpJointCart, PtpCart, LinJoint, LinCart, CircCenterCart, CircInterimCart, CircJointCenterCart, CircJointInterimCart, Gripper > CmdVariant
virtual CartesianConfiguration getPose(const std::string &pos_name, const std::string &group_name) const override
Class to define a robot configuration in space with the help of cartesian coordinates.
Class to define the center point of the circle on which the robot is supposed to move via circ comman...
Definition: center.h:29
virtual Gripper getGripper(const std::string &cmd_name) const override
Returns the command with the specified name from the test data.
virtual PtpJointCart getPtpJointCart(const std::string &cmd_name) const override
std::unique_ptr< AbstractCmdGetterAdapter > AbstractCmdGetterUPtr
CartesianInterim getCartesianInterim(const std::string &cmd_name, const std::string &planning_group) const
virtual PtpJoint getPtpJoint(const std::string &cmd_name) const override
Returns the command with the specified name from the test data.


pilz_industrial_motion_testutils
Author(s):
autogenerated on Mon Feb 28 2022 23:13:36