test_app.cpp
Go to the documentation of this file.
00001 /*********************************************************************
00002 * Software License Agreement (BSD License)
00003 *
00004 *  Copyright (c) 2012, Willow Garage, Inc.
00005 *  All rights reserved.
00006 *
00007 *  Redistribution and use in source and binary forms, with or without
00008 *  modification, are permitted provided that the following conditions
00009 *  are met:
00010 *
00011 *   * Redistributions of source code must retain the above copyright
00012 *     notice, this list of conditions and the following disclaimer.
00013 *   * Redistributions in binary form must reproduce the above
00014 *     copyright notice, this list of conditions and the following
00015 *     disclaimer in the documentation and/or other materials provided
00016 *     with the distribution.
00017 *   * Neither the name of the Willow Garage nor the names of its
00018 *     contributors may be used to endorse or promote products derived
00019 *     from this software without specific prior written permission.
00020 *
00021 *  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
00022 *  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
00023 *  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
00024 *  FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
00025 *  COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
00026 *  INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
00027 *  BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
00028 *  LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
00029 *  CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
00030 *  LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
00031 *  ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
00032 *  POSSIBILITY OF SUCH DAMAGE.
00033 *********************************************************************/
00034 
00035 #include <moveit/trajectory_execution_manager/trajectory_execution_manager.h>
00036 #include <moveit/robot_model_loader/robot_model_loader.h>
00037 
00038 int main(int argc, char **argv)
00039 {
00040   ros::init(argc, argv, "test_trajectory_execution_manager");
00041 
00042   ros::AsyncSpinner spinner(1);
00043   spinner.start();
00044 
00045   robot_model_loader::RobotModelLoader rml;
00046   trajectory_execution_manager::TrajectoryExecutionManager tem(rml.getModel(), true);
00047 
00048   std::cout << "1:\n";
00049   if (!tem.ensureActiveControllersForJoints(std::vector<std::string>(1, "basej")))
00050     ROS_ERROR("Fail!");
00051 
00052   std::cout << "2:\n";
00053   if (!tem.ensureActiveController("arms"))
00054     ROS_ERROR("Fail!");
00055 
00056   std::cout << "3:\n";
00057   if (!tem.ensureActiveControllersForJoints(std::vector<std::string>(1, "rj2")))
00058     ROS_ERROR("Fail!");
00059 
00060   std::cout << "4:\n";
00061   if (!tem.ensureActiveControllersForJoints(std::vector<std::string>(1, "lj1")))
00062     ROS_ERROR("Fail!");
00063 
00064   std::cout << "5:\n";
00065   if (!tem.ensureActiveController("left_arm_head"))
00066     ROS_ERROR("Fail!");
00067   std::cout << "6:\n";
00068   if (!tem.ensureActiveController("arms"))
00069     ROS_ERROR("Fail!");
00070 
00071   // execute with empty set of trajectories
00072   tem.execute();
00073   if (!tem.waitForExecution())
00074     ROS_ERROR("Fail!");
00075 
00076   moveit_msgs::RobotTrajectory traj1;
00077   traj1.joint_trajectory.joint_names.push_back("rj1");
00078   traj1.joint_trajectory.points.resize(1);
00079   traj1.joint_trajectory.points[0].positions.push_back(0.0);
00080   if (!tem.push(traj1))
00081     ROS_ERROR("Fail!");
00082 
00083   moveit_msgs::RobotTrajectory traj2 = traj1;
00084   traj2.joint_trajectory.joint_names.push_back("lj2");
00085   traj2.joint_trajectory.points[0].positions.push_back(1.0);
00086   traj2.multi_dof_joint_trajectory.joint_names.push_back("basej");
00087   traj2.multi_dof_joint_trajectory.points.resize(1);
00088   traj2.multi_dof_joint_trajectory.points[0].transforms.resize(1);
00089 
00090   if (!tem.push(traj2))
00091     ROS_ERROR("Fail!");
00092 
00093   traj1.multi_dof_joint_trajectory = traj2.multi_dof_joint_trajectory;
00094   if (!tem.push(traj1))
00095     ROS_ERROR("Fail!");
00096 
00097   if (!tem.executeAndWait())
00098     ROS_ERROR("Fail!");
00099 
00100   ros::waitForShutdown();
00101 
00102   return 0;
00103 }


planning
Author(s): Ioan Sucan , Sachin Chitta
autogenerated on Mon Oct 6 2014 02:31:40