-
Notifications
You must be signed in to change notification settings - Fork 676
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: apply autoware_
prefix for hazard_status_converter
#9971
feat: apply autoware_
prefix for hazard_status_converter
#9971
Conversation
Signed-off-by: Junya Sasaki <[email protected]>
Signed-off-by: Junya Sasaki <[email protected]>
Thank you for contributing to the Autoware project! 🚧 If your pull request is in progress, switch it to draft mode. Please ensure:
|
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #9971 +/- ##
==========================================
- Coverage 29.79% 29.45% -0.34%
==========================================
Files 1434 1426 -8
Lines 108244 107759 -485
Branches 42930 42791 -139
==========================================
- Hits 32247 31742 -505
- Misses 72868 72956 +88
+ Partials 3129 3061 -68
*This pull request uses carry forward flags. Click here to find out more. ☔ View full report in Codecov by Sentry. |
@@ -1,4 +1,4 @@ | |||
// Copyright 2023 The Autoware Contributors | |||
// Copyright 2025 The Autoware Contributors |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please keep the copyright year. This is the publication year.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed by this commit
@@ -1,4 +1,4 @@ | |||
// Copyright 2023 The Autoware Contributors | |||
// Copyright 2025 The Autoware Contributors |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please keep the copyright year. This is the publication year.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed by this commit
…-status-converter Signed-off-by: Junya Sasaki <[email protected]>
…verter' of github.com:sasakisasaki/autoware.universe into feat-apply-autoware-prefix-for-system-hazard-status-converter Signed-off-by: Junya Sasaki <[email protected]>
Signed-off-by: Junya Sasaki <[email protected]>
Signed-off-by: Junya Sasaki <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think that the following line needs to be fixed.
<include file="$(find-pkg-share hazard_status_converter)/launch/hazard_status_converter.launch.xml"/> |
…-status-converter
Signed-off-by: Shintaro Sakoda <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I pushed a necessary change.
0da8d5e
-
planning_simulator
with sample_map -
logging_simulator
with sample_rosbag -
logging_simulator
with awsim_gt_data(TIER IV INTERNAL) -
e2e_simulator
with AWSIM v1.3.1 -
driving_log_replayer
on localization scenario
Signed-off-by: Ryohsuke Mitsudome <[email protected]>
I forgot to attach the evaluator result (TIER IV Internal link): |
Description
This pull request addresses the issue of inconsistent naming by adding the
autoware_
prefix to relevant components. This change ensures uniformity across the codebase and aligns with the project's naming conventions.Related Links
How was this PR tested?
Currently, we only verified that the build succeeds. Further checks will be performed by using the updated module. This PR will be ready for review after finishing all the necessary checks/tests.
Directory Name
autoware_
as a prefix to the directory name.packages.xml
autoware_
to thename
element.CMakeLists.txt
project
name toautoware_***
.autoware::
toPLUGIN
.Header Files (.hpp)
#ifndef
guards withAUTOWARE__
.autoware::
tonamespace
.Source Files (.cpp)
autoware::
insideRCLCPP_COMPONENTS_REGISTER_NODE
.Launch Files
autoware_
beforefind-pkg-share
.node pkg="<pkgname>"
toautoware_<pkgname>
.Include
autoware
folder as necessary and update include statements accordingly.Verification Points
find-pkg-share
in autowaresensor_launch
as seen ingnss_poser
Notes for Reviewers
None.
Interface Changes
None.
Effects on System Behavior
All the developers who were using
hazard_status_converter
needs to modify their code. This is maybe kind of non quick-win task.