move_group_capability.h
Go to the documentation of this file.
1 /*********************************************************************
2  * Software License Agreement (BSD License)
3  *
4  * Copyright (c) 2012, 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 */
36 
37 #pragma once
38 
44 
45 namespace move_group
46 {
47 enum MoveGroupState
48 {
49  IDLE,
50  PLANNING,
51  MONITOR,
52  LOOK
53 };
54 
55 MOVEIT_CLASS_FORWARD(MoveGroupCapability); // Defines MoveGroupCapabilityPtr, ConstPtr, WeakPtr... etc
56 
57 class MoveGroupCapability
58 {
59 public:
60  MoveGroupCapability(const std::string& capability_name) : node_handle_("~"), capability_name_(capability_name)
61  {
62  }
63 
64  virtual ~MoveGroupCapability()
65  {
66  }
67 
68  void setContext(const MoveGroupContextPtr& context);
69 
70  virtual void initialize() = 0;
71 
72  const std::string& getName() const
73  {
74  return capability_name_;
75  }
76 
77 protected:
78  std::string getActionResultString(const moveit_msgs::MoveItErrorCodes& error_code, bool planned_trajectory_empty,
79  bool plan_only);
80  std::string stateToStr(MoveGroupState state) const;
81 
82  void convertToMsg(const std::vector<plan_execution::ExecutableTrajectory>& trajectory,
83  moveit_msgs::RobotState& first_state_msg,
84  std::vector<moveit_msgs::RobotTrajectory>& trajectory_msg) const;
85  void convertToMsg(const robot_trajectory::RobotTrajectoryPtr& trajectory, moveit_msgs::RobotState& first_state_msg,
86  moveit_msgs::RobotTrajectory& trajectory_msg) const;
87  void convertToMsg(const std::vector<plan_execution::ExecutableTrajectory>& trajectory,
88  moveit_msgs::RobotState& first_state_msg, moveit_msgs::RobotTrajectory& trajectory_msg) const;
89 
92  moveit_msgs::PlanningScene clearSceneRobotState(const moveit_msgs::PlanningScene& scene) const;
93  bool performTransform(geometry_msgs::PoseStamped& pose_msg, const std::string& target_frame) const;
94 
95  planning_pipeline::PlanningPipelinePtr resolvePlanningPipeline(const std::string& pipeline_id) const;
96 
99  std::string capability_name_;
100  MoveGroupContextPtr context_;
101 };
102 } // namespace move_group
move_group::MoveGroupState
MoveGroupState
Definition: move_group_capability.h:79
move_group::MoveGroupCapability::performTransform
bool performTransform(geometry_msgs::PoseStamped &pose_msg, const std::string &target_frame) const
Definition: move_group_capability.cpp:166
plan_representation.h
move_group::LOOK
@ LOOK
Definition: move_group_capability.h:116
move_group::IDLE
@ IDLE
Definition: move_group_capability.h:113
move_group::MoveGroupCapability::capability_name_
std::string capability_name_
Definition: move_group_capability.h:131
move_group::MoveGroupCapability::context_
MoveGroupContextPtr context_
Definition: move_group_capability.h:132
move_group::MoveGroupCapability::getName
const std::string & getName() const
Definition: move_group_capability.h:104
move_group::MoveGroupCapability::~MoveGroupCapability
virtual ~MoveGroupCapability()
Definition: move_group_capability.h:96
move_group::MoveGroupCapability::MoveGroupCapability
MoveGroupCapability(const std::string &capability_name)
Definition: move_group_capability.h:92
planning_interface.h
move_group::MoveGroupCapability::setContext
void setContext(const MoveGroupContextPtr &context)
Definition: move_group_capability.cpp:46
move_group::MoveGroupCapability::initialize
virtual void initialize()=0
move_group_context.h
move_group::MoveGroupCapability::root_node_handle_
ros::NodeHandle root_node_handle_
Definition: move_group_capability.h:129
planning_scene_monitor.h
move_group::MoveGroupCapability::resolvePlanningPipeline
planning_pipeline::PlanningPipelinePtr resolvePlanningPipeline(const std::string &pipeline_id) const
Definition: move_group_capability.cpp:196
move_group::MOVEIT_CLASS_FORWARD
MOVEIT_CLASS_FORWARD(MoveGroupCapability)
move_group
Definition: capability_names.h:41
planning_interface::MotionPlanRequest
moveit_msgs::MotionPlanRequest MotionPlanRequest
move_group::MONITOR
@ MONITOR
Definition: move_group_capability.h:115
class_forward.h
move_group::MoveGroupCapability::convertToMsg
void convertToMsg(const std::vector< plan_execution::ExecutableTrajectory > &trajectory, moveit_msgs::RobotState &first_state_msg, std::vector< moveit_msgs::RobotTrajectory > &trajectory_msg) const
Definition: move_group_capability.cpp:51
move_group::MoveGroupCapability::getActionResultString
std::string getActionResultString(const moveit_msgs::MoveItErrorCodes &error_code, bool planned_trajectory_empty, bool plan_only)
Definition: move_group_capability.cpp:117
move_group::MoveGroupCapability::stateToStr
std::string stateToStr(MoveGroupState state) const
Definition: move_group_capability.cpp:149
move_group::MoveGroupCapability::node_handle_
ros::NodeHandle node_handle_
Definition: move_group_capability.h:130
move_group::MoveGroupCapability::clearRequestStartState
planning_interface::MotionPlanRequest clearRequestStartState(const planning_interface::MotionPlanRequest &request) const
Definition: move_group_capability.cpp:96
move_group::MoveGroupCapability::clearSceneRobotState
moveit_msgs::PlanningScene clearSceneRobotState(const moveit_msgs::PlanningScene &scene) const
Definition: move_group_capability.cpp:107
move_group::PLANNING
@ PLANNING
Definition: move_group_capability.h:114
ros::NodeHandle


move_group
Author(s): Ioan Sucan , Sachin Chitta
autogenerated on Thu Apr 18 2024 02:24:44