c++创建订阅者和发布者

2023-10-11 06:32
文章标签 c++ 创建 订阅 发布者

本文主要是介绍c++创建订阅者和发布者,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

此文章默认读者已经对ros有了一定的基础,明白ros之间如何进行数据通信,了解ros的文件结构,了解工作空间,功能包的概念。本篇文章参考创客智造上的教程,他们的讲解比我更详细。百度一下创客智造即可。

  订阅者和发布者依托于节点,即订阅者和发布者是在节点中完成的。所以先来说一下节点的定义,步骤可分为:

1.新建代码源文件

2.写代码

3.在cmakelist.txt文件中定义

订阅者和发布者在写代码的步骤中。

 

下面上一段,roswiki上给出的官方demo,然后对demo做讲解。

talker.cpp

#include "ros/ros.h"

#include "std_msgs/String.h"

 

#include <sstream>  //c++里的导包,对于我这种c++半路出家的,就理解为java里的import语句

//值得一说的是第一行语句,include ros/ros.h  ,引入ros的相关头文件,这是所有ros开发的起点

 

/**

 * This tutorial demonstrates simple sending of messages over the ROS system.

 */

int main(int argc, char **argv)

{

  /**

   * The ros::init() function needs to see argc and argv so that it can perform

   * any ROS arguments and name remapping that were provided at the command line.

   * For programmatic remappings you can use a different version of init() which takes

   * remappings directly, but for most command-line programs, passing argc and argv is

   * the easiest way to do it.  The third argument to init() is the name of the node.

   *

   * You must call one of the versions of ros::init() before using any other

   * part of the ROS system.

   */

  ros::init(argc, argv, "talker");    //初始化节点,第一二个参数走main里传进来,第三个参数为节点名称

 

  /**

   * NodeHandle is the main access point to communications with the ROS system.

   * The first NodeHandle constructed will fully initialize this node, and the last

   * NodeHandle destructed will close down the node.

   */

•   ros::NodeHandle n;   //实例化节点

 

 

  /**

   * The advertise() function is how you tell ROS that you want to

   * publish on a given topic name. This invokes a call to the ROS

   * master node, which keeps a registry of who is publishing and who

   * is subscribing. After this advertise() call is made, the master

   * node will notify anyone who is trying to subscribe to this topic name,

   * and they will in turn negotiate a peer-to-peer connection with this

   * node.  advertise() returns a Publisher object which allows you to

   * publish messages on that topic through a call to publish().  Once

   * all copies of the returned Publisher object are destroyed, the topic

   * will be automatically unadvertised.

   *

   * The second parameter to advertise() is the size of the message queue

   * used for publishing messages.  If messages are published more quickly

   * than we can send them, the number here specifies how many messages to

   * buffer up before throwing some away.

   */

  ros::Publisher chatter_pub = n.advertise<std_msgs::String>("chatter", 1000);

//定义一个发布者,尖括号内的泛型是ros里的消息格式,后面的参数分别为话题名称和消息队列长度

  ros::Rate loop_rate(10);

//设置循环的频率

 

 

  /**

   * A count of how many messages we have sent. This is used to create

   * a unique string for each message.

   */

  int count = 0;

  while (ros::ok())  //ros::ok表示ros的状态,当程序出问题或者ctrl+c退出时为false

  {

    /**

     * This is a message object. You stuff it with data, and then publish it.

     */

    std_msgs::String msg;  //定义需要发布的数据

 

    std::stringstream ss;

    ss << "hello world " << count;

    msg.data = ss.str();

 

    ROS_INFO("%s", msg.data.c_str());  //ros_info是ros提供的打印信息的方法

 

    /**

     * The publish() function is how you send messages. The parameter

     * is the message object. The type of this object must agree with the type

     * given as a template parameter to the advertise<>() call, as was done

     * in the constructor above.

     */

    chatter_pub.publish(msg);

 

    ros::spinOnce();  

 

loop_rate.sleep();  //类似于线程里的sleep方法

 

    ++count;

  }

  return 0;

}

 

 

 

Listener.cpp

#include "ros/ros.h"

#include "std_msgs/String.h"

 

/**

 * This tutorial demonstrates simple receipt of messages over the ROS system.

 */

//回调函数,用作数据的处理

void chatterCallback(const std_msgs::String::ConstPtr& msg)

{

  ROS_INFO("I heard: [%s]", msg->data.c_str());

}

 

int main(int argc, char **argv)

{

  /**

   * The ros::init() function needs to see argc and argv so that it can perform

   * any ROS arguments and name remapping that were provided at the command line.

   * For programmatic remappings you can use a different version of init() which takes

   * remappings directly, but for most command-line programs, passing argc and argv is

   * the easiest way to do it.  The third argument to init() is the name of the node.

   *

   * You must call one of the versions of ros::init() before using any other

   * part of the ROS system.

   */

  ros::init(argc, argv, "listener");

 

  /**

   * NodeHandle is the main access point to communications with the ROS system.

   * The first NodeHandle constructed will fully initialize this node, and the last

   * NodeHandle destructed will close down the node.

   */

  ros::NodeHandle n;

 

  /**

   * The subscribe() call is how you tell ROS that you want to receive messages

   * on a given topic.  This invokes a call to the ROS

   * master node, which keeps a registry of who is publishing and who

   * is subscribing.  Messages are passed to a callback function, here

   * called chatterCallback.  subscribe() returns a Subscriber object that you

   * must hold on to until you want to unsubscribe.  When all copies of the Subscriber

   * object go out of scope, this callback will automatically be unsubscribed from

   * this topic.

   *

   * The second parameter to the subscribe() function is the size of the message

   * queue.  If messages are arriving faster than they are being processed, this

   * is the number of messages that will be buffered up before beginning to throw

   * away the oldest ones.

   */

  ros::Subscriber sub = n.subscribe("chatter", 1000, chatterCallback); 

//实例化订阅者对象,第一个参数为订阅的话题名称,第二个参数为消息队列长度

   第三个参数为回调函数,即接收到数据后要执行的方法

 

  /**

   * ros::spin() will enter a loop, pumping callbacks.  With this version, all

   * callbacks will be called from within this thread (the main one).  ros::spin()

   * will exit when Ctrl-C is pressed, or the node is shutdown by the master.

   */

  ros::spin();

 

  return 0;

}

 

相比较来说,话题的订阅者比发布者更复杂一点,发布者只关注将数据发布出去,订阅者更关注数据接收到之后如何做处理,当然并不是一个节点只能定义一个发布者或者订阅者,一个发布者发布的数据可以是本话题里订阅处理后的数据,最重要的还是让整个系统条理清晰。 节点和话题的命名最好做到结构清晰,让人望文知义。

代码写好之后,接下来就是编译,并且发布到ros系统中。Ros工程使用cmake构建,所以ros的编译要编写cmakelist.txt,然后使用ros的编译命令catkin_make进行编译。所以如果要进行ros更层次的开发,了解一下cmakelist的语法也是必须的。

首先找到功能包根目录下的cmakelist.txt文件,添加如下代码:

 

include_directories(include ${catkin_INCLUDE_DIRS})

 

add_executable(talker src/talker.cpp)

#定义增加的可执行文件和源码位置

target_link_libraries(talker ${catkin_LIBRARIES})

#定义连接库

add_dependencies(talker beginner_tutorials_generate_messages_cpp)

#定义依赖

add_executable(listener src/listener.cpp)

target_link_libraries(listener ${catkin_LIBRARIES})

add_dependencies(listener beginner_tutorials_generate_messages_cpp)

 

cmakelist文件编写好之后,要进入工作空间的根目录,进行编译:

在工作空间根目录下运行命令catkin_make,若不报错则成功

 

 

验证一下;

终端1:roscore启动ros

终端2:rosrun 包名(此处为你的包名) talker

终端3:rosrun 包名 listener

观察屏幕打印信息

这篇关于c++创建订阅者和发布者的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/186227

相关文章

idea中创建新类时自动添加注释的实现

《idea中创建新类时自动添加注释的实现》在每次使用idea创建一个新类时,过了一段时间发现看不懂这个类是用来干嘛的,为了解决这个问题,我们可以设置在创建一个新类时自动添加注释,帮助我们理解这个类的用... 目录前言:详细操作:步骤一:点击上方的 文件(File),点击&nbmyHIgsp;设置(Setti

C++ 中的 if-constexpr语法和作用

《C++中的if-constexpr语法和作用》if-constexpr语法是C++17引入的新语法特性,也被称为常量if表达式或静态if(staticif),:本文主要介绍C++中的if-c... 目录1 if-constexpr 语法1.1 基本语法1.2 扩展说明1.2.1 条件表达式1.2.2 fa

C++中::SHCreateDirectoryEx函数使用方法

《C++中::SHCreateDirectoryEx函数使用方法》::SHCreateDirectoryEx用于创建多级目录,类似于mkdir-p命令,本文主要介绍了C++中::SHCreateDir... 目录1. 函数原型与依赖项2. 基本使用示例示例 1:创建单层目录示例 2:创建多级目录3. 关键注

C++从序列容器中删除元素的四种方法

《C++从序列容器中删除元素的四种方法》删除元素的方法在序列容器和关联容器之间是非常不同的,在序列容器中,vector和string是最常用的,但这里也会介绍deque和list以供全面了解,尽管在一... 目录一、简介二、移除给定位置的元素三、移除与某个值相等的元素3.1、序列容器vector、deque

C++常见容器获取头元素的方法大全

《C++常见容器获取头元素的方法大全》在C++编程中,容器是存储和管理数据集合的重要工具,不同的容器提供了不同的接口来访问和操作其中的元素,获取容器的头元素(即第一个元素)是常见的操作之一,本文将详细... 目录一、std::vector二、std::list三、std::deque四、std::forwa

C++字符串提取和分割的多种方法

《C++字符串提取和分割的多种方法》在C++编程中,字符串处理是一个常见的任务,尤其是在需要从字符串中提取特定数据时,本文将详细探讨如何使用C++标准库中的工具来提取和分割字符串,并分析不同方法的适用... 目录1. 字符串提取的基本方法1.1 使用 std::istringstream 和 >> 操作符示

C++原地删除有序数组重复项的N种方法

《C++原地删除有序数组重复项的N种方法》给定一个排序数组,你需要在原地删除重复出现的元素,使得每个元素只出现一次,返回移除后数组的新长度,不要使用额外的数组空间,你必须在原地修改输入数组并在使用O(... 目录一、问题二、问题分析三、算法实现四、问题变体:最多保留两次五、分析和代码实现5.1、问题分析5.

C++ 各种map特点对比分析

《C++各种map特点对比分析》文章比较了C++中不同类型的map(如std::map,std::unordered_map,std::multimap,std::unordered_multima... 目录特点比较C++ 示例代码 ​​​​​​代码解释特点比较1. std::map底层实现:基于红黑

C++中函数模板与类模板的简单使用及区别介绍

《C++中函数模板与类模板的简单使用及区别介绍》这篇文章介绍了C++中的模板机制,包括函数模板和类模板的概念、语法和实际应用,函数模板通过类型参数实现泛型操作,而类模板允许创建可处理多种数据类型的类,... 目录一、函数模板定义语法真实示例二、类模板三、关键区别四、注意事项 ‌在C++中,模板是实现泛型编程

Spring 中使用反射创建 Bean 实例的几种方式

《Spring中使用反射创建Bean实例的几种方式》文章介绍了在Spring框架中如何使用反射来创建Bean实例,包括使用Class.newInstance()、Constructor.newI... 目录1. 使用 Class.newInstance() (仅限无参构造函数):2. 使用 Construc