forked from ros/diagnostics
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'feature/add-analyzers-through-parameters' into nobleo-ros2
- Loading branch information
Showing
5 changed files
with
165 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,7 @@ | |
<license>BSD-3-Clause</license> | ||
|
||
<url type="website">http://www.ros.org/wiki/diagnostic_aggregator</url> | ||
|
||
<author>Kevin Watts</author> | ||
<author email="[email protected]">Brice Rebsamen</author> | ||
<author email="[email protected]">Arne Nordmann</author> | ||
|
@@ -22,6 +22,7 @@ | |
|
||
<build_depend>diagnostic_msgs</build_depend> | ||
<build_depend>pluginlib</build_depend> | ||
<build_depend>rcl_interfaces</build_depend> | ||
<build_depend>rclcpp</build_depend> | ||
<build_depend>std_msgs</build_depend> | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,100 @@ | ||
/********************************************************************* | ||
* Software License Agreement (BSD License) | ||
* | ||
* Copyright (c) 2009, Willow Garage, Inc. | ||
* All rights reserved. | ||
* | ||
* Redistribution and use in source and binary forms, with or without | ||
* modification, are permitted provided that the following conditions | ||
* are met: | ||
* | ||
* * Redistributions of source code must retain the above copyright | ||
* notice, this list of conditions and the following disclaimer. | ||
* * Redistributions in binary form must reproduce the above | ||
* copyright notice, this list of conditions and the following | ||
* disclaimer in the documentation and/or other materials provided | ||
* with the distribution. | ||
* * Neither the name of the Willow Garage nor the names of its | ||
* contributors may be used to endorse or promote products derived | ||
* from this software without specific prior written permission. | ||
* | ||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | ||
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | ||
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS | ||
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE | ||
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, | ||
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, | ||
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | ||
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER | ||
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | ||
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN | ||
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | ||
* POSSIBILITY OF SUCH DAMAGE. | ||
*********************************************************************/ | ||
|
||
/**< \author Martin Cornelis */ | ||
|
||
#include <chrono> | ||
|
||
#include "rclcpp/rclcpp.hpp" | ||
#include "rcl_interfaces/srv/set_parameters_atomically.hpp" | ||
#include "rcl_interfaces/msg/parameter.hpp" | ||
|
||
using namespace std::chrono_literals; | ||
|
||
class AddAnalyzer : public rclcpp::Node | ||
{ | ||
public: | ||
AddAnalyzer() | ||
: Node("add_analyzer_node", "", rclcpp::NodeOptions().allow_undeclared_parameters( | ||
true).automatically_declare_parameters_from_overrides(true)) | ||
{ | ||
client_ = this->create_client<rcl_interfaces::srv::SetParametersAtomically>( | ||
"/diagnostics_agg/set_parameters_atomically"); | ||
} | ||
|
||
void send_request() | ||
{ | ||
while (!client_->wait_for_service(1s)) { | ||
if (!rclcpp::ok()) { | ||
RCLCPP_ERROR(this->get_logger(), "Interrupted while waiting for the service. Exiting."); | ||
return; | ||
} | ||
RCLCPP_INFO_ONCE(this->get_logger(), "service not available, waiting ..."); | ||
} | ||
auto request = std::make_shared<rcl_interfaces::srv::SetParametersAtomically::Request>(); | ||
std::map<std::string, rclcpp::Parameter> parameters; | ||
if (this->get_parameters("", parameters)) { | ||
for (const auto & param : parameters) { | ||
if (param.first.substr(0, analyzers_ns_.length()).compare(analyzers_ns_) == 0) { | ||
auto parameter_msg = param.second.to_parameter_msg(); | ||
request->parameters.push_back(parameter_msg); | ||
} | ||
} | ||
} | ||
auto result = client_->async_send_request(request); | ||
// Wait for the result. | ||
if (rclcpp::spin_until_future_complete(this->get_node_base_interface(), result) == | ||
rclcpp::FutureReturnCode::SUCCESS) | ||
{ | ||
RCLCPP_INFO(this->get_logger(), "Parameters succesfully set"); | ||
} else { | ||
RCLCPP_ERROR(this->get_logger(), "Failed to set parameters"); | ||
} | ||
} | ||
|
||
private: | ||
rclcpp::Client<rcl_interfaces::srv::SetParametersAtomically>::SharedPtr client_; | ||
std::string analyzers_ns_ = "analyzers."; | ||
}; | ||
|
||
int main(int argc, char ** argv) | ||
{ | ||
rclcpp::init(argc, argv); | ||
|
||
auto add_analyzer = std::make_shared<AddAnalyzer>(); | ||
add_analyzer->send_request(); | ||
rclcpp::shutdown(); | ||
|
||
return 0; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters