00001 // Copyright (C) 2010-2011 Institut de Robotica i Informatica Industrial, CSIC-UPC. 00002 // Author 00003 // All rights reserved. 00004 // 00005 // This file is part of iri-ros-pkg 00006 // iri-ros-pkg is free software: you can redistribute it and/or modify 00007 // it under the terms of the GNU Lesser General Public License as published by 00008 // the Free Software Foundation, either version 3 of the License, or 00009 // at your option) any later version. 00010 // 00011 // This program is distributed in the hope that it will be useful, 00012 // but WITHOUT ANY WARRANTY; without even the implied warranty of 00013 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00014 // GNU Lesser General Public License for more details. 00015 // 00016 // You should have received a copy of the GNU Lesser General Public License 00017 // along with this program. If not, see <http://www.gnu.org/licenses/>. 00018 // 00019 // IMPORTANT NOTE: This code has been generated through a script from the 00020 // iri_ros_scripts. Please do NOT delete any comments to guarantee the correctness 00021 // of the scripts. ROS topics can be easly add by using those scripts. Please 00022 // refer to the IRI wiki page for more information: 00023 // http://wikiri.upc.es/index.php/Robotics_Lab 00024 00025 #ifndef _pose2d_odom_alg_node_h_ 00026 #define _pose2d_odom_alg_node_h_ 00027 00028 #include <iri_base_algorithm/iri_base_algorithm.h> 00029 #include "pose2d_odom_alg.h" 00030 #include <tf/transform_datatypes.h> 00031 #include <tf/transform_broadcaster.h> 00032 00033 // [publisher subscriber headers] 00034 #include <geometry_msgs/Pose2D.h> 00035 #include <nav_msgs/Odometry.h> 00036 00037 #include "eventserver.h" 00038 #include "eventexceptions.h" 00039 00040 // [service client headers] 00041 00042 // [action server client headers] 00043 00048 class Pose2dOdomAlgNode : public algorithm_base::IriBaseAlgorithm<Pose2dOdomAlgorithm> 00049 { 00050 private: 00051 // [publisher attributes] 00052 ros::Publisher pose2dodom_publisher_; 00053 nav_msgs::Odometry Odometry_msg_; 00054 geometry_msgs::TransformStamped Transform_msg_; 00055 00056 // [subscriber attributes] 00057 ros::Subscriber pose2din_subscriber_; 00058 void pose2din_callback(const geometry_msgs::Pose2D& msg); 00059 CMutex pose2din_mutex_; 00060 00061 // event attributes 00062 CEventServer *ES; 00063 std::string P2D_IN; 00064 std::list<std::string> SUBS_LIST; 00065 std::string parent_id_; 00066 std::string frame_id_; 00067 bool publish_tf_; 00068 bool pose2d_arrived_; 00069 00070 // [service attributes] 00071 00072 // [client attributes] 00073 00074 // [action server attributes] 00075 00076 // [action client attributes] 00077 00078 public: 00085 Pose2dOdomAlgNode(void); 00086 00093 ~Pose2dOdomAlgNode(void); 00094 00095 protected: 00096 00103 tf::TransformBroadcaster pose2dodom_broadcaster_; 00104 00117 void mainNodeThread(void); 00118 00131 void node_config_update(Config &config, uint32_t level); 00132 00139 void addNodeDiagnostics(void); 00140 00141 // [diagnostic functions] 00142 00143 // [test functions] 00144 }; 00145 00146 #endif