15 #ifndef ROS_IGN_BRIDGE__BRIDGE_HPP_
16 #define ROS_IGN_BRIDGE__BRIDGE_HPP_
26 #include <ignition/transport/Node.hh>
54 std::shared_ptr<ignition::transport::Node> ign_node,
55 const std::string & ros_type_name,
56 const std::string & ros_topic_name,
57 size_t subscriber_queue_size,
58 const std::string & ign_type_name,
59 const std::string & ign_topic_name,
60 size_t publisher_queue_size)
62 auto factory =
get_factory(ros_type_name, ign_type_name);
63 auto ign_pub = factory->create_ign_publisher(
64 ign_node, ign_topic_name, publisher_queue_size);
66 auto ros_sub = factory->create_ros_subscriber(
67 ros_node, ros_topic_name, subscriber_queue_size, ign_pub);
77 std::shared_ptr<ignition::transport::Node> ign_node,
79 const std::string & ign_type_name,
80 const std::string & ign_topic_name,
81 size_t subscriber_queue_size,
82 const std::string & ros_type_name,
83 const std::string & ros_topic_name,
84 size_t publisher_queue_size)
86 auto factory =
get_factory(ros_type_name, ign_type_name);
87 auto ros_pub = factory->create_ros_publisher(
88 ros_node, ros_topic_name, publisher_queue_size);
90 factory->create_ign_subscriber(
91 ign_node, ign_topic_name, subscriber_queue_size, ros_pub);
102 std::shared_ptr<ignition::transport::Node> ign_node,
103 const std::string & ros_type_name,
104 const std::string & ign_type_name,
105 const std::string & topic_name,
106 size_t queue_size = 10)
109 <<
" with ROS type [" << ros_type_name <<
"] and Ignition Transport"
110 <<
" type [" << ign_type_name <<
"]");
115 ros_type_name, topic_name, queue_size, ign_type_name, topic_name, queue_size);
118 ign_type_name, topic_name, queue_size, ros_type_name, topic_name, queue_size);
124 #endif // ROS_BRIDGE__BRIDGE_HPP_