feat(planning_validator): check for sudden shift in planning trajectory #10339
CodeScene PR Check
Quality Gate Failed
Gates Failed
Enforce critical code health rules
(1 file with Bumpy Road Ahead)
Enforce advisory code health rules
(3 files with Complex Method, Large Method, Overall Code Complexity, Primitive Obsession, Complex Conditional)
Gates Passed
2 Quality Gates Passed
See analysis details in CodeScene
Reason for failure
Enforce critical code health rules | Violations | Code Health Impact | |
---|---|---|---|
planning_validator.cpp | 1 critical rule | 8.17 → 6.32 | Suppress |
Enforce advisory code health rules | Violations | Code Health Impact | |
---|---|---|---|
planning_validator.cpp | 3 advisory rules | 8.17 → 6.32 | Suppress |
test_planning_validator_helper.cpp | 2 advisory rules | 9.39 → 8.72 | Suppress |
utils.cpp | 1 advisory rule | 8.68 → 8.42 | Suppress |
Quality Gate Profile: Clean Code Collective
Want more control? Customize Code Health rules or catch issues early with our IDE extension and CLI tool.
Details
🚩 Declining Code Health (highest to lowest):
- Overall Code Complexity planning_validator.cpp
- Large Method planning_validator.cpp: PlanningValidator::setupDiag
- Complex Method planning_validator.cpp: PlanningValidator::isAllValid
- Large Method test_planning_validator_helper.cpp: getNodeOptionsWithDefaultParams
- Large Method planning_validator.cpp: PlanningValidator::setupParameters
- Complex Method planning_validator.cpp: PlanningValidator::checkTrajectoryShift
- Primitive Obsession utils.cpp
- Complex Conditional test_planning_validator_helper.cpp: generateShiftedTrajectory
- Complex Method planning_validator.cpp: PlanningValidator::checkValidLongitudinalDistanceDeviation
- Complex Method planning_validator.cpp: PlanningValidator::publishTrajectory
- Bumpy Road Ahead planning_validator.cpp: PlanningValidator::checkValidLongitudinalDistanceDeviation
✅ Improving Code Health:
- Primitive Obsession test_planning_validator_helper.cpp
Annotations
Check warning on line 841 in planning/autoware_planning_validator/src/planning_validator.cpp
codescene-delta-analysis / CodeScene Cloud Delta Analysis (main)
❌ Getting worse: Complex Method
PlanningValidator::isAllValid increases in cyclomatic complexity from 16 to 17, threshold = 9. This function has many conditional statements (e.g. if, for, while), leading to lower code health. Avoid adding more conditionals and code to it without refactoring.
Check warning on line 830 in planning/autoware_planning_validator/src/planning_validator.cpp
codescene-delta-analysis / CodeScene Cloud Delta Analysis (main)
❌ New issue: Complex Method
PlanningValidator::checkTrajectoryShift has a cyclomatic complexity of 13, threshold = 9. This function has many conditional statements (e.g. if, for, while), leading to lower code health. Avoid adding more conditionals and code to it without refactoring.
Check warning on line 698 in planning/autoware_planning_validator/src/planning_validator.cpp
codescene-delta-analysis / CodeScene Cloud Delta Analysis (main)
❌ New issue: Complex Method
PlanningValidator::checkValidLongitudinalDistanceDeviation has a cyclomatic complexity of 10, threshold = 9. This function has many conditional statements (e.g. if, for, while), leading to lower code health. Avoid adding more conditionals and code to it without refactoring.
Check warning on line 355 in planning/autoware_planning_validator/src/planning_validator.cpp
codescene-delta-analysis / CodeScene Cloud Delta Analysis (main)
❌ New issue: Complex Method
PlanningValidator::publishTrajectory has a cyclomatic complexity of 10, threshold = 9. This function has many conditional statements (e.g. if, for, while), leading to lower code health. Avoid adding more conditionals and code to it without refactoring.
Check warning on line 257 in planning/autoware_planning_validator/src/planning_validator.cpp
codescene-delta-analysis / CodeScene Cloud Delta Analysis (main)
❌ New issue: Large Method
PlanningValidator::setupDiag has 90 lines, threshold = 70. Large functions with many lines of code are generally harder to understand and lower the code health. Avoid adding more lines to this function.
Check warning on line 128 in planning/autoware_planning_validator/src/planning_validator.cpp
codescene-delta-analysis / CodeScene Cloud Delta Analysis (main)
❌ New issue: Large Method
PlanningValidator::setupParameters has 71 lines, threshold = 70. Large functions with many lines of code are generally harder to understand and lower the code health. Avoid adding more lines to this function.
Check warning on line 698 in planning/autoware_planning_validator/src/planning_validator.cpp
codescene-delta-analysis / CodeScene Cloud Delta Analysis (main)
❌ New issue: Bumpy Road Ahead
PlanningValidator::checkValidLongitudinalDistanceDeviation has 2 blocks with nested conditional logic. Any nesting of 2 or deeper is considered. Threshold is one single, nested block per function. The Bumpy Road code smell is a function that contains multiple chunks of nested conditional logic. The deeper the nesting and the more bumps, the lower the code health.
Check warning on line 1 in planning/autoware_planning_validator/src/planning_validator.cpp
codescene-delta-analysis / CodeScene Cloud Delta Analysis (main)
❌ New issue: Overall Code Complexity
This module has a mean cyclomatic complexity of 4.52 across 29 functions. The mean complexity threshold is 4. This file has many conditional statements (e.g. if, for, while) across its implementation, leading to lower code health. Avoid adding more conditionals.
Check warning on line 1 in planning/autoware_planning_validator/src/utils.cpp
codescene-delta-analysis / CodeScene Cloud Delta Analysis (main)
❌ New issue: Primitive Obsession
In this module, 38.2% of all function arguments are primitive types, threshold = 30.0%. The functions in this file have too many primitive types (e.g. int, double, float) in their function argument lists. Using many primitive types lead to the code smell Primitive Obsession. Avoid adding more primitive arguments.
codescene-delta-analysis / CodeScene Cloud Delta Analysis (main)
❌ New issue: Complex Conditional
generateShiftedTrajectory has 1 complex conditionals with 2 branches, threshold = 2. A complex conditional is an expression inside a branch (e.g. if, for, while) which consists of multiple, logical operators such as AND/OR. The more logical operators in an expression, the more severe the code smell.
codescene-delta-analysis / CodeScene Cloud Delta Analysis (main)
❌ New issue: Large Method
getNodeOptionsWithDefaultParams has 75 lines, threshold = 70. Large functions with many lines of code are generally harder to understand and lower the code health. Avoid adding more lines to this function.
codescene-delta-analysis / CodeScene Cloud Delta Analysis (main)
✅ Getting better: Primitive Obsession
The ratio of primitive types in function arguments decreases from 81.48% to 77.42%, threshold = 30.0%. The functions in this file have too many primitive types (e.g. int, double, float) in their function argument lists. Using many primitive types lead to the code smell Primitive Obsession. Avoid adding more primitive arguments.