ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question
0

Declaring publisher twice

asked 2017-11-07 01:55:45 -0500

danividanivi gravatar image

I have a program with a main.cpp and a message.cpp files.

The second has a function that is called every time an event happens and I have to send a ros message.

My first try was to declare the publisher and send the message in message.cpp:

ros::NodeHandle nh("~");
ros::Publisher pub = nh.advertise<myProject_ros::PathMessage>("/myProject_ros/message", 1000);
// creating my message
pub.publish(message);

But doing it like that, I had to insert a delay between the publisher and the publish, otherwise the listener had no time to connect.

In order to avoid introducing delays, I started creating the publisher in my main file:

ros::NodeHandle nh("~");
ros::Publisher pub = nh.advertise<myProject_ros::PathMessage>("/myProject_ros/message", 1000);

And then I wanted to publish in message.cpp:

pub.publish(message);

But then

error: ‘pub’ was not declared in this scope

So now I am creating the publisher both in the main so listener is ready and in message.cpp again to avoid pub not declared. It is working fine, I don't need delay now, but it looks like a "dirty" solution.

What is the proper way to do this? I am new to ROS and C++.

edit retag flag offensive close merge delete

Comments

1

Welcome! It would be much easier to understand your problem if you posted your code instead of describing it and posting snippets.

jayess gravatar image jayess  ( 2017-11-07 02:18:51 -0500 )edit
1

So you basically want to wait with publisher on your listener? You can do that with getNumSubscribers() and wait until this number is greater than 0.

l4ncelot gravatar image l4ncelot  ( 2017-11-07 02:32:39 -0500 )edit

Thank you! The full code is very long and copyright protected, I just have to add this feature of sending ROS messages and I did, but I don't think declaring pub twice is the best way to do it.

danividanivi gravatar image danividanivi  ( 2017-11-07 02:38:30 -0500 )edit

I thought about waiting for getNumSubscribers>0 but sometimes code will run without any listener, so I cannot do that.

danividanivi gravatar image danividanivi  ( 2017-11-07 02:40:14 -0500 )edit

@danividanivi: Can you post a simple (non-copyrighted), complete example of what you're trying to accomplish?

jayess gravatar image jayess  ( 2017-11-07 13:19:27 -0500 )edit

1 Answer

Sort by » oldest newest most voted
0

answered 2017-11-07 10:09:49 -0500

clyde gravatar image

Look up "variable scope in C++" to understand how variables like ros::Publisher pub can be declared and used in C++ programs.

The preferred method is to create a class like class MyNode, and declare ros::Publisher pub; as a private variable in the class. But if you just want to quickly hack up existing C++ code you can just declare ros::Publisher pub; as a global variable somewhere near the top of the cpp file, and use it later.

edit flag offensive delete link more

Question Tools

2 followers

Stats

Asked: 2017-11-07 01:55:45 -0500

Seen: 926 times

Last updated: Nov 07 '17