Package Summary
Tags | No category tags. |
Version | 1.3.0 |
License | Apache License 2.0 |
Build type | AMENT_CMAKE |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/autowarefoundation/autoware_utils.git |
VCS Type | git |
VCS Version | main |
Last Updated | 2025-03-21 |
Dev Status | DEVELOPED |
CI status | No Continuous Integration |
Released | RELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
Additional Links
Maintainers
- Jian Kang
- Ryohsuke Mitsudome
- Esteve Fernandez
- Yutaka Kondo
- Takagi, Isamu
Authors
autoware_utils_debug
Overview
The autoware_utils library is a comprehensive toolkit designed to facilitate the development of autonomous driving applications. This package provides essential utilities for debug. It is extensively used in the Autoware project to handle common tasks such as publishing debug data and measuring time.
Design
-
debug_publisher.hpp
: A helper class for publishing debug messages with timestamps. -
debug_traits.hpp
: Traits for identifying debug message types. -
processing_time_publisher.hpp
: Publishes processing times as diagnostic messages. -
published_time_publisher.hpp
: Tracks and publishes the time when messages are published. -
time_keeper.hpp
: Tracks and reports the processing time of various functions.
Example Code Snippets
Handling Debug Message Types with debug_traits.hpp
#include <autoware_utils_debug/debug_publisher.hpp>
#include <autoware_utils_debug/debug_traits.hpp>
#include <rclcpp/rclcpp.hpp>
int main(int argc, char * argv[]) {
rclcpp::init(argc, argv);
auto node = rclcpp::Node::make_shared("debug_node");
// Initialize DebugPublisher
autoware_utils_debug::DebugPublisher debug_pub(node, "/debug");
// Publish a debug message with custom type
float debug_data = 42.0;
debug_pub.publish<autoware_internal_debug_msgs::msg::Float32Stamped>("example", debug_data);
rclcpp::shutdown();
return 0;
}
Logging Processing Times with ProcessingTimePublisher
#include <autoware_utils_debug/processing_time_publisher.hpp>
#include <rclcpp/rclcpp.hpp>
#include <map>
int main(int argc, char * argv[]) {
rclcpp::init(argc, argv);
auto node = rclcpp::Node::make_shared("processing_time_node");
// Initialize ProcessingTimePublisher
autoware_utils_debug::ProcessingTimePublisher processing_time_pub(node.get(), "~/debug/processing_time_ms");
// Simulate some processing times
std::map<std::string, double> processing_times = {
{"node1", 0.1}, {"node2", 0.2}, {"node3", 0.3}
};
// Publish processing times
processing_time_pub.publish(processing_times);
rclcpp::shutdown();
return 0;
}
Changelog for package autoware_utils_debug
1.3.0 (2025-03-21)
- unify version
- update changelog
- feat(autoware_utils_debug): split package
(#44)
- feat(autoware_utils_system): split package
- update for compatibility
- feat(autoware_utils_debug): split package
- apply testing utils
- feat(autoware_utils_testing): create test utils
- update test
- add mock node
- add test
- update readme
- remove testing
- compatibility
* fix sample code namespace ---------
- Contributors: Takagi, Isamu, Yutaka Kondo
- feat(autoware_utils_debug): split package
(#44)
- feat(autoware_utils_system): split package
- update for compatibility
- feat(autoware_utils_debug): split package
- apply testing utils
- feat(autoware_utils_testing): create test utils
- update test
- add mock node
- add test
- update readme
- remove testing
- compatibility
* fix sample code namespace ---------
- Contributors: Takagi, Isamu
1.2.0 (2025-02-26)
1.1.0 (2025-01-27)
1.0.0 (2024-05-02)
Wiki Tutorials
Package Dependencies
Deps | Name |
---|---|
ament_cmake_auto | |
autoware_cmake | |
ament_cmake_ros | |
ament_lint_auto | |
autoware_lint_common | |
autoware_internal_debug_msgs | |
autoware_internal_msgs | |
autoware_utils_system | |
diagnostic_msgs | |
rclcpp |
System Dependencies
Dependant Packages
Name | Deps |
---|---|
autoware_utils |
Launch files
Messages
Services
Plugins
Recent questions tagged autoware_utils_debug at Robotics Stack Exchange
Package Summary
Tags | No category tags. |
Version | 1.3.0 |
License | Apache License 2.0 |
Build type | AMENT_CMAKE |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/autowarefoundation/autoware_utils.git |
VCS Type | git |
VCS Version | main |
Last Updated | 2025-03-21 |
Dev Status | DEVELOPED |
CI status | No Continuous Integration |
Released | RELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
Additional Links
Maintainers
- Jian Kang
- Ryohsuke Mitsudome
- Esteve Fernandez
- Yutaka Kondo
- Takagi, Isamu
Authors
autoware_utils_debug
Overview
The autoware_utils library is a comprehensive toolkit designed to facilitate the development of autonomous driving applications. This package provides essential utilities for debug. It is extensively used in the Autoware project to handle common tasks such as publishing debug data and measuring time.
Design
-
debug_publisher.hpp
: A helper class for publishing debug messages with timestamps. -
debug_traits.hpp
: Traits for identifying debug message types. -
processing_time_publisher.hpp
: Publishes processing times as diagnostic messages. -
published_time_publisher.hpp
: Tracks and publishes the time when messages are published. -
time_keeper.hpp
: Tracks and reports the processing time of various functions.
Example Code Snippets
Handling Debug Message Types with debug_traits.hpp
#include <autoware_utils_debug/debug_publisher.hpp>
#include <autoware_utils_debug/debug_traits.hpp>
#include <rclcpp/rclcpp.hpp>
int main(int argc, char * argv[]) {
rclcpp::init(argc, argv);
auto node = rclcpp::Node::make_shared("debug_node");
// Initialize DebugPublisher
autoware_utils_debug::DebugPublisher debug_pub(node, "/debug");
// Publish a debug message with custom type
float debug_data = 42.0;
debug_pub.publish<autoware_internal_debug_msgs::msg::Float32Stamped>("example", debug_data);
rclcpp::shutdown();
return 0;
}
Logging Processing Times with ProcessingTimePublisher
#include <autoware_utils_debug/processing_time_publisher.hpp>
#include <rclcpp/rclcpp.hpp>
#include <map>
int main(int argc, char * argv[]) {
rclcpp::init(argc, argv);
auto node = rclcpp::Node::make_shared("processing_time_node");
// Initialize ProcessingTimePublisher
autoware_utils_debug::ProcessingTimePublisher processing_time_pub(node.get(), "~/debug/processing_time_ms");
// Simulate some processing times
std::map<std::string, double> processing_times = {
{"node1", 0.1}, {"node2", 0.2}, {"node3", 0.3}
};
// Publish processing times
processing_time_pub.publish(processing_times);
rclcpp::shutdown();
return 0;
}
Changelog for package autoware_utils_debug
1.3.0 (2025-03-21)
- unify version
- update changelog
- feat(autoware_utils_debug): split package
(#44)
- feat(autoware_utils_system): split package
- update for compatibility
- feat(autoware_utils_debug): split package
- apply testing utils
- feat(autoware_utils_testing): create test utils
- update test
- add mock node
- add test
- update readme
- remove testing
- compatibility
* fix sample code namespace ---------
- Contributors: Takagi, Isamu, Yutaka Kondo
- feat(autoware_utils_debug): split package
(#44)
- feat(autoware_utils_system): split package
- update for compatibility
- feat(autoware_utils_debug): split package
- apply testing utils
- feat(autoware_utils_testing): create test utils
- update test
- add mock node
- add test
- update readme
- remove testing
- compatibility
* fix sample code namespace ---------
- Contributors: Takagi, Isamu
1.2.0 (2025-02-26)
1.1.0 (2025-01-27)
1.0.0 (2024-05-02)
Wiki Tutorials
Package Dependencies
Deps | Name |
---|---|
ament_cmake_auto | |
autoware_cmake | |
ament_cmake_ros | |
ament_lint_auto | |
autoware_lint_common | |
autoware_internal_debug_msgs | |
autoware_internal_msgs | |
autoware_utils_system | |
diagnostic_msgs | |
rclcpp |
System Dependencies
Dependant Packages
Name | Deps |
---|---|
autoware_utils |
Launch files
Messages
Services
Plugins
Recent questions tagged autoware_utils_debug at Robotics Stack Exchange
Package Summary
Tags | No category tags. |
Version | 1.3.0 |
License | Apache License 2.0 |
Build type | AMENT_CMAKE |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/autowarefoundation/autoware_utils.git |
VCS Type | git |
VCS Version | main |
Last Updated | 2025-03-21 |
Dev Status | DEVELOPED |
CI status | No Continuous Integration |
Released | RELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
Additional Links
Maintainers
- Jian Kang
- Ryohsuke Mitsudome
- Esteve Fernandez
- Yutaka Kondo
- Takagi, Isamu
Authors
autoware_utils_debug
Overview
The autoware_utils library is a comprehensive toolkit designed to facilitate the development of autonomous driving applications. This package provides essential utilities for debug. It is extensively used in the Autoware project to handle common tasks such as publishing debug data and measuring time.
Design
-
debug_publisher.hpp
: A helper class for publishing debug messages with timestamps. -
debug_traits.hpp
: Traits for identifying debug message types. -
processing_time_publisher.hpp
: Publishes processing times as diagnostic messages. -
published_time_publisher.hpp
: Tracks and publishes the time when messages are published. -
time_keeper.hpp
: Tracks and reports the processing time of various functions.
Example Code Snippets
Handling Debug Message Types with debug_traits.hpp
#include <autoware_utils_debug/debug_publisher.hpp>
#include <autoware_utils_debug/debug_traits.hpp>
#include <rclcpp/rclcpp.hpp>
int main(int argc, char * argv[]) {
rclcpp::init(argc, argv);
auto node = rclcpp::Node::make_shared("debug_node");
// Initialize DebugPublisher
autoware_utils_debug::DebugPublisher debug_pub(node, "/debug");
// Publish a debug message with custom type
float debug_data = 42.0;
debug_pub.publish<autoware_internal_debug_msgs::msg::Float32Stamped>("example", debug_data);
rclcpp::shutdown();
return 0;
}
Logging Processing Times with ProcessingTimePublisher
#include <autoware_utils_debug/processing_time_publisher.hpp>
#include <rclcpp/rclcpp.hpp>
#include <map>
int main(int argc, char * argv[]) {
rclcpp::init(argc, argv);
auto node = rclcpp::Node::make_shared("processing_time_node");
// Initialize ProcessingTimePublisher
autoware_utils_debug::ProcessingTimePublisher processing_time_pub(node.get(), "~/debug/processing_time_ms");
// Simulate some processing times
std::map<std::string, double> processing_times = {
{"node1", 0.1}, {"node2", 0.2}, {"node3", 0.3}
};
// Publish processing times
processing_time_pub.publish(processing_times);
rclcpp::shutdown();
return 0;
}
Changelog for package autoware_utils_debug
1.3.0 (2025-03-21)
- unify version
- update changelog
- feat(autoware_utils_debug): split package
(#44)
- feat(autoware_utils_system): split package
- update for compatibility
- feat(autoware_utils_debug): split package
- apply testing utils
- feat(autoware_utils_testing): create test utils
- update test
- add mock node
- add test
- update readme
- remove testing
- compatibility
* fix sample code namespace ---------
- Contributors: Takagi, Isamu, Yutaka Kondo
- feat(autoware_utils_debug): split package
(#44)
- feat(autoware_utils_system): split package
- update for compatibility
- feat(autoware_utils_debug): split package
- apply testing utils
- feat(autoware_utils_testing): create test utils
- update test
- add mock node
- add test
- update readme
- remove testing
- compatibility
* fix sample code namespace ---------
- Contributors: Takagi, Isamu
1.2.0 (2025-02-26)
1.1.0 (2025-01-27)
1.0.0 (2024-05-02)
Wiki Tutorials
Package Dependencies
Deps | Name |
---|---|
ament_cmake_auto | |
autoware_cmake | |
ament_cmake_ros | |
ament_lint_auto | |
autoware_lint_common | |
autoware_internal_debug_msgs | |
autoware_internal_msgs | |
autoware_utils_system | |
diagnostic_msgs | |
rclcpp |
System Dependencies
Dependant Packages
Name | Deps |
---|---|
autoware_utils |