extensible_controllers.cpp
Go to the documentation of this file.
1 // Copyright (C) 2017, Clearpath Robotics Inc.
3 //
4 // Redistribution and use in source and binary forms, with or without
5 // modification, are permitted provided that the following conditions are met:
6 // * Redistributions of source code must retain the above copyright notice,
7 // this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above copyright
9 // notice, this list of conditions and the following disclaimer in the
10 // documentation and/or other materials provided with the distribution.
11 // * Neither the name of hiDOF, Inc. nor the names of its
12 // contributors may be used to endorse or promote products derived from
13 // this software without specific prior written permission.
14 //
15 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
16 // AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17 // IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18 // ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
19 // LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
20 // CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
21 // SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
22 // INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
23 // CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
24 // ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
25 // POSSIBILITY OF SUCH DAMAGE.
27 
30 
31 using namespace controller_manager_tests;
32 
34  ros::NodeHandle& /*root_nh*/, ros::NodeHandle& controller_nh)
35 {
36  std::string vel_joint_name;
37  controller_nh.getParam("velocity_joint", vel_joint_name);
38 
40  joint_iface->getHandle(vel_joint_name);
41  return true;
42 }
43 
45 {
46  return 1;
47 }
48 
50 {
51  // TODO: Publish this return value so that the test can validate it?
52  int foo = helper();
53 }
54 
55 
58 {
59  return DerivedControllerInterface::initRequest(hw, nh, pnh, cr);
60 }
61 
62 
64  ros::NodeHandle& root_nh, ros::NodeHandle& controller_nh)
65 {
66  // First initialize the base controller.
67  if (!ExtensibleController::init(robot_hw, root_nh, controller_nh))
68  {
69  return false;
70  }
71 
72  std::string eff_joint_name;
73  controller_nh.getParam("effort_joint", eff_joint_name);
74 
76  joint_iface->getHandle(eff_joint_name);
77  return true;
78 }
79 
81 {
82  return 2;
83 }
84 
bool init(hardware_interface::RobotHW *robot_hw, ros::NodeHandle &root_nh, ros::NodeHandle &controller_nh) override
bool init(hardware_interface::RobotHW *robot_hw, ros::NodeHandle &root_nh, ros::NodeHandle &controller_nh) override
std::vector< hardware_interface::InterfaceResources > ClaimedResources
bool getParam(const std::string &key, std::string &s) const
bool initRequest(hardware_interface::RobotHW *hw, ros::NodeHandle &nh, ros::NodeHandle &pnh, controller_interface::ControllerBase::ClaimedResources &cr) override
void update(const ros::Time &, const ros::Duration &) override
JointHandle getHandle(const std::string &name)
bool initRequest(hardware_interface::RobotHW *robot_hw, ros::NodeHandle &root_nh, ros::NodeHandle &controller_nh, ClaimedResources &claimed_resources) override
#define PLUGINLIB_EXPORT_CLASS(class_type, base_class_type)


controller_manager_tests
Author(s): Vijay Pradeep, Adolfo Rodriguez Tsouroukdissian
autogenerated on Mon Feb 28 2022 23:30:19