Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(diagnostic_graph_utils): add logging tool #1349

Merged
merged 2 commits into from
Jun 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion system/diagnostic_graph_utils/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ ament_auto_add_library(${PROJECT_NAME} SHARED
ament_auto_add_library(${PROJECT_NAME}_tools SHARED
src/node/dump.cpp
src/node/converter.cpp
src/node/logging.cpp
)

rclcpp_components_register_node(${PROJECT_NAME}_tools
Expand All @@ -24,4 +25,9 @@ rclcpp_components_register_node(${PROJECT_NAME}_tools
EXECUTABLE converter_node
)

ament_auto_package()
rclcpp_components_register_node(${PROJECT_NAME}_tools
PLUGIN "diagnostic_graph_utils::LoggingNode"
EXECUTABLE logging_node
)

ament_auto_package(INSTALL_TO_SHARE launch)
10 changes: 10 additions & 0 deletions system/diagnostic_graph_utils/launch/logging.launch.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<launch>
<arg name="root_path" default="/autoware/modes/autonomous"/>
<arg name="max_depth" default="3"/>
<arg name="show_rate" default="1.0"/>
<node pkg="diagnostic_graph_utils" exec="logging_node" name="logging_diag_graph" output="both">
<param name="root_path" value="$(var root_path)"/>
<param name="max_depth" value="$(var max_depth)"/>
<param name="show_rate" value="$(var show_rate)"/>
</node>
</launch>
95 changes: 95 additions & 0 deletions system/diagnostic_graph_utils/src/node/logging.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,95 @@
// Copyright 2024 The Autoware Contributors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

#include "logging.hpp"

#include <algorithm>
#include <iomanip>
#include <iostream>
#include <memory>
#include <sstream>
#include <vector>

namespace diagnostic_graph_utils
{

LoggingNode::LoggingNode(const rclcpp::NodeOptions & options) : Node("logging", options)
{
root_path_ = declare_parameter<std::string>("root_path");
max_depth_ = declare_parameter<int>("max_depth");

using std::placeholders::_1;
sub_graph_.register_create_callback(std::bind(&LoggingNode::on_create, this, _1));
sub_graph_.subscribe(*this, 1);

const auto period = rclcpp::Rate(declare_parameter<double>("show_rate")).period();
timer_ = rclcpp::create_timer(this, get_clock(), period, [this]() { on_timer(); });
}

void LoggingNode::on_create(DiagGraph::ConstSharedPtr graph)
{
// Search root node.
root_unit_ = nullptr;
for (const auto & unit : graph->units()) {
if (unit->path() == root_path_) {
root_unit_ = unit;
return;
}
}
RCLCPP_ERROR_STREAM(get_logger(), "root unit is not found: " << root_path_);
}

void LoggingNode::on_timer()
{
static const auto message = "The target mode is not available for the following reasons:";
if (root_unit_ && root_unit_->level() != DiagUnit::DiagnosticStatus::OK) {
dump_text_.str("");
dump_text_.clear(std::stringstream::goodbit);
dump_unit(root_unit_, 0, " ");
RCLCPP_WARN_STREAM(get_logger(), message << std::endl << dump_text_.str());
}
}

void LoggingNode::dump_unit(DiagUnit * unit, int depth, const std::string & indent)
{
const auto text_level = [](DiagUnit::DiagnosticLevel level) {
if (level == DiagUnit::DiagnosticStatus::OK) return "OK ";
if (level == DiagUnit::DiagnosticStatus::WARN) return "WARN ";
if (level == DiagUnit::DiagnosticStatus::ERROR) return "ERROR";
if (level == DiagUnit::DiagnosticStatus::STALE) return "STALE";
return "-----";
};

if (max_depth_ < depth) {
return;
}
if (unit->level() == DiagUnit::DiagnosticStatus::OK) {
return;
}

std::string path = unit->path();
if (path.empty()) {
path = "[anonymous group]";
}

dump_text_ << indent << "- " + path << " " << text_level(unit->level()) << std::endl;
for (const auto & child : unit->children()) {
dump_unit(child.unit, depth + 1, indent + " ");
}
}

} // namespace diagnostic_graph_utils

#include <rclcpp_components/register_node_macro.hpp>
RCLCPP_COMPONENTS_REGISTER_NODE(diagnostic_graph_utils::LoggingNode)
48 changes: 48 additions & 0 deletions system/diagnostic_graph_utils/src/node/logging.hpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
// Copyright 2024 The Autoware Contributors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

#ifndef NODE__LOGGING_HPP_
#define NODE__LOGGING_HPP_

#include "diagnostic_graph_utils/subscription.hpp"

#include <rclcpp/rclcpp.hpp>

#include <sstream>
#include <string>

namespace diagnostic_graph_utils
{

class LoggingNode : public rclcpp::Node
{
public:
explicit LoggingNode(const rclcpp::NodeOptions & options);

private:
void on_create(DiagGraph::ConstSharedPtr graph);
void on_timer();
void dump_unit(DiagUnit * unit, int depth, const std::string & indent);
DiagGraphSubscription sub_graph_;
rclcpp::TimerBase::SharedPtr timer_;

DiagUnit * root_unit_;
int max_depth_;
std::string root_path_;
std::ostringstream dump_text_;
};

} // namespace diagnostic_graph_utils

#endif // NODE__LOGGING_HPP_
Loading