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 
extensible_controllers.h
HardwareResourceManager< JointHandle, ClaimResources >::getHandle
JointHandle getHandle(const std::string &name)
hardware_interface::InterfaceManager::get
T * get()
ros::NodeHandle::getParam
bool getParam(const std::string &key, bool &b) const
controller_manager_tests::ExtensibleController::update
void update(const ros::Time &, const ros::Duration &) override
Definition: extensible_controllers.cpp:49
controller_interface::ControllerBase::ClaimedResources
std::vector< hardware_interface::InterfaceResources > ClaimedResources
controller_manager_tests::ExtensibleController::helper
virtual int helper()
Definition: extensible_controllers.cpp:44
controller_interface::ControllerBase
hardware_interface::VelocityJointInterface
PLUGINLIB_EXPORT_CLASS
#define PLUGINLIB_EXPORT_CLASS(class_type, base_class_type)
hardware_interface::RobotHW
hardware_interface::EffortJointInterface
controller_manager_tests::DerivedController::initRequest
bool initRequest(hardware_interface::RobotHW *hw, ros::NodeHandle &nh, ros::NodeHandle &pnh, controller_interface::ControllerBase::ClaimedResources &cr) override
Definition: extensible_controllers.cpp:56
controller_manager_tests
Definition: effort_test_controller.h:36
controller_manager_tests::ExtensibleController::init
bool init(hardware_interface::RobotHW *robot_hw, ros::NodeHandle &root_nh, ros::NodeHandle &controller_nh) override
Definition: extensible_controllers.cpp:33
ros::Time
controller_manager_tests::DerivedController::helper
int helper() override
Definition: extensible_controllers.cpp:80
controller_interface::MultiInterfaceController< hardware_interface::VelocityJointInterface, hardware_interface::EffortJointInterface >::initRequest
bool initRequest(hardware_interface::RobotHW *robot_hw, ros::NodeHandle &root_nh, ros::NodeHandle &controller_nh, ClaimedResources &claimed_resources) override
class_list_macros.hpp
controller_manager_tests::DerivedController
Definition: extensible_controllers.h:57
controller_manager_tests::ExtensibleController
Definition: extensible_controllers.h:42
ros::Duration
ros::NodeHandle
controller_manager_tests::DerivedController::init
bool init(hardware_interface::RobotHW *robot_hw, ros::NodeHandle &root_nh, ros::NodeHandle &controller_nh) override
Definition: extensible_controllers.cpp:63


controller_manager_tests
Author(s): Vijay Pradeep, Adolfo Rodriguez Tsouroukdissian
autogenerated on Tue Oct 15 2024 02:08:24