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

How to get string from terminal when starting the node. C++

asked 2018-07-18 15:58:35 -0500

Diatrix gravatar image

Hello everyone, I'm trying to get a parameter used in the launch command of a node and use it on my c++ code. For example, when you're about to launch a node: $rosrun [packet] [node] [string], the [string] being the string I want to use in my c++ code of the node.

I want it to give me the string so I can choose a specific topic to subscribe to. I'm using ROS Kinetic

edit retag flag offensive close merge delete

2 Answers

Sort by ยป oldest newest most voted
1

answered 2018-07-18 17:10:14 -0500

updated 2018-07-18 17:10:49 -0500

If you're doing rosrun, you can use the argv passed into the main function of your C++ node:

int main(int argc, char** argv)
{
    ros::init(argc, argv, "my_node");

    if (argc > 1)
        std::string value_from_cl = argv[1];
}

If you go through a launch file, you can use launch file args to pass in from the command line. For example, if you have in your launch file

<arg name="some_arg" default="my_default_value"/>

then you can run roslaunch like

roslaunch my_package my_file.launch some_arg:=some_other_value

Then to get the value to your node, you can pass it directly in the node tag in the launch file:

<node name="my_node" pkg="my_package" type="my_node" args="$(arg some_arg)"/>

You could alternatively set it with the ROS parameter server, in which case you would load it in your launch file by doing

<param name="my_param" value="$(arg some_arg)"/>

which can then be retrieved from the parameter server in your C++ code with

ros::NodeHande nh;
std::string value_from_ps;
// Retrieve and set a default value if not found on parameter server    
nh.param<std::string>("my_param", value_from_ps, "my_default_value");
// Retrieve without a default value
nh.getParam("my_param", value_from_ps);
edit flag offensive delete link more

Comments

Thank you, it's everything I needed.

Diatrix gravatar image Diatrix  ( 2018-07-20 13:03:19 -0500 )edit
1

answered 2018-07-18 17:56:23 -0500

The best way to do this using the ROS system is to use the parameter system. This allows the setting to be controlled when you start the node by itself using rosrun or as part of a larger launch file. You would run your node using the following command:

rosrun <package_name> <node_name> _topic:=<topic_name>

You can then access this parameter in your node using the following code:

ros::NodeHandle n("~");
std::string topicName;
n.param<std::string>("topic", topicName, "default_topic");
printf("topic is [%s]\n", topicName.c_str() );

Hope this helps.

edit flag offensive delete link more

Comments

It does, thank you!

Diatrix gravatar image Diatrix  ( 2018-07-20 13:02:58 -0500 )edit

Question Tools

Stats

Asked: 2018-07-18 15:58:35 -0500

Seen: 1,592 times

Last updated: Jul 18 '18