Skip to content

Commit cb90912

Browse files
authored
Update invalid parameter exception handling (#2347)
* Rename rclcpp parameter exception The parameter exception name is being changed in ros2/rclcpp#1673 Signed-off-by: Jacob Perron <[email protected]> * Exception is thrown when getting the parameter Signed-off-by: Jacob Perron <[email protected]> * Fix test Signed-off-by: Jacob Perron <[email protected]> * Fix typo Signed-off-by: Jacob Perron <[email protected]>
1 parent 5e5d8be commit cb90912

File tree

2 files changed

+12
-13
lines changed

2 files changed

+12
-13
lines changed

nav2_costmap_2d/test/unit/declare_parameter_test.cpp

+3-2
Original file line numberDiff line numberDiff line change
@@ -65,10 +65,11 @@ TEST(DeclareParameter, useInvalidParameter)
6565

6666
layer.initialize(&layers, "test_layer", &tf, node, nullptr, nullptr);
6767

68+
layer.declareParameter("test2", rclcpp::PARAMETER_STRING);
6869
try {
69-
layer.declareParameter("test2", rclcpp::PARAMETER_STRING);
70+
std::string val = node->get_parameter("test_layer.test2").as_string();
7071
FAIL() << "Incorrectly handling test_layer.test2 parameter which was not set";
71-
} catch (rclcpp::exceptions::NoParameterOverrideProvided & ex) {
72+
} catch (rclcpp::exceptions::ParameterUninitializedException & ex) {
7273
SUCCEED();
7374
}
7475
}

nav2_util/include/nav2_util/node_utils.hpp

+9-11
Original file line numberDiff line numberDiff line change
@@ -104,9 +104,6 @@ void declare_parameter_if_not_declared(
104104

105105
/// Declares static ROS2 parameter with given type if it was not already declared
106106
/* Declares static ROS2 parameter with given type if it was not already declared.
107-
* NOTE: The parameter should be set via input param-file
108-
* or throught a command-line. Otherwise according to the RCLCPP API,
109-
* NoParameterOverrideProvided exception will be thrown by declare_parameter().
110107
*
111108
* \param[in] node A node in which given parameter to be declared
112109
* \param[in] param_type The type of parameter
@@ -140,18 +137,19 @@ std::string get_plugin_type_param(
140137
NodeT node,
141138
const std::string & plugin_name)
142139
{
140+
declare_parameter_if_not_declared(node, plugin_name + ".plugin", rclcpp::PARAMETER_STRING);
141+
std::string plugin_type;
143142
try {
144-
declare_parameter_if_not_declared(node, plugin_name + ".plugin", rclcpp::PARAMETER_STRING);
145-
} catch (rclcpp::exceptions::NoParameterOverrideProvided & ex) {
143+
if (!node->get_parameter(plugin_name + ".plugin", plugin_type)) {
144+
RCLCPP_FATAL(
145+
node->get_logger(), "Can not get 'plugin' param value for %s", plugin_name.c_str());
146+
exit(-1);
147+
}
148+
} catch (rclcpp::exceptions::ParameterUninitializedException & ex) {
146149
RCLCPP_FATAL(node->get_logger(), "'plugin' param not defined for %s", plugin_name.c_str());
147150
exit(-1);
148151
}
149-
std::string plugin_type;
150-
if (!node->get_parameter(plugin_name + ".plugin", plugin_type)) {
151-
RCLCPP_FATAL(
152-
node->get_logger(), "Can not get 'plugin' param value for %s", plugin_name.c_str());
153-
exit(-1);
154-
}
152+
155153
return plugin_type;
156154
}
157155

0 commit comments

Comments
 (0)